@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url(montessori.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 1.2rem;
  font-family: "Sansation", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background-color: #FEFFF2;
}

.top-section {
  position: relative;
  background-color: #FEFFF2;
}

.lang-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0%;
  margin: 10px 20px 0 0;
  z-index: 9000;
}

.lang-img {
  width: 30px;
  height: auto;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lang-img:hover {
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
}

.lang-img:active {
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
}

.lang-hidden {
  display: none !important;
}

#ribam-logo-div {
  position: absolute;
  width: 10%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 0 0 20px;
  padding: 5px;
}

#ribam-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.titles {
  text-align: center;
}

.sub-title {
  text-align: center;
  margin-bottom: 40PX;
}

#title, #title-date {
  color: #f1683a;
  text-shadow: 4px 4px 16px rgba(138, 230, 239,.9),
    -4px -4px 8px rgba(138, 230, 239,.9), 
    0 0 4px rgba(138, 230, 239,1);
  font-size: 2.5rem;
  line-height: 1.3em;
}

#title {
  margin: 20px 0 0 0;
}

#title-date {
  margin-bottom: 20px;
}


/* Styles for section "Highlights" */
.highlights {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
    margin: 2rem 5rem;
    flex-wrap: wrap;
}

.highlight {
    flex: 1 1 30%;
    background-color: rgb(255, 240, 245);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.2s ease;
}

.highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25); /* stronger shadow */
}

.highlight-icon {
  font-size: 40px;
}

.highlight h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #933;
}

.highlight p {
    font-size: 0.95rem;
    color: #555;
}

/* Styles for section .info-book */
/* Container for both halves */
.info-book {
  display: flex;
  width: 100%;
  align-items: stretch; /* both sides same height */
  position: relative;
  background-color: antiquewhite;
}

/* Left half: FAQ */
.info-book .faqs {
  flex: 1;
  padding: 2rem;
  box-sizing: border-box;
}

/* Right half: Ask/Book column */
.info-book .ask-book {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

/* Keep the vertical divider */
.info-book::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 50%;
  width: 1px;
  background-color: #ccc;
  transform: translateX(-50%);
  z-index: 1;
}

/* ASK section stays pinned to top */
.ask-book .ask {
  align-self: center;      /* center horizontally */
  margin-bottom: 0;        /* no push/pull */
}

/* BOOK section stays pinned to bottom */
.ask-book .book {
  align-self: center;      /* center horizontally */
}

/* Button styling */
#reg-btn {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
  padding: 15px 30px;
  background-color: #933;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#reg-btn:hover {
  background-color: #005fa3;
  transform: scale(1.05);
  border: 3px solid #933;
  color: #933;
  background-color: #F5E0C8;
}


.faqs {
    max-width: 800px;
    margin: 2rem auto;
}

.faq {
    /* border-bottom: 1px solid #ddd; */
    padding: 10px 0;
}

.faqs h3 {
  text-align: center;
  padding-bottom: 1.5rem;
  color: #933;
  font-size: 1.5rem;
}


.ask h3 {
  padding-bottom: 1.5rem;
  color: #933;
  font-size: 1.5rem;
}

.book {
  width: 100%;
  position: relative;
}

.book::before {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 0;
  height: 1px;
  background-color: #ccc;
  /* transform: translateY(50%); */
  z-index: 1;
}

.book h3 {
  padding-top: 2.5rem;
  padding-bottom: 1.25rem;
  color: #933;
  font-size: 1.5rem;
}

/* Make the h5 look clickable */
.faq-line {
    cursor: pointer;
    position: relative;
    margin: 0;
    font-size: 1.05rem;
    color: #933;
    background-color: #F5E0C8;
    padding: 7px 15px;
    border-radius: 7px;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq h5:hover {
    color: #0077cc;
    padding-right: 5px;
}

/* Style the ion-icon arrow */
.faq .faq-line .arrow-icon {
    transition: transform 0.3s ease;
    flex: 0 0 32px;
}

/* Rotate when open */
.faq.open .arrow-icon {
    transform: rotate(180deg);
}

/* Animate show/hide */
.faq p {
    max-height: 0;
    color: #744;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin: 0;
}

/* When open */
.faq.open p {
    max-height: 500px;
    opacity: 1;
    margin-top: 0.5rem;
    padding: 5px 5px 10px 5px;
    text-align: justify;
}

.ask {
  margin: 2rem auto;
}

.ask-line {
  display: flex;
  padding: 7px 0;
}

.ask-line:last-child {
  padding-bottom: 2.5rem;
}

.ask-line ion-icon {
  padding-right: 25px;
  font-weight: 900;
  color: #744;
}

.ask-line a {
  color: #744;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ask-line a:hover {
  color: #0077cc;
  text-decoration: underline;
}



/* RE GALLERY */
.gallery-main {
  position: relative;
  background-color: transparent;
  justify-content: center;
  /* height: 100vh; */
  display: flex;
  align-items: center;
}

.fixed-gallery {
  position: fixed;
  top: 0;
  left: 0;
}

/* carousel */
.carousel{
  height: 70vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}
.carousel .list .item{
  width: 100vw;
  height: 70vh;
  position: absolute;
  inset: 0 0 0 0;
}
.carousel .list .item img{
  width: 100vw;
  height: 70vh;
  object-fit: cover;
  object-position: center;
  display: block;
}
.carousel .list .item .content{
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 15%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .headline{
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1.3em;
  color: #f1683a;
  text-shadow: 4px 4px 16px rgba(255,255,255,.7),
    -4px -4px 16px rgba(255,255,255,.7), 
    0 0 13px rgba(255,255,255,1)
}
.carousel .list .item .desc-1,
.carousel .list .item .desc-2,
.carousel .list .item .desc-3,
.carousel .list .item .desc-4{
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.3em;
  text-shadow: 4px 4px 8px rgba(241,104,58,.7),
    -4px -4px 8px rgba(241,104,58,.7), 
    0 0 4px rgba(241,104,58,1)
}
/* thumbail */
.thumbnail{
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: max-content;
  z-index: 100;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
.thumbnail .item{
  width: 200px;
  height: 135px;
  flex-shrink: 0;
  position: relative;
}
.thumbnail .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid #eee;
  border-radius: 15px;
}
.thumbnail .item .content{
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.thumbnail .item .content .desc-1{
  font-weight: 700;
  color: #f1683a;
  text-shadow: 4px 4px 8px rgba(255,255,255,.8),
    -4px -4px 8px rgba(255,255,255,.8), 
    0 0 2px rgba(255,255,255,1)
}
.thumbnail .item .content .description{
  font-weight: 300;
}
/* arrows */
.arrows{
  position: absolute;
  bottom: 3%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-evenly;
}
.arrows button{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee7;
  border: none;
  color: #f1683a;
  font-family: monospace;
  font-weight: bold;
  transition: .5s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}
.arrows button:hover{
  background-color: #fff;
  color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
  z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .headline,
.carousel .list .item:nth-child(1) .content .desc-1,
.carousel .list .item:nth-child(1) .content .desc-2,
.carousel .list .item:nth-child(1) .content .desc-3,
.carousel .list .item:nth-child(1) .content .desc-4
{
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
  to{
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.carousel .list .item:nth-child(1) .content .desc-1{
  animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .desc-2{
  animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .desc-3{
  animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .desc-4{
  animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
  width: 220px;
  height: 150px;
  position: absolute;
  bottom: 50px;
  right: 50px;
  border-radius: 30px;
  animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
  to{
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-last-child(1){
  overflow: hidden;
  animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
  z-index: 100;
}
@keyframes showThumbnail{
  from{
      height: 0;
      opacity: 0;
  }
}
.carousel.next .thumbnail{
  animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
  from{
      transform: translateY(-150px);
  }
}

/* running time */

.carousel .time{
  position: absolute;
  z-index: 999;
  width: 0%;
  height: 4px;
  background-color: #f1683a;
  left: 0;
  top: 0;
}

.carousel.next .time,
.carousel.prev .time{
  animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
  from{width: 100%}
  to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  right: 0;
}
@keyframes outFrame{
  to{
      width: 220px;
      height: 150px;
      bottom: 50px;
      right: 50px;
      border: 1px solid #eee;
      border-radius: 20px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1){
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item:nth-child(2) .content .headline,
.carousel.prev .list .item:nth-child(2) .content .desc-1,
.carousel.prev .list .item:nth-child(2) .content .desc-2,
.carousel.prev .list .item:nth-child(2) .content .desc-3,
.carousel.prev .list .item:nth-child(2) .content .desc-4
{
  animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
  to{
      transform: translateY(-150px);
      filter: blur(20px);
      opacity: 0;
  }
}
@media screen and (max-width: 678px) {
  .carousel .list .item .content{
      padding-right: 0;
  }
  .carousel .list .item .content .desc-1{
      font-size: 30px;
  }
}

/* ===== Responsive design ===== */

/* <576px: phones */
@media (max-width: 575.98px){
  .lang-container img {
    width: 17px
  }
  #ribam-logo-div {
    width: 70%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 0 0 20px;
    padding: 5px;
    z-index: 1;
    opacity: 0.4;
  }
  #title, #title-date {
    font-size: 20px;
    text-shadow: none;
  }
  .titles {
    padding-left: 15%;
    padding-right: 15%;
  }

  .carousel .list .item .headline {
    font-size: 24px;
  }
  .carousel .list .item .content .desc-1,
  .carousel .list .item .content .desc-2,
  .carousel .list .item .content .desc-3,
  .carousel .list .item .content .desc-4 {
    font-size: 18px;
  }
  .arrows {
    max-width: 50%;
  }

  .outer {
    margin: 2rem 20px;
    padding: 1rem 5px;
  }
  #m-header {
    font-size: 24px;
  }
  #m-pause-div {
    height: 30px;
  }
  #m-segment {
    height: 28px;
    width: 28px;
  }
  #m-pause-btn, #m-play-btn {
    height: 25px;
    width: 25px;
  }
  .outer .container .m-titles .m-paras p {
    font-size: 12px !important;
    margin-left: 5px;
    margin-right: 5px;
  }
  .outer .container .m-desc-container {
    margin: 7px;
  }
  .outer .container .m-desc-container .m-desc {
    font-size: 16px;
    width: 100%;
    line-height: 1.3;
  }

  .highlights {
    margin: 2rem;
    flex-direction: column;
    gap: 1rem;
  }
  .highlight-icon {
    font-size: 20px;
  }
  .highlight h5 {
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
  }
  .highlight p {
    font-size: 0.8rem;
  }

  .info-book {
    flex-direction: column;
  }
  .info-book::before {
    z-index: -1;
  }
  .faqs, .ask-book {
    margin: 1rem auto;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  #faqs-title {
    font-size: 1rem;
    padding-bottom: .5rem;
  }
  .faq-line {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .faqs h5 {
    font-size: 0.9rem;
  }
  .faq .faq-line .arrow-icon {
    flex: 0 0 24px;
  }
  .faq p {
    font-size: 0.8rem;
  }

  .ask-book {
    padding: 0.5rem;
  }
  .ask {
    margin: 0.5rem auto;
  }
  .ask::before {
    position: absolute;
    content: "";
    top: 0;
    left: 3%;
    width: 94%;
    border-top: 1px solid #ccc;
  }
  .ask h3, .book h3 {
    font-size: 1rem;
    padding-bottom: 0.5rem;
  }
  .ask-line p {
    font-size: 0.8rem;
  }
  #reg-btn {
    font-size: 0.8rem;
  }
}

/* 576–767.98: small devices */
@media (min-width: 576px) and (max-width: 767.98px) {
  .lang-container img {
    width: 22px
  }
  #ribam-logo-div {
    width: 13%;
  }
  #title, #title-date {
    font-size: 1.5rem;
  }
  .titles {
    padding-left: 15%;
    padding-right: 15%;
  }

  .carousel .list .item .headline {
    font-size: 1.5rem;
  }
  .carousel .list .item .content .desc-1,
  .carousel .list .item .content .desc-2,
  .carousel .list .item .content .desc-3,
  .carousel .list .item .content .desc-4 {
    font-size: 1.2rem;
  }
  .arrows {
    max-width: 40%;
  }

  .outer {
    margin: 2rem 20px;
    padding: 1rem 5px;
  }
  #m-header {
    font-size: 1.3rem;
  }
  #m-pause-div {
    height: 35px;
  }
  #m-segment {
    height: 32px;
    width: 32px;
  }
  #m-pause-btn, #m-play-btn {
    height: 29px;
    width: 29px;
  }
  .outer .container .m-titles {
    width: 40%;
  }
  .outer .container .m-titles .m-paras p {
    font-size: 14px !important;
    margin-left: 5px;
    margin-right: 5px;
  }
  .outer .container .m-desc-container {
    margin: 7px;
  }
  .outer .container .m-desc-container .m-desc {
    font-size: 16px;
    width: 100%;
    line-height: 1.4;
  }

  .highlights {
    margin: 2rem;
    flex-direction: column;
    gap: 1rem;
  }
  .highlight-icon {
    font-size: 1.2rem;
  }
  .highlight h5 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
  }
  .highlight p {
    font-size: 0.8rem;
  }

  .info-book {
    flex-direction: column;
  }
  .info-book::before {
    z-index: -1;
  }
  .faqs, .ask-book {
    margin: 1rem auto;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  #faqs-title {
    font-size: 1.2rem;
    padding-bottom: .5rem;
  }
  .faq-line {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .faqs h5 {
    font-size: 1rem;
  }
  .faq .faq-line .arrow-icon {
    flex: 0 0 24px;
  }
  .faq p {
    font-size: 0.9rem;
  }

  .ask-book {
    padding: 0.5rem;
  }
  .ask {
    margin: 0.5rem auto;
  }
  .ask::before {
    position: absolute;
    content: "";
    top: 0;
    left: 3%;
    width: 94%;
    border-top: 1px solid #ccc;
  }
  .ask h3, .book h3 {
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
  }
  .ask-line p {
    font-size: 0.9rem;
  }
  #reg-btn {
    font-size: 0.9rem;
  }
}


/* Hide thumbnails for portrait tablets */
@media (max-width: 767.98px) and (orientation: portrait) {
  .thumbnail { display: none !important; }
}

/* 768–991.98: tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
  .lang-container img {
    width: 22px
  }
  #ribam-logo-div {
    width: 13%;
  }
  #title, #title-date {
    font-size: 2rem;
  }
  .titles {
    padding-left: 15%;
    padding-right: 15%;
  }

  .carousel .list .item .headline {
    font-size: 1.8rem;
  }
  .carousel .list .item .content .desc-1,
  .carousel .list .item .content .desc-2,
  .carousel .list .item .content .desc-3,
  .carousel .list .item .content .desc-4 {
    font-size: 1rem;
  }
  .arrows {
    max-width: 30%;
  }

  .thumbnail .item {
    width: 180px;
  height: 121px;
  }

  .outer {
    margin: 2rem 20px;
    padding: 1rem 5px;
  }
  #m-header {
    font-size: 1.3rem;
  }
  #m-pause-div {
    height: 35px;
  }
  #m-segment {
    height: 32px;
    width: 32px;
  }
  #m-pause-btn, #m-play-btn {
    height: 29px;
    width: 29px;
  }
  .outer .container .m-titles {
    width: 40%;
  }
  .outer .container .m-titles .m-paras p {
    font-size: 14px !important;
    margin-left: 5px;
    margin-right: 5px;
  }
  .outer .container .m-desc-container {
    margin: 30px;
  }
  .outer .container .m-desc-container .m-desc {
    font-size: 16px;
    width: 100%;
    line-height: 1.4;
  }

  .highlights {
    margin: 2rem;
    flex-direction: column;
    gap: 1rem;
  }
  .highlight-icon {
    font-size: 1.2rem;
  }
  .highlight h5 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
  }
  .highlight p {
    font-size: 0.8rem;
  }

  .info-book {
    flex-direction: column;
  }
  .info-book::before {
    z-index: -1;
  }
  .faqs, .ask-book {
    margin: 1rem auto;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  #faqs-title {
    font-size: 1.2rem;
    padding-bottom: .5rem;
  }
  .faq-line {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .faqs h5 {
    font-size: 1rem;
  }
  .faq .faq-line .arrow-icon {
    flex: 0 0 24px;
  }
  .faq p {
    font-size: 0.9rem;
  }

  .ask-book {
    padding: 0.5rem;
  }
  .ask {
    margin: 0.5rem auto;
  }
  .ask::before {
    position: absolute;
    content: "";
    top: 0;
    left: 3%;
    width: 94%;
    border-top: 1px solid #ccc;
  }
  .ask h3, .book h3 {
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
  }
  .ask-line p {
    font-size: 0.9rem;
  }
  #reg-btn {
    font-size: 0.9rem;
  }
}

/* 992–1199.98: laptops */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #ribam-logo-div {
    width: 12%;
  }
  #title, #title-date {
    font-size: 2rem;
  }
  .titles {
    padding-left: 15%;
    padding-right: 15%;
  }

  .carousel .list .item .headline {
    font-size: 2rem;
  }
  .carousel .list .item .content .desc-1,
  .carousel .list .item .content .desc-2,
  .carousel .list .item .content .desc-3,
  .carousel .list .item .content .desc-4 {
    font-size: 1.2rem;
  }

  .outer {
    margin: 2rem 20px;
    padding: 1rem;
  }
  #m-header {
    font-size: 1.5rem;
  }
  #m-pause-div {
    height: 35px;
  }
  #m-segment {
    height: 32px;
    width: 32px;
  }
  #m-pause-btn, #m-play-btn {
    height: 29px;
    width: 29px;
  }
  .outer .container .m-titles {
    width: 40%;
  }
  .outer .container .m-titles .m-paras p {
    font-size: 18px !important;
    margin-left: 10px;
    margin-right: 10px;
  }
  .outer .container .m-desc-container {
    margin: 30px;
  }
  .outer .container .m-desc-container .m-desc {
    font-size: 20px;
    width: 100%;
    line-height: 1.4;
  }

  .highlights {
    margin: 2rem;
    flex-direction: column;
    gap: 1rem;
  }
  .highlight-icon {
    font-size: 1.4rem;
  }
  .highlight h5 {
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
  }
  .highlight p {
    font-size: 1rem;
  }

  .info-book {
    flex-direction: column;
  }
  .info-book::before {
    z-index: -1;
  }
  .faqs, .ask-book {
    margin: 1rem auto;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  #faqs-title {
    font-size: 1.4rem;
    padding-bottom: .5rem;
  }
  .faq-line {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .faqs h5 {
    font-size: 1.2rem;
  }
  /* .faq .faq-line .arrow-icon {
    flex: 0 0 24px;
  } */
  .faq p {
    font-size: 1rem;
  }

  .ask-book {
    padding: 0.5rem;
  }
  .ask {
    margin: 0.5rem auto;
  }
  .ask::before {
    position: absolute;
    content: "";
    top: 0;
    left: 3%;
    width: 94%;
    border-top: 1px solid #ccc;
  }
  .ask h3, .book h3 {
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
  }
  .ask-line p {
    font-size: 1rem;
  }
  #reg-btn {
    font-size: rem;
  }
}

