:root { --infograph-color4: #1a8b31; --infograph-color3: #ffa500; --infograph-color2: #ffa500; --infograph-color1: #1a8b31; }
.uc-link {
display: inline-block;
padding: 7px 15px;
text-decoration: none !important;
text-align: center;
min-width: 150px;
color: #fff!important;
background: #4f836d;
-webkit-box-shadow: 4px 2px 8px 0 rgb(174 172 172 / 56%);
box-shadow: 4px 2px 8px 0 rgb(174 172 172 / 56%);
transition: all .3s;
font-size: 13px;
margin-top: 20px;
}
.uc-link:hover {
transform: translateY(4px);
}
.uc-numbers {
padding: 20px 0px 40px;
border-bottom: 3px solid #f4f4f4;
}
.uc-numbers h2{
text-align: center;
padding-bottom: 20px;
}
.uc-numbers-inner {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
position: relative;
z-index: 0;
}
.uc-numbers-inner__item {
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 44%;
margin: 25px 1%;
padding: 25px;
border-radius: 3px;
background: #fff;
box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3) inset;
box-sizing: border-box;
}
.uc-numbers-inner__item strong {
color: #1a8b31;
font-size: 16px;
transition: 0.5s;
}
.uc-numbers-inner__item:hover strong {
color: #ffa500;
}
.uc-numbers-inner__item:before {
content: '';
position: absolute;
top: -4px;
left: -4px;
right: -4px;
bottom: -4px;
background: #1a8b31;
z-index: -1;
transform: skew(4deg, -3deg);
border-radius: 3px;
transition: 0.5s;
}
.uc-numbers-inner__item:hover:before {
/*background: #5f7a87;*/
transform: skew(0deg, 0deg);
}
.uc-numbers-inner__title {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 10px;
font-size: 80px!important;
font-weight: bold;
line-height: 5rem;
color: rgba(255, 165, 0, 0.1);
transition: 0.5s;
}
.uc-numbers-inner__item:hover .uc-numbers-inner__title {
top: -10px;
color: rgba(255, 165, 0, 0.99);
}
@media screen and (max-width: 800px) {
.uc-numbers-inner__item {
width: 100%;
}
}
.uc-blockquote-panel {
text-align: center;
padding: 40px 20px;
border-bottom: 3px solid #f4f4f4;
}
.uc-blockquote-panel h2 {
margin-bottom: 30px;
}
.uc-blockquote-wrap {
display: flex;
flex-wrap: wrap;
}
.uc-blockquote {
position: relative;
box-sizing: border-box;
padding: 10px 10px 0px 40px;
margin: 10px 0px;
text-align: left;
width: 49%;
}
.uc-blockquote-round1 {
position: absolute;
top: 0px;
left: 0px;
width: 40px;
height: 40px;
border-radius: 50%;
text-align: center;
background: rgba(117, 185, 131, .7);
animation: slide-2 4s infinite linear;
}
.uc-blockquote-round1:before {
content: "?";
line-height: 42px;
color: #ffa500;
font-size: 40px;
font-family: none;
}
.uc-blockquote-round2 {
position: absolute;
top: 5px;
left: 5px;
width: 40px;
height: 40px;
border-radius: 50%;
background: #1a8b31;
animation: slide-2 3s infinite linear;
}
.uc-blockquote-text {
position: relative;
padding: 0 20px 0 20px;
}
.uc-blockquote-text strong {
color: #232322;
font-size: 16px;
}
@media screen and (max-width: 800px) {
.uc-blockquote {
width: 100%;
}
}
@keyframes slide-2 {
from {
transform: rotate(0deg) translate(-3px) rotate(0deg);
-webkit-transform: rotate(0deg) translate(-3px) rotate(0deg);
}
to {
transform: rotate(360deg) translate(-3px) rotate(-360deg);
-webkit-transform: rotate(360deg) translate(-3px) rotate(-360deg);
}
}
@-webkit-keyframes slide-2 {
from {
transform: rotate(0deg) translate(-3px) rotate(0deg);
-webkit-transform: rotate(0deg) translate(-3px) rotate(0deg);
}
to {
transform: rotate(360deg) translate(-3px) rotate(-360deg);
-webkit-transform: rotate(360deg) translate(-3px) rotate(-360deg);
}
}
.uc-four-panel {
padding: 20px 0;
}
.uc-four-panel h2 {
text-align: center;
margin-bottom: 20px;
}
.uc-four-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.uc-four-item {
display: flex;
flex-direction: column;
width: 46%;
padding: 0px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
margin: 2%;
transition: all .4s ease;
box-sizing: border-box;
}
.uc-four-item:hover {
background: #ffffff;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}
.uc-four-item strong {
font-size: 18px;
color: #1a8b31;
line-height: 22px;
transition: all .6s ease;
}
.uc-four-item:hover strong {
color: #ffa500;
}
.uc-four-item:hover .uc-move {
animation: 1s ease 0s normal none 1 running bounceInRight;
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(100px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0);
}
75% {
transform: translate3d(10px, 0, 0);
}
90% {
transform: translate3d(-5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInRight {
animation-name: bounceInRight;
}
.uc-four-content-1,
.uc-four-content-2,
.uc-four-content-3,
.uc-four-content-4 {
text-align: center;
position: relative;
padding: 40px;
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
/*background: #f2f6f9;*/
}
.uc-four-content-1:after {
content: '';
position: absolute;
top: 0px;
right: 0px;
width: 100%;
height: 8px;
background: var(--infograph-color1);
}
.uc-four-content-1:before {
content: '';
position: absolute;
bottom: 0px;
left: 0px;
width: 8px;
height: 100%;
background: var(--infograph-color1);
}
.uc-four-content-2:after {
content: '';
position: absolute;
top: 0px;
right: 0px;
width: 100%;
height: 8px;
background: var(--infograph-color2);
}
.uc-four-content-2::before {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 8px;
height: 100%;
background: var(--infograph-color2);
}
.uc-four-content-3:after {
content: '';
position: absolute;
bottom: 0px;
right: 0px;
width: 100%;
height: 8px;
background: var(--infograph-color3);
}
.uc-four-content-3::before {
content: '';
position: absolute;
bottom: 0px;
left: 0px;
width: 8px;
height: 100%;
background: var(--infograph-color3);
}
.uc-four-content-4::after {
content: '';
position: absolute;
bottom: 0px;
right: 0px;
width: 100%;
height: 8px;
background: var(--infograph-color4);
}
.uc-four-content-4::before {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 8px;
height: 100%;
background: var(--infograph-color4);
}
@media screen and (max-width: 1025px) {
.uc-four-item {
width: 100%;
margin: 10px auto;
}
.uc-four-content-1:after,
.uc-four-content-1:before,
.uc-four-content-2:after,
.uc-four-content-2:before,
.uc-four-content-3:after,
.uc-four-content-3:before,
.uc-four-content-4:after,
.uc-four-content-4:before {
display: none;
}
.uc-four-content-1,
.uc-four-content-2,
.uc-four-content-3,
.uc-four-content-4 {
padding: 20px;
}
.uc-four-content-1
{
border: 10px solid var(--infograph-color1);
}
.uc-four-content-2
{
border: 10px solid var(--infograph-color2);
}
.uc-four-content-3 {
border: 10px solid var(--infograph-color3);
}
.uc-four-content-4 {
border: 10px solid var(--infograph-color4);
}
}
.uc-blockquote-main {
padding: 20px 0px 0px;
text-align: center;
}
.uc-blockquote-panel {
text-align: center;
padding: 40px 20px;
border-bottom: 3px solid #f4f4f4;
}
.uc-blockquote-panel h2 {
margin-bottom: 30px;
}
.uc-blockquote-wrap {
display: flex;
flex-wrap: wrap;
}
.uc-blockquote {
position: relative;
box-sizing: border-box;
padding: 10px 10px 0px 40px;
margin: 10px 0px;
text-align: left;
width: 49%;
}
.uc-row-panel {
padding: 40px 10px;
text-align: center;
}
.uc-row-panel h2 {
margin-bottom: 40px;
}
.uc-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.uc-asset-item {
width: 23%;
margin: 15px 1%;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
.uc-asset-item strong {
color: #1a8b31;
font-size: 20px;
}
.uc-asset-item__img {
height: 100px;
width: 100px;
position: relative;
color: #a5C8B9;
background: #fff;
box-shadow: 0px 0px 20px rgba(51, 51, 51, 0.3);
border-radius: 100%;
}
.uc-asset-item__img img {
margin-top: 25px;
color: #01980d;
}
.uc-asset-item__text {
margin-top: 40px;
}
.uc-circles {
border-radius: 100%;
width: 110px;
height: 110px;
margin-top: -5px;
position: absolute;
animation: Orbita 10s linear infinite;
z-index: 0;
}
.uc-circles2 {
animation: Orbita 11s linear infinite;
}
.uc-circles3 {
animation: Orbita 9s linear infinite;
}
.uc-circles4 {
animation: Orbita 13s linear infinite;
}
.uc-circle1 {
background: #1a8b31;
width: 10px;
height: 10px;
top: 47px;
left: -44px;
position: relative;
display: inline-block;
border-radius: 10px;
}
.uc-circle2 {
background: #ffa500;
width: 13px;
height: 3px;
top: -6px;
right: 0px;
position: relative;
display: inline-block;
border-radius: 20px;
}
.uc-circle3 {
border: 3px solid #ffa500;
width: 3px;
height: 3px;
bottom: -95px;
right: -24px;
position: relative;
display: inline-block;
border-radius: 10px;
}
@keyframes Orbita {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}
@media screen and (max-width: 800px) {
.uc-asset-item {
width: 46%;
}
}
@media screen and (max-width: 600px) {
.uc-asset-item {
width: 100%;
}
}
Пакет "банан" білий розміром 40х50см.
Щільність 50мкр.
Укріплена ручка, дно.
На сайті представлена вартість пакета з друком ВАШОГО логотипу в один колір з одного боку.
Якщо у Вас є інші параметри друку, з задоволенням прорахуємо вартість пакета в телефонному режимі.
Розмір друкування зображення 30х30см.
Цей пакет використовують як рекламну або подарункову упаковку.
ТОРБОЧКА — сувеніри та рекламна продукція за доступними цінами
Ключові особливості наших товарів
01
Висока якість готової продукції
Наша готова продукція для сувенірних та рекламних цілей має виняткові властивості практичності та надійності, в чому ви можете бути абсолютно впевнені.
02
Відповідність заявлених характеристик
Всі характеристики товарів, які вказані на сайті нашого інтернет-магазину, повністю відповідають характеристикам продукції, що доставляється нашим клієнтам.
03
Власне виробництво
За рахунок сучасної технологічної бази виробництва, ефективного контролю за якістю та високою кваліфікацією наших співробітників ми виготовляємо широкий асортимент готової продукції.
04
Прийнятні ціни
Завдяки власним виробничим потужностям, вартість нашої продукції завжди є прийнятною. Наша компанія завжди прагне запропонувати покупцям найвигідніші умови.
Чому нам можна довіряти
Ми персонально підходимо до виконання замовлення кожного клієнта
Ми маємо в своєму розпорядженні колосальний досвід роботи у своїй сфері діяльності.
Переваги нашої компанії
Можливість брендування продукції
У нас можна замовити послугу з нанесення фірмового стилю, малюнку чи напису на продукції, ми неодмінно візьмемо до уваги всі ваші побажання.
Наявність продукції на складі
Компанія має власний склад готової продукції, що у свою чергу істотно впливає на оперативне виконання відправлення замовлень.
Різні варіанти оплати
На вибір компанія пропонує різні способи оплати: готівкою, післяплатою "Нова Пошта", за реквізитами, післяплатою.
Оперативна доставка
Ми оперативно доставляємо товари територією України службами логістики. Ви отримаєте потрібну вам продукцію найближчим часом.
Бажаєте придбати нашу продукцію? В такому випадку достатньо залишити заявку. Наш менеджер оперативно її обробить і зв'яжеться з вами для уточнення деталей.
Як ми працюємо?
Крок 1
Оформлення заявки на сайті або за телефоном
Крок 2
Консультація менеджера та узгодження всіх нюансів за потреби
Крок 3
Оплата зручним способом
Крок 4
Доставка обраним способом
Характеристики
Основні | |
---|---|
Виробник | Власне виробництво |
Країна виробник | Україна |
Тип | Пакет "банан" |
Матеріал | Поліетилен |
Ширина | 400 мм |
Довжина | 500 мм |
Колір | Білий |
Товщина | 50 мкм |
Інформація для замовлення
- Ціна: 104 ₴