.banner-hero {
    background: linear-gradient(89.82deg, #00214D 0%, #003780 100%);
    color: #fff;
    padding-top: 64px;
    padding-bottom: 64px;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.banner-hero__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    flex-wrap: wrap;
}
.content-wrapper__left {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    align-items: center;
    gap: 32px;
}
.content-wrapper__right {
    display: none;
}
.banner-hero__headline {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0;
}
details.banner-hero__details.ds-details {
    display: none;
    color: #fff;
    background: #003780;
    width: 100%;
    max-width: 507px;
}
details.banner-hero__details.ds-details summary {
    color: #F2FAFF;
    padding-right: 20px;
}
details.banner-hero__details.ds-details summary:after {
    filter: invert(93%) sepia(57%) saturate(0%) hue-rotate(206deg) brightness(106%) contrast(107%);
}

.banner-hero.extended {
  animation: slide-in 0.15s ease-in-out;
}

@keyframes slide-in {
  0% {
    height: 320px;
    overflow: hidden;
  }
  60% {
    height: auto;
    overflow: hidden;
  }
  100% {
    height: auto;
    overflow: visible;
  }
}


.extended details.banner-hero__details.ds-details {
    display: block;
}
.extended .banner-hero__headline {
    font-size: 32px;
    line-height: 40px;
}
.banner-hero__caption {
    margin-bottom: 8px;
    display: none;
}
.banner-hero__timer {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 60px;
  text-align: center;
}
.banner-hero__actions {
    display: flex;
    gap: 24px;
    max-height: 48px;
    white-space: nowrap;
    position: relative;
}

.banner-hero__image-wrapper {
    max-width: 568px;
    min-width: 300px;
    width: 100%;
    height: 100%;
    flex-grow: 1
}
.banner-hero__image-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-hero__btn-related-info {
    /* position: absolute; */
    /* bottom: -34px; */
    left: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #E1E6EA;
    margin-bottom: 0;
    display: none;
    align-items: center;
}
.banner-hero__btn-related-info > img {
  filter: invert(94%) sepia(6%) saturate(162%) hue-rotate(164deg) brightness(98%) contrast(92%);
  width: 13px;
  height: 13px;
  margin-bottom: 1px;
  margin-right: 9px;
}
.banner-hero__badge {
  color: #1872e7;
  padding: 4px 8px;
  margin-bottom: 16px;
  background-color: #fff;
  background: #e6f0ff;
  border-radius: 4px;
  display: inline-block;
}

.extended .banner-hero__wrapper {
    flex-wrap: nowrap;
    gap: 112px;
}
.extended .content-wrapper__left {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    max-width: 568px;
    margin-top: calc(87px - 64px);
}
.extended .collapse-btn {
    transform: rotate(180deg);
}
.extended .banner-hero__caption {
    display: inline;
}

.extended .content-wrapper__right {
    display: block;
}

.extended .banner-hero__btn-related-info {
    display: flex;
}

@media (max-width: 980px) {
    .content-wrapper__left {
        flex-wrap: wrap;
    }
}




.collapse-btn {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    border: 0;
    position: absolute;
    bottom: -24px;
    left: calc(50vw - 24px);
    background-color: #fff;
    box-shadow: 0px 4px 48px rgba(0, 55, 128, 0.15);
    transition: all 0s;
    transition: rotate 0.2s ease-in-out;
    padding: 0;
    z-index: 3;
}
.collapse-btn:after {
    content: url(https://autenti.com/hubfs/autenti-design-system/buttons/double-chevron-down-black.svg);
    position: relative;
    top: 3px;
}
.collapse-btn:hover,
.collapse-btn:focus{
    background: #F7F9FB;
    box-shadow: 0px 4px 48px rgba(0, 55, 128, 0.08);
    border-radius: 100px;
}
.collapse-btn:active {
    background: #F0F2F4;
    box-shadow: 0px 4px 48px rgba(0, 55, 128, 0.12);
    border-radius: 100px;
}
.banner-hero__list {
    display: none;
}
.extended .banner-hero__list {
    display: inline-block;
} 
ul.banner-hero__list li {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 16px;
  margin-left: 26px;
}
ul.banner-hero__list li:last-of-type {
  margin-bottom: 0;
}
ul.banner-hero__list li:before {
  font-size: 16px;
  background-size: 16px;
  width: 16px;
  height: 16px;
  left: -26px;
}

@media (max-width: 1280px) {
     .extended .banner-hero__wrapper {
        gap: 64px;
    }
    
}

@media (max-width: 980px) {
    .content-wrapper__left {
        flex-wrap: wrap;
    }
    .extended .banner-hero__wrapper {
        flex-wrap: wrap;
        gap: 48px
    }
    .extended .content-wrapper__left {
    max-width: 100%;
    margin-top: 0;
    }
    .banner-hero__image-wrapper {
    max-width: 100%; 
    max-height: 328px;
    }
}
@media (max-width: 560px) {
    .banner-hero {
        padding-top: 48px;
        padding-bottom: 48px; 
    }
    .banner-hero__actions {
        flex-wrap: wrap;
        max-height: unset;
        width: 100%;
    }
    .banner-hero__timer {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .extended .banner-hero__headline {
    font-size: 24px;
    line-height: 32px;
}
.extended .banner-hero__caption {
    font-size: 14px;
    line-height: 22px;
}
}