#about-section {
  z-index: 0;
  /* background-color: black; */
  background-color: rgba(0, 0, 0, 0.88);
}

.content-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  padding-bottom: 0px !important;
  border-top: 1px solid var(--gold-dark);
  /* border-bottom: 1px solid var(--gold-dark); */
}

.home-text {
  font-size: 22px;
  font-weight: 100;
  margin-top: 80px;
  text-align: center;
  width: 70%;
  line-height: 140%;
  max-width: 1000px;
}

.noir-text {
  color: var(--gold);
  display: inline;
  font-size: 26px;
}

.white {
  color: var(--white);
  display: inline;
}

.centered-div {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  letter-spacing: 1px;
  margin: 80px;
  max-width: 1500px;
}

.third-div {
  width: 30%;
}

.images-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.gallery-image {
  width: 300px;
  height: 450px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-image:hover img {
  opacity: 0.9;
}

.modal-div {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hidden {
  display: none !important;
}

.image-border {
  border: 1px solid var(--gold-dark);
}

.image-border:hover {
  border-color: var(--gold);
}

#about-text {
  line-height: 150%;
  font-size: 18px;
  margin-bottom: 60px;
}

.title-text, .title-text h1,h2,h3 {
  display: inline;
  color: var(--gold);
  font-weight: 900;
  font-size: 18px;
  margin: 0;
}

.detail-text {
  margin: 5px 0 50px 0;
  font-size: 18px;
  line-height: 150%;
}

.flex-row {
  display: flex;
}

.half-text {
  width: 50%;
}

.text-align-right {
  text-align: right;
}

.contact-link {
  text-decoration: none;
  color: var(--white);
  margin-left: 20px;
}

.contact-link:hover {
  text-decoration: underline;
}

#reservation-button-anchor-div {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
}

.button-anchor {
  text-decoration: none;
}

.button-anchor:hover .button {
  background-color: var(--gold);
  color: black;
}

.button {
  border: 1px solid var(--gold);
  background-color: black;
  color: var(--gold);
  border-radius: 15px;
  padding: 10px 15px;
  font-size: 16px;
  text-align: center;
  letter-spacing: 2px;
}

#form-div {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#mobile-widget {
  display: none;
}

.empty-section {
  height: 100vh;
}

@media only screen and (max-width: 1350px) {
  .home-text {
    margin-top: 60px;
  }

  .centered-div {
    margin: 60px;
  }

  #center-info {
    width: 40%;
  }

  .gallery-image {
    width: 200px;
    height: 300px;
  }

  #reservation-button-anchor-div, #form-div {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 1100px) {
  .centered-div {
    width: 90%;
  }

  .home-text {
    font-size: 22px;
    width: 80%;
  }

  .noir-text {
    font-size: 26px;
  }

  #left-images {
    display: none;
  }

  #right-images {
    display: none;
  }

  #desktop-widget {
    display: none;
  }

  #mobile-widget {
    display: block;
  }

  #center-info {
    width: 65%;
  }
}

@media only screen and (max-width: 850px) {
  #noir-about-desktop {
    display: none;
  }

  #noir-about-mobile {
    display: block;
  }

  .centered-div {
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    width: 80%;
  }

  .half-div {
    width: 100%;
  }
}

@media only screen and (max-width: 725px) {
  .break {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .home-text {
    margin-top: 50px;
    font-size: 20px;
    width: 85%;
  }

  .noir-text {
    font-size: 24px;
  }

  .centered-div {
    margin: 50px 0;
    width: 85%;
  }

  .detail-text {
    margin-bottom: 40px;
  }

  #noir-about-mobile {
    height: 300px;
  }

  #center-info {
    width: 85%;
  }
}

#img-carousel-container {
  width: 100%;
  display: flex;
  height: 640px;
  flex-direction: column;
  align-items: center;

  overflow: hidden;
}

#img-carousel {
  width: 800px;
  height: 500px;
  border: 1px solid var(--gold-dark);
}

.carousel-img-div img {
  width: 798px;
  height: 498px;
}

.img-carousel-background-div {
  overflow: hidden;
  background-color: black;
}

.img-carousel-background {
  filter: blur(8px);
  -webkit-filter: blur(8px);
  object-position: center;
  object-fit: cover;
  min-width: 798px;
  min-height: 498px;
  opacity: 0.35;
}

.carousel-img-div > img {
  position: relative;
  top: -498px;
  object-fit: contain;
}

.slick-prev, .slick-next {
  transform: scaleY(2);
  top: calc(50% - 20px);
}

.slick-prev:before, .slick-next:before, .slick-dots li button:before {
  color: var(--gold) !important;
}

.slick-prev:before {
  content: "<" !important;
}

.slick-next:before {
  content: ">" !important;
}

@media only screen and (max-width: 1350px) {
  #img-carousel-container {
    height: 620px;
  }
}

@media only screen and (max-width: 1100px) {
  #img-carousel-container {
    height: 600px;
  }
}

@media only screen and (max-width: 1000px) {
  #img-carousel-container {
    height: 400px;
  }

  #img-carousel {
    width: 500px;
    height: 300px;
  }

  .carousel-img-div img {
    width: 498px;
    height: 298px;
  }

  .img-carousel-background {
    min-width: 498px;
    min-height: 298px;
  }

  .carousel-img-div > img {
    top: -298px;
  }
}

@media only screen and (max-width: 850px) {
  .align-right {
    text-align: right;
  }
}

@media only screen and (max-width: 600px) {
  #img-carousel-container {
    /* display: none; */
  }

  #img-carousel-container {
    height: 325px;
  }

  #img-carousel {
    width: 335px;
    max-width: 100vw;
    height: 250px;
  }

  .carousel-img-div img {
    width: 333px;
    max-width: calc(100vw - 2px);
    height: 248px;
  }

  .img-carousel-background {
    min-width: 333px;
    min-height: 248px;
  }

  .carousel-img-div > img {
    top: -248px;
  }

  .slick-prev:before {
    content: "" !important;
  }

  .slick-next:before {
    content: "" !important;
  }

  .slick-prev {
    left: 0;
  }

  .slick-next {
    right: 0;
  }
}

@media only screen and (max-width: 335px) {
  .img-carousel-background {
    min-width: calc(100vw - 2px);
  }
}

@media only screen and (max-width: 400px) {
  .bottom-spacer {
    margin-bottom: 10px;
  }
}

.menu-buttons-div {
  display: flex;
  justify-content: space-between;
  width: 400px;
  margin-bottom: 50px;
}

.menu-buttons-div .button {
  font-size: 18px;
  padding: 8px 15px;
}

@media only screen and (max-width: 600px) {
  .menu-buttons-div {
    width: auto;
    flex-direction: column;
    align-items: center;
    height: 110px;
    margin-bottom: 50px;
  }
}

.bottom-image {
  width: 100vw;
  height: 100vh;
  background-image: url("/static/images/noir-interior-main.bef187a6d68d.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

#club-reservation-button-anchor-div {
  margin-top: 25px;
}

@media only screen and (max-width: 600px) {
  #club-reservation-button-anchor-div {
    margin-top: 20px;
  }
}

.res-modal-div {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.res-modal-window {
  width: 500px;
  max-width: 100vw;
  padding: 20px 50px 50px 50px;
  background-color: black;
  border: 1px solid var(--gold-dark);
  box-sizing: border-box;
  max-height: 85vh;
  overflow: scroll;
}

.res-modal-window-cross {
  position: relative;
  top: 10px;
  left: calc(100% - 40px);
  width: 50px;
  height: 50px;
}

.res-modal-window-cross:hover {
  cursor: pointer;
}

.res-paragraph {
  margin: 20px 0;
  font-size: 18px;
}

.res-form-div label {
  font-size: 18px;
}

.res-form-div input, textarea, select {
  background-color: black;
  border-color: var(--white);
  font-family: 'Champagne & Limousines';
  font-size: 18px;
  height: 2em;
  margin: 5px 0;
  padding: 0 5px;
  box-sizing: border-box;
  color: var(--white);
  display: table-cell;
  width: 100%;
  letter-spacing: 0.5px;
  -webkit-appearance: none;
}

input:focus, textarea:focus, select:focus {
  outline: 0;
  border-color: var(--gold) !important;
}

textarea {
  height: 100%;
  line-height: 100%;
  padding: 5px !important;
}

.res-form-div .button {
  border: 1px solid var(--gold);
  background-color: black;
  color: var(--gold);
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 20px;
  text-align: center;
  letter-spacing: 2px;
  height: auto;
  text-transform: uppercase;
  width: 100%;
  background: none !important;
  margin-top: 25px;
}

#submit-button:hover {
  cursor: pointer;
}

.fieldWrapper {
  margin-bottom: 15px;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
    margin-top: 5px;
}

.phone-field-ext, #id_phone_1 {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=date], input[type=time] {
  display:block;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  line-height: 1.8em;
}

.no-margin {
  margin: 0 !important;
}
