.accordion_background {
  width: 100%;
  height: 1200px;
  display: flex;
  align-items: center;
}

.dropdown-text-image {
  width: 100%;
}

.dropdown_container {
  /* box-sizing: border-box; */
  display: flex;
  height: 100%;
  margin: 0 auto;
  border-radius: 8px;
}

.accordion_container {
  display: flex;
  width: 50%;
  flex-direction: column;
  margin-right: 20px;
  border-radius: 8px;
}
.dropdown {
  display: flex;
  flex-direction: column; /* Stack children vertically */
  border: 1px solid #ccc; /* Optional border for visualization */
}

.content_box {
  background-color: #fef7ee;
  border-radius: 8px;
  margin-bottom: 15px;
  font-family:'synonym';
}

.header_banner_title {
  font-family: 'synonym';
  max-width: 85%;
  font-size: 24px!important;
  font-weight: bold;
  
}

.dropdown_banner {
  margin: 0 36px 0 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.dropdown_banner::after {
  margin-right: 10px;
  content: "+";
  color: white;
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  width: 40px;
  font-size: 24px;
  border-radius: 50%;
  background-color: #a8b387;
  margin-right: 10px;
  font-weight: bold;
  transition: transform 0.5s ease; /* Add a transition for smooth rotation */
}
/* Style for the minus sign */

.dropdown_banner.open::after,
.dropdown_banner.active::after {
  content: "+";
  transform: rotate(225deg); /* Rotate the "+" to become a "-" */
}

.dropdown_content {
  max-height: 0;
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: 0.6s linear;
  margin: 0 36px 0 36px;
}

.dropdown_content p {
  padding-top: 5px;
}

.active.dropdown_content {
  max-height: 3500px;
  transition: 0.6s linear;
}

.desc {
  margin-top: -30px;
}

.image_container {
  width: 50%;
}

.image_container img, 
.image_container picture
{
  width: 100% !important;
  object-fit: cover;
  max-height: 597px;
  border-radius: 8px;
}

.dropdown_content .wp-block-button {
  margin-bottom: 30px;
}

.dropdown_btn {
  margin-bottom: 20px;
  width: 285px;
  background-color: #ffffff;
  color: #a8b387 !important;
  border: 1px solid #a8b387;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
  transition: opacity 1s ease, transform 1s ease;
  opacity: 0;
  transform: translateY(10px);
}
.active .dropdown_btn {
  opacity: 1;
  transform: translateY(0);
}
.dropdown_btn:hover {
  background-color: #ffffff;
  color: #a8b387 !important;
  border: 1px solid #a8b387;
}

.dropdown_btn a {
  color: #a8b387 !important;
}

.dropdown_btn a:hover {
  color: #a8b387 !important;
}
.icon_span {
  margin-top: 3px;
  float: right;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 722px) and (max-width: 1250px) {
  .dropdown_container {
    width: 90%;
  }
  .desc {
    font-size: 1.2rem;
  }
  .dropdown_btn {
 
    width: 240px;
  }

  .dropdown_content p {
    font-size: 16px !important;
  }
}

/*  772px */
@media screen and (max-width: 772px) {
  .dropdown_container {
    flex-direction: column-reverse;
    max-height: unset !important;
  }

  .header_banner_title {
    font-size: 14px !important;
  }

  .image_container {
    display: none;
  }

  .accordion_container {
    width: 100%;
    height: 75%;
  }

  .dropdown_content p {
    font-size: 14px !important;
  }


  .dropdown_content ul li {
    font-size: 16px !important;
  }

  .image_container {
    width: 100%;
    height: 25%;
    margin-bottom: -17px;
  }
  .dropdown_content {
    margin: 0 26px 0 26px;
  }
  .active {
    font-size: 15px;
  }

  .dropdown_btn {
    width: 170px;
  }

  .dropdown_banner {
    margin: 9px 26px 0 26px;
    padding: 15px 0px;
  }
  .dropdown_banner::after {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  .desc {
    margin-top: 10px;
    font-size: 0.9rem;
  }
  .content_box {
    margin-bottom: 5px;
  }
}
