/* general */
.nv-content-wrap.entry-content {
    width: 100%;
}
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1366px;
}

/* sections */
.section_container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px; 
    font-family: 'Montserrat';
}
.section_container.lists {
    padding-bottom: 30px;
    flex-direction: column;
    gap: 0;
}
.section_container.lists .swiper-slide {
    height: 258px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.section_container.grey_bg {
    background-color: #F2F2F2;
}
.section_container.lists .section_header {
    padding-top: 30px;
    padding-bottom: 30px;
}
.section_container.lists .section_content {
    position: relative;
}
.section_container .section_title {
    font-size: 24px;
    font-family: 'Montserrat';
    font-weight: 500;
    text-transform: uppercase;
}
.section_container .section_header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.section_container a.section_more {
    text-transform: uppercase;
    font-weight: 600;
}
.section_container .slide_content {
    color: #FFF;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    text-align: left;
    padding-left: 25px;
    border-left: 10px solid;
    font-family: 'Montserrat';
    z-index: 2;
    position: relative;
}
.section_container span.slide_title {
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    font-family: 'Montserrat';
}
.section_container span.slide_text {
    font-size: 16px;
    font-family: 'Montserrat';
}
.section_container button.slide_button {
    display: inline-block;
    max-width: fit-content;
    padding: 5px 20px;
    font-weight: 400;
    color: #FFF;
    font-size: 16px;
    font-family: 'Montserrat';
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}


/* section oferte */
.oferte-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: grid;
    transition-property: transform;
    box-sizing: content-box;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}
@media (max-width: 767px){
    .oferte-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 1024px) and (min-width: 768px){
    .oferte-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section_container.oferte .section_title {
    color: var(--vm-oferte);
}
.section_container.oferte .slide_content {
    border-left-color: var(--vm-oferte);
}
.section_container.oferte button.slide_button{
    background-color: var(--vm-oferte);
}
.section_container.oferte button.slide_button:hover{
    color: var(--vm-oferte);
    background-color: #FFF;
}
