.home-title {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .home-title {
        font-size: 32px;
    }
}

.dinamic-title-wrapper {
    display: flex;
    min-height: 65px;
    font-weight: 900;
    font-size: 54px;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .dinamic-title-wrapper {
        font-size: 34px;
        min-height: 80px;
    }

    .dinamic-title-wrapper .dinamic-title {
        white-space: normal;
        line-height: 1.2;
    }
}

.dinamic-title {
    position: absolute;
    width: 100%;
    display: inline-block;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.dinamic-title.entering {
    opacity: 0;
    transform: translateY(100%);
}

.dinamic-title.new {
    opacity: 1;
    transform: translateY(0);
}

.dinamic-title.old {
    opacity: 0;
    transform: translateY(-100%);
}

.slider-posts-home .swiper {
    padding: 8px !important;
}

.card-post-home {
    position: relative;
    transition: all 0.25s ease !important;
}

.card-post-home:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 5px;
    background-color: #0e4a63;
    opacity: 0;
    border-radius: 2px;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    transition: all 0.25s ease !important;
}

.card-post-home:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0 3px 5px !important;
}

.card-post-home:hover:after {
    opacity: 1;
}

.elementor-counter .elementor-counter-title {
    max-height: 30px !important;
}

@media (max-width: 768px) {
    .elementor-counter {
        max-height: unset !important;
    }
}