.new-offers__wrap {
    padding: 80px 0 30px;
    overflow-wrap: hidden;   
}
.new-offers .owl-stage-outer {
    overflow: visible !important;
    display: flex;
    flex-wrap: nowrap;
    align-items: unset;
    justify-content: center;
    width: max-content;
}
.new-offers__slide {
    display: block;
    width: 373px !important;
    height: 608px !important;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: #191919 !important; 
    transition: .2s;
}
.new-offers__slide:hover {
    /* transform: scale(1.1); */
}
.new-offers__slide:hover .new-offers__image {
    filter: brightness(1.2);
}
.new-offers__slide:hover .new-offers__place {
    background: rgba(221, 239, 250, 0.70);
}
.new-offers__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover;   
    object-position: center;
    transition: .2s;
}
.new-offers__place {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    background: rgba(221, 239, 250, 0.30);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 4px;
    padding: 36px 24px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    transition: .2s;
}
.new-offers--even .owl-item:nth-child(even) .new-offers__place {
    bottom: auto;
    top: 0;
}
.new-offers__slide--top-text .new-offers__place {
    bottom: auto;
    top: 0;
}
.new-offers__slide--bottom-text .new-offers__place {
    bottom: 0;
    top: auto;
}
.new-offers__info {
    width: calc(100% - 24px - 56px);
}
.new-offers__title {
	display: block;
	font-family: 'Ramillas Light',serif;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .02em;
    margin-bottom: 24px;
}
.new-offers__text {
	font-size: 1.2rem;
}
.new-offers__arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #356A3D; 
    padding: 18px 0 0 21px;
}
.new-offers__arrow path {
    fill: #fff;
}
.new-offers .owl-nav {
    width: calc(100% + 136px);
    position: absolute;
    left: -68px;
    top: 50%;
    height: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.new-offers .owl-nav .owl-prev,
.new-offers .owl-nav .owl-next {
    transform: translateY(-50%);
}
.new-offers .slider-media__nav {
    position: relative;
    top: 0;
    left: 0;
}
.new-offers .slider-media__nav path {
    opacity: 1;
}
.new-offers__all {
    margin-top: 20px;
    text-align: center;    
}

@media (max-width: 1280px) {
    .new-offers .owl-nav {
        width: calc(100% + 80px);
        left: -40px;
    }
}
@media (max-width: 1024px) {
    .new-offers__wrap {
        padding: 30px 0;
    }
    .new-offers__slide {
        width: 270px;
        height: 440px;
        border-radius: 6px;
        transform: none !important;
    }
    .new-offers__place {
        backdrop-filter: blur(11px);
        border-radius: 3px;
        padding: 24px 18px;
    }
    .new-offers__info {
        width: calc(100% - 18px - 42px);
    }
    .new-offers__title {
        font-size: 20px; 
        letter-spacing: .02em;
        margin-bottom: 18px;
    }
    .new-offers__arrow {
        width: 42px;
        height: 42px;
        padding: 14px 0 0 15px;
    }
    .new-offers__arrow svg {
        width: 14px;
        height: 22px;
    }
    .new-offers__text {
        font-size: 14px;        
    }
    .new-offers__all {
        margin-top: 10px;
    }
}