/*-----------------------------------------------------------------------------------

    Template Name: tabnakwebkhordad,
  

-----------------------------------------------------------------------------------*/


@font-face {
	font-family: 'pinar';
	font-weight: 700;
	font-fallback: Arial;
	src: url('../fonts/pinar/Pinar-FD-Bold.ttf') format('truetype'),
		url('../fonts/pinar/Pinar-SemiBold.woff2') format('woff2');
}
@font-face {
	font-family: 'pinar';
	font-weight: 300;
	font-fallback: Arial;
	src: url('../fonts/pinar/Pinar-FD-Light.ttf') format('truetype'),
		url('../fonts/pinar/Pinar-FD-Light.woff2') format('woff2');
}
@font-face {
	font-family: 'pinar';
	font-weight: 400;
	font-fallback: Arial;
	src: url('../fonts/pinar/Pinar-FD-Regular.woff2') format('woff2'),
		url('../fonts/pinar/Pinar-FD-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'pinar';
	font-weight: 800;
	font-fallback: Arial;
	src: url('../fonts/pinar/Pinar-FD-ExtraBold.ttf') format('truetype'),
		url('../fonts/pinar/Pinar-ExtraBold.woff2') format('woff2');
}
@font-face {
	font-family: 'pinar';
	font-weight: 600;
	font-fallback: Arial;
	src: url('../fonts/pinar/Pinar-FD-SemiBold.woff2') format('woff2'),
		url('../fonts/pinar/Pinar-FD-SemiBold.ttf') format('truetype');
}
@font-face {
	font-family: 'pinar';
	font-weight: 500;
	font-fallback: Arial;
	src: url('../fonts/pinar/Pinar-FD-Medium.ttf') format('truetype'),
		url('../fonts/pinar/Pinar-FD-Medium-1.woff2') format('woff2');
}

@font-face {
  font-family: 'twlanding';
  src:  url('../fonts/twlanding.eot?x7jvt9');
  src:  url('../fonts/twlanding.eot?x7jvt9#iefix') format('embedded-opentype'),
    url('../fonts/twlanding.ttf?x7jvt9') format('truetype'),
    url('../fonts/twlanding.woff?x7jvt9') format('woff'),
    url('../fonts/twlanding.svg?x7jvt9#twlanding') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="tw-"], [class*=" tw-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'twlanding' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



  /* استایل‌های پایه */
        :root {
            --primary-color: #6366f1;
            --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --secondary-color: #4f46e5;
            --dark-color: #1e293b;
            --light-color: #f8fafc;
            --gray-color: #64748b;
            --success-color: #10b981;
            --card-bg: #ffffff;
            --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            --bg-color: #f8fafc;
            --text-color: #1e293b;
            --header-bg: rgba(255, 255, 255, 0.95);
            --footer-bg: #1e293b;
            --footer-text: #f1f5f9;
            --border-color: rgba(99, 102, 241, 0.1);
        }

        /* حالت شب */
        .dark-mode {
            --primary-color: #818cf8;
            --primary-gradient: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
            --secondary-color: #6366f1;
            --dark-color: #f1f5f9;
            --light-color: #0f172a;
            --gray-color: #94a3b8;
            --card-bg: #1e293b;
            --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
            --bg-color: #0f172a;
            --text-color: #f1f5f9;
            --header-bg: rgba(30, 41, 59, 0.95);
            --footer-bg: #0f172a;
            --footer-text: #cbd5e1;
            --border-color: rgba(255, 255, 255, 0.1);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'pinar', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            padding: 0;
            margin: 0;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--secondary-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ناوبری */
        .navigation {
            background-color: var(--header-bg);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
            transition: all 0.3s ease;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo img {
            height: 42px;
            width: auto;
            transition: all 0.3s ease;
            filter: brightness(0.9);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
        }
        
        .navigation ul {
            display: flex;
            align-items: center;
            list-style: none;
        }
        
        .navigation li {
            margin-left: 28px;
        }
        
        .navigation a {
            color: var(--text-color);
            font-weight: 500;
            position: relative;
            padding: 8px 0;
        }
        
        .navigation a:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }
        
        .navigation a:hover:after {
            width: 100%;
            left: 0;
        }
        
        .tfm-buy-now {
            display: flex;
            align-items: center;
            background: var(--primary-gradient);
            border-radius: 8px;
            padding: 10px 20px;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
        }
        
        .tfm-buy-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(99, 102, 241, 0.3);
        }
        
        .tfm-buy-now span {
            margin-left: 12px;
        }
        
        .tfm-buy-now a {
            color: white;
            font-weight: 600;
        }
        
        /* دکمه تغییر حالت - جدید و بهبود یافته */
        .theme-toggle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            border: none;
            font-size: 1.5rem;
        }
        
        .theme-toggle:hover {
            transform: translateY(-5px) rotate(15deg);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
        }
        
        /* منوی همبرگری */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }
        
        .hamburger-menu span {
            height: 3px;
            width: 100%;
            background-color: var(--text-color);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* بخش splash */
        .splash {
            background: var(--primary-gradient);
            color: white;
            text-align: center;
            padding: 160px 0 100px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .splash:before {
            content: '';
            position: absolute;
            top: -70%;
            left: -20%;
            width: 140%;
            height: 240%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(15deg);
        }
        
        .splash-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .logo-wrapper {
            margin-bottom: 30px;
        }
        
        .logo {
            max-width: 200px;
            height: auto;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
        }
        
        .splash h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 300;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .badge-item {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            padding: 12px 20px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .badge-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }
        
        .badge-icon {
            width: 28px;
            height: 28px;
            margin-left: 10px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
			font-size: 2em;
        }
        
        /* بخش دموها */
        .section {
            padding: 100px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.4rem;
            color: var(--gray-color);
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 60px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }
        
        .section-header p {
            max-width: 600px;
            margin: 0 auto;
            color: var(--gray-color);
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .has-demo-count {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: var(--text-color);
        }
        
        .demo-count {
            background: var(--primary-gradient);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-left: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .flex-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .flex-box {
            flex: 0 0 calc(33.333% - 30px);
            margin: 15px;
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            position: relative;
        }
        
        .flex-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        

.image-wrapper {
    overflow: hidden;
    position: relative;
    height: 300px;
}


.screenshot {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 3s ease-in-out;
}



        

        
        .entry-header {
            padding: 25px;
            text-align: center;
        }
        
        .entry-header h3 {
            font-size: 1.3rem;
            color: var(--text-color);
            font-weight: 600;
        }
        
		
		
		
		
		/* بخش اصلی ویژگی‌ها */
.features-section {
  background-color: var(--light-color);
    padding: 100px 0;
    position: relative;
}

/* هدر بخش (شامل عنوان) */
.features-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-section .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #343a40;
}

/* گرید نمایش ویژگی‌ها */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* نمایش ۴ ستون در حالت دسکتاپ */
    gap: 30px; /* فاصله بین آیتم‌ها */
}

/* هر باکس ویژگی */
.feature-box {
    background-color: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* افکت هاور برای هر باکس */
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* دایره رنگی دور آیکون */
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* رنگ آیکون SVG سفید خواهد بود */
}

/* رنگ‌بندی پس‌زمینه آیکون‌ها */
.feature-icon-wrapper.color-1 { background-color: #4B89DA; }
.feature-icon-wrapper.color-2 { background-color: #E53935; }
.feature-icon-wrapper.color-3 { background-color: #4CAF50; }
.feature-icon-wrapper.color-4 { background-color: #03A9F4; }
.feature-icon-wrapper.color-5 { background-color: #FDD835; }
.feature-icon-wrapper.color-6 { background-color: #26C6DA; }
.feature-icon-wrapper.color-7 { background-color: #9C27B0; }
.feature-icon-wrapper.color-8 { background-color: #607D8B; }

/* عنوان هر ویژگی */
.feature-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
}

/* متن توضیحات هر ویژگی */
.feature-box p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

/* کدهای واکنش‌گرایی برای موبایل و تبلت */
/* برای تبلت: نمایش ۲ ستونه */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* برای موبایل: نمایش تک ستونه */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .features-section .section-header h2 {
        font-size: 1.8rem;
    }
}
		
		
/* تنظیمات اندازه و چینش فونت آیکون در بخش ویژگی‌ها */
.feature-icon-wrapper [class^="tw-"] {
    font-size: 32px;  /* اندازه آیکون را تنظیم می‌کند */
    line-height: 1;   /* به تراز عمودی کمک می‌کند */
}		
		
		
		/* استایل‌های بخش ویژگی‌ها در حالت تاریک */
.dark-mode .features-section {
    background-color: var(--bg-color); /* استفاده از رنگ پس‌زمینه اصلی حالت تاریک */
}

.dark-mode .features-section .section-header h2 {
    color: var(--text-color); /* استفاده از رنگ متن اصلی حالت تاریک */
}

.dark-mode .feature-box {
    background-color: var(--card-bg); /* استفاده از رنگ پس‌زمینه کارت‌ها در حالت تاریک */
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color); /* افزودن یک حاشیه برای تفکیک بهتر */
}

.dark-mode .feature-box h3 {
    color: var(--text-color); /* استفاده از رنگ متن اصلی برای عنوان ویژگی */
}

.dark-mode .feature-box p {
    color: var(--gray-color); /* استفاده از رنگ خاکستری برای توضیحات */
}
		
		
		
		/* بخش فراخوان به اقدام (CTA) */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-color);
    border-top: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #E91E63; /* رنگ صورتی/قرمز مشابه تصویر */
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #c2185b;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.credits {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* استایل‌های حالت تاریک برای بخش CTA */
.dark-mode .cta-section {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.dark-mode .cta-section h2 {
    color: var(--text-color);
}

.dark-mode .credits {
    color: var(--gray-color);
}
		
		
		
		
        /* بخش ویژگی‌ها */
		
        /* تنظیمات فونت آیکون برای دکمه‌های شناور */
.theme-toggle i,
.back-to-top i {
    font-size: 24px; /* تنظیم اندازه آیکون */
    line-height: 1;  /* تراز عمودی بهتر */
}

/* چرخاندن آیکون فلش راست برای دکمه بالا رونده */
.back-to-top i {
    display: inline-block; /* برای اعمال transform */
    transform: rotate(-90deg);
}
	.badge-icon[class^="tw-"] {
    font-size: 28px;
    width: auto;
}	
		
		
        #theme-icon {
    width: 24px;
    height: 24px;
}
        /* فوتر */
        footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
        }
        
        footer .section-header {
            margin-bottom: 0;
        }
        
        footer h2 {
            color: var(--footer-text);
        }
        
        footer p {
            max-width: 700px;
            margin: 0 auto 25px;
            line-height: 1.8;
            color: var(--footer-text);
            opacity: 0.9;
        }
        
        /* دکمه بالا رونده */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            left: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
            border: none;
            font-size: 1.2rem;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
        }
        
		   .coming-soon {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-color);
            font-size: 1.5rem;
            font-weight: 600;
        }
		
		
		
		
		
		
		
		
        /* واکنش‌گرایی */
        @media (max-width: 992px) {
            .flex-box, .feature-box {
                flex: 0 0 calc(50% - 30px);
            }
        }
        
        @media (max-width: 768px) {
            .hamburger-menu {
                display: flex;
                z-index: 1001;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: var(--card-bg);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s ease;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
                z极: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .navigation ul {
                flex-direction: column;
                width: 100%;
            }
            
            .navigation li {
                margin: 15px 0;
                width: 100%;
                text-align: center;
            }
            
            .navigation a {
                display: block;
                padding: 15px;
                font-size: 1.1rem;
            }
            
            .tfm-buy-now {
                margin-top: 20px;
            }
            
            .nav-container {
                flex-direction: row;
            }
            
极           .nav-logo {
                margin-bottom: 0;
            }
            
            .splash {
                padding: 130px 0 80px;
            }
            
            .splash h2 {
                font-size: 2.2rem;
            }
            
            .badges {
                flex-direction: column;
                align-items: center;
            }
            
            .badge-item {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .flex-box, .feature-box {
                flex: 0 0 calc(100% - 30px);
            }
            
         .has-demo-count {
    display: inline-block; /* از فلکس به اینلاین-بلاک تغییر می‌کند تا بتوانیم موقعیت‌دهی کنیم */
    position: relative;    /* این خط به عنوان لنگر برای موقعیت‌دهی عدد عمل می‌کند */
    padding-left: 55px;    /* کمی فاصله از سمت چپ ایجاد می‌کند تا عدد در آن قرار بگیرد */
    margin-bottom: 40px;   /* فاصله از پایین را بیشتر می‌کند تا با محتوای بعدی تداخل نکند */
    /* خطوط justify-content و align-items که مربوط به فلکس بودند دیگر لازم نیستند */
}

/* مرحله ۲: استایل دایره عدد را پیدا و ویرایش کنید */
.demo-count {
    position: absolute; /* موقعیت عدد را نسبت به والدش (has-demo-count) تنظیم می‌کند */
    bottom: -15px;      /* عدد را کمی پایین‌تر از متن اصلی قرار می‌دهد */
    left: 0;            /* عدد را در منتهی‌الیه سمت چپِ نگهدارنده قرار می‌دهد */
    
    /* کمی اندازه را کوچک‌تر می‌کنیم تا ظاهر بهتری داشته باشد */
    width: 45px;
    height: 45px;
    font-size: 1.1rem;

    /* مارجین قبلی را حذف می‌کنیم */
    margin-left: 0;
}
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .back-to-top {
                bottom: 90px;
                left: 20px;
                width: 45px;
                height: 45px;
            }
            
            .theme-toggle {
                bottom: 20px;
                right: 20px;
                width: 30px;
                height: 30px;
            }
            
            /* انیمیشن منوی همبرگری */
            .hamburger-menu.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .hamburger-menu.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger-menu.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
        }
		
		
		
		
		
		
		
		
		
		
.tw-mont:before {
  content: "\e900";
}
.tw-support:before {
  content: "\e901";
}
.tw-multilingual:before {
  content: "\e902";
}
.tw-settings:before {
  content: "\e903";
}
.tw-noun-settings-48961311:before {
  content: "\e904";
}
.tw-install:before {
  content: "\e905";
}
.tw-wordpress:before {
  content: "\e906";
}
.tw-elementor:before {
  content: "\e907";
}
.tw-geometric:before {
  content: "\e908";
}
.tw-update:before {
  content: "\e909";
}
.tw-noun-support-8003358:before {
  content: "\e90a";
}
.tw-responsive:before {
  content: "\e90b";
}
.tw-noun-responsive-8041793:before {
  content: "\e90c";
}
.tw-setting:before {
  content: "\e90d";
}
.tw-iran-map:before {
  content: "\e90e";
}
.tw-laptop:before {
  content: "\e90f";
}
.tw-noun-multilingual-4725749:before {
  content: "\e910";
}
.tw-iran:before {
  content: "\e911";
}
.tw-sun:before {
  content: "\e912";
}
.tw-chevron-thin-left:before {
  content: "\e92e";
}
.tw-chevron-thin-right:before {
  content: "\e92f";
}
.tw-atitle:before {
  content: "\e930";
}
.tw-coffee:before {
  content: "\e931";
}
.tw-aparat:before {
  content: "\e935";
}
.tw-cloob:before {
  content: "\e936";
}
.tw-instagram:before {
  content: "\e937";
}
.tw-telegram:before {
  content: "\e938";
}
.tw-shopping-basket:before {
  content: "\e93a";
}
.tw-loop:before {
  content: "\e942";
}
.tw-heart-outlined:before {
  content: "\e943";
}
.tw-heart:before {
  content: "\e944";
}
.tw-search2:before {
  content: "\e94c";
}
.tw-comment:before {
  content: "\e94d";
}
.tw-instagram2:before {
  content: "\e959";
}
.tw-youtube:before {
  content: "\e95a";
}
.tw-price-tag:before {
  content: "\e95b";
}
.tw-cog:before {
  content: "\e95e";
}
.tw-logo-tabnakweb:before {
  content: "\e95f";
}
.tw-phone1:before {
  content: "\e962";
}
.tw-star:before {
  content: "\e963";
}
.tw-location2:before {
  content: "\e966";
}
.tw-download2:before {
  content: "\e968";
}
.tw-bubbles2:before {
  content: "\e96d";
}
.tw-bubbles4:before {
  content: "\e970";
}
.tw-cancel-circle:before {
  content: "\ea0d";
}
.tw-google-plus:before {
  content: "\ea8b";
}
.tw-facebook:before {
  content: "\ea90";
}
.tw-twitter:before {
  content: "\ea96";
}
