.home-poster {
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(55, 54, 54, 0.7), rgba(247, 107, 107, 0.15)), url("../img/home-poster.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home-poster .home-poster-content {
  text-align: center;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
}
.home-poster .home-poster-content h1 {
  font-size: 3.3rem;
  letter-spacing: 2px;
  opacity: 0;
  color: var(--yellow);
  animation: fadeIn 1s ease-in forwards;
  font-family: "Saira", sans-serif;
  font-weight: 500;
}
.home-poster .home-poster-content h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  animation: fadeIn 1s ease-in forwards;
  animation-delay: 1s;
  opacity: 0;
}
.home-poster .home-poster-content #down-svg {
  width: auto;
  height: 30px;
  opacity: 0;
  animation: arrowDown 2s ease-in-out infinite;
  animation-delay: 2s;
}
.home-poster .home-poster-content #down-svg #path1 {
  fill: var(--yellow);
}
.home-poster .home-poster-content a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.2rem;
  padding: 10px 20px;
  border: 2px solid var(--yellow);
  border-radius: 15px;
  opacity: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  animation: fadeIn 1s ease-in forwards;
  animation-delay: 2s;
}
.home-poster .home-poster-content a:hover {
  background-color: var(--yellow20);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrowDown {
  0% {
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 850px) {
  .home-poster .home-poster-content h1 {
    font-size: 2.5rem;
  }
  .home-poster .home-poster-content h3 {
    font-size: 1.2rem;
  }
  .home-poster .home-poster-content a {
    font-size: 1rem;
  }
}
@media (max-width: 550px) {
  .home-poster .home-poster-content h1 {
    font-size: 2rem;
  }
  .home-poster .home-poster-content h3 {
    font-size: 1rem;
  }
  .home-poster .home-poster-content a {
    font-size: 0.8rem;
  }
}
.why_tab .why_container {
  height: auto;
  margin-left: auto;
  margin-right: auto;
  /* padding-bottom: 10vh; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.why_tab .why_container .why_sub {
  width: 30%;
  height: 15rem;
  margin-top: 8rem;
  text-align: center;
  border-radius: 1.5em;
  /* box-shadow: 0.1px 0.1px 2px rgba(0, 0, 0, 0.1), -0.1px -0.1px 2px rgba(0, 0, 0, 0.1); */
}
.why_tab .why_container .why_sub:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(0, 0, 0, 0.1);
}
.why_tab .why_container .why_sub h3 {
  font-size: 1.5em;
  padding: 1em 0;
  color: var(--black-80);
}
.why_tab .why_container .why_sub p {
  color: var(--black-70);
  width: 75%;
  font-size: 1.1em;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1030px) {
  .why_tab .why_container .why_sub h3 {
    font-size: 1.4em;
  }
  .why_tab .why_container .why_sub p {
    font-size: 1em;
  }
}
@media (max-width: 850px) {
  .why_tab .why_container .why_sub {
    width: 40%;
  }
}
@media (max-width: 550px) {
  .why_tab .why_container .why_sub {
    width: 100%;
  }
}
.offer-tab {
  background-color: var(--black20);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
}
.offer-tab .offer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5rem;
  gap: 2rem;
}
.offer-tab .offer-container .offer {
  position: relative;
  width: 48%;
  clip-path: inset(0px 0px round 30px 0);
}
.offer-tab .offer-container .offer img {
  width: 100%;
  height: 100%;
}
.offer-tab .offer-container .offer .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: 0.5s ease;
  background-color: rgba(248, 209, 53, 0.9490196078);
}
.offer-tab .offer-container .offer:hover .overlay {
  opacity: 1;
}
.offer-tab .offer-container .offer:hover .overlay .text {
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 500;
  width: 80%;
  text-align: center;
  line-height: 2rem;
}
.offer-tab .offer-container .offer:hover .overlay .text span {
  font-size: 1.4rem;
  font-weight: 600;
}
.offer-tab .offer-container .offer:hover .overlay a {
  color: var(--white);
  border: var(--blue) 2px solid;
  padding: 5px 20px;
  border-radius: 10px;
  text-decoration: none;
}
.offer-tab .offer-container .offer:hover .overlay a:hover {
  background-color: rgba(51, 51, 51, 0.2156862745);
}

@media (max-width: 1030px) {
  .offer-tab .offer-container .offer:hover .overlay .text {
    font-size: 1.1rem;
    line-height: 1.5rem;
    width: 90%;
  }
}
@media (max-width: 850px) {
  .offer-tab .offer-container {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .offer-tab .offer-container .offer {
    width: 80%;
  }
}
@media (max-width: 550px) {
  .offer-tab .offer-container .offer {
    width: 100%;
  }
  .offer-tab .offer-container .offer .overlay {
    gap: 20px;
  }
  .offer-tab .offer-container .offer:hover .overlay .text {
    font-size: 1rem;
    line-height: 1.2rem;
    width: 90%;
  }
}
/* Faq */
.faq_sec .h1_heading {
  margin-bottom: 5rem;
}

.faq_q_a {
  width: 60vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
}

.faq_q_a .faq_q {
  width: 100%;
  height: 2.3rem;
  font-size: 1.3em;
  font-weight: 600;
  padding: 0.5em 1.5em;
  border-bottom: 2px solid var(--black20);
}

.faq_q_a .faq_q span {
  width: 15px;
  height: 15px;
  float: right;
  border: 2px solid var(--black90);
  border-top: none;
  border-left: none;
  margin-right: 1vw;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}

.faq_q_a.faq_active .faq_q span {
  transform: rotate(225deg);
}

.faq_q_a .faq_a {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.3rem;
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  position: relative;
  padding-left: 2vw;
  /* background-color: rgba(185, 183, 183, 0.1); */
  transition: max-height 0.5s ease-in-out;
}

.faq_q_a.faq_active .faq_a {
  max-height: 200px;
}

.faq_q_a .faq_a::before {
  content: "";
  position: absolute;
  width: 0.3em;
  height: 80%;
  background-color: var(--yellow);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (max-width: 1030px) {
  .faq_q_a .faq_a {
    font-size: 1rem;
  }
}
@media (max-width: 550px) {
  .faq_q_a .faq_q {
    font-size: 1.1em;
  }
  .faq_q_a .faq_a {
    font-size: 0.9rem;
    margin-top: 1.8rem;
  }
}
@media (max-width: 380px) {
  .faq_q_a .faq_q {
    font-size: 1em;
  }
  .faq_q_a .faq_a {
    font-size: 0.8rem;
    margin-top: 2.5rem;
  }
  .faq_q_a.faq_active .faq_a {
    max-height: auto;
  }
}
#enquiry-pop {
  width: 70%;
  height: 40rem;
  border-radius: 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  align-items: center;
  justify-content: center;
  z-index: 999;
  display: none;
}
#enquiry-pop .pop-left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#enquiry-pop .pop-left .close-btn {
  margin-top: 1.5rem;
  margin-right: 80%;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--black60);
}
#enquiry-pop .pop-left .close-btn:hover {
  color: var(--black);
}
#enquiry-pop .pop-left img {
  width: 80%;
  height: auto;
  padding-bottom: 30%;
}
#enquiry-pop .pop-right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#enquiry-pop .pop-right h2 {
  font-size: 2.5rem;
  color: var(--black);
}
#enquiry-pop .pop-right h3 {
  font-size: 1.2rem;
  color: var(--black60);
  margin: 0.7rem 0 1.5rem 0;
}
#enquiry-pop .pop-right form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
#enquiry-pop .pop-right form input, #enquiry-pop .pop-right form textarea {
  background-color: var(--black20);
  text-decoration: none;
  border: none;
  width: 80%;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: 5px;
}
#enquiry-pop .pop-right form input:focus, #enquiry-pop .pop-right form textarea:focus {
  outline: 1px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}
#enquiry-pop .pop-right form textarea {
  height: 10rem;
  resize: none;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
#enquiry-pop .pop-right form button {
  background-color: var(--blue);
  color: var(--white);
  border: none;
  width: 80%;
  height: 2.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
}
#enquiry-pop .pop-right form button:hover {
  background-color: var(--blue20);
}

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