.accordion__section{
  margin: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: #FFFFFF;
}

.splitColumn .accordion__container,
.splitColumnReverse .accordion__container{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}

.splitColumnReverse .accordion__container{
  flex-direction: row-reverse;
}

.accordion__content{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0px;
  gap: 40px;
  justify-content: center;
}

.splitColumn .accordion-header-content-wrapper,
.splitColumnReverse .accordion-header-content-wrapper{
  display: flex;
  flex-direction: column;
  width: 33%;
}

.splitColumn .accordion__content,
.splitColumnReverse .accordion__content{
  width: 66%;
}

.accordion-sub-header{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #0070B9;
  margin-bottom: 12px;
}

.accordion-header,
.accordion-header h2{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 12px;
}

.accordion-header{
  margin-bottom: 24px;
}

.accordion-header h3{
  font-size: 36px;
}

.accordion-header h4{
  font-size: 32px;
}

.accordion-header h5{
  font-size: 28px;
}

.accordion-text-content,
.accordion-text-content p{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* text-align: center; */
  color: #5E5E5E;
}

.splitColumn .accordion-text-content,
.splitColumnReverse .accordion-text-content,
.splitColumn .accordion-text-content p,
.splitColumnReverse .accordion-text-content p{
  /* text-align: left; */
}

.accordion__content {
  box-sizing: border-box;
  display: block;
  padding: 0px;
  background: #FFFFFF;
  border: 1px solid #90D9F9;
  gap: 0;
}

.accordion__item {
  border-bottom: 1px solid #90D9F9;
  align-items: center;
  gap: 10px;
}

.item-title__container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  gap: 10px;
  cursor: pointer;
}

.item-title__container.active{
  background: rgba(144, 217, 249, 0.1);
}

.item-counter{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  text-transform: uppercase;
  color: #0070B9;
}

.item-title{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  color: #063354;
}

.item-close{
  width: 13px;
  height: 23px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-align: right;
  text-transform: uppercase;
  color: #0070B9;
  display: none;
}

.item-title__container.active .item-close{
  display: block;
}

.item-title__container.active .item-title, .item-title__container.active .item-collapse{
  display: none;
}

.item-content__container {
  display: none;
  overflow: hidden;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 110px 80px 80px;
  gap: 80px;
  background: rgba(144, 217, 249, 0.1);
  position: relative;
}

.text-content-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 100%;
}


.text-content-wrapper .text-title{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: #0070B9;
}

.text-content{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5E5E5E;
}

.item-cta__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 51px;
}

@media (min-width: 768px) {
  .item-cta__container {
    flex-direction: row;
  }
}

.item-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 11px;
}

.item-cta a{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #181818;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 11px;
}

.cta-button{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 6px;
  gap: 12px;
  width: 24px;
  height: 24px;
  background: #FFC700;
  border-radius: 58.75px;
}

.cta-arrow-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 12px;
  width: 12px;
  height: 12px;
}

.image-wrapper,
.icon-wrapper{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* height: 215px; */

  /* background-color: #ccc; */
  width: 60%;
  overflow: hidden;
  position: relative;
}

.image-wrapper img.item-image{
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
  /* position: absolute;
  top: 50%;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

.image-wrapper .icon-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
  width: 58px;
  height: 48px;
  background: #0070B9;
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  left: 20px;
  top: 0px;
}

.image-wrapper .icon-wrapper .item-icon-image{
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-filter: grayscale(1) invert(1) brightness(1000%);
  filter: grayscale(1) invert(1) brightness(1000%);
}

.item-paginate{
  display: flex;
  flex-direction: column;
  padding: 0px;
  width: 65px;
  position: absolute;
  bottom: 20px;
  right: 0px;
}

.accordion__item:first-child .item-paginate .paginate-up{
  display: none;
}

.accordion__item:last-child .item-paginate .paginate-down{
  display: none;
}

.toggle-item-collapse{
  display: none;
}

.splitColumn,
.splitColumnReverse {
  background: rgba(144, 217, 249, 0.1);
  margin: 0;
  padding: 80px 0;
}

.splitColumn .accordion__content,
.splitColumnReverse .accordion__content{
  background: none;
  border: none;
}

.splitColumn .text-content,
.splitColumnReverse .text-content{
  padding-bottom: 40px;
  width: 100%;
}

.splitColumn .accordion__item,
.splitColumnReverse .accordion__item{
  border-bottom: 1px solid #E0E0E0;
}

.item-title__container.active .item-close{
  display: block;
}

.splitColumn .item-title__container.active .item-title,
.splitColumnReverse .item-title__container.active .item-title,
.splitColumn .item-title__container:hover .item-title
{
  display: block;
  color: #0070B9;
}

.splitColumn .item-title__container,
.splitColumnReverse .item-title__container{
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 12px 0px;
  background: none;
}

.splitColumn .item-title,
.splitColumnReverse .item-title{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #063354;
  text-align: left;
}

.splitColumn .item-content__container,
.splitColumnReverse .item-content__container{
  background: none;
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 0px 30px 0px 0px;
  gap: 15px;
}

.item-title__container.active + .item-content__container{
  display: flex;
}

.splitColumn .item-title__container.active + .item-content__container,
.splitColumnReverse .item-title__container.active + .item-content__container{
  border-bottom: 1px solid #90D9F9;
  display: flex;
}

.splitColumn .toggle-item-collapse,
.splitColumnReverse .toggle-item-collapse{
  display: block;
}

.splitColumn .item-title__container .toggle-item-collapse .item-collapse,
.splitColumnReverse .item-title__container .toggle-item-collapse .item-collapse{
  display: block;
}

.splitColumn .item-title__container .toggle-item-collapse .item-uncollapse,
.splitColumnReverse .item-title__container .toggle-item-collapse .item-uncollapse{
  display: none;
}

.splitColumn .item-title__container.active .toggle-item-collapse .item-collapse,
.splitColumnReverse .item-title__container.active .toggle-item-collapse .item-collapse{
  display: none;
}

.splitColumn .item-title__container.active .toggle-item-collapse .item-uncollapse,
.splitColumnReverse .item-title__container.active .toggle-item-collapse .item-uncollapse{
  display: block;
}

@media (max-width: 768px) {
  .splitColumn .accordion__container,
  .splitColumnReverse .accordion__container{
    flex-direction: column;
  }

  .splitColumn .accordion-header-content-wrapper,
  .splitColumnReverse .accordion-header-content-wrapper,
  .splitColumn .accordion__content,
  .splitColumnReverse .accordion__content{
    width: 100%;
  }


}