This commit is contained in:
Roman Pyrih
2026-01-09 11:00:36 +01:00
parent bfdc997a41
commit 5b47ea88c9
16 changed files with 231 additions and 189 deletions

View File

@@ -76,6 +76,7 @@
font-size: 20px;
line-height: 1.6;
margin-top: 0;
text-align: justify;
}
.elementor-widget-author_big_box .box-row .box-col-2 .author-content p:last-child {
margin-bottom: 0;
@@ -245,6 +246,7 @@
font-size: 20px;
line-height: 1.6;
margin-top: 0;
text-align: justify;
}
.elementor-widget-author_mini_box .box-row .box-col-2 .author-content .author-content-body p:last-child {
margin-bottom: 0;
@@ -288,6 +290,9 @@
background: linear-gradient(-90deg, #f4f4f8 0%, rgba(244, 244, 248, 0) 100%);
z-index: 2;
}
.elementor-widget-partners_slider .partners-slider .swiper-wrapper {
transition-timing-function: linear !important;
}
.elementor-widget-partners_slider .partners-slider .swiper-wrapper .swiper-slide {
position: relative;
display: flex;

File diff suppressed because one or more lines are too long

View File

@@ -85,6 +85,7 @@
font-size: 20px;
line-height: 1.6;
margin-top: 0;
text-align: justify;
&:last-child {
margin-bottom: 0;
@@ -262,6 +263,7 @@
font-size: 20px;
line-height: 1.6;
margin-top: 0;
text-align: justify;
&:last-child {
margin-bottom: 0;
@@ -308,6 +310,10 @@
z-index: 2;
}
.swiper-wrapper {
-webkit-transition-timing-function: linear !important;
-o-transition-timing-function: linear !important;
transition-timing-function: linear !important;
.swiper-slide {
position: relative;
display: flex;

View File

@@ -26,10 +26,18 @@ jQuery(document).ready(function ($) {
slidesPerView: 'auto',
spaceBetween: 20,
loop: true,
speed: 1000,
// speed: 1000,
// autoplay: {
// delay: 2500,
// disableOnInteraction: false,
// },
speed: 5000,
allowTouchMove: false, // Опціонально: заборонити гортати руками, щоб не збивати ритм
autoplay: {
delay: 2500,
disableOnInteraction: false,
delay: 0, // Без затримок
disableOnInteraction: false, // Не зупиняти при взаємодії
pauseOnMouseEnter: false, // (Опціонально) чи зупиняти при наведенні мишки
},
})
}