/*
Theme Name: میهن فراز
Theme URI: https://mihanfaraz.com
Author: تیم میهن فراز
Author URI: https://mihanfaraz.com
Description: قالب استارتاپی میهن فراز با طراحی مدرن و انیمیشن‌های جذاب
Version: 1.0
License: GPL v2 or later
*/

@charset "utf-8";

@font-face{font-family:iransansweb;src:url(assets/fonts/IRANSansWeb_Medium.woff2) format('woff2'),url(assets/fonts/IRANSansWeb_Medium.ttf) format('truetype');font-weight:100}
@font-face{font-family:iransansweb;src:url(assets/fonts/IRANSansWeb_Medium.woff2) format('woff2'),url(assets/fonts/IRANSansWeb_Medium.ttf) format('truetype');font-weight:300}
@font-face{font-family:iransansweb;src:url(assets/fonts/IRANSansWeb_Medium.woff2) format('woff2'),url(assets/fonts/IRANSansWeb_Medium.ttf) format('truetype');font-weight:400}
@font-face{font-family:iransansweb;src:url(assets/fonts/IRANSansWeb_Medium.woff2) format('woff2'),url(assets/fonts/IRANSansWeb_Medium.ttf) format('truetype');font-weight:500}
@font-face{font-family:iransansweb;src:url(assets/fonts/IRANSansWeb_Bold.woff2) format('woff2'),url(assets/fonts/IRANSansWeb_Bold.ttf) format('truetype');font-weight:700}
@font-face{font-family:iransansweb;src:url(assets/fonts/IRANSansWeb_Bold.woff2) format('woff2'),url(assets/fonts/IRANSansWeb_Bold.ttf) format('truetype');font-weight:900}

   @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap');
        
        body {
            font-family: 'iransansweb' !important;
            box-sizing: border-box;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        /* Light mode classes */
        .light-mode {
            background-color: #F8FAFC;
            color: #1E293B;
        }
        
        .light-mode .bg-dark-bg {
            background-color: #F8FAFC;
        }
        
        .light-mode .bg-dark-card {
            background-color: #FFFFFF;
        }
        
        .light-mode .border-dark-border {
            border-color: #E2E8F0;
        }
        
        .light-mode .text-white {
            color: #1E293B;
        }
        
        .light-mode .text-gray-300 {
            color: #475569;
        }
        
        .light-mode .text-gray-400 {
            color: #64748B;
        }
        
        /* Startup Rocket Animation */
        @keyframes rocketLaunch {
            0% { 
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            50% { 
                transform: translateY(-100px) rotate(-5deg);
                opacity: 1;
            }
            100% { 
                transform: translateY(-200px) rotate(5deg);
                opacity: 0.8;
            }
        }
        
        @keyframes orbit {
            from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
            to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
        }
        
        @keyframes orbit-reverse {
            from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
            to { transform: rotate(-360deg) translateX(150px) rotate(360deg); }
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(0.95); }
        }
        
        @keyframes slideIn {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes planetRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .rocket-animation {
            animation: rocketLaunch 3s ease-in-out infinite;
        }
        
        .orbit-animation {
            animation: orbit 20s linear infinite;
        }
        
        .orbit-reverse-animation {
            animation: orbit-reverse 25s linear infinite;
        }
        
        .twinkle-animation {
            animation: twinkle 2s ease-in-out infinite;
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        .pulse-animation {
            animation: pulse 3s ease-in-out infinite;
        }
        
        .slide-in {
            animation: slideIn 0.8s ease-out forwards;
        }
        
        .fade-in {
            animation: fadeIn 1s ease-out forwards;
        }
        
        .planet-rotate {
            animation: planetRotate 30s linear infinite;
        }
        
        .stagger-1 { animation-delay: 0.2s; }
        .stagger-2 { animation-delay: 0.4s; }
        .stagger-3 { animation-delay: 0.6s; }
        .stagger-4 { animation-delay: 0.8s; }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #1E293B;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #7C3AED;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #6D28D9;
        }
        
        .light-mode ::-webkit-scrollbar-track {
            background: #E2E8F0;
        }


/* استایل‌های صفحه تکی پست */
.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: inherit;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: inherit;
}

.article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

.article-content ul, 
.article-content ol {
    margin-bottom: 1.25rem;
    padding-right: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* سایدبار sticky */
.sidebar-sticky {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

/* دکمه‌های اشتراک‌گذاری */
.share-btn {
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

/* Box styles for content */
.article-content .info-box,
.article-content .warning-box,
.article-content .success-box,
.article-content .quote-box {
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-right-width: 4px;
}

.article-content .info-box {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: #3B82F6;
}

.article-content .warning-box {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: #F59E0B;
}

.article-content .success-box {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: #22C55E;
}

.article-content .quote-box {
    background-color: rgba(124, 58, 237, 0.1);
    border-color: #7C3AED;
    font-style: italic;
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }

/* Line clamp for titles */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Comment styling */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #334155;
}

.comment-author {
    font-weight: bold;
    color: white;
}

.comment-meta {
    font-size: 0.875rem;
    color: #64748B;
}

.comment-content {
    margin-top: 0.5rem;
    color: #CBD5E1;
}

.comment-reply-link {
    color: #7C3AED;
    text-decoration: none;
    font-size: 0.875rem;
}

.comment-reply-link:hover {
    color: #A78BFA;
}

/* Form styles */
.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #CBD5E1;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #0F172A;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    color: white;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    ring: 2px;
    ring-color: #7C3AED;
    border-color: #7C3AED;
}

.submit {
    background-color: #7C3AED;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit:hover {
    background-color: #6D28D9;
}

.nim-ellip {
  background-color:#fff!important
}

.text-p{
    color: #FFF;
}

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.loading-logo{
    width:500px;
    animation: fadeLogo 2s ease-in-out infinite;
}

@keyframes fadeLogo{
    0%{opacity:0.3;}
    50%{opacity:1;}
    100%{opacity:0.3;}
}

/* به style.css قبلی اضافه کنید */

/* استایل‌های صفحه 404 */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bg-video{
    background-image:url("https://mihanfaraz.com/wp-content/themes/mihanfaraz/assets/img/vid1.png");
}

/* انیمیشن شناور */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* انیمیشن پالس */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* انیمیشن fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* انیمیشن چرخش */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-slow {
    animation: rotate 20s linear infinite;
}

/* افکت درخشش */
.glow {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                0 0 40px rgba(255, 255, 255, 0.2),
                0 0 60px rgba(255, 255, 255, 0.1);
}

/* افکت hover دکمه‌ها */
.btn-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hover:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* انیمیشن ستاره‌ها */
@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

/* فرم جستجوی صفحه 404 */
#search-form input {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#search-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#search-form input:focus {
    background-color: rgba(255, 255, 255, 0.3);
}

/* دکمه‌های صفحه 404 */
.page-404 .btn-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-404 .btn-hover:hover {
    transform: translateY(-5px) scale(1.05);
}

/* کارت حقایق جالب */
.fun-fact-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* لیست صفحات پرطرفدار */
.popular-links a {
    transition: all 0.3s ease;
}

.popular-links a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateX(-5px);
}

/* انیمیشن‌های اضافی برای ستاره‌ها */
.star:nth-child(2n) {
    animation-duration: 4s;
}

.star:nth-child(3n) {
    animation-duration: 5s;
}

.star:nth-child(5n) {
    width: 3px;
    height: 3px;
}

/* انیمیشن برای آیکون فضانورد */
@keyframes astronautFloat {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    25% {
        transform: translateY(-10px) rotate(-2deg);
    }
    75% {
        transform: translateY(5px) rotate(2deg);
    }
}

.floating-astronaut {
    animation: astronautFloat 4s ease-in-out infinite;
}

/* انیمیشن برای UFO */
@keyframes ufoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.floating-ufo {
    animation: ufoFloat 3s ease-in-out infinite;
}

body {
            font-family: 'iransansweb' !important;
            box-sizing: border-box;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        /* Light mode classes */
        .light-mode {
            background-color: #F8FAFC;
            color: #1E293B;
        }
        
        .light-mode .bg-dark-bg {
            background-color: #F8FAFC;
        }
        
        .light-mode .bg-dark-card {
            background-color: #FFFFFF;
        }
        
        .light-mode .border-dark-border {
            border-color: #E2E8F0;
        }
        
        .light-mode .text-white {
            color: #1E293B;
        }
        
        .light-mode .text-gray-300 {
            color: #475569;
        }
        
        .light-mode .text-gray-400 {
            color: #64748B;
        }
        
        /* انیمیشن‌های سفارشی */
        @keyframes rocketLaunch {
            0% { 
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            50% { 
                transform: translateY(-100px) rotate(-5deg);
                opacity: 1;
            }
            100% { 
                transform: translateY(-200px) rotate(5deg);
                opacity: 0.8;
            }
        }
        
        @keyframes orbit {
            from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
            to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
        }
        
        @keyframes orbit-reverse {
            from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
            to { transform: rotate(-360deg) translateX(150px) rotate(360deg); }
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(0.95); }
        }
        
        @keyframes slideIn {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes planetRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .rocket-animation {
            animation: rocketLaunch 3s ease-in-out infinite;
        }
        
        .orbit-animation {
            animation: orbit 20s linear infinite;
        }
        
        .orbit-reverse-animation {
            animation: orbit-reverse 25s linear infinite;
        }
        
        .twinkle-animation {
            animation: twinkle 2s ease-in-out infinite;
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        .pulse-animation {
            animation: pulse 3s ease-in-out infinite;
        }
        
        .slide-in {
            animation: slideIn 0.8s ease-out forwards;
        }
        
        .fade-in {
            animation: fadeIn 1s ease-out forwards;
        }
        
        .planet-rotate {
            animation: planetRotate 30s linear infinite;
        }
        
        .stagger-1 { animation-delay: 0.2s; }
        .stagger-2 { animation-delay: 0.4s; }
        .stagger-3 { animation-delay: 0.6s; }
        .stagger-4 { animation-delay: 0.8s; }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #1E293B;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #7C3AED;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #6D28D9;
        }
        
        .light-mode ::-webkit-scrollbar-track {
            background: #E2E8F0;
        }
        
         /* Page specific styles */
            .page-template-default .article-content {
                line-height: 1.9;
            }
            
            .page-template-default .article-content h2 {
                font-size: 1.75rem;
                font-weight: 700;
                margin-top: 2rem;
                margin-bottom: 1rem;
                color: white;
                position: relative;
                padding-right: 1.5rem;
            }
            
            .page-template-default .article-content h2::before {
                content: '';
                position: absolute;
                right: 0;
                top: 0.5rem;
                width: 4px;
                height: 1.5rem;
                background: linear-gradient(to bottom, #7C3AED, #A78BFA);
                border-radius: 2px;
            }
            
            .page-template-default .article-content h3 {
                font-size: 1.5rem;
                font-weight: 600;
                margin-top: 1.5rem;
                margin-bottom: 0.75rem;
                color: white;
                padding-right: 1rem;
            }
            
            .page-template-default .article-content p {
                margin-bottom: 1.25rem;
            }
            
            .page-template-default .article-content ul,
            .page-template-default .article-content ol {
                margin-bottom: 1.25rem;
                padding-right: 1.5rem;
            }
            
            .page-template-default .article-content li {
                margin-bottom: 0.5rem;
                line-height: 1.8;
            }
            
            .page-template-default .article-content table {
                width: 100%;
                margin: 1.5rem 0;
                border-collapse: collapse;
                border-radius: 0.5rem;
                overflow: hidden;
                border: 1px solid #334155;
            }
            
            .page-template-default .article-content th {
                background-color: #1E293B;
                color: white;
                font-weight: 600;
                padding: 0.75rem;
                text-align: right;
                border: 1px solid #334155;
            }
            
            .page-template-default .article-content td {
                padding: 0.75rem;
                border: 1px solid #334155;
                color: #CBD5E1;
            }
            
            .page-template-default .article-content tr:nth-child(even) {
                background-color: rgba(30, 41, 59, 0.5);
            }
            
            /* Box styles for page */
            .info-box,
            .warning-box,
            .success-box,
            .quote-box {
                margin: 1.5rem 0;
                padding: 1.5rem;
                border-radius: 0.5rem;
                border-right-width: 4px;
            }
            
            .info-box {
                background-color: rgba(59, 130, 246, 0.1);
                border-color: #3B82F6;
            }
            
            .warning-box {
                background-color: rgba(245, 158, 11, 0.1);
                border-color: #F59E0B;
            }
            
            .success-box {
                background-color: rgba(34, 197, 94, 0.1);
                border-color: #22C55E;
            }
            
            .quote-box {
                background-color: rgba(124, 58, 237, 0.1);
                border-color: #7C3AED;
                font-style: italic;
            }


.hero-bg:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(-90deg, rgba(47, 0, 87, 0.41) 0%, rgba(62, 1, 113, 0.29) 100%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 8s ease-out 0s;
}

.hero-tag {
  font-family: var(--font_generalsanssemibold);
  font-weight: 600;
  font-size: 128px;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  bottom: 148px;
  left: 312px;
  /*-webkit-text-stroke: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;*/
  z-index: -1;
}

.content-tags {
  padding:5px 10px 15px 10px
}
.content-tags a {
  background:#dedede;
  color:#848484;
  padding:1px 7px;
  margin:3px;
  display:inline-block;
  border-radius:5px;
  line-height:23px;
  font-size:11px;
  -webkit-transition:0.3s ease-out;
  -moz-transition:0.3s ease-out;
  transition:0.3s ease-out
}
.content-tags a:hover {
  background:#6654e8;
  color:#FFF
}
/*===========================service=========================================\
/* service css */
/* service area style  */
.service-area {
  position: relative;
  z-index: 1;
}

.service-area-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}
.service-area-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(5, 3, 59, 0.85);
}
.service-area-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-header {
  text-align: center;
}
.service-header .title-wrapper {
  margin-top: 19px;
}
.service-header .section-title {
  color: var(--white);
}

.services-wrapper-box {
  margin-top: 58px;
}

.services-wrapper {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 991px) {
  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}


.map-p{
    width:2053px;
}


.copyright_new span{
	font-size: 14px;
    color: #000;
}
.copyright_new span a{
	color: #000;
	-webkit-transition: 0.6s ease-out;
    -moz-transition:  0.6s ease-out;
    transition:  0.6s ease-out;
}
.copyright_new span a:hover{
	color: #6a1fea;
}

.footer-social {
  margin-top: 23px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.footer-social a {
  width: 50px;
  height: 50px;
  background-color: #1E1C40;
  border-radius: 50%;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.footer-social a:hover {
  color: var(--white);
  background-color: var(--theme);
}


.btn.link-ap {
  color: #fff;
  padding: 1px 2px;
  background-color: #999999;
  border-color: #999;
  box-shadow: 0 2px 2px 0 rgba(162, 161, 161, 0.14),0 3px 1px -2px rgba(145, 145, 145, 0.2),0 1px 5px 0 rgba(138, 138, 138, 0.12);
}

.btn.link-ap:hover {
  color: #fff;
  background-color: #ee1c39;
  border-color: #ee1c39;
}

.btn.link-ap:focus,
.btn.link-ap.focus,
.btn.link-ap:hover {
  color: #fff;
  background-color: #ee1c39;
  border-color: #ee1c39;
}

.btn.link-ap:active,
.btn.link-ap.active,
.open>.btn.link-ap.dropdown-toggle,
.show>.btn.link-ap.dropdown-toggle {
  color: #fff;
  background-color: #ee1c39;
  border-color: #ee1c39;
  box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12);
}

.btn.link-ap:active:hover,
.btn.link-ap:active:focus,
.btn.link-ap:active.focus,
.btn.link-ap.active:hover,
.btn.link-ap.active:focus,
.btn.link-ap.active.focus,
.open>.btn.link-ap.dropdown-toggle:hover,
.open>.btn.link-ap.dropdown-toggle:focus,
.open>.btn.link-ap.dropdown-toggle.focus,
.show>.btn.link-ap.dropdown-toggle:hover,
.show>.btn.link-ap.dropdown-toggle:focus,
.show>.btn.link-ap.dropdown-toggle.focus {
  color: #fff;
  background-color: #9124a3;
  border-color: #3f1048;
}

.btn.link-gap {
  color: #fff;
  padding: 1px 2px;
  background-color: #999;
  border-color: #999;
  box-shadow: 0 2px 2px 0 rgba(162, 161, 161, 0.14),0 3px 1px -2px rgba(145, 145, 145, 0.2),0 1px 5px 0 rgba(138, 138, 138, 0.12);
}

.btn.link-gap:hover {
  color: #fff;
  background-color: #aa17bf;
  border-color: #aa17bf;
}

.btn.link-gap:focus,
.btn.link-gap.focus,
.btn.link-gap:hover {
  color: #fff;
  background-color: #aa17bf;
  border-color: #aa17bf;
}

.btn.link-gap:active,
.btn.link-gap.active,
.open>.btn.link-gap.dropdown-toggle,
.show>.btn.link-gap.dropdown-toggle {
  color: #fff;
  background-color: #aa17bf;
  border-color: #aa17bf;
  box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12);
}

.btn.link-gap:active:hover,
.btn.link-gap:active:focus,
.btn.link-gap:active.focus,
.btn.link-gap.active:hover,
.btn.link-gap.active:focus,
.btn.link-gap.active.focus,
.open>.btn.link-gap.dropdown-toggle:hover,
.open>.btn.link-gap.dropdown-toggle:focus,
.open>.btn.link-gap.dropdown-toggle.focus,
.show>.btn.link-gap.dropdown-toggle:hover,
.show>.btn.link-gap.dropdown-toggle:focus,
.show>.btn.link-gap.dropdown-toggle.focus {
  color: #fff;
  background-color: #aa17bf;
  border-color: #aa17bf;
}

.btn.link-ins {
  color: #fff;
  padding: 1px 2px;
  background-color: #999;
  border-color: #999;
  box-shadow: 0 2px 2px 0 rgba(162, 161, 161, 0.14),0 3px 1px -2px rgba(145, 145, 145, 0.2),0 1px 5px 0 rgba(138, 138, 138, 0.12);
}

.btn.link-ins:hover {
  color: #fff;
  background-color: #ee3896;
  border-color: #ee3896;
}

.btn.link-ins:focus,
.btn.link-ins.focus,
.btn.link-ins:hover {
  color: #fff;
  background-color: #ee3896;
  border-color: #ee3896;
}

.btn.link-ins:active,
.btn.link-ins.active,
.open>.btn.link-ins.dropdown-toggle,
.show>.btn.link-ins.dropdown-toggle {
  color: #fff;
  background-color: #ee3896;
  border-color: #ee3896;
  box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12);
}

.btn.link-ins:active:hover,
.btn.link-ins:active:focus,
.btn.link-ins:active.focus,
.btn.link-ins.active:hover,
.btn.link-ins.active:focus,
.btn.link-ins.active.focus,
.open>.btn.link-ins.dropdown-toggle:hover,
.open>.btn.link-ins.dropdown-toggle:focus,
.open>.btn.link-ins.dropdown-toggle.focus,
.show>.btn.link-ins.dropdown-toggle:hover,
.show>.btn.link-ins.dropdown-toggle:focus,
.show>.btn.link-ins.dropdown-toggle.focus {
  color: #fff;
  background-color: #ee3896;
  border-color: #ee3896;
}

.btn.link-tt {
  color: #fff;
  padding: 1px 2px;
  background-color: #999;
  border-color: #999;
  box-shadow: 0 2px 2px 0 rgba(162, 161, 161, 0.14),0 3px 1px -2px rgba(145, 145, 145, 0.2),0 1px 5px 0 rgba(138, 138, 138, 0.12);
}

.btn.link-tt:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn.link-tt:focus,
.btn.link-tt.focus,
.btn.link-tt:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn.link-tt:active,
.btn.link-tt.active,
.open>.btn.link-tt.dropdown-toggle,
.show>.btn.link-tt.dropdown-toggle {
  color: #fff;
  background-color: #000;
  border-color: #000;
  box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12);
}

.btn.link-tt:active:hover,
.btn.link-tt:active:focus,
.btn.link-tt:active.focus,
.btn.link-tt.active:hover,
.btn.link-tt.active:focus,
.btn.link-tt.active.focus,
.open>.btn.link-tt.dropdown-toggle:hover,
.open>.btn.link-tt.dropdown-toggle:focus,
.open>.btn.link-tt.dropdown-toggle.focus,
.show>.btn.link-tt.dropdown-toggle:hover,
.show>.btn.link-tt.dropdown-toggle:focus,
.show>.btn.link-tt.dropdown-toggle.focus {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn.link-tel {
  color: #fff;
  padding: 1px 2px;
  background-color: #999;
  border-color: #999;
  box-shadow: 0 2px 2px 0 rgba(162, 161, 161, 0.14),0 3px 1px -2px rgba(145, 145, 145, 0.2),0 1px 5px 0 rgba(138, 138, 138, 0.12);
}

.btn.link-tel:hover {
  color: #fff;
  background-color: #2888ee;
  border-color: #2888ee;
}

.btn.link-tel:focus,
.btn.link-tel.focus,
.btn.link-tel:hover {
  color: #fff;
  background-color: #2888ee;
  border-color: #2888ee;
}

.btn.link-tel:active,
.btn.link-tel.active,
.open>.btn.link-tel.dropdown-toggle,
.show>.btn.link-tel.dropdown-toggle {
  color: #fff;
  background-color: #2888ee;
  border-color: #2888ee;
  box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12);
}

.btn.link-tel:active:hover,
.btn.link-tel:active:focus,
.btn.link-tel:active.focus,
.btn.link-tel.active:hover,
.btn.link-tel.active:focus,
.btn.link-tel.active.focus,
.open>.btn.link-tel.dropdown-toggle:hover,
.open>.btn.link-tel.dropdown-toggle:focus,
.open>.btn.link-tel.dropdown-toggle.focus,
.show>.btn.link-tel.dropdown-toggle:hover,
.show>.btn.link-tel.dropdown-toggle:focus,
.show>.btn.link-tel.dropdown-toggle.focus {
  color: #fff;
  background-color: #2888ee;
  border-color: #2888ee;
}