.main-faqs-wrapper-list {
  padding: 0 0 50px;
}

.faqs-main-title {
  display: flex;
  position: relative;
  padding: 0 0 20px 0;
  font-size: 35px;
  justify-content: center;
}

.faqs-title h2 {
  color: #4CBDCD;
  font-size: 19px;
  padding: 18px 0;
  max-width: 80%;
}

.faqs-wrapper {
  background: #fff;
  display: flex;
  border: 1px solid rgba(112, 112, 112, 0.4392156862745098);
  border-radius: 5px;
  min-width: 450px;
  justify-content: center;
  padding: 2px;
}

.faqs-title:nth-child(2) {
  padding-top: 0;
}

.faqs-navigation {
  display: flex;
  justify-content: center;
  position: relative;
  top: -30px;
}

ul#faqs-menu {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.menu-faqs-menu-container, #faqs-menu {
  width: 100%;
}

.menu-faqs-menu-container li {
  color: #0E5A65 !important;
  font-weight: 400;
  text-align: center;
  font-size: 20px;
  width: 100%;
  display: flex;
}

.faqs-navigation a {
  color: #0E5A65 !important;
  font-weight: 400;
  text-align: center;
  font-size: 20px;
  padding: 10px 25px;
  width: 100%;
}

.the-faqs-question {
  font-weight: 500;
  font-size: 18px;
}

#faqs-menu .current-menu-item a{
  background: rgb(237, 248, 250);
  border-radius: 5px;
  border: 2px solid rgb(204, 236, 241);
}

.the-faqs-question {
  width: calc(100% - 30px);
}

.the-faqs-answer {
  height: 0;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  transition: 1s max-height ease-in-out , 0.4s min-height ease-in-out;
}

.the-faqs-answer p {
  margin: 0;
  padding: 15px 0 5px;
  max-width: calc(100% - 30px);
  font-size: 15px;
}

.open .the-faqs-answer {
  height: auto;
  min-height: 100px;
  max-height: 999px;
  transition: 1s max-height ease-in-out , 0.4s min-height ease-in-out;
}

.the-faqs-trigger-container {
  padding: 15px 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.4392156862745098);
}

.the-faqs-title-trigger {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

.the-icon-container {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: 1px solid rgba(112, 112, 112, 0.4392156862745098);
  position: relative;
}

.faqs-title .the-icon-container {
    width: 35px;
    height: 35px;
    border: 2px solid #4CBDCD;
}

.the-icon-container::after , .the-icon-container::before {
  content: '';
  width: 15px;
  height: 1px;
  background: rgba(112, 112, 112, 0.4392156862745098);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}

.faqs-title .the-icon-container::after, .faqs-title .the-icon-container::before {
    background: #4CBDCD;
}

.the-icon-container::before {
  transform: rotate(90deg);
  transition: 0.4s ease-in-out;
}

.open .the-icon-container::before,
.accordion-open > .the-icon-container::before {
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
}

.page-heading-wrapper.small, .small .page-heading-container {
  height: 300px;
}

.the-faqs-trigger-container:last-child {
  border-bottom: 0;
}

.single-taxonomy-content p {
	width:100%;
}

@media (max-width:550px) {
	.faqs-wrapper {
 	 min-width: 300px;
	}
}

/* faqs title accordion style */

.accordion-container {
    display: none;
}

.faqs-title {
    cursor: pointer;
}