Grup şirketlerimiz
Vizyoner projeleri artık ulaşılabilir durumda!
Mimari ve endüstriyel projelerinizin gerçekleştirilmesi için bizimle iletişime geçin.
SHR GASTRO MİMARİ
ÜRÜN
Mimari ve endüstriyel projelerinizin gerçekleştirilmesi için bizimle iletişime geçin.
SHR Gastro: Profesyonel mutfaklar için tavizsiz kalite ve üstün teknoloji.
Her bir cihazı, maksimum performans ve mutlak güvenilirlik için en yüksek kalite standartlarında üretmek için çabalıyoruz. Bu sayede siz de en önemli şeye, yani mutfak sanatınıza tamamen odaklanabilirsiniz.
SAHRA BLOG
/* =========================================================
SAHRA GASTRO PREMIUM MARQUEE
========================================================= */
.sg-premium-marquee {
width: 100%;
overflow: hidden;
padding:
75px
0
55px;
background: #fff;
font-family:
‘Poppins’,
sans-serif;
}
/* =========================================================
HEADER
========================================================= */
.sg-marquee-header {
width: min(
1280px,
88%
);
margin:
0 auto 50px;
}
.sg-marquee-small {
display: block;
margin-bottom: 12px;
color: #d71920;
font-size: 10px;
font-weight: 600;
letter-spacing: 3px;
}
.sg-marquee-header h2 {
margin:
0 0 15px;
color: #111;
font-size:
clamp(
27px,
3vw,
42px
);
line-height: 1.2;
font-weight: 500;
letter-spacing: -1px;
}
.sg-marquee-header p {
max-width: 670px;
margin: 0;
color: #777;
font-size: 13px;
font-weight: 300;
line-height: 1.8;
}
/* =========================================================
WINDOW
========================================================= */
.sg-marquee-window {
position: relative;
width: 100%;
overflow: hidden;
}
/* LEFT FADE */
.sg-marquee-window::before {
content: “”;
position: absolute;
z-index: 10;
top: 0;
bottom: 0;
left: 0;
width: 80px;
pointer-events: none;
background:
linear-gradient(
90deg,
#fff,
transparent
);
}
/* RIGHT FADE */
.sg-marquee-window::after {
content: “”;
position: absolute;
z-index: 10;
top: 0;
right: 0;
bottom: 0;
width: 80px;
pointer-events: none;
background:
linear-gradient(
270deg,
#fff,
transparent
);
}
/* =========================================================
TRACK
========================================================= */
.sg-marquee-track {
display: flex;
align-items: stretch;
width: max-content;
animation:
sgPremiumMarquee
60s
linear
infinite;
}
/* PAUSE */
.sg-marquee-window:hover
.sg-marquee-track {
animation-play-state:
paused;
}
/* =========================================================
ITEM
========================================================= */
.sg-marquee-item {
position: relative;
flex:
0 0 185px;
min-height: 175px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
padding:
24px
22px;
border-right:
1px solid
#eeeeee;
color: #171717;
text-decoration: none;
background: #fff;
transition:
background .35s ease,
color .35s ease;
}
/* RED LINE */
.sg-marquee-item::after {
content: “”;
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: #d71920;
transform:
translateX(-50%);
transition:
width .35s ease;
}
.sg-marquee-item:hover {
background: #fafafa;
}
.sg-marquee-item:hover::after {
width: 42px;
}
/* =========================================================
ICON
========================================================= */
.sg-icon {
width: 52px;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
}
.sg-icon svg {
width: 100%;
height: 100%;
stroke: #181818;
stroke-width: 1.65;
stroke-linecap: round;
stroke-linejoin: round;
transition:
stroke .3s ease,
transform .35s ease;
}
.sg-marquee-item:hover
.sg-icon svg {
stroke: #d71920;
transform:
translateY(-3px);
}
/* =========================================================
TEXT
========================================================= */
.sg-marquee-item span {
max-width: 150px;
color: #222;
font-size: 12px;
font-weight: 400;
line-height: 1.5;
text-align: center;
transition:
color .3s ease;
}
.sg-marquee-item:hover span {
color: #d71920;
}
/* =========================================================
ANIMATION
========================================================= */
@keyframes sgPremiumMarquee {
from {
transform:
translateX(0);
}
to {
transform:
translateX(-50%);
}
}
/* =========================================================
MOBILE
========================================================= */
@media(max-width:768px) {
.sg-premium-marquee {
padding:
50px
0
35px;
}
.sg-marquee-header {
width:
calc(
100% – 48px
);
margin-bottom:
35px;
}
.sg-marquee-header h2 {
font-size: 28px;
}
.sg-marquee-header p {
font-size: 12px;
}
.sg-marquee-item {
flex-basis: 150px;
min-height: 150px;
padding:
20px
15px;
}
.sg-icon {
width: 45px;
height: 45px;
}
.sg-marquee-item span {
font-size: 11px;
}
.sg-marquee-window::before,
.sg-marquee-window::after {
width: 35px;
}
}
(function() {
const track =
document.getElementById(
“sgMarqueeTrack”
);
if (!track) return;
/*
* Sonsuz ve kesintisiz akış için
* mevcut kategorilerin tamamını
* otomatik olarak kopyalıyoruz.
*/
const originalItems =
Array.from(
track.children
);
originalItems.forEach(
function(item) {
const clone =
item.cloneNode(true);
clone.setAttribute(
“aria-hidden”,
“true”
);
track.appendChild(
clone
);
}
);
})();