:root {
  --color-blue-light: #2867c6;
  --color-blue-dark: #112d51;
  --color-blue-light-text: #5a607a;
  --color-blue-light-bg: #eff5f9;
  --color-white: #fff;
  --color-grey-dark: #1a1b24;
  --color-grey-light: #fafafa;
  --color-grey-dark-text: #434343;
  --color-grey-mid: #666666;
  --border-grey: 1px solid #d7d7d7;
  --border-radius-10: 10px;
  --border-radius-5: 5px;
  --max-width: 1170px;
  --transition-main: 0.2s ease;
  --shadow-main: 0px 4px 6px 1px rgba(0, 0, 0, 0.15);
}

.cig-blog-section-wrapper {
  padding: 0 2rem;
  box-sizing: border-box;
  z-index: 3;
}
.cig-accordion-parent-container {
  margin: 3rem auto;
  position: relative;
  box-sizing: border-box;
}

.cig--search-container-scroll-max-width {
  padding: 20px 10px;
  border-radius: 20px;
  background: var(--color-white);
  margin: 3rem auto;
  position: relative;
  max-width: var(--max-width);
  box-sizing: border-box;
}

/* ACCORDION DROPDOWN - START */
.cig-accordion-body-wrapper,
.cig-blog-body-wrapper {
  position: relative;
  z-index: 1;
}

.cig-accordion-body-wrapper {
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}

#cig__blog-content {
  background: #fff;
  padding: 20px;
  color: #444;
  margin: 0 auto;
  overflow: hidden;
  max-height: 250px;
  transition: max-height 0.7s;
}

#cig__accordion-content {
  color: #444;
  margin: 0 auto;
  overflow: hidden;
  max-height: 160px;
  /* transition: max-height 0.2s; */
}

#cig__blog-content.open {
  max-height: 100%;
  overflow-y: hidden;
  transition: max-height 0.7s;
}
#cig__accordion-content.open {
  max-height: 100%;
  overflow-y: hidden;
  transition: max-height 0.7s;
  padding-bottom: 30px;
}

.cig-accordion-content-wrapper.active--blog-accord .cig-blog-readmore,
.cig-blog-content-wrapper.active--blog-accord .cig-blog-readmore {
  opacity: 0;
  pointer-events: none;
  transition-delay: 0s;
}

.cig-accordion-cta-wrapper {
  position: relative;
  margin-top: -100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: end;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.57484243697479) 50%,
    rgb(255, 255, 255) 95%
  );
  z-index: 2;
}
.cig-accordion-cta-s-wrapper {
  position: relative;
  margin-top: -70px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: end;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 2;
}

#cig__show-more {
  background: var(--color-blue-light);
  color: #fff;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding: 10px 25px;
  border-radius: 50px;
}

#cig__read-more {
  display: inline-block;
  cursor: pointer;
  margin-bottom: -30px;
  color: #2867c6;
  font-weight: 500;
}
/* ACCORDION DROPDOWN - END */

@media (max-width: 768px) {
  #cig__blog-content {
    padding: 0;
  }
}

/* ACCORDION CONTENT - START */
.cig-accordion-content-wrapper h1,
.cig-accordion-content-wrapper h2,
.cig-accordion-content-wrapper h3,
.cig-accordion-content-wrapper h4,
.cig-accordion-content-wrapper h5,
.cig-accordion-content-wrapper h6 {
  margin: 10px 0 1rem;
  color: var(--color-grey-dark);
}
.cig-accordion-content-wrapper p,
.cig-accordion-content-wrapper span,
.cig-accordion-content-wrapper b {
  margin: 1rem 0;
  font-size: 16px;
  color: var(--color-grey-dark-text);
}
.cig-accordion-content-wrapper a {
  text-decoration: none;
  color: var(--color-blue-light);
}
/* ACCORDION CONTENT - END */
