@charset "UTF-8";

.subtitle {
    margin: 0;
    text-align: center
}

.cmp-subtitle-text {
    position: relative;
    display: inline-block;
    padding-inline:50px;margin-bottom: 0;
    font-size: 3rem;
    font-weight: var(--acq-font-weight-bold);
    color: var(--acq-color-primary)
}

@media only screen and (max-width: 767px) {
    .cmp-subtitle-text {
        font-size:var(--acq-font-size-lg)
    }
}

.cmp-subtitle-text:before,.cmp-subtitle-text:after {
    position: absolute;
    bottom: 2px;
    width: 3px;
    height: 80%;
    content: "";
    background-color: var(--acq-color-primary)
}

.cmp-subtitle-text:before {
    left: 25px;
    transform: rotate(-25deg)
}

.cmp-subtitle-text:after {
    right: 25px;
    transform: rotate(25deg)
}

.acq-list-check.-center {
    width: fit-content;
    justify-items: flex-start;
}

.unq-lyt-media {
    display: block;
}

.unq-lyt-media .acq-media {
    margin: 0 auto 16px;
}

.unq-lyt-media .acq-list {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) {
    .unq-lyt-media .acq-media {
        margin: 0;
    }

    .unq-lyt-media {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .unq-lyt-media .acq-list {
        margin: 0;
    }
}