.small-first-screen {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: fit-content;
    min-height: 359px;
    position: relative;
}

.padding-is-small.small-first-screen { 
min-height: fit-content
}

.small-first-screen-no-bg {
    background-color: #FFF;
}

.small-first-screen-no-bg::before {
    display: none;
}

.small-first-screen::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.37);
}

.small-first-screen__container {
    position: relative;
    z-index: 3;
}


.small-first-screen__background {
    top: 0;
    left: 0;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.small-first-screen__heading *{
    color: #dff8eb;
}

.small-first-screen-no-bg .small-first-screen__heading *,
.small-first-screen-no-bg .small-first-screen__text * {
    color: #4a6671;
}


.small-first-screen__text em:hover {
    color: #FFF;
    text-decoration: underline;
}

.small-first-screen__text a{
    color: #ff0000!important;
}

.small-first-screen__text em {
    font-style: normal;
}

.small-first-screen__text em a:hover {
    text-decoration: none;
}

.small-first-screen__text {
    margin-bottom: 1rem;
}

.small-first-screen-no-bg .small-first-screen__text {
    margin-bottom: 0;
}

.small-first-screen__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.small-first-screen-no-bg .small-first-screen__wrapper {
    max-width: 66.666667%;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}


.small-first-screen__text *{
    color: #FFF;
}

.small-first-screen__text strong {
    color: #ff0000;
}

.small-first-screen__items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.small-first-screen__item {
    width: fit-content;
    background: #f2555C;
    padding: 10px 10px 10px 10px;
    border-radius: 12px;
    font-size: 87.5%;
    color: #FFF;
}


@media screen and (max-width: 1023.98px) {
    .small-first-screen {
        min-height: fit-content;
    }
}

@media screen and (max-width: 767.98px) {
    .small-first-screen-no-bg .small-first-screen__wrapper {
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

}



