/* General To Others */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --cinema-red: rgb(225, 25, 44);
  --hollywood-gold: #f8e231;
  --midnight-blue: #1a1d23;
}

body {
  position: relative;
  font-family: "poppins", sans-serif;
  height: 100vh;
  /* padding: 80.35px 0 0 0; */
  padding: 80.35px 0 90px 0;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}

header {
  background-color: var(--cinema-red);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

header .logoDiv {
  width: 80%;
  max-width: 300px;
  height: 100%;
  margin-left: -6px;
}

header .logoDiv img {
  width: 100%;
  height: 100%;
}

header .iconDiv {
  height: 100%;
  margin-right: 16px;
}

header .iconDiv i {
  font-size: 25px;
  margin-top: 23px;
  color: #fff;
}

.menuItemDiv {
  background-color: var(--cinema-red);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  display: none;
  position: absolute;
  top: 80.35px;
  left: 0;
  right: 0;
  transition: 0.5s;
}

.menuItemDiv a {
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
}

.openMenu {
  display: flex;
  animation: menuOut 0.5s ease;
  height: 50px;
}

@keyframes menuOut {
  from {
    height: 10px;
  }
  to {
    height: 50px;
  }
}

.closeMenu {
  display: flex;
  animation: menuIn 0.5s ease;
  height: 0;
  transition: 0.5s;
}

@keyframes menuIn {
  from {
    height: 50px;
  }
  to {
    height: 0px;
  }
}

.modalBgDiv {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
  z-index: 1;
}

main {
  background: url(seats.jpg) no-repeat center center/ cover;
  height: 82vh;
  width: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight-blue);
}

main .FAQs_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: aliceblue;
  width: 90%;
  max-width: 400px;
  max-height: 500px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  overflow: scroll;
}

main .FAQs_container .FAQs {
  width: 100%;
}

main .FAQs_container h2 {
  font-size: 1.2rem;
  text-align: center;
  margin: 0.5rem 0 0.7rem 0;
}

main .FAQs_container .FAQs .question {
  font-weight: bold;
  font-size: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--midnight-blue);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
}

main .FAQs_container .FAQs .question::after {
  content: "+";
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  right: -2px;
}

main .FAQs_container .FAQs .answer {
  font-weight: bold;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0.5rem 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}

main .FAQs_container .FAQs .answer ul {
  list-style-type: square;
  margin-left: 20px;
}

main .FAQs_container .FAQs .answer h4 {
  text-align: center;
  font-size: 1rem;
}

.FAQs_container .FAQs.active .question {
  font-size: 0.8rem;
}

.FAQs_container .FAQs.active .answer {
  height: 100px;
}

main .FAQs_container .FAQs.active .question::after {
  content: "-";
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  right: -2px;
  transition: 0.5s;
}

footer {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 90px;
  background-color: var(--cinema-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 0.5rem;
}

footer a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  font-family: "poppins", Sans-Serif;
}

footer .last {
  color: #fff;
  font-size: 0.84rem;
  font-weight: bold;
  font-family: "poppins", Sans-Serif;
}

/* End of General */
