#contact-form-popup {
  display: none;
  position: relative;
  z-index: 100;
}

#contact-form-background {
  width: 100vw;
  height: 100vh;
  background: #aaa;
  z-index: 20;
  opacity: 50%;
}

#contact-form-container {
  width: 100vw;
  height: 100vh;
  z-index: 25;
}

#contact-form {
  width: 100%;
  height: 100%;
}

.form-label {
  font-size: 20px;
}

#contact-form-open-button {
  background: #9b002c;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}

#contact-form-send-button {
  background: #9b002c;
  color: #fff;
  font-size: 18px;
  width: 100%;
}

#contact-form-close-button {
  position: relative;
  width: 30px;
  height: 30px;
  background-size: 100%;
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  .form-label {
    font-size: 30px;
  }

  #contact-form-send-button {
    font-size: 30px;
  }

  #contact-form-close-button {
    position: relative;
    width: 40px;
    height: 40px;
  }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  #contact-form {
    width: 85%;
    height: 85%;
    min-width: 992px;
    min-height: 765px;
  }

  .form-label {
    font-size: 16px;
  }

  #contact-form-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
  }

  #contact-form-open-button {
    font-size: 16px;
    width: fit-content;
  }

  #contact-form-send-button {
    font-size: 20px;
    width: fit-content;
  }
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
}

/* XXX-Large devices*/
@media (min-width: 1620px) {
}

#footer-bar {
  background-color: #333;
  color: white;
  position: relative; 
  z-index: 10; 
  padding: 1rem;
}
#left-button, #right-button {
  margin: 0 1rem;
  z-index: 20; 
  position: relative;
  border: #9b002c;
}

#left-button,#right-button {
  background: #9b002c;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}
.modal h2,h6{
  text-align: center;
}

footer {
  position: relative;
  z-index: 1;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin:auto;
  max-width: 80%;
  overflow: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.modal-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: none;
  cursor: pointer;
}


