html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: "Montserrat", sans-serif;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

ol, ul {
  list-style: none;
}

ul li {
  line-height: 1.5rem;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
}

figcaption {
  position: absolute;
  opacity: 0;
}

strong {
  display: block;
  font-weight: 700;
}

html {
  font-size: 16px;
}

html {
  background: #f3f3f3;
}

main {
  margin: 0 auto;
  width: 100%;
  max-width: 2560px;
  background: rgba(255, 255, 255, 0.4);
}

figure {
  position: relative;
  background-position: center;
  background-size: cover;
}
figure:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: background 300ms ease-in-out;
  -moz-transition: background 300ms ease-in-out;
  -ms-transition: background 300ms ease-in-out;
  -o-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
  z-index: 1;
}

@media all and (max-width: 2560px) {
  html {
    background: #f3f3f3;
  }
  main {
    background: none;
  }
}
.btn {
  min-width: 10rem;
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 0.25rem;
  margin-top: 4rem;
  display: inline-block;
  line-height: 1.5rem;
}
.btn-blue {
  background: #6C88A1;
  color: #ffffff;
}
.btn-grey {
  background: #242424;
  color: #ffffff;
}
.btn-white {
  background: #ffffff;
  color: #242424;
}
.btn-small {
  padding: 0.75rem 1rem;
  font-size: 14px;
  min-width: 6rem;
  width: 7rem;
  display: inline-block;
  text-align: center;
}

header {
  z-index: 10;
}

.header-top {
  position: relative;
  background: #242424;
  width: 100%;
  padding: 1rem 2rem;
  z-index: 2;
}
.header-top-index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 2560px;
  margin: 0 auto;
}

.header-bottom {
  position: relative;
  background: #555353;
  width: 100%;
  padding: 1.5rem 2.75rem;
  color: #ffffff;
  font-weight: 300;
  text-transform: uppercase;
  z-index: 1;
}
.header-bottom-index {
  display: flex;
  justify-content: space-between;
  align-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 2560px;
  margin: 0 auto;
}
.header-bottom span {
  font-weight: 700;
}
.header-bottom a {
  color: white;
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  transition: color 300ms ease;
}
.header-bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  transition: color 300ms ease;
}

.header-hours {
  display: flex;
  gap: 2rem;
}

.header_logo svg {
  height: 4rem;
}

.hamburger {
  display: none;
}

@media all and (max-width: 1366px) {
  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
  header .hamburger {
    position: relative;
    display: block;
    height: 2.5rem;
    width: 2.5rem;
    padding: 0.25rem;
  }
  header .hamburger .bar-container {
    position: absolute;
    inset: 0;
    margin: auto auto;
    width: 2rem;
    height: fit-content;
  }
  header .hamburger .bar {
    background-color: #ffffff;
    height: 0.125rem;
    width: 100%;
    display: block;
  }
  header .hamburger .bar:nth-of-type(1) {
    margin-bottom: 0.25rem;
    transition: transform 300ms ease-in-out;
  }
  header .hamburger .bar:nth-of-type(2) {
    width: 75%;
    transition: transform 300ms ease-in-out;
  }
  header.active .hamburger .bar:nth-of-type(1) {
    margin-bottom: 0;
    position: absolute;
    inset: 0;
    margin: auto auto;
    transform: rotate(-45deg);
    -webkit-transition: transform 300ms ease-in-out;
    -moz-transition: transform 300ms ease-in-out;
    -ms-transition: transform 300ms ease-in-out;
    -o-transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
  }
  header.active .hamburger .bar:nth-of-type(2) {
    width: 100%;
    position: absolute;
    inset: 0;
    margin: auto auto;
    transform: rotate(45deg);
    -webkit-transition: transform 300ms ease-in-out;
    -moz-transition: transform 300ms ease-in-out;
    -ms-transition: transform 300ms ease-in-out;
    -o-transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
  }
  .header_logo {
    z-index: 1;
  }
}
@media all and (max-width: 1440px) {
  .header-bottom {
    padding: 1.5rem 2rem;
  }
  .header-hours {
    display: none;
  }
  .header_logo svg {
    height: 3rem;
  }
}
@media all and (max-width: 1024px) {
  .header-top {
    padding: 1rem;
  }
  .header_logo svg {
    height: 2.75rem;
  }
}
@media all and (max-width: 768px) {
  .header-bottom {
    display: none;
  }
  .header-top {
    padding: 1rem;
  }
}
nav ul {
  display: flex;
  height: 100%;
  align-items: center;
}
nav ul li a {
  padding: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  color: white;
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  transition: color 300ms ease;
}
nav ul li a:hover {
  color: rgba(255, 255, 255, 0.75);
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  transition: color 300ms ease;
}
nav ul li.active a {
  color: #ffe69b;
}
nav ul li.active a:hover {
  color: #ffe69b;
}
nav ul .btn {
  margin-top: 0;
  margin-left: 2rem;
}

@media all and (max-width: 1366px) {
  nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    max-height: 0;
    -webkit-transition: max-height 300ms ease-in-out, visibility 300ms ease-in-out;
    -moz-transition: max-height 300ms ease-in-out, visibility 300ms ease-in-out;
    -ms-transition: max-height 300ms ease-in-out, visibility 300ms ease-in-out;
    -o-transition: max-height 300ms ease-in-out, visibility 300ms ease-in-out;
    transition: max-height 300ms ease-in-out, visibility 300ms ease-in-out;
    background-color: #242424;
    padding: 2rem;
    z-index: 0;
    overflow: hidden;
    visibility: collapse;
  }
  nav ul {
    margin-top: 7rem;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul li {
    display: block;
    width: 100%;
  }
  nav ul a {
    display: block;
    width: 100%;
  }
  nav ul .btn {
    margin-left: 0;
    margin-top: 1rem;
  }
  .active nav {
    visibility: visible;
    max-height: 100%;
    -webkit-transition: max-height 300ms ease-in-out, visibility 300ms ease-in-out;
    -moz-transition: max-height 300ms ease-in-out, visibility 300ms ease-in-out;
    -ms-transition: max-height 300ms ease-in-out, visibility 300ms ease-in-out;
    -o-transition: max-height 300ms ease-in-out, visibility 300ms ease-in-out;
    transition: max-height 300ms ease-in-out, visibility 300ms ease-in-out;
  }
}
@media all and (max-width: 1024px) {
  nav {
    padding: 1rem;
  }
}
@media all and (max-width: 768px) {
  nav {
    padding: 1rem;
  }
}
h1 {
  font-size: 5rem;
  margin-bottom: 4rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

h3 {
  margin-bottom: 0.5rem;
  font-weight: 300;
  font-size: 1.5rem;
}

h1, h2, h3 {
  text-transform: uppercase;
}

p {
  font-size: 1.15rem;
  line-height: 1.75rem;
  font-weight: 400;
  padding-bottom: 1.5rem;
}

@media all and (max-width: 2560px) {
  h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
  }
  h2 {
    font-size: 1.5rem;
    font-weight: 700;
  }
  h3 {
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 1rem;
  }
}
@media all and (max-width: 1920px) {
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  h2 {
    font-size: 1.75rem;
    font-weight: 700;
  }
  h3 {
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
  }
}
@media all and (max-width: 1366px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  h2 {
    font-size: 1.5rem;
    font-weight: 700;
  }
}
@media all and (max-width: 620px) {
  h1 {
    font-size: 1.75rem;
  }
}
.hero {
  position: relative;
  min-width: 100%;
  height: clamp(40rem, 60vh, 70rem);
}
.hero-index {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 2560px;
  margin: 0 auto;
}
.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.hero-copy {
  position: absolute;
  bottom: 4.375rem;
  left: 4.375rem;
  z-index: 2;
}
.hero-copy * {
  color: #ffffff;
}
.hero-copy p {
  max-width: 35rem;
}

.hero-image-small {
  display: none;
}

@media all and (max-width: 2560px) {
  .hero-copy p {
    max-width: 25rem;
  }
}
@media all and (max-width: 1366px) {
  .hero {
    height: clamp(40rem, 90vh, 70rem);
  }
  .hero-copy {
    bottom: 4rem;
    left: 3.25rem;
  }
  .hero-image-small {
    display: block;
  }
  .hero-image-large {
    display: none;
  }
}
@media all and (max-width: 620px) {
  .hero {
    height: 100vh;
    min-height: 45rem;
  }
  .hero-copy {
    bottom: 4rem;
    left: 2rem;
    max-width: calc(100% - 4rem);
  }
}
@media all and (max-width: 414px) {
  .hero {
    height: clamp(45rem, 95vh, 70rem);
  }
  .hero-copy {
    bottom: 4rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
  }
  .hero-copy p {
    display: none;
  }
}
section {
  width: 100%;
  padding: 2.5rem;
}
.section-index{
  max-width: 1920px;
  margin: 0 auto;
}
@media all and (max-width: 1440px) {
  section {
    padding: 1.5rem;
  }
}
@media all and (max-width: 414px) {
  section {
    padding: 1.25rem;
  }
}
@media all and (max-width: 320px) {
  section {
    padding: 1rem;
  }
}
section h3 {
  font-size: 0.875rem;
}
section .section-copy {
  padding: 2rem;
}

.insturctor_page main {
  min-height: 100vh;
}

.section-bi .section-index {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.75rem;
  height: clamp(30rem, 25vw, 25rem);
}
.section-bi .section-bi-left {
  display: flex;
  flex-wrap: nowrap;
  width: 75%;
  background: #ffffff;
}
.section-bi .section-bi-left .section-copy {
  width: 50%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-bi .section-bi-left .section-copy .btn {
  margin-top: 4rem;
}
.section-bi .section-bi-left-image {
  width: 50%;
}
.section-bi .section-bi-right {
  position: relative;
  width: 25%;
}
.section-bi .section-bi-right-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.section-bi .section-bi-right .section-copy {
  position: relative;
  z-index: 2;
  min-width: 20rem;
}
.section-bi .section-bi-right .section-copy h3, .section-bi .section-bi-right .section-copy h2, .section-bi .section-bi-right .section-copy p {
  color: #ffffff;
}

.section-image-background {
  position: relative;
}
.section-image-background .section-index {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  height: clamp(30rem, 35vw, 35rem);
}
.section-image-background .section-image-background-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-position: right;
}
.section-image-background .section-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  width: calc(25% + 1.75rem);
  min-width: 20rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-image-background .section-copy h2, .section-image-background .section-copy h3 {
  display: block;
  width: 100%;
}
.section-image-background .section-copy .btn {
  align-self: flex-start;
}
.section-image-background .section-copy h2, .section-image-background .section-copy h3, .section-image-background .section-copy p {
  color: #ffffff;
}

.section-image-background-burst .section-index {
  display: flex;
  position: relative;
  background: #6C88A1;
  height: clamp(30rem, 35vw, 35rem);
  overflow: hidden;
}
.section-image-background-burst .image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: clamp(15rem, 66.66%, 80rem);
  height: 100%;
}
.section-image-background-burst .section-image-background-burst-image {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.section-image-background-burst img {
  position: absolute;
  inset: 0;
  margin: auto auto;
  width: clamp(15rem, 40%, 32rem);
  max-height: 80%;
  object-fit: contain;
  object-position: center;
  z-index: 2;
}
.section-image-background-burst .section-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-self: center;
  width: calc(25% + 1.75rem);
  min-width: 20rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-image-background-burst .section-copy h2, .section-image-background-burst .section-copy h3 {
  display: block;
  width: 100%;
}
.section-image-background-burst .section-copy p {
  align-self: stretch;
}
.section-image-background-burst .section-copy .btn {
  align-self: flex-start;
}
.section-image-background-burst .section-copy h2, .section-image-background-burst .section-copy h3, .section-image-background-burst .section-copy p {
  color: #ffffff;
}

.section-text-right {
  background: #E1E1E1;
}
.section-text-right.section-contact .section-text-right-image {
  height: initial;
}
.section-text-right.section-contact .section-index {
  background: #ffffff;
  height: initial;
}
.section-text-right.section-contact .section-copy {
  background: #ffffff;
}
.section-text-right.section-contact .section-copy h2, .section-text-right.section-contact .section-copy h3, .section-text-right.section-contact .section-copy p {
  color: #242424;
}
.section-text-right.section-contact .section-copy h2 a, .section-text-right.section-contact .section-copy h3 a, .section-text-right.section-contact .section-copy p a {
  display: block;
  color: #6C88A1;
  margin-bottom: 1rem;
  text-decoration: underline;
}
.section-text-right.section-contact figure {
  padding: 2rem;
}
.section-text-right.section-contact figure:after {
  position: relative;
}
.section-text-right.section-contact iframe {
  width: 100%;
  height: 100%;
}
.section-text-right .section-index {
  display: flex;
  flex-wrap: nowrap;
  height: clamp(30rem, 35vw, 35rem);
}
.section-text-right .section-text-right-image {
  height: 100%;
  width: calc(66.66% - 1.75rem);
}
.section-text-right .section-copy {
  background: #242424;
  width: calc(33.33% + 1.75rem);
  min-width: 20rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-text-right .section-copy h2, .section-text-right .section-copy h3 {
  display: block;
  width: 100%;
}
.section-text-right .section-copy p {
  align-self: stretch;
}
.section-text-right .section-copy .btn {
  margin-top: 4rem;
}
.section-text-right .section-copy h2, .section-text-right .section-copy h3, .section-text-right .section-copy p {
  color: #ffffff;
}

.section-text-left {
  background: #E1E1E1;
}
.section-text-left .section-index {
  display: flex;
  flex-wrap: nowrap;
  height: clamp(30rem, 35vw, 35rem);
}
.section-text-left .section-text-left-image {
  height: 100%;
  width: calc(66.66% - 1.75rem);
}
.section-text-left .section-copy {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  width: calc(33.33% + 1.75rem);
  min-width: 20rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-text-left .section-copy h2, .section-text-left .section-copy h3 {
  display: block;
  width: 100%;
}
.section-text-left .section-copy p {
  align-self: stretch;
}
.section-text-left .section-copy .btn {
  align-self: flex-start;
  margin-top: 4rem;
}
.section-text-left .section-copy h2, .section-text-left .section-copy h3, .section-text-left .section-copy p {
  color: #242424;
}

.section-grid-top {
  width: 100%;
  display: flex;
}
.section-grid-bottom {
  display: flex;
  width: 100%;
}
.section-grid .grid {
  display: flex;
  width: 50%;
}
.section-grid .section-copy, .section-grid figure {
  width: 50vw;
  height: 25vw;
  max-height: 25rem;
}
.section-grid .section-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.section-grid .section-copy:after {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid #ffffff;
  margin: auto auto;
}
.section-grid .section-copy.copy-blue {
  background: #6C88A1;
}
.section-grid .section-copy.copy-grey {
  background: #242424;
}
.section-grid .section-copy * {
  text-align: center;
  color: #ffffff;
}
.section-grid .grid-link {
  position: relative;
  z-index: 4;
  text-decoration: underline;
  display: inline-block;
  padding: 1rem;
}

.section-text-only .section-index {
  background: #ffffff;
}
.section-text-only .section-copy {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-gallery-items {
  position: relative;
}
.section-gallery-items .section-index {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 3rem;
  min-height: 35rem;
  background: #ffffff;
}
.section-gallery-items .section-image-background-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-position: right;
}
.section-gallery-items .section-copy {
  position: relative;
  z-index: 2;
  width: calc(25% + 1.75rem);
  min-width: 20rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-gallery-items .section-copy h2, .section-gallery-items .section-copy h3 {
  display: block;
  width: 100%;
}
.section-gallery-items .section-copy p {
  align-self: stretch;
}
.section-gallery-items .section-copy .btn {
  align-self: flex-start;
}
.section-gallery-items .section-gallery {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-gallery-items .gallery-item {
  width: 12.5rem;
}
.section-gallery-items .gallery-item .section-gallery-item-image {
  overflow: hidden;
  border-radius: 0.25rem;
  position: relative;
  width: 100%;
  height: 20.75rem;
  margin-bottom: 1.25rem;
}
.section-gallery-items .gallery-item h4 {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  color: #ffffff;
  width: calc(100% - 1.5rem);
  z-index: 2;
  font-size: 0.875rem;
}
.section-gallery-items .gallery-item h3 {
  color: #242424;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 1.2px;
  font-size: 0.9rem;
  line-height: 1.5rem;
}
.section-gallery-items .gallery-item:hover figure:after {
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: background 300ms ease-in-out;
  -moz-transition: background 300ms ease-in-out;
  -ms-transition: background 300ms ease-in-out;
  -o-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

.section-lists {
  margin-bottom: 4rem;
  margin-top: 4rem;
}
.section-lists h2 {
  position: relative;
  background: #6C88A1;
  padding: 2rem;
  color: #ffffff;
  margin-bottom: 0;
}
.section-lists h2:after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid #ffffff;
}
.section-lists .section-index {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
}
.section-lists .section-lists-items-wrapper {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 48rem;
}
.section-lists .section-lists-items-wrapper > div {
  padding: 3rem 2rem;
  background: #ffffff;
  flex-grow: 1;
}
.section-lists .section-lists-item {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 2rem;
}
.section-lists .section-lists-item h3 {
  width: 20rem;
  font-weight: 400;
  font-size: 1rem;
  text-transform: none;
}
.section-lists .section-lists-item .section-lists-item-specs {
  display: flex;
  justify-content: space-between;
  width: 66.66%;
  max-width: 40rem;
}
.section-lists .section-lists-item .section-lists-item-specs span {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}
.section-lists .section-lists-item .price {
  text-align: right;
}
.section-lists .section-lists-item a {
  text-decoration: underline;
  color: #242424;
  font-weight: 700;
}

.section-reverb .section-index {
  background: #ffffff;
}
.section-reverb .reverb-list-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2rem 0;
}

@media all and (max-width: 2560px) {
  .section-lists h2 {
    padding: 2rem;
  }
  .section-lists h2:after {
    inset: 1rem;
  }
  .section-lists .section-lists-items-wrapper > div {
    padding: 2rem;
  }
}
@media all and (max-width: 1920px) {
  .section-lists .section-lists-item {
    flex-direction: column;
    gap: initial;
  }
  .section-lists .section-lists-item h3 {
    width: 100%;
    margin-bottom: 1rem;
  }
  .section-lists .section-lists-item .section-lists-item-specs {
    width: 100%;
    max-width: 100%;
  }
}
@media all and (max-width: 1366px) {
  .section-bi .section-index {
    flex-direction: column;
    height: initial;
  }
  .section-bi .section-index > div {
    width: 100%;
    min-height: 25rem;
  }
  .section-grid .section-copy:after {
    inset: 0.75rem;
  }
  .section-grid h2 {
    font-size: 1.25rem;
  }
  .section-gallery-items .section-index {
    flex-direction: column;
  }
  .section-gallery-items .section-gallery {
    padding: 2rem;
  }
  .section-gallery-items .gallery-item {
    width: calc(25% - 1.5rem);
  }
  .section-gallery-items .section-copy {
    width: initial;
  }
}
@media all and (max-width: 1024px) {
  .section-grid .grid {
    width: 100%;
  }
  .section-grid .section-copy {
    max-width: 30rem;
  }
  .section-grid .section-copy, .section-grid figure {
    height: 35vw;
    max-height: 25rem;
  }
  .section-grid-top {
    flex-direction: column;
  }
  .section-grid-top .section-grid-top-two .section-copy {
    order: 2;
  }
  .section-grid-top .section-grid-top-two figure {
    order: 1;
  }
  .section-grid-bottom {
    flex-direction: column;
  }
  .section-grid-bottom .section-grid-bottom-two {
    order: 1;
  }
  .section-grid-bottom .section-grid-bottom-two .section-copy {
    order: 1;
  }
  .section-grid-bottom .section-grid-bottom-two figure {
    order: 2;
  }
  .section-grid-bottom .section-grid-bottom-one {
    order: 2;
  }
  .section-gallery-items .gallery-item {
    width: calc(33% - 1.2rem);
  }
}
@media all and (max-width: 768px) {
  .section-image-background-burst .section-index {
    justify-content: center;
    position: relative;
    height: 52rem;
  }
  .section-image-background-burst .section-copy {
    padding-top: 32rem;
  }
  .section-image-background-burst .image-wrapper {
    bottom: initial;
    left: 0;
    height: 52%;
    width: clamp(15rem, 108%, 80rem);
  }
  .section-gallery-items .gallery-item {
    width: calc(50% - 1.2rem);
  }
  .section-lists .section-index {
    flex-direction: column;
  }
  .section-lists .section-lists-items-wrapper {
    width: 100%;
  }
}
@media all and (max-width: 620px) {
  .section-bi .section-bi-left {
    flex-direction: column;
  }
  .section-bi .section-bi-left figure {
    width: 100%;
    order: 1;
    height: 25rem;
  }
  .section-bi .section-bi-left .section-copy {
    width: 100%;
    order: 2;
    min-height: 26rem;
  }
  .section-bi .section-index .section-bi-right {
    min-height: 34rem;
  }
  .section-bi .section-index .section-bi-right .section-copy {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section-text-left .section-index {
    flex-direction: column;
    height: initial;
  }
  .section-text-left .section-index figure {
    width: 100%;
    order: 1;
    height: 25rem;
  }
  .section-text-left .section-index .section-copy {
    width: 100%;
    order: 2;
    min-height: 26rem;
    width: 100%;
    min-width: initial;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section-text-right .section-index {
    flex-direction: column;
    height: initial;
  }
  .section-text-right .section-index figure {
    width: 100%;
    order: 1;
    height: 25rem;
  }
  .section-text-right .section-index .section-copy {
    width: 100%;
    order: 2;
    min-height: 26rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section-grid .grid {
    flex-direction: column;
    margin-bottom: 1.5rem;
  }
  .section-grid .section-copy, .section-grid figure {
    width: 100%;
    max-width: initial;
  }
  .section-grid-top .section-grid-top-two figure {
    order: 1;
    height: 25rem;
  }
  .section-grid-top .section-grid-top-two .section-copy {
    order: 2;
    height: 12.5rem;
  }
  .section-grid-top .section-grid-top-one figure {
    order: 1;
    height: 25rem;
  }
  .section-grid-top .section-grid-top-one .section-copy {
    order: 2;
    height: 12.5rem;
  }
  .section-grid-bottom {
    order: 1;
  }
  .section-grid-bottom .section-grid-bottom-one figure {
    order: 1;
    height: 25rem;
  }
  .section-grid-bottom .section-grid-bottom-one .section-copy {
    order: 2;
    height: 12.5rem;
  }
  .section-grid-bottom {
    order: 2;
  }
  .section-grid-bottom .section-grid-bottom-two figure {
    order: 1;
    height: 25rem;
  }
  .section-grid-bottom .section-grid-bottom-two .section-copy {
    order: 2;
    height: 12.5rem;
  }
  .section-gallery-items .section-gallery {
    justify-content: center;
  }
  .section-gallery-items .gallery-item {
    width: clamp(12.5rem, 100%, 20rem);
  }
  .section-lists .section-lists-item .section-lists-item-specs {
    flex-direction: column;
  }
  .section-lists .section-lists-item .price {
    margin-top: 1rem;
    margin-bottom: 4rem;
  }
}
.page-index .hero figure {
  background-position: right;
}
.page-index .section-image-background-burst figure:after {
  background: none;
}
.page-index figure {
  flex-grow: 1;
}

.page-rentals .section-text-left .section-index {
  height: initial;
}
.page-rentals .section-text-left .section-text-left-image {
  height: initial;
}

@media all and (max-width: 1366px) {
  .page-index .hero figure {
    background-position: center;
  }
  .page-rentals .section-text-left .section-index {
    height: initial;
  }
  .page-rentals .section-text-left .section-text-left-image {
    height: initial;
  }
}
.reverb-embedded-listings {
  list-style-type: none !important;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.reverb-embedded-listing {
  display: flex;
  position: relative;
  width: calc(16.66% - 1.66rem);
  list-style-type: none;
  margin-bottom: 3rem;
  background: #ffffff;
  box-shadow: 1px 11px 33px -8px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 11px 33px -8px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 11px 33px -8px rgba(0, 0, 0, 0.2);
}

.reverb-embedded-listing a {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #0080a5;
}

.reverb-embedded-listing-info {
  padding: 1em;
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.reverb-embedded-listing-title {
  display: block;
  width: 100%;
  color: #242424;
  font-size: 1rem;
  overflow: hidden;
  flex-grow: 1;
  padding-bottom: 2rem;
}

.reverb-embedded-listing-price {
  margin-top: auto;
  font-weight: bold;
  color: #6C88A1;
  display: block;
  font-size: 1.25rem;
}

.reverb-embedded-listing img {
  position: relative;
  border-radius: 0.25rem;
  width: 100%;
  height: clamp(15rem, 20vw, 25rem);
  object-fit: cover;
  object-position: center;
}

.reverb-embedded-listing img:hover {
  opacity: 0.85;
}

/* Horizontal Comparison Shopping styles */
ul.reverb-embedded-comparison-shopping-pages-horizontal {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, Sans-Serif;
  display: inline-block;
}

ul.reverb-embedded-comparison-shopping-pages-horizontal li {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  line-height: 18px;
}

ul.reverb-embedded-comparison-shopping-pages-horizontal .reverb-embedded-comparison-shopping-page-left-content {
  float: left;
  width: 120px;
  height: 120px;
}

ul.reverb-embedded-comparison-shopping-pages-horizontal .reverb-embedded-comparison-shopping-page-right-content {
  float: right;
  width: 400px;
  height: 120px;
  box-sizing: border-box;
  padding: 10px 15px 10px 15px;
}

ul.reverb-embedded-comparison-shopping-pages-horizontal a {
  text-decoration: none;
}

ul.reverb-embedded-comparison-shopping-pages-horizontal a:hover img {
  opacity: 0.9;
}

ul.reverb-embedded-comparison-shopping-pages-horizontal a:hover li {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

ul.reverb-embedded-comparison-shopping-pages-horizontal .reverb-embedded-comparison-shopping-page-prices {
  color: #333;
  font-size: 14px;
  margin-top: 8px;
}

ul.reverb-embedded-comparison-shopping-pages-horizontal .reverb-embedded-comparison-shopping-page-price {
  margin-right: 10px;
}

ul.reverb-embedded-comparison-shopping-pages-horizontal .reverb-embedded-comparison-shopping-page-price-amount {
  font-weight: bold;
  color: #f6870f;
}

ul.reverb-embedded-comparison-shopping-pages-horizontal .reverb-embedded-comparison-shopping-page-summary {
  overflow: hidden;
  width: 100%;
  height: 38px;
  color: #888;
}

ul.reverb-embedded-comparison-shopping-pages-horizontal .reverb-embedded-comparison-shopping-page-title {
  display: block;
  color: #333;
  font-weight: bold;
  margin: 5px 0 8px 0;
  font-size: 16px;
  height: 19px;
  overflow: hidden;
}

/* Verticle Comparison Shopping Page styles */
ul.reverb-embedded-comparison-shopping-pages-vertical {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, Sans-Serif;
  display: inline-block;
}

ul.reverb-embedded-comparison-shopping-pages-vertical li {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  line-height: 18px;
}

ul.reverb-embedded-comparison-shopping-pages-vertical a {
  text-decoration: none;
}

.reverb-embedded-comparison-shopping-page-image-overlay {
  position: relative;
  width: 200px;
  height: 200px;
}

.reverb-embedded-comparison-shopping-page-image-overlay img {
  position: absolute;
  top: 0;
}

.reverb-embedded-comparison-shopping-page-image-overlay-gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 62%, rgb(0, 0, 0) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(62%, rgba(0, 0, 0, 0)), color-stop(100%, rgb(0, 0, 0))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 62%, rgb(0, 0, 0) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 62%, rgb(0, 0, 0) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 62%, rgb(0, 0, 0) 100%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 62%, rgb(0, 0, 0) 100%); /* W3C */
  opacity: 0.8;
}

ul.reverb-embedded-comparison-shopping-pages-vertical .reverb-embedded-comparison-shopping-page-prices {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  color: #fff;
  bottom: 0;
  opacity: 0.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.reverb-embedded-comparison-shopping-page-bottom-content {
  position: relative;
  width: 200px;
}

ul.reverb-embedded-comparison-shopping-pages-vertical a:hover img {
  opacity: 0.9;
}

ul.reverb-embedded-comparison-shopping-pages-vertical a:hover li {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

ul.reverb-embedded-comparison-shopping-pages-vertical .reverb-embedded-comparison-shopping-page-summary {
  display: none;
}

ul.reverb-embedded-comparison-shopping-pages-vertical .reverb-embedded-comparison-shopping-page-title {
  display: block;
  margin: 12px 0 12px 0;
  box-sizing: border-box;
  padding: 0 10px 0 10px;
  color: #333;
  font-weight: bold;
  height: 36px;
  overflow: hidden;
}

@media all and (max-width: 1920px) {
  .reverb-embedded-listing {
    width: calc(20% - 1.6rem);
  }
}
@media all and (max-width: 2560px) {
  .reverb-embedded-listing {
    width: calc(25% - 1.5rem);
  }
}
@media all and (max-width: 1440px) {
  .reverb-embedded-listing {
    width: calc(25% - 1.5rem);
  }
}
@media all and (max-width: 1366px) {
  .reverb-embedded-listing {
    width: calc(33.33% - 1.34rem);
  }
}
@media all and (max-width: 1024px) {
  .reverb-embedded-listing {
    width: calc(50% - 1rem);
  }
}
@media all and (max-width: 620px) {
  .reverb-embedded-listing {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .reverb-embedded-listing img {
    height: clamp(15rem, 55vw, 25rem);
  }
}
.section-bio h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.section-bio h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 4rem;
}
.section-bio .section-index {
  position: relative;
  display: flex;
  gap: 4rem;
  align-items: stretch;
  justify-content: center;
  max-width: 1366px;
  margin: 0 auto;
}
.section-bio figure {
  position: sticky;
  top: 13.5rem;
  min-height: 50rem;
  width: 35rem;
  min-width: 40rem;
  flex-grow: 1;
}
.section-bio .section-copy {
  max-width: 1440px;
}

@media all and (max-width: 2560px) {
  .section-bio figure {
    max-height: 48rem;
    /* min-height: initial; */
  }
}
@media all and (max-width: 1920px) {
  .section-bio .section-index {
    gap: 2rem;
  }
  .section-bio figure {
    top: 11rem;
  }
}
@media all and (max-width: 1366px) {
  .section-bio {
    margin-top: 9rem;
  }
  .section-bio h1 {
    font-size: 2rem;
  }
  .section-bio h2 {
    font-size: 1rem;
  }
  .section-bio .section-index {
    gap: 1rem;
  }
  .section-bio figure {
    width: 22rem;
    min-width: initial;
    max-width: initial;
    height: 22rem;
    min-height: initial;
    max-height: initial;
    flex-grow: 0;
    display: inline-block;
  }
  .section-bio .section-copy {
    display: inline-block;
    width: calc(100% - 24rem);
  }
}
@media all and (max-width: 968px) {
  .section-bio h1 {
    font-size: 1.5rem;
  }
  .section-bio .section-index {
    flex-direction: column;
  }
  .section-bio figure {
    /* width: 100%; */
    height: 20rem;
    position: relative;
    top: 0;
  }
  .section-bio .section-copy {
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .section-bio {
    margin-top: 5rem;
  }
}
footer nav ul li a.btn {
  display: none;
}
footer .footer-index {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  background: #242424;
  width: 100%;
  padding: 1.25rem;
}
footer .footer-store-info {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 3rem;
}
footer .footer-store-info .footer_logo {
  margin-bottom: 4rem;
  display: block;
}
footer .footer-store-info .footer_logo svg {
  height: 4rem;
}
footer .footer-store-info > div a {
  display: block;
  color: #ffffff;
}
footer .footer-store-info > div a span {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
footer .footer-store-info > div a:nth-of-type(1) {
  margin-bottom: 2rem;
}
footer .footer-links {
  padding: 3rem;
}
footer .footer-sub {
  padding: 1rem 3rem;
  background-color: rgba(36, 36, 36, 0.95);
}
footer .footer-sub * {
  color: #ffffff;
}

@media all and (max-width: 1920px) {
  footer .footer-index {
    flex-wrap: nowrap;
  }
  footer .footer-index nav ul {
    align-items: flex-start;
    flex-direction: column;
  }
  footer .footer-index nav ul a {
    padding: 0.75rem;
    display: block;
    text-align: start;
  }
}
@media all and (max-width: 1366px) {
  footer .footer-index nav {
    position: relative;
    visibility: visible;
    height: initial;
    max-height: initial;
    z-index: 1;
    padding: 0;
  }
  footer .footer-index nav ul {
    margin-top: 0;
  }
  footer .footer-links {
    padding-left: 0;
  }
}
@media all and (max-width: 768px) {
  footer .footer-index {
    flex-direction: column;
  }
}

.page-inquire .section-text-only{
  margin-top: 10rem;
}
.page-inquire form{
  width: 100%;
  max-width: 32rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.page-inquire .form_row{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page-inquire  form label{
  margin-bottom: 1rem;
}
.page-inquire  form input{
  height: 3rem;
  width: 100%;
  -webkit-appearance: none;
  background-color: #E1E1E1;
  box-shadow: none;
  border: none;
  margin-bottom: 1rem; 
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
}

.page-inquire  form input[type="submit"]{
  background-color: #242424;
  color: white;
  cursor: pointer;
}

.page-inquire  form input[type="submit"]:hover{
  background-color: #6C88A1;
  color: white;
}

.page-inquire .select_row{
  width: 100%;
}
.page-inquire .select_row .form_row{
  width: 100%;
}

.page-inquire select{
  height: 3rem;
  width: 100%;
  -webkit-appearance: none;
  background-color: #E1E1E1;
  box-shadow: none;
  border: none;
  margin: 1rem 0 2rem; 
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
}

.page-inquire select:hover{
  cursor: pointer;
}

/*# sourceMappingURL=joined.css.map */
