.ais {
    font-family: Montserrat, sans-serif;
    padding-bottom: 112px;
}
.ais__hero {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 15px 40px 15px;
    border-bottom: 1px solid rgb(99, 98, 98);
}

.ais__hero-title {
    font-weight: 300;
}

.ais__hero-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.ais__hero-description-text {
    text-align: justify;
}

.ais__media {
    border-radius: 24px;
}

.ais__hero-video {
    width: 400px;
    border-radius: 24px;
}

.ais__actions {
    width: 100%;
    padding: 60px 15px 0 15px;
}

.ais__actions-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
}

.item {
    flex-grow: 1;
    flex-basis: 300px;
    border-radius: 20px;
    background: #F9F9FF;
}

.item__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 2rem 1.5rem;
}

.item__decor {
    width: 15px;
    height: 4em;
    border-radius: 10px; 
    background: #FF6224;
}

.item__title {
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.subfooter {
    font-family: Montserrat-Regular, sans-serif;
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #2B3888 !important; 
    width:calc(100dvw); 
    height:fit-content;
    color: #fff;
    padding: 12px;
    margin-top: 48px;
}

.subfooter__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subfooter__actions {
    display: flex;
    flex-direction: column;
}

.subfooter__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subfooter__item, .subfooter__description {
    text-align: center;
}

.subfooter__link {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ais__hero-wrapper {
        flex-direction: column;
    }
    .ais__hero-video {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .ais__hero-title {
        font-size: 28px;
    }

    .subfooter {
        margin-top: 0;
    }
}