  section.homeAccordion * {
    font-family: 'geist';
}
  section.homeAccordion .item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #EEF0F7;
    cursor: pointer;
    column-gap: 15px;
}

  section.homeAccordion .item.open {
    box-shadow: 0px 0px 10px 0px #0032C633;
    border-radius: 2px;
        align-items: start;
}

  section.homeAccordion .item .icon-wrap {
    width: 100%;
    max-width: 80px;
    height: auto;
}

  section.homeAccordion .item .icon-wrap img {
    width: 100%;
    height: auto;
}
  section.homeAccordion .item .content .head {
    font-size: 22px;
    font-weight: 600;
    color: #08205F;
}
  section.homeAccordion .item .description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.7s ease-in-out, max-height 0.7s ease-in-out;
    font-weight: 300;
    font-size: 18px;
    width: 100%;
    max-width: 80%;
    line-height: 1.4;
}

  section.homeAccordion .item.open .description {
    opacity: 1;
    max-height: 100px;
}

section.homeAccordion .item .wrappr{
     flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
    section.homeAccordion .item {
        column-gap: 30px;
    }
section.homeAccordion .item .content .head {
    font-size: 18px;
    line-height: 1.4;
}

section.homeAccordion .item .description {
    max-width: 100%;
}
}