/* Performance Section */
.asil-performance-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.asil-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.asil-section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.asil-section-header p {
    font-size: 17px;
    color: #6B7280;
    margin-bottom: 30px;
}

.asil-section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #425480, #FF8556);
    margin: 0 auto;
    border-radius: 2px;
}

.asil-performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.asil-performance-badge,
.asil-litespeed-badge,
.asil-apps-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 133, 86, 0.15));
    color: #425480;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.asil-performance-content h3,
.asil-litespeed-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 15px;
}

.asil-content-line {
    width: 60px;
    height: 3px;
    background: #425480;
    margin-bottom: 25px;
    border-radius: 2px;
}

.asil-performance-content p,
.asil-litespeed-content p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.asil-performance-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.asil-perf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F9FAFB;
    border-radius: 10px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.asil-perf-item:hover {
    border-color: #425480;
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.asil-perf-item i {
    color: #10B981;
    font-size: 20px;
}

.asil-perf-item span {
    font-weight: 600;
    color: #1F2937;
}

.asil-performance-image,
.asil-litespeed-image {
    position: relative;
}

.asil-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.asil-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.asil-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #FFFFFF;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
}

.asil-image-badge i {
    font-size: 32px;
    color: #425480;
}

.asil-image-badge strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #1F2937;
}

.asil-image-badge span {
    display: block;
    font-size: 13px;
    color: #6B7280;
}

/* LiteSpeed Section */
.asil-litespeed-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9FAFB, #FFFFFF);
}

.asil-litespeed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.asil-speed-stats {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #FFFFFF;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.asil-speed-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.asil-speed-stat i {
    font-size: 32px;
    color: #8B5CF6;
}

.asil-speed-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #1F2937;
}

.asil-speed-stat span {
    display: block;
    font-size: 13px;
    color: #6B7280;
}

.asil-tech-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.asil-tech-item {
    text-align: center;
    padding: 20px 15px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.asil-tech-item:hover {
    border-color: #425480;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.asil-tech-item i {
    font-size: 28px;
    color: #425480;
    margin-bottom: 10px;
    display: block;
}

.asil-tech-item strong {
    font-size: 14px;
    color: #1F2937;
}

/* Apps Section */
.asil-apps-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.asil-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.asil-app-card {
    background: #FFFFFF;
    padding: 30px 25px;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.asil-app-card:hover {
    border-color: #425480;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.15);
}

.asil-app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #F9FAFB;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.asil-app-card:hover .asil-app-icon {
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.1);
}

.asil-app-icon .oneclick-icon {
    display: block;
    width: 50px;
    height: 50px;
}

.asil-app-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.asil-app-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

.asil-app-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.asil-app-badge.popular {
    background: linear-gradient(135deg, #FFB627, #FFA364);
    color: #FFFFFF;
}

.asil-app-badge.ecommerce {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: #FFFFFF;
}

.asil-app-badge.education {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: #FFFFFF;
}

.asil-apps-footer {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #FFF8F5, #FFFFFF);
    border-radius: 16px;
    border: 2px dashed #425480;
}

.asil-apps-footer i {
    font-size: 32px;
    color: #425480;
    margin-bottom: 15px;
    display: block;
}

.asil-apps-footer strong {
    font-size: 22px;
    color: #1F2937;
    display: block;
    margin-bottom: 10px;
}

.asil-apps-footer p {
    font-size: 15px;
    color: #6B7280;
}

/* FAQ Section */
.asil-faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9FAFB, #FFFFFF);
}

.asil-faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.asil-faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 2px solid #E5E7EB;
    overflow: hidden;
    transition: all 0.3s ease;
}

.asil-faq-item:hover {
    border-color: #425480;
}

.asil-faq-item.active {
    border-color: #425480;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
}

.asil-faq-question {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.asil-faq-question span {
    font-size: 17px;
    font-weight: 700;
    color: #1F2937;
    flex: 1;
}

.asil-faq-question i {
    width: 32px;
    height: 32px;
    background: #425480;
    color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.asil-faq-item.active .asil-faq-question i {
    background: #1F2937;
    transform: rotate(45deg);
}

.asil-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.asil-faq-item.active .asil-faq-answer {
    max-height: 400px;
    padding: 0 25px 25px 25px;
}

.asil-faq-answer p {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .asil-performance-grid,
    .asil-litespeed-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .asil-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .asil-tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .asil-section-header h2 {
        font-size: 28px;
    }

    .asil-performance-content h3,
    .asil-litespeed-content h3 {
        font-size: 24px;
    }

    .asil-apps-grid {
        grid-template-columns: 1fr;
    }

    .asil-performance-features,
    .asil-tech-stack {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.asil-hosting-features-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 50%, #FFF8F5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.asil-hosting-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(255, 133, 86, 0.03));
    border-radius: 0 0 50% 50%;
    z-index: 0;
}

.asil-hosting-features-section .container {
    position: relative;
    z-index: 1;
}

/* Header */
.asil-features-header {
    text-align: center;
    margin-bottom: 70px;
}

.asil-features-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 133, 86, 0.15));
    color: #425480;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.asil-features-badge i {
    font-size: 16px;
    animation: asil-rotate 3s linear infinite;
}

@keyframes asil-rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.asil-features-title {
    font-size: 42px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.asil-features-desc {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.asil-features-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #425480, #FF8556);
    margin: 0 auto;
    border-radius: 2px;
}

/* Features Grid */
.asil-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Feature Card */
.asil-feature-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 35px;
    border: 2px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.asil-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #425480, #FF8556);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.asil-feature-card:hover::before {
    transform: scaleX(1);
}

.asil-feature-card:hover {
    border-color: #425480;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.15);
    transform: translateY(-8px);
}

.asil-feature-card.featured {
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFFAF0, #FFFFFF);
}

.asil-feature-card.featured:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

/* Popular Badge */
.asil-feature-popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFB627, #FFA364);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

/* Icon Wrapper */
.asil-feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.asil-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 133, 86, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: all 0.3s ease;
}

.asil-feature-card:hover .asil-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 133, 86, 0.15));
}

.asil-feature-icon img {
    width: 100%;
    height: auto;
}

.asil-feature-badge-icon {
    width: 40px;
    height: 40px;
    background: #425480;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.asil-feature-badge-icon.purple { background: #8B5CF6; }
.asil-feature-badge-icon.green { background: #10B981; }
.asil-feature-badge-icon.blue { background: #3B82F6; }
.asil-feature-badge-icon.red { background: #EF4444; }
.asil-feature-badge-icon.orange { background: #F59E0B; }
.asil-feature-badge-icon.teal { background: #14B8A6; }
.asil-feature-badge-icon.yellow { background: #FBBF24; }

/* Content */
.asil-feature-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.asil-feature-content p {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Stats */
.asil-feature-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.asil-feature-stat {
    background: #F9FAFB;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #E5E7EB;
}

.asil-feature-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #425480;
    margin-bottom: 4px;
}

.asil-feature-stat span {
    font-size: 12px;
    color: #6B7280;
    font-weight: 600;
}

/* Tags */
.asil-feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.asil-feature-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

/* Highlight */
.asil-feature-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #10B981;
}

.asil-feature-highlight i {
    color: #10B981;
    font-size: 20px;
}

.asil-feature-highlight span {
    font-weight: 700;
    color: #059669;
}

/* List */
.asil-feature-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4B5563;
}

.asil-feature-list i {
    color: #3B82F6;
    font-size: 16px;
}

/* Security */
.asil-feature-security {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.asil-feature-security span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

/* Rating */
.asil-feature-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.asil-feature-rating i {
    color: #FBBF24;
    font-size: 16px;
}

.asil-feature-rating span {
    margin-left: 8px;
    font-size: 13px;
    color: #6B7280;
    font-weight: 600;
}

/* Apps */
.asil-feature-apps {
    display: flex;
    align-items: center;
    gap: 10px;
}

.asil-feature-apps img {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.asil-feature-apps img:hover {
    transform: scale(1.2);
    border-color: #425480;
}

.asil-feature-apps span {
    background: #14B8A6;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

/* Guarantee */
.asil-feature-guarantee {
    background: linear-gradient(135deg, #FEF3C7, #FED7AA);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #FBBF24;
}

.asil-feature-guarantee-icon {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.asil-feature-guarantee-icon i {
    font-size: 24px;
    color: #FBBF24;
}

.asil-feature-guarantee-text strong {
    display: block;
    color: #92400E;
    font-size: 15px;
    margin-bottom: 4px;
}

.asil-feature-guarantee-text span {
    font-size: 13px;
    color: #78350F;
}

/* Hover Effect */
.asil-feature-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.asil-feature-card:hover .asil-feature-hover-effect {
    width: 400px;
    height: 400px;
}

/* CTA */
.asil-features-cta {
    background: linear-gradient(135deg, #425480, #FF8556);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

.asil-features-cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.asil-features-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.asil-features-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    color: #425480;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.asil-features-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .asil-features-grid {
        grid-template-columns: 1fr;
    }

    .asil-features-title {
        font-size: 32px;
    }

    .asil-features-cta {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .asil-hosting-features-section {
        padding: 60px 0;
    }

    .asil-features-title {
        font-size: 26px;
    }

    .asil-feature-card {
        padding: 25px;
    }

    .asil-feature-stats {
        grid-template-columns: 1fr;
    }
}
        :root {
            --primary-color: #425480;
            --secondary-color: #425480;
            --text-color: #333;
            --light-bg: #f5f7fb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #ffffff 0%, #f5f7fb 100%);
            padding: 80px 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .text-content {
            max-width: 600px;
        }

        .subtitle {
            color: var(--secondary-color);
            font-size: 18px;
            margin-bottom: 16px;
            display: block;
        }

        h1 {
            color: var(--primary-color);
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .feature-item i {
            font-size: 24px;
            color: var(--secondary-color);
        }

        .feature-text {
            display: flex;
            flex-direction: column;
        }

        .feature-text strong {
            color: var(--primary-color);
            font-size: 16px;
        }

        .feature-text span {
            font-size: 14px;
            color: #666;
        }

        /* Server Packages Section */
        .packages {
            padding: 80px 0;
            background: #fff;
        }

        .filters {
            background: var(--light-bg);
            padding: 24px;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .filter-group {
            margin-bottom: 24px;
        }

        .filter-group strong {
            display: block;
            margin-bottom: 16px;
            color: var(--primary-color);
        }

        .checkbox-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .checkbox input {
            margin: 0;
        }

        /* Server List Styles */
        .server-list {
            display: grid;
            gap: 24px;
        }

        .server-item {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 24px;
            display: grid;
            grid-template-columns: 2fr 3fr 1fr;
            align-items: center;
            gap: 24px;
        }

        .server-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .server-specs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .spec-item {
            text-align: center;
        }

        .spec-item i {
            font-size: 24px;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }

        .price-section {
            text-align: right;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: var(--secondary-color);
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background: #0052cc;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: #fff;
            padding: 32px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
        }

        .modal-header {
            margin-bottom: 24px;
        }

        .close-modal {
            float: right;
            cursor: pointer;
            font-size: 24px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-color);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-image {
                order: -1;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 32px;
            }

            .server-item {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .server-info {
                justify-content: center;
            }

            .server-specs {
                grid-template-columns: repeat(2, 1fr);
            }

            .price-section {
                text-align: center;
            }
        }
		
		      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background: #FFFFFF;
            color: #2D3748;
            line-height: 1.6;
        }

        .asil-vds-wrapper {
            width: 100%;
        }

        .asil-vds-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Label */
        .asil-vds-top-label {
            text-align: center;
            font-size: 13px;
            color: #6B7280;
            padding: 10px 0;
            background: #F9FAFB;
            font-weight: 400;
        }

        /* Main Title */
        .asil-vds-main-title {
            text-align: center;
            font-size: 34px;
            font-weight: 700;
            color: #1F2937;
            margin: 60px 0 70px;
        }

        /* Features Grid - EXACTLY 3 COLUMNS */
        .asil-vds-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 120px;
        }

        .asil-vds-feature-box {
            background: #FFFFFF;
            padding: 35px 28px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .asil-vds-feature-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(255, 107, 53, 0.15);
        }

        .asil-vds-feature-box-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 107, 53, 0.08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
        }

        .asil-vds-feature-box-icon i {
            font-size: 26px;
            color: #425480;
        }

        .asil-vds-feature-box h3 {
            font-size: 17px;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .asil-vds-feature-box p {
            font-size: 14px;
            color: #6B7280;
            line-height: 1.7;
        }

        /* Section Header */
        .asil-vds-section-block {
            text-align: center;
            margin: 120px 0 100px;
        }

        .asil-vds-section-small {
            font-size: 14px;
            color: #6B7280;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .asil-vds-section-big {
            font-size: 32px;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 24px;
        }

        .asil-vds-section-text {
            font-size: 15px;
            color: #6B7280;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Info Boxes */
        .asil-vds-info-section {
            margin: 100px 0;
        }

        .asil-vds-info-box {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
            padding: 70px 60px;
            border-radius: 16px;
        }

        .asil-vds-info-box.color-mint {
            background: #D1FAE5;
        }

        .asil-vds-info-box.color-pink {
            background: #FECDD3;
        }

        .asil-vds-info-box.color-yellow {
            background: #FEF3C7;
        }

        .asil-vds-info-box.reverse {
            grid-template-columns: 1fr 400px;
        }

        .asil-vds-info-pic {
            background: #FFFFFF;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .asil-vds-info-pic img {
            width: 100%;
            height: auto;
            display: block;
        }

        .asil-vds-info-text h5 {
            font-size: 14px;
            color: #6B7280;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .asil-vds-info-text h2 {
            font-size: 30px;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 20px;
        }

        .asil-vds-info-text p {
            font-size: 15px;
            color: #4B5563;
            line-height: 1.8;
        }

        /* FAQ Section */
        .asil-vds-faq-block {
            max-width: 1000px;
            margin: 120px auto 80px;
        }

        .asil-vds-faq-top {
            margin-bottom: 50px;
        }

        .asil-vds-faq-top h5 {
            font-size: 14px;
            color: #6B7280;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .asil-vds-faq-top h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 22px;
        }

        .asil-vds-faq-top p {
            font-size: 15px;
            color: #6B7280;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .asil-vds-faq-button {
            display: inline-block;
            background: #1F2937;
            color: #FFFFFF;
            padding: 15px 35px;
            border-radius: 7px;
            font-weight: 700;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .asil-vds-faq-button:hover {
            background: #425480;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
        }

        /* FAQ Items */
        .asil-vds-faq-items {
            list-style: none;
        }

        .asil-vds-faq-single {
            border-bottom: 1px solid #E5E7EB;
            padding: 24px 0;
        }

        .asil-vds-faq-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }

        .asil-vds-faq-head span {
            font-size: 17px;
            font-weight: 600;
            color: #1F2937;
            transition: color 0.3s ease;
            flex: 1;
            padding-right: 20px;
        }

        .asil-vds-faq-head:hover span {
            color: #425480;
        }

        .asil-vds-faq-plus {
            width: 28px;
            height: 28px;
            background: #425480;
            color: #FFFFFF;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .asil-vds-faq-single.open .asil-vds-faq-plus {
            background: #1F2937;
            transform: rotate(45deg);
        }

        .asil-vds-faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .asil-vds-faq-single.open .asil-vds-faq-body {
            max-height: 400px;
            padding-top: 20px;
        }

        .asil-vds-faq-body p {
            font-size: 15px;
            color: #6B7280;
            line-height: 1.8;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .asil-vds-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .asil-vds-info-box,
            .asil-vds-info-box.reverse {
                grid-template-columns: 1fr;
                padding: 50px 40px;
            }
        }

        @media (max-width: 768px) {
            .asil-vds-features-grid {
                grid-template-columns: 1fr;
            }

            .asil-vds-main-title {
                font-size: 26px;
                margin: 40px 0 50px;
            }

            .asil-vds-section-big {
                font-size: 26px;
            }

            .asil-vds-info-box {
                padding: 35px 25px;
            }

            .asil-vds-info-text h2 {
                font-size: 24px;
            }
        }
		
		
		       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background: #F7FAFC;
     
        }

        .asil-vds-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Filter Bar */
        .asil-vds-filter-bar {
            background: #FFFFFF;
            border-radius: 8px;
            padding: 20px 25px;
            margin-bottom: 20px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        /* Location Tabs */
        .asil-vds-location-tabs {
            display: flex;
            gap: 0;
        }

        .asil-vds-location-btn {
            padding: 10px 20px;
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            color: #4A5568;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .asil-vds-location-btn:first-child {
            border-radius: 6px 0 0 6px;
        }

        .asil-vds-location-btn:last-child {
            border-radius: 0 6px 6px 0;
            border-left: none;
        }

        .asil-vds-location-btn.active {
            background: #425480;
            color: #FFFFFF;
            border-color: #425480;
        }

        .asil-vds-location-btn:hover:not(.active) {
            background: #FFF5F0;
        }

        /* Filter Group */
        .asil-vds-filter-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .asil-vds-filter-label {
            font-size: 14px;
            font-weight: 600;
            color: #2D3748;
        }

        .asil-vds-checkbox-group {
            display: flex;
            gap: 15px;
        }

        .asil-vds-checkbox-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .asil-vds-checkbox-item input[type="checkbox"] {
            width: 16px;
            height: 16px;
            cursor: pointer;
            accent-color: #425480;
        }

        .asil-vds-checkbox-item label {
            font-size: 14px;
            color: #4A5568;
            cursor: pointer;
            user-select: none;
        }

        /* RAM Slider */
        .asil-vds-ram-slider-wrapper {
            flex: 1;
            min-width: 200px;
        }

        .asil-vds-ram-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .asil-vds-ram-label {
            font-size: 14px;
            font-weight: 600;
            color: #2D3748;
        }

        .asil-vds-ram-value {
            font-size: 14px;
            color: #425480;
            font-weight: 600;
        }

        .asil-vds-ram-slider {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: #E2E8F0;
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        .asil-vds-ram-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #425480;
            cursor: pointer;
        }

        .asil-vds-ram-slider::-moz-range-thumb {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #425480;
            cursor: pointer;
            border: none;
        }

        .asil-vds-ram-values {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: #A0AEC0;
            margin-top: 5px;
        }

        /* Table Header */
        .asil-vds-table-header {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 130px;
            gap: 15px;
            padding: 12px 20px;
            background: #F7FAFC;
            border-radius: 6px;
            margin-bottom: 12px;
            font-size: 13px;
            font-weight: 600;
            color: #4A5568;
        }

        /* Package Wrapper - ENHANCED */
        .asil-vds-package-wrapper {
            margin-bottom: 15px;
            position: relative;
            transition: all 0.3s ease;
        }

        .asil-vds-package-wrapper:hover {
            transform: translateY(-2px);
        }

        /* Package Badges */
        .asil-vds-package-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.5px;
            z-index: 10;
            text-transform: uppercase;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .asil-vds-package-badge.popular {
            background: linear-gradient(135deg, #FFB627, #FFA364);
            color: #FFFFFF;
            animation: asil-vds-pulse 2s infinite;
        }

        .asil-vds-package-badge.recommended {
            background: linear-gradient(135deg, #10B981, #34D399);
            color: #FFFFFF;
        }

        .asil-vds-package-badge.new {
            background: linear-gradient(135deg, #3B82F6, #60A5FA);
            color: #FFFFFF;
        }

        .asil-vds-package-badge.sale {
            background: linear-gradient(135deg, #EF4444, #F87171);
            color: #FFFFFF;
        }

        @keyframes asil-vds-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Package Row - ENHANCED */
        .asil-vds-package-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 130px;
            gap: 15px;
            align-items: center;
            padding: 22px;
            background: #FFFFFF;
            border: 2px solid #E2E8F0;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .asil-vds-package-row::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #425480, #FF8556);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .asil-vds-package-row::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .asil-vds-package-row:hover::after {
            left: 100%;
        }

        .asil-vds-package-row:hover {
            border-color: #425480;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
            transform: translateX(3px);
        }

        .asil-vds-package-row:hover::before {
            opacity: 1;
        }

        .asil-vds-package-wrapper.expanded .asil-vds-package-row {
            border-radius: 8px 8px 0 0;
            border-bottom: none;
            border-color: #425480;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
        }

        .asil-vds-package-wrapper.expanded .asil-vds-package-row::before {
            opacity: 1;
        }

        /* Discount Ribbon */
        .asil-vds-discount-ribbon {
            position: absolute;
            top: 15px;
            left: -35px;
            background: #EF4444;
            color: #FFFFFF;
            padding: 5px 40px;
            font-size: 11px;
            font-weight: 700;
            transform: rotate(-45deg);
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            z-index: 5;
        }

        /* Package Info - ENHANCED */
        .asil-vds-package-info {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .asil-vds-package-icon {
            width: 12px;
            height: 12px;
            display: flex;
            flex-direction: column;
            gap: 2.5px;
            transition: all 0.3s ease;
        }

        .asil-vds-package-icon span {
            width: 12px;
            height: 3px;
            background: #CBD5E0;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .asil-vds-package-row:hover .asil-vds-package-icon span:nth-child(1) {
            background: #425480;
            transform: translateX(3px);
        }

        .asil-vds-package-row:hover .asil-vds-package-icon span:nth-child(2) {
            background: #FF8556;
            transform: translateX(6px);
        }

        .asil-vds-package-row:hover .asil-vds-package-icon span:nth-child(3) {
            background: #FFA364;
            transform: translateX(9px);
        }

        .asil-vds-package-name h3 {
            font-size: 16px;
            font-weight: 700;
            color: #2D3748;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .asil-vds-package-name h3 .asil-vds-tooltip {
            position: relative;
            cursor: help;
        }

        .asil-vds-package-name h3 .asil-vds-tooltip i {
            font-size: 14px;
            color: #CBD5E0;
        }

        .asil-vds-package-name h3 .asil-vds-tooltip:hover i {
            color: #425480;
        }

        .asil-vds-package-name p {
            font-size: 13px;
            color: #425480;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
            transition: all 0.2s;
        }

        .asil-vds-package-name p i {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .asil-vds-package-name p:hover {
            color: #E55A2B;
            gap: 7px;
        }

        .asil-vds-package-wrapper.expanded .asil-vds-package-name p i {
            transform: rotate(90deg);
        }

        /* Spec Column - ENHANCED */
        .asil-vds-spec-col {
            text-align: center;
            position: relative;
        }

        .asil-vds-spec-value {
            font-size: 15px;
            font-weight: 700;
            color: #2D3748;
            display: block;
            margin-bottom: 3px;
        }

        .asil-vds-spec-label {
            font-size: 11px;
            color: #A0AEC0;
            font-weight: 500;
        }

        .asil-vds-spec-highlight {
            color: #425480;
            font-weight: 800;
        }

        /* Price - ENHANCED */
        .asil-vds-price {
            text-align: center;
        }

        .asil-vds-price-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
        }

        .asil-vds-old-price {
            font-size: 12px;
            color: #A0AEC0;
            text-decoration: line-through;
            font-weight: 500;
        }

        .asil-vds-current-price {
            font-size: 16px;
            font-weight: 800;
            color: #425480;
            letter-spacing: -0.3px;
        }

        .asil-vds-price-label {
            font-size: 10px;
            color: #10B981;
            font-weight: 700;
            background: #D1FAE5;
            padding: 2px 8px;
            border-radius: 10px;
        }

        /* Buy Button - ENHANCED */
        .asil-vds-buy-btn {
            padding: 12px 20px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            background: linear-gradient(135deg, #425480, #FF8556);
            color: #FFFFFF;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .asil-vds-buy-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .asil-vds-buy-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .asil-vds-buy-btn:hover {
            background: linear-gradient(135deg, #E55A2B, #425480);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
            transform: translateY(-2px);
        }

        .asil-vds-buy-btn:active {
            transform: translateY(0);
        }

        /* Features Panel - ENHANCED */
        .asil-vds-features-panel {
            max-height: 0;
            overflow: hidden;
            background: linear-gradient(135deg, #FFF8F5, #FFFFFF);
            border: 2px solid #E2E8F0;
            border-top: none;
            border-radius: 0 0 8px 8px;
            transition: max-height 0.4s ease;
        }

        .asil-vds-package-wrapper.expanded .asil-vds-features-panel {
            max-height: 1200px;
            border-color: #425480;
        }

        .asil-vds-features-content {
            padding: 25px;
        }

        .asil-vds-features-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px dashed #FFE5DB;
        }

        .asil-vds-features-header h4 {
            font-size: 18px;
            font-weight: 800;
            color: #425480;
        }

        .asil-vds-features-header .asil-vds-features-count {
            font-size: 13px;
            color: #6B7280;
            font-weight: 600;
            background: #F3F4F6;
            padding: 6px 12px;
            border-radius: 20px;
        }

        .asil-vds-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .asil-vds-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: #4B5563;
            padding: 10px;
            background: #FFFFFF;
            border-radius: 6px;
            border: 1px solid #FFE5DB;
            transition: all 0.2s ease;
        }

        .asil-vds-feature-item:hover {
            background: #FFF5F0;
            border-color: #425480;
            transform: translateX(3px);
        }

        .asil-vds-feature-item i {
            color: #10B981;
            font-size: 15px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .asil-vds-feature-item span {
            font-weight: 500;
            line-height: 1.5;
        }

        /* Stats Row */
        .asil-vds-stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px dashed #FFE5DB;
        }

        .asil-vds-stat-item {
            text-align: center;
            padding: 12px;
            background: #FFFFFF;
            border-radius: 6px;
            border: 1px solid #E2E8F0;
        }

        .asil-vds-stat-icon {
            font-size: 24px;
            color: #425480;
            margin-bottom: 8px;
        }

        .asil-vds-stat-value {
            font-size: 18px;
            font-weight: 800;
            color: #2D3748;
            margin-bottom: 4px;
        }

        .asil-vds-stat-label {
            font-size: 11px;
            color: #6B7280;
            font-weight: 600;
        }

        /* Compare Button */
        .asil-vds-compare-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: #FFFFFF;
            border: 2px solid #425480;
            border-radius: 6px;
            color: #425480;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .asil-vds-compare-btn:hover {
            background: #425480;
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        .asil-vds-compare-btn i {
            font-size: 14px;
        }

        /* Hidden */
        .asil-vds-hidden {
            display: none !important;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .asil-vds-table-header,
            .asil-vds-package-row {
                grid-template-columns: 2fr repeat(6, 1fr) 120px;
                font-size: 12px;
            }

            .asil-vds-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .asil-vds-stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .asil-vds-table-header {
                display: none;
            }

            .asil-vds-package-row {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .asil-vds-spec-col {
                display: flex;
                justify-content: space-between;
                text-align: left;
                padding: 10px 0;
                border-bottom: 1px solid #F3F4F6;
            }

            .asil-vds-features-grid {
                grid-template-columns: 1fr;
            }

            .asil-vds-stats-row {
                grid-template-columns: 1fr;
            }

            .asil-vds-filter-bar {
                flex-direction: column;
                align-items: stretch;
            }

            .asil-vds-filter-group {
                flex-direction: column;
                align-items: stretch;
            }

            .asil-vds-discount-ribbon {
                font-size: 9px;
                padding: 4px 35px;
            }
        }
		
		     :root {
               --primary-color: #425480;
            --secondary-color: #425480;
            --text-color: #333;
            --light-bg: #f5f7fb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #ffffff 0%, #f5f7fb 100%);
            padding: 80px 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .text-content {
            max-width: 600px;
        }

        .subtitle {
            color: var(--secondary-color);
            font-size: 18px;
            margin-bottom: 16px;
            display: block;
        }

        h1 {
            color: var(--primary-color);
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .feature-item i {
            font-size: 24px;
            color: var(--secondary-color);
        }

        .feature-text {
            display: flex;
            flex-direction: column;
        }

        .feature-text strong {
            color: var(--primary-color);
            font-size: 16px;
        }

        .feature-text span {
            font-size: 14px;
            color: #666;
        }

        /* Server Packages Section */
        .packages {
            padding: 80px 0;
            background: #fff;
        }

        .filters {
            background: var(--light-bg);
            padding: 24px;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .filter-group {
            margin-bottom: 24px;
        }

        .filter-group strong {
            display: block;
            margin-bottom: 16px;
            color: var(--primary-color);
        }

        .checkbox-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .checkbox input {
            margin: 0;
        }

        /* Server List Styles */
        .server-list {
            display: grid;
            gap: 24px;
        }

        .server-item {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 24px;
            display: grid;
            grid-template-columns: 2fr 3fr 1fr;
            align-items: center;
            gap: 24px;
        }

        .server-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .server-specs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .spec-item {
            text-align: center;
        }

        .spec-item i {
            font-size: 24px;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }

        .price-section {
            text-align: right;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: var(--secondary-color);
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background: #0052cc;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: #fff;
            padding: 32px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
        }

        .modal-header {
            margin-bottom: 24px;
        }

        .close-modal {
            float: right;
            cursor: pointer;
            font-size: 24px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-color);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-image {
                order: -1;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 32px;
            }

            .server-item {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .server-info {
                justify-content: center;
            }

            .server-specs {
                grid-template-columns: repeat(2, 1fr);
            }

            .price-section {
                text-align: center;
            }
        }
		
		  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #fafafa;
            padding: 0;
            margin: 0;
            overflow-x: hidden;
        }

        /* YENİ HAREKETLI SECTION BAŞLANGIÇ */
        .asil-hareketli-section {
            width: 100%;
            background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            display: none;
        }

        .asil-hareketli-section.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .asil-hareketli-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(45deg, transparent 48%, rgba(200, 200, 200, 0.2) 49%, rgba(200, 200, 200, 0.2) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(200, 200, 200, 0.2) 49%, rgba(200, 200, 200, 0.2) 51%, transparent 52%);
            background-size: 100px 100px;
            opacity: 0.3;
            z-index: 0;
        }

        .asil-hareketli-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .asil-hareketli-content {
            text-align: left;
            opacity: 0;
            transform: translateX(-30px);
            animation: asil-hareketli-slideInLeft 0.8s ease forwards 0.2s;
        }

        @keyframes asil-hareketli-slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .asil-hareketli-subtitle {
            font-size: 15px;
            color: #425480;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .asil-hareketli-title {
            font-size: 44px;
            color: #1a1a2e;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.3;
            letter-spacing: -1px;
        }

        .asil-hareketli-description {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 45px;
            max-width: 550px;
        }

        .asil-hareketli-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 45px;
        }

        .asil-hareketli-feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .asil-hareketli-section.active .asil-hareketli-feature:nth-child(1) {
            animation: asil-hareketli-fadeInUp 0.6s ease forwards 0.4s;
        }

        .asil-hareketli-section.active .asil-hareketli-feature:nth-child(2) {
            animation: asil-hareketli-fadeInUp 0.6s ease forwards 0.5s;
        }

        .asil-hareketli-section.active .asil-hareketli-feature:nth-child(3) {
            animation: asil-hareketli-fadeInUp 0.6s ease forwards 0.6s;
        }

        .asil-hareketli-section.active .asil-hareketli-feature:nth-child(4) {
            animation: asil-hareketli-fadeInUp 0.6s ease forwards 0.7s;
        }

        @keyframes asil-hareketli-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .asil-hareketli-feature:hover {
            transform: translateX(8px);
        }

        .asil-hareketli-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #425480 0%, #d7baaf 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
                box-shadow: 0 4px 15px #425480;
        }

        .asil-hareketli-icon svg {
            width: 26px;
            height: 26px;
            fill: white;
        }

        .asil-hareketli-feature-content h3 {
            font-size: 17px;
            color: #1a1a2e;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .asil-hareketli-feature-content p {
            font-size: 14px;
            color: #888;
            line-height: 1.5;
        }

        .asil-hareketli-button {
            display: inline-block;
            background: #1a1a2e;
            color: white;
            padding: 18px 45px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .asil-hareketli-button:hover {
            background: #2d2d4a;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 26, 46, 0.4);
        }

        .asil-hareketli-image-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 550px;
            opacity: 0;
            transform: translateX(30px);
            animation: asil-hareketli-slideInRight 0.8s ease forwards 0.3s;
        }

        @keyframes asil-hareketli-slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .asil-hareketli-circle {
            position: absolute;
            width: 520px;
            height: 520px;
            border-radius: 50%;
           background: linear-gradient(135deg, #425480 0%, #79e7cd 100%);
            z-index: 1;
            animation: asil-hareketli-pulse 4s ease-in-out infinite;
            box-shadow: 0 20px 60px rgba(0, 217, 165, 0.4);
        }

        @keyframes asil-hareketli-pulse {
            0%, 100% { 
                transform: scale(1);
                opacity: 1;
            }
            50% { 
                transform: scale(1.08);
                opacity: 0.9;
            }
        }

        .asil-hareketli-minecraft {
            position: absolute;
            top: 20px;
            right: 80px;
            width: 70px;
            height: 100px;
            z-index: 4;
            animation: asil-hareketli-float 5s ease-in-out infinite;
        }

        .asil-hareketli-minecraft-top {
            width: 70px;
            height: 25px;
            background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
            border-radius: 2px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .asil-hareketli-minecraft-body {
            width: 70px;
            height: 75px;
            background: linear-gradient(135deg, #795548 0%, #5d4037 100%);
            margin-top: 2px;
            border-radius: 2px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        @keyframes asil-hareketli-float {
            0%, 100% { 
                transform: translateY(0) rotate(0deg);
            }
            25% { 
                transform: translateY(-15px) rotate(2deg);
            }
            50% { 
                transform: translateY(-25px) rotate(0deg);
            }
            75% { 
                transform: translateY(-15px) rotate(-2deg);
            }
        }

        .asil-hareketli-image {
            position: relative;
            z-index: 3;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0,0,0,0.25);
        }

        .asil-hareketli-services {
            width: 100%;
            background: white;
            padding: 0;
            border-top: 1px solid #e5e5e5;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .asil-hareketli-services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0;
        }

        .asil-hareketli-service-card {
            flex: 1;
            text-align: center;
            padding: 25px 30px;
            background: white;
            border: none;
            border-right: 1px solid #e5e5e5;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .asil-hareketli-service-card:last-child {
            border-right: none;
        }

        .asil-hareketli-service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #425480 0%, #ff8c5a 100%);
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .asil-hareketli-service-card.active::after {
            transform: scaleX(1);
        }

        .asil-hareketli-service-card.active {
            background: linear-gradient(180deg, #fff5f2 0%, white 100%);
        }

        .asil-hareketli-service-icon {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .asil-hareketli-service-icon svg {
            width: 28px;
            height: 28px;
            fill: #999;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .asil-hareketli-service-card:hover .asil-hareketli-service-icon svg,
        .asil-hareketli-service-card.active .asil-hareketli-service-icon svg {
            fill: #425480;
            transform: scale(1.15) rotate(5deg);
        }

        .asil-hareketli-service-title {
            font-size: 16px;
            color: #666;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
        }

        .asil-hareketli-service-card:hover .asil-hareketli-service-title,
        .asil-hareketli-service-card.active .asil-hareketli-service-title {
            color: #425480;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .asil-hareketli-section {
                padding: 60px 0;
            }

            .asil-hareketli-container {
                grid-template-columns: 1fr;
                padding: 0 20px;
                gap: 50px;
            }

            .asil-hareketli-title {
                font-size: 34px;
            }

            .asil-hareketli-features {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .asil-hareketli-image-wrapper {
                height: 400px;
            }

            .asil-hareketli-circle {
                width: 350px;
                height: 350px;
            }

            .asil-hareketli-image {
                width: 280px;
                height: 280px;
            }

            .asil-hareketli-minecraft {
                width: 50px;
                height: 75px;
                right: 40px;
            }

            .asil-hareketli-minecraft-top {
                width: 50px;
                height: 20px;
            }

            .asil-hareketli-minecraft-body {
                width: 50px;
                height: 55px;
            }

            .asil-hareketli-services-container {
                flex-direction: column;
                padding: 0;
            }

            .asil-hareketli-service-card {
                border-right: none;
                border-bottom: 1px solid #e5e5e5;
                flex-direction: row;
                justify-content: center;
                padding: 20px;
            }

            .asil-hareketli-service-card:last-child {
                border-bottom: none;
            }

            .asil-hareketli-service-title {
                font-size: 14px;
            }

            .asil-hareketli-service-icon svg {
                width: 24px;
                height: 24px;
            }
        }

        @media (min-width: 769px) and (max-width: 1200px) {
            .asil-hareketli-container {
                padding: 0 30px;
                gap: 50px;
            }

            .asil-hareketli-title {
                font-size: 38px;
            }

            .asil-hareketli-circle {
                width: 420px;
                height: 420px;
            }

            .asil-hareketli-image {
                width: 320px;
                height: 320px;
            }

            .asil-hareketli-service-card {
                padding: 20px 20px;
            }

            .asil-hareketli-service-title {
                font-size: 14px;
            }

            .asil-hareketli-service-icon svg {
                width: 24px;
                height: 24px;
            }
        }
		
		
		
		
		 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #fafafa;
            padding: 0;
            margin: 0;
            overflow-x: hidden;
        }

        .asil-card-container {
            width: 100vw;
            max-width: 100%;
            margin: 0;
            padding: 0;
        }

        .asil-card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
            background-color: #e5e5e5;
            width: 100%;
        }

        .asil-card {
            background-color: white;
            padding: 60px 30px 50px 30px;
            text-align: center;
            position: relative;
            min-height: 520px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            border: 1px solid #e5e5e5;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .asil-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .asil-card-image {
            position: relative;
            width: 100%;
            max-width: 440px;
            height: 220px;
            margin: 0 auto 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .asil-card-background-shape {
            position: absolute;
            width: 92%;
            height: 190px;
            background: linear-gradient(135deg, #e8eaf6 0%, #f5f6fa 100%);
            border-radius: 24px;
            z-index: 1;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }

        .asil-card-person-image {
            position: absolute;
            width: 175px;
            height: 175px;
            border-radius: 16px;
            object-fit: cover;
            z-index: 5;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            right: 12%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .asil-card:hover .asil-card-person-image {
            transform: scale(1.03) translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        /* Card 1 - Sol üst */
        .asil-card:nth-child(1) .asil-card-circle-badge {
            left: 6%;
            top: 25px;
        }

        .asil-card:nth-child(1) .asil-card-info-card {
            right: -8%;
            top: 10px;
        }

        /* Card 2 - Sağ üst */
        .asil-card:nth-child(2) .asil-card-info-card-top {
            left: 6%;
            top: 15px;
        }

        .asil-card:nth-child(2) .asil-card-rating-badge {
            right: 6%;
            bottom: -45px;
        }

        /* Card 3 - Sol alt */
        .asil-card:nth-child(3) .asil-card-info-card-top {
            left: 6%;
            top: 15px;
        }

        .asil-card:nth-child(3) .asil-card-rating-badge {
            right: 6%;
            bottom: -45px;
        }

        /* Card 4 - Sağ alt */
        .asil-card:nth-child(4) .asil-card-circle-badge {
            left: 6%;
            top: 25px;
        }

        .asil-card:nth-child(4) .asil-card-info-card {
            right: -8%;
            top: 10px;
        }

        .asil-card-circle-badge {
            position: absolute;
            width: 110px;
            height: 110px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 6;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .asil-card:hover .asil-card-circle-badge {
            transform: rotate(8deg) scale(1.08);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
        }

        .asil-card-circle-progress {
            width: 82px;
            height: 82px;
            border-radius: 50%;
            border: 7px solid #425480;
            border-top-color: #ffd5c8;
            border-right-color: #ffd5c8;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: rotate(-45deg);
            position: relative;
        }

        .asil-card-circle-progress::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 7px solid transparent;
            border-top-color: rgba(255, 107, 53, 0.1);
            transform: rotate(90deg);
        }

        .asil-card-circle-progress span {
            transform: rotate(45deg);
            font-size: 19px;
            font-weight: bold;
            color: #425480;
        }

        .asil-card-info-card {
            position: absolute;
            background: white;
            padding: 18px;
            border-radius: 14px;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
            z-index: 6;
            min-width: 145px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 107, 53, 0.1);
        }

        .asil-card:hover .asil-card-info-card {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
        }

        .asil-card-info-card-top {
            position: absolute;
            background: white;
            padding: 18px 20px;
            border-radius: 14px;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
            z-index: 6;
            min-width: 175px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 107, 53, 0.1);
        }

        .asil-card:hover .asil-card-info-card-top {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
        }

        .asil-card-info-card-top h3 {
            font-size: 14px;
            color: #222;
            margin-bottom: 7px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .asil-card-orange-link {
            color: #425480;
            font-size: 12px;
            text-decoration: none;
            display: block;
            margin-bottom: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .asil-card-orange-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #425480, #ff8c5a);
            transition: width 0.3s ease;
        }

        .asil-card-orange-link:hover {
            color: #ff8c5a;
        }

        .asil-card-orange-link:hover::after {
            width: 100%;
        }

        .asil-card-orange-bar {
            height: 5px;
            background: linear-gradient(90deg, #425480 0%, #ff8c5a 100%);
            width: 60%;
            border-radius: 3px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        }

        .asil-card-tech-subtitle {
            font-size: 11px;
            color: #999;
            margin-bottom: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .asil-card-tech-icons {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .asil-card-tech-icon {
            width: 28px;
            height: 28px;
            border: 2px solid #e8e8e8;
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            color: #666;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .asil-card-tech-icon:hover {
            border-color: #425480;
            background: linear-gradient(135deg, #fff5f2 0%, #ffe8df 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
        }

        .asil-card-info-card img {
            width: 65px;
            height: 65px;
            border-radius: 10px;
            margin-bottom: 12px;
            object-fit: cover;
            border: 3px solid #f5f5f5;
            transition: all 0.3s ease;
        }

        .asil-card:hover .asil-card-info-card img {
            border-color: #425480;
            transform: scale(1.05);
        }

        .asil-card-info-card h4 {
            font-size: 12px;
            color: #333;
            margin-bottom: 6px;
            font-weight: 700;
        }

        .asil-card-price {
            color: #425480;
            font-weight: bold;
            font-size: 16px;
            text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
        }

        .asil-card-rating-badge {
            position: absolute;
            background: white;
            padding: 16px 18px;
            border-radius: 14px;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
            z-index: 6;
            min-width: 190px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 107, 53, 0.1);
        }

        .asil-card:hover .asil-card-rating-badge {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
        }

        .asil-card-rating-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .asil-card-stars {
            color: #ffa500;
            font-size: 15px;
            letter-spacing: 3px;
            text-shadow: 0 2px 4px rgba(255, 165, 0, 0.2);
        }

        .asil-card-rating-badge h4 {
            font-size: 14px;
            color: #222;
            margin-bottom: 6px;
            font-weight: 700;
        }

        .asil-card-subtitle {
            font-size: 11px;
            color: #999;
            font-weight: 500;
        }

        .asil-card-arrow-button {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #425480, #ff8c5a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        .asil-card-arrow-button:hover {
            transform: scale(1.15) rotate(45deg);
            box-shadow: 0 6px 18px rgba(255, 107, 53, 0.4);
        }

        .asil-card-title {
            font-size: 25px;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 700;
            max-width: 440px;
            line-height: 1.4;
            letter-spacing: -0.5px;
        }

        .asil-card-description {
            font-size: 15px;
            color: #666;
            line-height: 1.9;
            max-width: 440px;
            margin: 0 auto;
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .asil-card-grid {
                grid-template-columns: 1fr;
            }
            
            .asil-card {
                padding: 50px 20px 40px 20px;
                min-height: 480px;
            }
            
            .asil-card-image {
                max-width: 380px;
                height: 200px;
            }
            
            .asil-card-background-shape {
                height: 170px;
            }
            
            .asil-card-person-image {
                width: 150px;
                height: 150px;
            }

            .asil-card-circle-badge {
                width: 95px;
                height: 95px;
            }

            .asil-card-circle-progress {
                width: 72px;
                height: 72px;
                border-width: 6px;
            }

            .asil-card-circle-progress span {
                font-size: 17px;
            }

            .asil-card-title {
                font-size: 21px;
            }

            .asil-card-description {
                font-size: 14px;
            }
        }

        @media (min-width: 769px) and (max-width: 1200px) {
            .asil-card {
                padding: 55px 25px 45px 25px;
            }
            
            .asil-card-title {
                font-size: 22px;
            }
            
            .asil-card-description {
                font-size: 14px;
            }

            .asil-card-image {
                max-width: 400px;
            }
        }
		
		
		  /* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }


        /* Main Content */
        .main-content {
            padding: 60px 0;
            text-align: center;
        }

        .domain-search-container {
            max-width: 800px;
            margin: 0 auto;
        }

        h1 {
            color: #425480;
            font-size: 36px;
            margin-bottom: 20px;
        }

        .subtitle {
            color: #6c7a94;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .search-form {
            margin-top: 30px;
            position: relative;
            display: flex;
            border: 1px solid #e1e5ee;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }

        .search-input {
            flex: 1;
            padding: 15px 20px 15px 50px;
            font-size: 16px;
            border: none;
            outline: none;
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c7a94;
            font-size: 18px;
        }

        .search-button {
            background: linear-gradient(to right, #00d3c7, #00e6aa);
            color: white;
            border: none;
            padding: 0 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-button:hover {
            background: linear-gradient(to right, #00c0b5, #00d399);
        }

        /* Action Links */
        .domain-actions {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .action-link {
            display: flex;
            align-items: center;
            color: #6c7a94;
            text-decoration: none;
            padding: 5px 15px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .action-link:hover {
            color: #1a2b49;
        }

        .action-link i {
            margin-right: 8px;
            color: #6c7a94;
        }

        .action-divider {
            width: 1px;
            height: 20px;
            background-color: #e1e5ee;
            margin: 0 10px;
        }

        /* Domain Extensions */
        .domain-extensions {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            
            margin: 0 auto;
        }

        .domain-card {
            background: #fff;
            border: 1px solid #e1e5ee;
            border-radius: 6px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .domain-card:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transform: translateY(-3px);
        }

        .domain-extension {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
        }

        .com-extension {
            color: #039be5;
        }

        .net-extension {
            color: #424242;
        }

        .org-extension {
            color: #ff9800;
        }

        .biz-extension {
            color: #3949ab;
        }

        .info-extension {
            color: #0277bd;
        }

        .name-extension {
            color: #388e3c;
        }

        .discount-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #e0f7f5;
            color: #00a99d;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 4px;
        }

        .best-price {
            font-size: 12px;
            color: #6c7a94;
            margin-bottom: 5px;
        }

        .price {
            font-size: 18px;
            font-weight: bold;
            color: #1a2b49;
            margin-bottom: 10px;
        }

        .arrow-icon {
            color: #6c7a94;
            font-size: 14px;
            position: absolute;
            right: 15px;
            bottom: 15px;
            transition: all 0.3s ease;
        }

        .domain-card:hover .arrow-icon {
            right: 10px;
            color: #00d3c7;
        }

        
		
		
		/* Reset CSS with custom namespace */
        .ash-reset * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Top Bar Styles */
        .ash-topbar {
            background: linear-gradient(45deg, #1a2b49, #2c3e50);
            color: #fff;
            padding: 10px 0;
            font-size: 14px;
        }

        .ash-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .ash-topbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ash-datetime {
            display: flex;
            align-items: center;
        }

        .ash-datetime i {
            margin-right: 8px;
            color: #00d3c7;
        }

        .ash-username {
            font-weight: 600;
            color: #00d3c7;
            margin-left: 5px;
        }

        /* Slider Section Styles */
        .ash-slider-section {
            padding: 50px 0;
            background: linear-gradient(to bottom, #f8fafd, #ffffff);
            position: relative;
            overflow: hidden;
        }

        .ash-slider-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0wIDEwMFYwQzUwIDAgMTAwIDEwMCAxNTAgMTAwQzIwMCAxMDAgMjUwIDAgMzAwIDBDMzUwIDAgNDAwIDEwMCA0NTAgMTAwQzUwMCAxMDAgNTUwIDAgNjAwIDBDNjUwIDAgNzAwIDEwMCA3NTAgMTAwQzgwMCAxMDAgODUwIDAgOTAwIDBDOTUwIDAgMTAwMCAxMDAgMTA1MCAxMDBDMTEwMCAxMDAgMTE1MCAwIDEyMDAgMFYxMDBaIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDUpIi8+PC9zdmc+');
            opacity: 0.5;
            z-index: 0;
        }

        /* Slider Container */
        .ash-slider-container {
            position: relative;
            z-index: 1;
        }

        /* Slider Item */
        .ash-slide-item {
            outline: none;
            padding: 20px 0;
        }

        .ash-slide-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .ash-slide-col-left,
        .ash-slide-col-right {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 15px;
        }

        /* Slider Content */
        .ash-slide-content {
            padding: 30px 0;
        }

        .ash-slide-subtitle {
            display: inline-block;
            color: #6c7a94;
            font-size: 16px;
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }

        .ash-slide-subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 20px;
            background: linear-gradient(to bottom, #00d3c7, #00e6aa);
            border-radius: 3px;
        }

        .ash-slide-title {
            font-size: 36px;
            color: #1a2b49;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .ash-slide-description {
            color: #6c7a94;
            font-size: 16px;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        /* Feature List */
        .ash-feature-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .ash-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #1a2b49;
            font-size: 16px;
            font-weight: 500;
        }

        .ash-feature-icon {
            color: #00d3c7;
            margin-right: 15px;
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* CTA Button */
        .ash-cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #1a2b49, #2c3e50);
            color: #fff;
            padding: 14px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .ash-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s ease;
            z-index: -1;
        }

        .ash-cta-button:hover::before {
            left: 100%;
        }

        .ash-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        /* Slider Image */
        .ash-slide-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .ash-slide-image img {
            max-width: 100%;
            height: auto;
            position: relative;
            z-index: 1;
        }

        .ash-image-mockup {
            position: relative;
            width: 100%;
            height: auto;
        }

        .ash-main-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .ash-popup-box {
            position: absolute;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            padding: 15px;
            transition: all 0.5s ease;
        }

        .ash-popup-top {
            top: -60px;
            right: -40px;
            width: 280px;
        }

        .ash-popup-bottom {
            bottom: -80px;
            left: -30px;
            width: 200px;
        }

        .ash-popup-title {
            font-size: 14px;
            color: #1a2b49;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .ash-popup-apps {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }

        .ash-app-icon {
            width: 30px;
            height: 30px;
            background: #f5f7fa;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .ash-wordpress {
            color: #21759b;
        }

        .ash-joomla {
            color: #5091CD;
        }

        .ash-drupal {
            color: #0678BE;
        }

        .ash-magento {
            color: #f26322;
        }

        .ash-prestashop {
            color: #df0067;
        }

        .ash-popup-bar {
            height: 8px;
            background: #f0f3f7;
            border-radius: 4px;
            margin-top: 5px;
            overflow: hidden;
            position: relative;
        }

        .ash-progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(45deg, #00d3c7, #00e6aa);
            border-radius: 4px;
            width: 75%;
        }

        .ash-status {
            position: absolute;
            bottom: 15px;
            right: 30px;
            background: #4CAF50;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* Slider Navigation */
        .ash-slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 10px;
        }

        .ash-slider-dot {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid #e1e5ee;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            color: #6c7a94;
            transition: all 0.3s ease;
        }

        .ash-slider-dot:hover {
            background: #f5f7fa;
            color: #1a2b49;
        }

        .ash-slider-dot.ash-active {
            background: linear-gradient(45deg, #00d3c7, #00e6aa);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 3px 8px rgba(0, 211, 199, 0.3);
        }

        /* Custom Slick Arrows */
        .ash-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            color: #1a2b49;
            z-index: 10;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ash-slider-arrow:hover {
            background: #1a2b49;
            color: #fff;
        }

        .ash-slider-prev {
            left: -20px;
        }

        .ash-slider-next {
            right: -20px;
        }

        .slick-dots {
            bottom: -50px;
        }

        .slick-dots li button:before {
            font-size: 12px;
            color: #ccc;
        }

        .slick-dots li.slick-active button:before {
            color: #00d3c7;
        }

        .ash-slide-item .slick-slide {
            transform: scale(0.85);
            transition: transform 0.5s ease;
            opacity: 0.5;
        }

        .ash-slide-item.slick-current {
            transform: scale(1);
            opacity: 1;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .ash-slide-col-left,
            .ash-slide-col-right {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .ash-slide-col-left {
                order: 2;
            }
            
            .ash-slide-col-right {
                order: 1;
                margin-bottom: 30px;
            }
            
            .ash-slide-title {
                font-size: 28px;
            }
            
            .ash-popup-top, 
            .ash-popup-bottom {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .ash-topbar-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .ash-slider-arrow {
                display: none;
            }
            
            .ash-slide-title {
                font-size: 24px;
            }
            
            .ash-feature-item {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .ash-slide-subtitle {
                font-size: 14px;
            }
            
            .ash-slide-title {
                font-size: 22px;
            }
            
            .ash-slide-description {
                font-size: 14px;
            }
            
            .ash-cta-button {
                padding: 12px 25px;
                font-size: 14px;
            }
        }
		
		
		
		@import url(https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap);
@import url(https://maxst.icons8.com/vue-static/landings/line-awesome/font-awesome-line-awesome/css/all.min.css);
body {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #262936;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    box-sizing: border-box
}

b,
strong {
    font-weight: 700
}

a {
    color: #262936
}

a:hover {
    text-decoration: none
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

em {
    font-style: normal
}

.adminreturndiv {
    display: none
}

.heading {
    position: relative;
    margin-bottom: 40px
}

.heading>.heading-title {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 4px
}

.heading>.heading-desc {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 0
}

.form-control {
    height: 48px;
    border: 1px solid #d3d5d8;
    color: #262936
}

.bg-white {
    background: #fff
}

.bg-gray {
    background: linear-gradient(180deg, #f9fbfd 0, #fff 100%)
}

.btn-dark {
    color: #fff;
    background-color: #8da0b1;
    border-color: #8da0b1
}

.btn-primary {
    color: #fff;
    background-color: #425480;
    border-color: #425480
}

.btn-outline-primary {
    color: #2c87cf;
    border-color: #2c87cf
}

.btn-lg {
    height: 48px;
    font-size: 16px
}

.btn.active,
.btn.focus,
.btn:active,
.btn:focus {
    outline: 0;
    outline-offset: 2px;
    outline-offset: -2px;
    box-shadow: none
}

.container:after,
.container:before {
    display: table;
    content: " ";
    clear: both
}

.popover {
    border-radius: 3px;
    margin-left: 16px;
    margin-top: 3%;
    min-width: 200px;
    box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08)
}

.popover .popover-content,
.popover .popover-title {
    padding: 10px;
    font-size: 16px
}

.popover .popover-title {
    background: #f1f1f1;
    border-bottom: 1px solid #dee2e6;
    font-size: 16px
}

.popover {
    background: #fafafa;
    border: 1px solid #dee2e6
}

.popover:after,
.popover:before {
    right: 100%;
    top: 19px;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.popover:after {
    border-color: rgba(250, 250, 250, 0);
    border-right-color: #f1f1f1;
    border-width: 10px;
    margin-top: -10px
}

.popover:before {
    border-color: rgba(222, 226, 230, 0);
    border-right-color: #dee2e6;
    border-width: 11px;
    margin-top: -11px
}

.card {
    border-radius: 4px;
    background: #fff;
    border: 1px solid #e5e8ed;
    box-shadow: 0 1px 10px 0 rgba(141, 153, 176, .1)
}

.global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(0 0 0 / 58%)
}

.custom-tab1 .tab-content {
    padding: 40px 20px;
    box-shadow: 0 1px 10px 0 rgba(141, 153, 176, .1);
    background: #fff;
    border: 1px solid #e5e8ed;
    border-top: 0
}

.custom-tab1 .nav-tabs {
    border-bottom: 1px solid #e5e8ed
}

.custom-tab1 .nav-tabs .nav-item.show .nav-link,
.custom-tab1 .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #e5e8ed #e5e8ed #fff
}

.custom-tab1 .nav-tabs .nav-link:focus {
    border-color: #e5e8ed #e5e8ed #fff
}

.custom-tab1 .nav-tabs .nav-link:hover {
    border-color: transparent
}

.custom-tab1 .nav-tabs .nav-link.active:hover {
    border-color: #e5e8ed #e5e8ed #fff
}

.custom-tab1 .nav-tabs .nav-link {
    padding: 8px 20px
}



.home-product {
    position: relative;
    padding: 60px 0
}

.home-product .heading {
    margin-bottom: 20px
}

.home-box {
    float: left;
    width: calc(20% - 2px);
    position: relative;
    text-align: center;
    margin: 15px 1px;
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
    padding: 20px 10px;
    border: 1px solid #e6e9ed;
    box-shadow: 0 0 30px rgb(14 14 14 / 10%);
    border-bottom: 5px solid #c5cacc
}

.home-box img {
    display: block;
    margin: 0 auto 10px;
    height: 80px
}

.home-box .p-price {
    position: relative;
    text-align: center;
    padding: 10px 0 5px
}

.home-box .p-price .price-tag {
    padding-left: 15px;
    font-size: 56px;
    line-height: 1;
    font-weight: 800;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    justify-content: center
}

.home-box .p-price .price-tag span {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    font-weight: 900;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    justify-content: center
}

.home-box .p-price .price-tag sub {
    color: #242736;
    font-size: 14px;
    font-weight: 400;
    top: 12px;
    left: 10px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.home-box .p-price .price-tag sup {
    font-size: 28px;
    top: -10px;
    left: -20px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.home-box .p-price .price-tag sup>small {
    font-weight: 300;
    margin-left: 3px
}

.home-box .title {
    font-size: 18px;
    font-weight: 700;
    text-align: center
}

.home-box .desc {
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 15px
}

.home-box .btn {
    font-size: 16px;
    border-radius: 4px;
    padding: 12px 40px
}

@media only screen and (max-width:767px) {
    .home-box {
        width: calc(50% - 2px);
        margin: 2px 1px;
        min-height: 350px
    }
    .home-box:nth-child(1) {
        width: calc(100% - 2px)
    }
}

.home-customer {
    position: relative;
    width: 100%;
    padding: 70px 0
}

.home-customer .heading {
    margin-bottom: 40px
}

.home-customer .heading-desc {
    font-size: 24px;
    color: #ffc22c
}

.home-customer .reviews-box {
    position: relative
}

.home-customer .reviews-box .reviews {
    background: #f7f7f7;
    border-radius: 3px;
    padding: 25px;
    color: #333;
    position: relative;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5
}

.home-customer .reviews-box .reviews:after {
    content: '';
    position: absolute;
    left: 12%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #f7f7f7;
    clear: both
}

.home-customer .reviews-box .reviews-author {
    display: table;
    padding-top: 10px;
    padding-left: 20px
}

.home-customer .reviews-box .reviews-author img {
    width: 55px;
    height: auto;
    border-radius: 50%;
    display: table-cell
}

.home-customer .reviews-box .reviews-author h4 {
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
    padding-left: 15px;
    padding-top: 3px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.2
}

.home-customer .reviews-box .reviews-author h4 span {
    display: block;
    font-size: 14px;
    color: #717988;
    padding-top: 1px
}

.home-customer .reviews-box .reviews-author h4 span>span {
    display: block;
    font-size: 90%;
    font-weight: 400;
    padding-top: 2px
}

.home-customer .owl-dots {
    display: none
}

.home-customer .owl-nav {
    position: absolute;
    top: 124px;
    width: 100%;
    font-size: 60px
}

.home-customer .owl-nav .owl-prev {
    position: absolute;
    right: 40px;
    color: #abacb3 !important
}

.home-customer .owl-nav .owl-next {
    position: absolute;
    right: 10px;
    color: #abacb3 !important
}

.home-domain-bar {
    position: relative;
    padding: 40px 0 30px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background: #333
}

.home-domain-bar:before {
    position: absolute;
    content: '';
    left: 70%;
    top: 0;
    background-image: url(../img/page/banner-light.svg);
    width: 100%;
    height: 100%;
    mix-blend-mode: color-burn;
    opacity: .4
}

.home-domain-bar .text {
    color: #fff;
    margin-bottom: 15px;
    overflow: hidden
}

.home-domain-bar .text h2 {
    font-size: 30px;
    margin-bottom: 5px
}

.home-domain-bar .text p {
    font-size: 18px;
    color: #fff
}

.home-domain-bar .form-bg {
    background: #fff;
    overflow: hidden;
    border-radius: 4px
}

.home-domain-bar .form-bg input {
    float: left;
    border: 0;
    padding: 10px 25px;
    width: calc(100% - 150px);
    height: 56px;
    border-radius: 4px;
    font-weight: 500
}

.home-domain-bar .form-bg .btn {
    float: right;
    width: 150px;
    padding: 10px 15px;
    height: 56px;
    border-radius: 0;
    font-weight: 500
}

.home-domain-bar ul.domain-link {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    clear: both;
    display: inline-block;
    text-align: center
}

.home-domain-bar ul.domain-link li {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    font-size: 16px
}

.home-domain-bar ul.domain-link li a {
    color: #fff;
    font-weight: 500
}

.home-domain-bar ul.domain-link li:after {
    position: absolute;
    content: '';
    top: 3px;
    right: -2px;
    height: 16px;
    width: 1px;
    background: #ffffff40
}

.home-domain-bar ul.domain-link li:last-child:after {
    display: none
}

.custom-switch {
    padding-left: 57px;
    min-height: 33px
}

.custom-switch .custom-control-label {
    line-height: 32px;
    font-size: 15px
}

.custom-switch .custom-control-label::before {
    width: 50px;
    height: 26px;
    border-radius: 20px;
    left: -57px
}

.custom-switch .custom-control-label::after {
    width: calc(24px - 4px);
    height: calc(24px - 4px);
    top: calc(5px + 2px);
    left: calc(-55px + 2px);
    border-radius: 20px
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    -webkit-transform: translateX(22px);
    transform: translateX(22px)
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #f66503;
    background-color: #f66503
}

.custom-control-input {
    width: 56px;
    height: 33px
}

.custom-control-input:focus {
    box-shadow: none;
    border: 0
}

.home-domain-price {
    position: relative;
    padding: 0 0 20px;
    background: #333;
    color: #fff
}

.home-domain-price #domainPrice .owl-item {
    position: relative
}

.home-domain-price #domainPrice .owl-item:after {
    position: absolute;
    content: '';
    right: -4px;
    top: 2px;
    width: 1px;
    height: 22px;
    background: #ffffff40
}

.home-domain-price #domainPrice .owl-item:first-child:after {
    display: none
}

.home-domain-price .item-price {
    text-align: center
}

.home-domain-price .item-price .name {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    margin-right: 10px;
    background: #4eb246;
    border-radius: 4px;
    color: #fff;
    padding: 2px 6px 4px;
    line-height: 1
}

.home-domain-price .item-price .price {
    display: inline-block
}

.home-domain-price .item-price .price sub {
    position: relative;
    font-size: 15px;
    font-weight: 300;
    bottom: inherit
}

.home-domain-price .item-price .price sub:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid red;
    height: 45%;
    height: calc(50% - 1px);
    width: 100%;
    transform: rotateZ(-10deg)
}

.home-domain-price .item-price .price sup {
    font-size: 18px;
    font-weight: 800;
    top: inherit
}

.home-domain-price.bg-green .item-price .name {
    background: #333
}

@media only screen and (max-width:767px) {
    .home-domain-bar .text {
        text-align: center;
        margin-bottom: 15px
    }
    .home-domain-bar .form-bg input {
        width: calc(100% - 100px);
        padding: 10px
    }
    .home-domain-bar .form-bg .btn {
        width: 100px
    }
    .home-domain-price {
        padding-top: 20px;
        padding-bottom: 20px
    }
    .home-domain-price .item-price .name {
        margin-right: 2px
    }
}

.home-box .p-price .price-tag sup {
    font-size: 22px;
    top: -10px;
    left: -20px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.home-box .p-price .price-tag sup>small {
    font-weight: 300;
    margin-left: 3px
}

.home-box .title {
    font-size: 18px;
    font-weight: 700;
    text-align: center
}

.home-box .desc {
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 15px
}

.home-box .btn {
    font-size: 16px;
    border-radius: 4px;
    padding: 12px 40px
}

@media only screen and (max-width:767px) {
    .home-box {
        width: calc(50% - 2px);
        margin: 2px 1px;
        min-height: 350px
    }
    .home-box:nth-child(1) {
        width: calc(100% - 2px)
    }
}

.mega-menu-header {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #e7e7e8
}

.mega-menu-header:after,
.mega-menu-header:before {
    display: table;
    content: " ";
    clear: both
}

.mega-menu-header .col-md-3 {
    position: relative;
    padding: 0 20px
}

.mega-menu-header .col-md-3:after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #e7e7e8
}

.mega-menu-header p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.4;
    color: #949c9e
}

.mega-menu-header p b {
    font-size: 16px;
    color: #373d41
}

.mega-menu-header b {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #262936
}

.mega-menu-header ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.mega-menu-header ul li a {
    display: block;
    color: #373d41;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    padding: 4px 0
}

.menuTopFix.sticky {
    position: fixed;
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 4px rgba(3, 27, 78, .1);
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3
}

.mobile-header {
    position: relative;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 60px;
    text-align: center;
    z-index: 3;
    display: none
}

.mobile-header a>img {
    height: 30px;
    margin-top: 15px
}

.mobile-header a {
    display: block;
    width: 100%
}

.mobile-header .mobile-cart {
    position: relative;
    color: #3c3d3b;
    font-size: 30px;
    padding: 8px
}

.mobile-header .mobile-cart span {
    position: absolute;
    top: 11px;
    right: 15px;
    font-size: 11px
}

.mobile-header .mblMenu {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 65px;
    font-size: 30px;
    color: #3c3d3b;
    padding: 8px 24px
}

#sidebar {
    background: #f8f8f8;
    border-top: 1px solid #e6e6e6;
    position: fixed;
    width: 100%;
    left: 0;
    top: 60px;
    height: 100%;
    z-index: 9999;
    display: none
}

#sidebar.active {
    display: block
}

.gw-login a {
    float: left;
    width: 50%;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
    display: block;
    font-size: 16px;
    color: #53534a;
    padding: 12px 0
}

.gw-login a:last-child {
    border-right: 0
}

.gw-login a i {
    margin-right: 4px
}

.gw-sidebar .nano-pane {
    background: rgba(255, 255, 255, 0);
    font-size: 15px
}

.nano-content {
    list-style: none;
    margin: 0;
    overflow: none;
    background-color: #fff;
    padding: 0 12px;
    font-size: 16px;
    color: #666;
    line-height: 1.2;
    font-weight: 500;
    overflow-x: hidden;
    height: 100%
}

.gw-sidebar .gw-nav-list li a {
    padding-left: 20px
}

.gw-nav-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.gw-nav-list>li:first-child {
    border-top: 0
}

.gw-nav-list>li {
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid #fcfcfc;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    text-decoration: none
}

.gw-nav-list>li:last-child {
    border-bottom: none
}

@-webkit-keyframes arrow-slide {
    100% {
        -webkit-transform: rotate(225deg);
        z-index: 3
    }
}

@-webkit-keyframes arrow-slide1 {
    100% {
        -webkit-transform: rotate(225deg);
        z-index: 3
    }
}

.gw-nav-list>li.arrow-down:after {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    right: 10px;
    top: 15px;
    border-top: 1px solid #bababa;
    border-left: 1px solid #bababa;
    -webkit-transform: rotate(45deg);
    -webkit-animation: arrow-slide .5s 0s ease both
}

.gw-nav-list>li.init-arrow-down:after {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    right: 10px;
    top: 15px;
    border-right: 1px solid #bababa;
    border-bottom: 1px solid #bababa;
    -webkit-transform: rotate(45deg)
}

.gw-nav-list>li.arrow-up:after {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    right: 10px;
    top: 15px;
    border-right: 1px solid #bababa;
    border-bottom: 1px solid #bababa;
    -webkit-transform: rotate(45deg);
    -webkit-animation: arrow-slide1 .5s 0s ease both
}

.gw-nav-list>li.init-arrow-up:after {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    right: 10px;
    top: 15px;
    border-top: 1px solid #bababa;
    border-left: 1px solid #bababa;
    -webkit-transform: rotate(45deg)
}

.gw-nav-list>li.active {
    background-color: #fff
}

.gw-nav-list>li>a {
    display: block;
    height: 42px;
    line-height: 42px;
    padding: 0 16px 0 7px;
    color: #666;
    text-shadow: none !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none
}

.gw-open>a {
    outline: 0
}

.gw-nav-list>li.gw-open {
    border-bottom-color: #e5e5e5
}

.gw-nav-list>li.gw-open>a {
    background-color: #fafafa;
    color: #1963aa
}

.gw-nav-list .gw-open>a,
.gw-nav-list .gw-open>a:focus,
.gw-nav-list .gw-open>a:hover {
    background-color: #fafafa
}

.gw-nav .gw-open>a,
.gw-nav .gw-open>a:focus,
.gw-nav .gw-open>a:hover {
    background-color: #eee;
    border-color: #428bca
}

.gw-nav-list>li.active>a,
.gw-nav-list>li.active>a:active,
.gw-nav-list>li.active>a:focus,
.gw-nav-list>li.active>a:hover {
    background-color: #fff;
    color: #dd4814;
    font-weight: 800;
    font-size: 16px
}

.gw-nav-list .gw-nav-header,
.gw-nav-list>li>a {
    margin: 0
}

.gw-nav-list>li.active>a>[class*=icon-] {
    font-weight: 400
}

.gw-nav-list>li.active>a:hover:before {
    display: none
}

.gw-nav-list>li.active:before {
    display: inline-block;
    content: "";
    position: absolute;
    right: -13px;
    top: -1px;
    bottom: 0;
    z-index: 1;
    border-right: 1px solid #dd4814
}

.gw-nav-list li.gw-open>a:after {
    display: none
}

.gw-nav-list>li a>.gw-arrow {
    display: inline-block;
    width: 14px !important;
    height: 14px;
    line-height: 14px;
    text-shadow: none;
    font-size: 18px;
    position: absolute;
    right: 11px;
    top: 11px;
    padding: 0;
    color: #666
}

.gw-nav-list>li a:hover>.gw-arrow,
.gw-nav-list>li.active>a>.gw-arrow,
.gw-nav-list>li.gw-open>a>.gw-arrow {
    color: #1963aa
}

.gw-nav-list>li>a>[class*=icon-]:first-child {
    display: inline-block;
    vertical-align: middle;
    min-width: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-right: 2px
}

.gw-nav-list>li .gw-submenu {
    font-size: 13px;
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #fff;
    border-top: 1px solid #e5e5e5
}

.gw-nav-list>li .gw-submenu>li {
    margin-left: 0;
    position: relative
}

.gw-nav-list>li .gw-submenu>li>a {
    display: block;
    position: relative;
    color: #616161;
    padding: 11px 0 9px 35px;
    margin: 0;
    border-top: 1px dotted #e4e4e4;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none
}

.gw-nav-list>li .gw-submenu>li>a:focus {
    text-decoration: none
}

.gw-nav-list>li .gw-submenu>li>a:hover {
    text-decoration: none;
    color: #dd4814;
    background-color: rgba(25, 25, 50, .1)
}

.gw-nav-list>li .gw-submenu>li.active:after {
    display: inline-block;
    content: "";
    position: absolute;
    right: -1px;
    top: -1px;
    bottom: 0;
    z-index: 1;
    border: 2px solid #dd4814
}

.gw-nav-list>li .gw-submenu>li.active>a {
    color: #dd4814
}

.gw-nav-list>li .gw-submenu>li a>[class*=icon-]:first-child {
    display: none;
    font-size: 12px;
    font-weight: 400;
    width: 18px;
    height: auto;
    line-height: 12px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 11px;
    z-index: 1;
    background-color: #fff
}

.gw-nav-list>li .gw-submenu>li.active>a>[class*=icon-]:first-child,
.gw-nav-list>li .gw-submenu>li:hover>a>[class*=icon-]:first-child {
    display: inline-block
}

.gw-nav-list>li .gw-submenu>li.active>a>[class*=icon-]:first-child {
    color: #c86139
}

.gw-nav-list>li>.gw-submenu>li:first-child>a {
    border-top: 0
}

.gw-nav-list li .gw-submenu {
    overflow: hidden
}

.gw-nav-list li.active.gw-open>.gw-submenu>li.active.gw-open>a.dropdown-toggle:after {
    display: none
}

.gw-nav-list li.active>.gw-submenu>li.active>a:after {
    display: none
}

.gw-nav-list li.active.gw-open>.gw-submenu>li.active>a:after {
    display: block
}

.gw-nav-tabs li[class*=" icon-"],
.nav-tabs li[class^=icon-] {
    width: 1.25em;
    display: inline-block;
    text-align: center
}

.home__domain {
    position: relative;
    border-bottom: 1px solid #e5e8ed;
    border-top: 1px solid #e5e8ed;
    background: #f9fbfc;
    padding: 25px 0
}

.home__domain form {
    position: relative
}

.home__domain form input {
    float: left;
    width: calc(100% - 140px);
    height: 60px;
    border-right: 0;
    border-radius: 4px 0 0 4px
}

.home__domain form .btn {
    float: left;
    width: 140px;
    height: 60px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    font-size: 16px;
    display: block
}

.home__domain #owl-domain {
    margin-top: 10px
}

.home__domain #owl-domain .owl-item:after {
    position: absolute;
    content: '';
    right: -5px;
    top: 0;
    background: #e5e8ed;
    height: 41px;
    width: 1px
}

.home__domain #owl-domain .item {
    text-align: center;
    letter-spacing: -.7px;
    line-height: 1
}

.home__domain #owl-domain .item img {
    width: auto;
    height: 24px;
    margin: 0 auto;
    display: block
}

.home__domain #owl-domain span.old {
    display: inline-block;
    text-decoration: line-through;
    font-size: 14px;
    color: #999
}

.home__domain #owl-domain span.new {
    display: inline-block
}

#home-carousel-1x .carousel-item {
    height: 400px;
    text-align: center;
    background-size: cover !important
}

#home-carousel-1x .container {
    position: relative
}

#home-carousel-1x .container .carousel-title {
    position: absolute;
    left: 15px;
    top: 60px;
    text-align: left;
    color: #3a3c46;
    width: 60%
}

#home-carousel-1x .container .carousel-title h1 {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 10px
}

#home-carousel-1x .container .carousel-title p {
    font-size: 22px;
    margin-bottom: 20px
}

#home-carousel-1x .container .carousel-title ul {
    margin-bottom: 25px;
    overflow-y: hidden
}

#home-carousel-1x .container .carousel-title ul li {
    float: left;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 0;
    width: 50%
}

#home-carousel-1x .container .carousel-title .btn {
    font-weight: 500;
    width: 220px;
    line-height: 30px
}

#home-carousel-1x .carousel-control-prev {
    width: 75px
}

#home-carousel-1x .carousel-control-next {
    width: 75px
}

#home-carousel-1x .img1 {
    position: absolute;
    right: -52px;
    top: 37px;
    height: 330px
}

.section__banner {
    position: relative;
    width: 100%;
    text-align: center;
    color: #252836;
    padding: 50px 0 0;
    height: 360px;
    background: #e2e8eb
}

.section__banner h1 {
    font-size: 36px;
    margin-bottom: 10px
}

.section__banner p {
    font-size: 20px;
    margin-bottom: 20px
}

.section__banner li {
    display: inline-block;
    padding: 8px 15px;
    font-size: 18px
}

.section__banner li:nth-child(1) {
    padding-left: 0
}

.section__banner li:nth-child(4) {
    padding-right: 0
}

.section__banner li>i {
    padding-right: 3px
}

.section__product {
    position: relative;
    width: 100%;
    padding: 0;
    margin-top: -76px;
    clear: both
}

.hosting-package {
    clear: both
}

.hosting-package:after,
.hosting-package:before {
    display: table;
    content: " ";
    clear: both
}

.package {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    border-bottom: 5px solid #d4d4d4;
    margin: 0 5px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 15%);
    float: left;
    width: calc(25% - 10px);
    box-shadow: 0 0 50px rgb(34 34 34 / 20%)
}

.package.best-hosting {
    margin-top: -40px;
    z-index: 1
}

.package.best-hosting[data-promo-text]:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px 0 8px;
    color: #252836;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    text-transform: none;
    content: attr(data-promo-text)
}

.package.best-hosting[data-promo-text]:before {
    background: #425480;
    color: #fafafa
}

.package .p-header {
    position: relative;
    text-align: center;
    padding: 15px 0 15px;
    background-color: #fafafa;
    border-bottom: 1px solid #2427362e
}

.package .p-header>h3 {
    font-size: 20px;
    color: #252836
}

.package .p-header>p {
    margin: 0;
    font-size: 14px;
    color: #252836
}

.package .p-price {
    position: relative;
    text-align: center;
    padding: 10px 0 15px;
    background-color: #fafafa
}

.package .p-price .badge {
    margin-bottom: 10px
}

.package .p-price .old {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #242736;
    line-height: 1
}

.package .p-price .old span {
    position: relative;
    display: inline-block
}

.package .p-price .old span:after {
    display: block;
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    right: 0;
    top: 10px;
    background: red;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg)
}

.package .p-price .price-tag {
    color: #fff;
    padding-left: 15px;
    font-size: 56px;
    line-height: 1;
    font-weight: 800;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    justify-content: center
}

.package .p-price .price-tag span {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    color: #252836;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    justify-content: center
}

.package .p-price .price-tag sub {
    color: #242736;
    font-size: 14px;
    font-weight: 600;
    bottom: 0;
    top: 12px;
    left: 10px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.package .p-price .price-tag sup {
    color: #252836;
    font-size: 28px;
    top: -10px;
    left: -20px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.package .p-price .price-tag sup>small {
    font-weight: 300;
    margin-left: 3px
}

.package .p-price i {
    position: absolute;
    right: 30px;
    top: 62%
}

.package .p-order {
    margin-top: 0;
    text-align: center;
    padding-bottom: 15px;
    background-color: #fafafa
}

.package .p-order .btn {
    width: 220px;
    height: 44px;
    line-height: 30px;
    letter-spacing: -.3px;
    font-weight: 700
}

.package .p-detail {
    position: relative;
    text-align: center
}

.package .p-detail>p {
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid #e6e9ed
}

.package .p-more {
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 400
}

.package .p-more a {
    color: #425480
}

.package .p-renew {
    font-size: 12px;
    color: #9c9c9c;
    text-align: center;
    font-weight: 400;
    cursor: help;
    margin-bottom: 15px
}

.badge-taksit {
    position: absolute;
    left: -75px;
    top: 30px;
    width: 200px
}

.badge-taksit3 {
    position: absolute;
    right: -148px;
    top: -37px;
    width: 180px
}

.package .p-detail>p>img {
    width: 20px;
    margin-right: 3px;
    position: relative;
    top: -2px;
    display: inline-block;
    margin: 0
}

.DomainKampanya {
    position: absolute;
    z-index: 1;
    right: 2px;
    top: 70px;
    width: 77px;
    height: 77px;
    background: url(../img/ucretsiz__domain_site.png)
}

.package.best-hosting .DomainKampanya {
    top: 110px
}

.plan-title {
    font-size: 20px;
    text-align: center;
    margin-top: 31px
}

.plan-title>i {
    position: relative;
    top: 4px;
    font-size: 26px;
    text-align: center
}

.plan-title>.abbr {
    text-decoration: none;
    border-bottom: 1px dotted;
    cursor: pointer;
    color: #00b9ff
}

.section__performance {
    position: relative;
    width: 100%;
    padding: 50px 0
}

.performance__list {
    position: relative;
    overflow: hidden
}

.performance__list ul li {
    float: left;
    width: calc(20% - 20px);
    margin: 10px 10px;
    line-height: 1.4;
    background-color: #fff;
    border: 1px solid #e5e8ed;
    box-shadow: 0 1px 10px 0 rgba(141, 153, 176, .1);
    border-radius: 4px;
    padding: 10px
}

.performance__list ul li i {
    display: block;
    font-size: 42px;
    color: #00b9ff
}

.performance__list ul li b {
    display: block;
    font-size: 16px
}

.performance__list ul li p {
    display: block;
    font-size: 14px;
    margin-bottom: 0
}

.section__partner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.section__partner .partner {
    display: flex;
    align-items: center;
    width: 110px;
    height: 40px;
    margin-bottom: 30px;
    margin-right: 25px
}

.section__partner .partner img {
    width: 100%;
    height: auto
}

.section__demo {
    position: relative;
    padding: 40px 0;
    background: #f9fbfc
}

.section__click {
    position: relative;
    width: 100%;
    padding: 40px 0;
    background-color: #fff
}

.section__click img {
    width: 100%
}

.section__click h3 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 30px
}

.section__click p {
    font-size: 20px;
    margin-bottom: 0;
    color: #717988;
    margin-bottom: 30px
}

.section__click p:last-child {
    margin-bottom: 0
}

.section__featured {
    position: relative;
    width: 100%;
    padding: 70px 0 30px;
    background: #f9fbfc
}

.block__feature {
    position: relative;
    margin: 15px 0
}

.block__feature i {
    display: block;
    font-size: 32px;
    text-align: center;
    width: 48px;
    height: 48px;
    line-height: 48px;
    margin-bottom: 10px;
    background: #0088ff26;
    color: #08f;
    -moz-border-radius: 24px;
    -webkit-border-radius: 24px;
    border-radius: 24px
}

.block__feature h6 {
    position: relative;
    margin-bottom: 5px
}

.block__feature p {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 300
}

.section__customer {
    position: relative;
    width: 100%;
    padding: 70px 0
}

.support__client {
    position: relative;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #00b9ff
}

.reviews-box {
    position: relative
}

.reviews-box .reviews {
    background: #f4f7fb;
    border-radius: 3px;
    padding: 35px;
    color: #333;
    position: relative;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5
}

.reviews-box .reviews:after {
    position: absolute;
    left: 30px;
    bottom: 0;
    content: "";
    height: 10px;
    width: 32px;
    background: #f4f7fb
}

.reviews-box .reviews:before {
    position: absolute;
    left: 24px;
    bottom: -35px;
    content: "\f0dd";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 42px;
    color: #f4f7fb;
    cursor: default
}

.reviews-box .reviews-author {
    display: table;
    padding-top: 10px;
    padding-left: 20px
}

.reviews-box .reviews-author img {
    width: 55px;
    height: auto;
    border-radius: 50%;
    display: table-cell
}

.reviews-box .reviews-author h4 {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 600;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.1
}

.reviews-box .reviews-author h4 span {
    display: block;
    font-size: 14px;
    color: #717988;
    padding-top: 1px
}

.reviews-box .reviews-author h4 span>span {
    display: block;
    font-size: 90%;
    font-weight: 400;
    padding-top: 2px
}

#support__slider .owl-dots {
    display: none
}

#support__slider .owl-nav {
    position: absolute;
    top: 124px;
    width: 100%;
    font-size: 60px
}

#support__slider .owl-nav .owl-prev {
    position: absolute;
    right: 40px;
    color: #abacb3 !important
}

#support__slider .owl-nav .owl-next {
    position: absolute;
    right: 10px;
    color: #abacb3 !important
}

.carousel-indicators {
    z-index: 2
}

.section__compare {
    position: relative;
    width: 100%;
    padding: 70px 0
}

.section__compare a {
    color: #44505d
}

.compare-list-spec {
    list-style: none;
    padding: 0;
    margin: 0
}

.compare-list-spec li {
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    line-height: normal;
    border-bottom: 1px solid #e6e9ed;
    border-right: 1px solid #e6e9ed;
    text-align: right;
    min-height: 45px;
    max-height: 65px
}

.compare-list-spec li.caption {
    font-size: 20px;
    font-weight: 700;
    line-height: 60px;
    height: 60px;
    border-right: 0;
    line-height: 40px
}

.compare-list-spec li:first-child {
    border-top: 1px solid #e6e9ed
}

.compare-list-spec li:last-child {
    border-bottom: 0
}

.compare-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.compare-list li {
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    line-height: normal;
    border-bottom: 1px solid #e6e9ed;
    border-right: 1px solid #e6e9ed;
    text-align: center;
    overflow: hidden;
    min-height: 45px;
    max-height: 65px
}

.compare-list li.caption {
    font-size: 20px;
    line-height: 20px;
    height: 60px;
    border-bottom: 0;
    border-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.compare-list li.caption.bg-dark {
    background-color: #252836 !important
}

.compare-list li:first-child {
    border-top: 1px solid #e6e9ed
}

.compare-list li:last-child {
    border-bottom: 0 !important
}

.compare-list.compare-pop {
    position: relative;
    z-index: 2;
    box-shadow: -50px 0 50px -50px rgba(34, 34, 34, .4), 50px 0 50px -50px rgba(34, 34, 34, .4)
}

.compare-list.compare-pop li {
    font-weight: 700
}

.compare-list.last li {
    border-right: 0
}

.compare-list li.spec-1 {
    border-bottom: 5px solid #b3b7bd
}

.compare-list li.spec-2 {
    border-bottom: 5px solid #252836
}

.compare-list li.compare-price {
    padding: 20px 20px;
    max-height: none
}

.compare-list li.compare-price {
    border-bottom: 0
}

.compare-list li.compare-price .price {
    font-size: 34px;
    line-height: 100%;
    font-weight: 900;
    letter-spacing: -.04em;
    position: relative;
    white-space: nowrap
}

.compare-list li.compare-price .price .month {
    position: relative
}

.compare-list li.compare-price .price .month:after {
    content: "/Ay";
    letter-spacing: 0;
    white-space: nowrap;
    font-size: 33%;
    line-height: 1;
    position: absolute;
    bottom: 9px;
    left: 5px;
    font-weight: 400
}

.compare-list li.compare-price .price small {
    position: relative;
    font-size: 50%;
    line-height: 50%;
    top: -13px;
    margin-left: 0;
    white-space: nowrap
}

.compare-list li.compare-price .btn {
    color: #fff;
    font-weight: 700;
    letter-spacing: -.6px;
    line-height: 28px
}

.compare-list li .fa-circle {
    color: #b3b7bd;
    background: #b3b7bd;
    border-radius: 50%
}

.no-padding {
    padding: 0
}

.text-medium_grey {
    color: #b3b7bd;
    background: #b3b7bd;
    border-radius: 50%
}

.text-orange {
    color: #3eb9ff;
    background: #3eb9ff;
    border-radius: 50%
}

.comparison-container a {
    color: #222;
    display: block;
    width: 100%
}

.comparison-container a:hover {
    text-decoration: none
}

.section__related {
    position: relative;
    width: 100%;
    padding: 50px 0;
    background: #242734;
    color: #fff
}

.section__related .heading {
    margin-bottom: 20px
}

.related__product {
    position: relative;
    color: #262936;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .15);
    margin: 15px 0;
    padding: 15px;
    display: block;
    width: 100%;
    padding-left: 84px
}

.related__product i {
    position: absolute;
    left: 15px;
    top: 6px;
    font-size: 64px
}

.related__product h6 {
    font-size: 18px;
    font-weight: 600
}

.related__product p {
    font-size: 16px;
    margin: 0
}

.section__support {
    position: relative;
    width: 100%;
    padding: 70px 0
}

.section__support h3 {
    font-size: 28px;
    margin-bottom: 25px
}

.section__support p {
    font-size: 18px;
    margin-bottom: 25px;
    padding-right: 40px
}

.section__support p:nth-child(3) {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 22px
}

.block__support {
    position: relative
}

.block__support a {
    position: relative;
    display: inline-block;
    width: 30.9%;
    background: #fff;
    margin-right: 10px;
    padding: 15px 20px;
    padding-left: 64px;
    border-radius: 4px;
    border: 1px solid #e5e8ed;
    box-shadow: 0 1px 10px 0 rgba(141, 153, 176, .1)
}

.block__support a>i {
    position: absolute;
    left: 8px;
    top: 8px;
    font-size: 48px
}

.block__support a>span {
    display: block;
    font-size: 16px;
    line-height: 1.1 !important
}

.section__support .faq {
    border: 1px solid #e5e8ed;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 1px 10px 0 rgba(141, 153, 176, .1)
}

.section__support .faq h4 {
    position: relative;
    font-size: 17px;
    font-weight: 500;
    padding: 15px 20px;
    padding-right: 30px;
    cursor: pointer;
    background-color: #fff
}

.section__support .faq h4 i {
    position: absolute;
    top: 8px;
    left: 0;
    border: 1px solid #3c4858;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 5px;
    font-size: 28px;
    color: #3c4858
}

.section__support .faq .collapse__detail>div {
    padding: 15px 20px 20px;
    font-size: 17px;
    background-color: #f0f8ff
}

.section__support .faq h4[aria-expanded=true] {
    color: #949ca9
}

.section__support .faq h4[aria-expanded=true] i {
    color: #fff;
    border-color: #2d8cff;
    background: #2d8cff
}

.section__support .faq h4[aria-expanded=false]:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    right: 10px;
    top: 12px;
    font-size: 18px
}

.section__support .faq h4[aria-expanded=true]:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f105';
    right: 10px;
    top: 14px;
    font-size: 18px
}

.section__support .faq .btn {
    padding: 8px 24px;
    height: 36px;
    min-height: 36px;
    font-size: 13px
}

.domain__banner {
    position: relative;
    width: 100%;
    text-align: center;
    color: #252836;
    padding: 60px 0 0;
    height: 360px;
    background: #e2e8eb
}

.domain__banner h1 {
    font-size: 36px;
    margin-bottom: 20px
}

.domain__banner .form__search {
    background: #00000024;
    padding: 6px;
    border-radius: 6px;
    overflow: hidden
}

.domain__banner .form__search .form-control {
    border: 0;
    border-radius: 4px 0 0 4px;
    font-weight: 500;
    font-size: 18px
}

.domain__banner .form__search .btn {
    border: 0;
    font-weight: 500;
    border-radius: 0 4px 4px 0;
    font-size: 18px;
    height: 48px
}

.domain__banner .form__search .col-lg-8 {
    padding-right: 0
}

.domain__banner .form__search .col-lg-4 {
    padding-left: 0
}

.link1 {
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 40px
}

.link1 li {
    display: inline-block;
    padding: 0 10px
}

.link1 li a {
    color: #576879
}

.link2 {
    display: inline-block;
    text-align: center
}

.link2 li {
    display: inline-block;
    font-size: 18px;
    color: #272a36;
    font-weight: 500;
    padding: 0 20px
}

.domain__price {
    position: relative;
    padding: 15px 0 0
}

.domain__price h3 {
    text-align: center;
    margin-bottom: 30px
}

.domain__price .item {
    position: relative;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e5e8ed;
    box-shadow: 0 1px 10px 0 rgba(141, 153, 176, .1);
    border-radius: 6px;
    padding: 10px
}

.domain__price .item img {
    display: block;
    width: auto;
    height: 40px;
    margin: 0 auto
}

.domain__price .item span {
    display: block;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 5px;
    letter-spacing: -.4px
}

.domain__price .item span>small {
    font-weight: 400;
    font-size: 20px;
    padding-left: 2px
}

.domain__price .item a {
    display: block;
    padding: 6px 10px 8px;
    border: 1px solid #00b9ff;
    border-radius: 4px;
    text-align: center;
    line-height: 1
}

.table1 {
    position: relative;
    font-size: 13px;
    background: #fff;
    border: 1px solid #e5e8ed;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(3, 27, 78, .06)
}

.table1 .table {
    margin-bottom: 0;
    font-size: 14px
}

.table1 .table th {
    background: #252836;
    color: #fff;
    border: 0;
    font-size: 14px
}

.table1 .table td {
    background-color: #fff
}

.table1 .table td:nth-child(1) {
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    line-height: 1
}

.table1 .table td:nth-child(2) {
    text-align: center
}

.table1 .table td:nth-child(3) {
    text-align: right;
    font-weight: 700
}

.table1 .table td:nth-child(4) {
    text-align: right;
    font-weight: 700
}

.table1 .table td:nth-child(5) {
    text-align: right;
    font-weight: 700
}

.table1 .form-control {
    height: 31px
}

.table1 .dataTables_length {
    padding: 10px 10px 0
}

.table1 table.dataTable {
    margin: 0 !important
}

.table1 div.dataTables_wrapper div.dataTables_filter {
    padding: 10px 10px 0;
    float: right
}

.table1 div.dataTables_wrapper div.dataTables_info {
    padding: 12px 10px 0
}

.table1 div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    padding: 5px 10px;
    margin: 0;
    float: right
}

.table1 .row:nth-child(3) {
    background: #f3f6f9
}

.div-table {
    position: relative;
    font-size: 15px;
    border-radius: 0
}

.div-table .row.table-header {
    background: #f3f6f9;
    color: #ffffff;
    font-weight: 700;
    border: 0;
    box-shadow: none;
    background: #313243;
}

.div-table .row {
    margin: 4px 0;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 10px 0 rgba(141, 153, 176, .1)
}

.div-table .row .col {
    padding: .75rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.div-table .row .col .price small {
    text-decoration: line-through;
    font-size: 14px
}

.div-table .row .col .price strong {
    font-weight: 700;
    color: #031b4e
}

.div-table .row .col .price span {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    padding: 3px 6px 2px;
    border-radius: 10px
}

.div-table .row .col .btn {
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.5px
}

.div-table .row .col.text-left {
    justify-content: flex-start
}

.div-table .row .col.text-right {
    justify-content: flex-end
}

@media only screen and (max-width:767px) {
    .div-table {
        border: 0;
        font-size: 16px;
        box-shadow: none
    }
    .div-table .row.table-header {
        display: none
    }
    .div-table .row {
        display: block;
        text-align: center;
        padding: 10px;
        border: 1px solid #e5e8ed;
        margin: 15px 0;
        box-shadow: 0 2px 4px rgba(3, 27, 78, .06)
    }
    .div-table .row .col {
        padding: .25rem
    }
    .div-table .row .col:nth-child(1) {
        font-weight: 700;
        font-size: 18px
    }
    .div-table .row .col .price {
        text-align: center
    }
    .div-table .row .col.text-left {
        justify-content: center
    }
    .div-table .row .col.text-right {
        justify-content: center
    }
}

.ssl__filter li {
    margin-bottom: -1px
}

.ssl__filter li a {
    display: block;
    width: 100%;
    border: 1px solid #e5e8ed;
    line-height: 1.4;
    font-weight: 700;
    font-size: 18px;
    background: #f9fbfd;
    padding: 15.5px 10px;
    color: #262936
}

.ssl__filter li a span {
    display: block;
    font-size: 15px;
    font-weight: 400
}

.ssl__filter li a.active {
    background: #00b9ff;
    color: #fff
}

.ssl__product .table-bordered>tbody>tr>td,
.ssl__product .table-bordered>tbody>tr>th,
.ssl__product .table-bordered>tfoot>tr>td,
.ssl__product .table-bordered>tfoot>tr>th,
.ssl__product .table-bordered>thead>tr>td,
.ssl__product .table-bordered>thead>tr>th {
    border: 1px solid #e5e8ed
}

.ssl__product .table thead {
    background-color: #262936;
    color: #f6f7fa
}

.ssl__product .table thead th {
    border-bottom: 0
}

.ssl__product .table td,
.ssl__product .table th {
    vertical-align: middle
}

.ssl__product .table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9fbfd
}

.ssl__product .pp-old-price {
    color: #717988;
    margin-right: 5px;
    font-size: 15px;
    text-decoration: line-through
}

.ssl__product .pp-price {
    font-weight: 700;
    font-size: 18px
}

.ssl-compare-main {
    position: relative
}

.ssl-compare-main .table {
    font-size: 13px
}

.ssl-compare-main .table thead th {
    padding: 5px 3px;
    background: #f3f6f9;
    border-bottom: 0;
    vertical-align: middle;
    text-align: center
}

.ssl-compare-main .table tbody th {
    padding: 5px 3px;
    vertical-align: middle;
    text-align: center
}

.ssl-compare-main .table tbody td {
    padding: 5px 3px;
    line-height: 1.2;
    vertical-align: middle
}

.ssl-compare-main .table tbody th:nth-child(1) {
    text-align: left;
    width: 30%;
    vertical-align: middle
}

.ssl-compare-main .table tbody td:nth-child(2) {
    text-align: center;
    width: 14%
}

.ssl-compare-main .table tbody td:nth-child(3) {
    text-align: center;
    width: 14%
}

.ssl-compare-main .table tbody td:nth-child(4) {
    text-align: center;
    width: 14%
}

.ssl-compare-main .table tbody td:nth-child(5) {
    text-align: center;
    width: 14%
}

.ssl-compare-main .table tbody td:nth-child(6) {
    text-align: center;
    width: 14%
}

@media only screen and (max-width:767px) {
    .hidden-sm {
        display: none
    }
    .ssl__filter {
        margin-bottom: 15px
    }
}

.login-main {
    position: relative;
    padding: 60px 0;
    background: #f9fbfc;
    border-top: 1px solid #e7e7e8
}

.login-main .login {
    margin-bottom: 15px;
    border: 1px solid #e7e7e8;
    background: #fefefe url(../img/login-bg.jpg) right top no-repeat;
    min-height: 385px
}

.login-main .login .loginbox {
    padding: 20px 0 0 80px
}

.login-main .login .loginbox .form-control {
    border-radius: 4px
}

.login-main h3 {
    position: relative;
    color: #444;
    font-size: 22px;
    margin-bottom: 25px
}

.login-main h3::before {
    width: 40px;
    height: 3px;
    background-color: #01b9ff;
    content: '';
    display: block;
    position: relative;
    top: 34px
}

.login-main .col-md-6 h3 {
    margin-top: 98px;
    margin-bottom: 30px
}

.login-main .col-md-6 p {
    font-size: 18px;
    line-height: 22px;
    padding-right: 200px
}

.login-main .btn {
    height: 48px;
    padding: 11px 10px;
    width: 220px
}

#forgotPassword {
    float: right;
    font-size: 14px;
    margin-top: 4px
}

.register-main {
    position: relative;
    padding: 40px 0
}

.register-main .form-control {
    border-radius: 0
}

.register-main .form-group label {
    margin-bottom: 0
}

.register-main .form-group {
    margin-bottom: 10px
}

.register-main .main-content {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px
}

.register-main .panel-title {
    font-size: 16px
}

.pwreset-main {
    position: relative;
    padding: 40px 0
}

.pwreset-main .form-control {
    border-radius: 0
}

.pwreset-main p {
    font-size: 16px;
    margin-bottom: 15px
}

@media only screen and (max-width:768px) {
    .login-main .login {
        padding-bottom: 30px
    }
    .login-main .login .loginbox {
        padding: 20px 0 0 0;
        margin: 0 20px
    }
    .login-main .col-md-6 p {
        font-size: 18px;
        line-height: 22px;
        padding-right: 0
    }
    .register-main .main-content {
        margin: 10px
    }
    .register-main .col-md-3 {
        padding-left: 10px;
        padding-right: 10px
    }
    .register-main .sidebar {
        margin-top: 30px
    }
    .pwreset-main .col-md-6 {
        margin-top: 30px
    }
}

.domain-result-bar {
    position: relative;
    padding: 15px 0 15px;
    width: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
    background: #3eb9ff
}

.domain-result-bar .form {
    float: left;
    background: rgba(0, 0, 0, .5);
    padding: 0;
    border-radius: 4px;
    width: 76%
}

.domain-result-bar .form:after,
.domain-result-bar .form:before {
    display: table;
    content: " ";
    clear: both
}

.domain-result-bar .form .text {
    float: left;
    width: 75%
}

.domain-result-bar .form .text .form-control {
    height: 52px;
    width: 100%;
    border: 0;
    border-radius: 4px 0 0 4px
}

.domain-result-bar .form .button {
    float: left;
    width: 25%
}

.domain-result-bar .form .button .btn {
    height: 52px;
    display: block;
    width: 100%;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    font-size: 16px
}

.domain-result-bar .btnSepet {
    float: right;
    height: 52px;
    font-weight: 600;
    font-size: 16px
}

.domain-result-bar.sticky {
    padding: 15px 0 15px;
    width: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
    background: #3eb9ff;
    z-index: 17
}

.domain-result-suggested {
    position: relative;
    padding: 25px 0 0
}

.domain-result-suggested:after,
.domain-result-suggested:before {
    display: table;
    content: " ";
    clear: both
}

.domain-result-suggested .ds-col1 {
    text-align: center;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 20px;
    padding: 20px 0;
    color: #031b4e;
    background: #fff;
    border: 1px solid #e5e8ed;
    box-shadow: 0 2px 4px rgba(3, 27, 78, .06);
    letter-spacing: -1px
}

.domain-result-suggested .ds-col1 b {
    color: #de3327
}

.domain-result-suggested .ds-col1 p {
    margin: 10px 0 0;
    font-size: 20px;
    line-height: 1.3
}

.domain-result-suggested .ds-col2 {
    text-align: left;
    padding: 0 10px;
    padding: 30px 10px;
    background: #fff;
    border: 1px solid #e5e8ed;
    box-shadow: 0 2px 4px rgba(3, 27, 78, .06)
}

.domain-result-suggested .ds-col2:after,
.domain-result-suggested .ds-col2:before {
    display: table;
    content: " ";
    clear: both
}

.domain-result-suggested .ds-col2 .ds-col2-1 {
    float: left;
    width: 60%
}

.domain-result-suggested .ds-col2 .ds-col2-1 span {
    display: block;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 10px
}

.domain-result-suggested .ds-col2 .ds-col2-1 p {
    display: block;
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: #007bff
}

.domain-result-suggested .ds-col2 .ds-col2-2 {
    float: left;
    width: 40%;
    text-align: right;
    margin-top: 13px
}

.domain-result-suggested .ds-col2 .ds-col2-2 .ds-col2-2-1 {
    float: left;
    width: 64%;
    text-align: right;
    margin-top: 4px
}

.domain-result-suggested .ds-col2 .ds-col2-2 .ds-col2-2-1 .old {
    display: inline-block;
    padding-right: 15px;
    text-decoration: line-through
}

.domain-result-suggested .ds-col2 .ds-col2-2 .ds-col2-2-1 .new {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    color: #010e28
}

.domain-result-suggested .ds-col2 .ds-col2-2 .ds-col2-2-2 {
    float: left;
    width: 36%;
    text-align: right
}

.domain-result-suggested .ds-col2 .ds-col2-1 p {
    font-size: 20px
}

.domain-result-main {
    position: relative;
    background: #fff;
    border: 1px solid #e5e8ed;
    box-shadow: 0 2px 4px rgba(3, 27, 78, .06);
    padding: 15px 0 0;
    margin: 30px 0 60px
}

.domain-result-main .item-header {
    position: relative;
    padding: 0 10px 10px
}

.domain-result-main .item-header:after,
.domain-result-main .item-header:before {
    display: table;
    content: " ";
    clear: both
}

.domain-result-main .item-header .header-col1 {
    float: left;
    width: 50%;
    font-size: 20px;
    font-weight: 800
}

.domain-result-main .item-header .header-col2 {
    float: left;
    width: 50%;
    text-align: right
}

.domain-result-main .item-header .header-col2 a {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    font-size: 13px;
    color: rgba(3, 27, 78, .7)
}

.domain-result-main .item-header .header-col2 a:after {
    position: absolute;
    content: '';
    height: 14px;
    width: 1px;
    left: 6px;
    top: 3px;
    background: rgba(211, 211, 211, .7)
}

.domain-result-main .item-header .header-col2 a:first-child:after {
    display: none
}

.domain-result-main .item {
    position: relative;
    vertical-align: middle;
    display: table;
    font-size: 15px;
    width: 100%;
    min-height: 48px;
    padding: 6px 10px;
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: 3px 1px;
    background-image: -webkit-linear-gradient(right, #d7d5d5 1px, transparent 1px);
    background-image: linear-gradient(to right, #d7d5d5 1px, transparent 1px);
    background-image: -ms-linear-gradient(right, #d7d5d5 1px, transparent 1px)
}

.domain-result-main .item.not-available {
    background: #f3f5f9
}

.domain-result-main .item:after,
.domain-result-main .item:before {
    display: table;
    content: " ";
    clear: both
}

.domain-result-main .item .item-col1 {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 30%;
    font-size: 18px
}

.domain-result-main .item .item-col1 a {
    color: #031b4e
}

.domain-result-main .item .item-col2 {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 5%
}

.domain-result-main .item .item-col3 {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 25%;
    text-align: right;
    font-size: 13px
}

.domain-result-main .item.not-available .item-col3 {
    color: #eb583a
}

.domain-result-main .item.not-available .item-col3 a {
    color: rgba(3, 27, 78, .7);
    padding-right: 10px
}

.domain-result-main .item .item-col4 {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 20%;
    text-align: right
}

.domain-result-main .item .item-col4 .old {
    display: inline-block;
    padding-right: 15px;
    text-decoration: line-through
}

.domain-result-main .item .item-col4 .new {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    color: #010e28
}

.domain-result-main .item .item-col5 {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 20%;
    text-align: right
}

.domain-result-main .item .item-col5 .item-loading {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    height: 36px;
    font-size: 12px;
    line-height: 35px
}

.domain-result-main .item .item-col5 .item-remove {
    position: absolute;
    right: 4px;
    top: -2px;
    line-height: 16px
}

.domain-result-main .item .item-col5 .item-remove>b {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #007bff;
    margin-top: 2px
}

.domain-result-main .item .item-col5 .item-remove>a {
    font-size: 12px;
    line-height: 13px;
    color: rgba(3, 27, 78, .7)
}

.domain-result-main .item .item-col5 .item-remove>a>i {
    margin: 2px 2px 0 0
}

.domain-result-filter {
    margin: 30px 0;
    position: relative;
    border: 1px solid #e5e8ed;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(3, 27, 78, .06)
}

.domain-result-filter:after,
.domain-result-filter:before {
    display: table;
    content: " ";
    clear: both
}

.domain-result-filter .df-box {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e8ed
}

.domain-result-filter .df-box>div {
    position: relative
}

.domain-result-filter .df-box>div .input-group-btn .btn {
    border-radius: 0;
    border: 1px solid #ced4da;
    background: #f3f5f9;
    font-size: 16px;
    height: 38px;
    font-weight: 800;
    width: 58px;
    margin: 0 -1px
}

.domain-result-filter .df-box>div>a {
    position: absolute;
    right: 0;
    top: 2px;
    color: #007bff;
    font-size: 12px
}

.domain-result-filter .df-box>div>b {
    display: block;
    margin-bottom: 5px;
    font-size: 15px
}

.domain-result-filter .df-box>div>input {
    font-size: 15px
}

.domain-result-filter .df-box>div>label {
    margin-bottom: 0;
    width: 100%
}

.domain-result-filter .df-box>div>label>input[type=radio] {
    float: left;
    margin-top: 3px;
    margin-right: 7px
}

.domain-result-filter .df-box>div>label>input[type=checkbox] {
    float: left;
    margin-top: 3px;
    margin-right: 7px
}

.domain-result-filter .df-box>div>label>b {
    float: left;
    width: calc(100% - 32px);
    line-height: 1;
    padding-top: 3px;
    font-weight: 400
}

@media only screen and (max-width:767px) {
    .domain-result-bar .form {
        width: 100%;
        margin-bottom: 0;
        padding: 5px
    }
    .domain-result-bar .form .text {
        width: 69%
    }
    .domain-result-bar .form .text .form-control {
        border-radius: 4px
    }
    .domain-result-bar .form .button {
        float: right;
        width: 30%;
        border-radius: 4px
    }
    .domain-result-bar .form .button .btn {
        border-radius: 4px
    }
    .domain-result-bar .form .button .btn:after {
        content: 'Sorgula'
    }
    .domain-result-bar .form .button .btn span {
        display: none
    }
    .domain-result-bar .btnSepet {
        display: none
    }
    .domain-result-suggested .ds-col2 {
        text-align: center;
        padding: 10px
    }
    .domain-result-suggested .ds-col2 .ds-col2-1 {
        float: none;
        width: 100%
    }
    .domain-result-suggested .ds-col2 .ds-col2-1 span b {
        display: block
    }
    .domain-result-suggested .ds-col2 .ds-col2-2 {
        float: none;
        width: 100%
    }
    .domain-result-suggested .ds-col2 .ds-col2-2 .ds-col2-2-1 {
        width: 50%
    }
    .domain-result-suggested .ds-col2 .ds-col2-2 .ds-col2-2-2 {
        width: 50%
    }
    .domain-result-suggested .ds-col1 {
        padding: 10px;
        font-size: 22px;
        line-height: 1.3
    }
    .domain-result-suggested .ds-col1 p {
        font-size: 15px;
        letter-spacing: -.2px
    }
    .domain-result-main .item-header .header-col1 {
        width: 100%;
        text-align: center
    }
    .domain-result-suggested .ds-col2 .ds-col2-1 p {
        font-size: 20px
    }
    .domain-result-main {
        margin-top: 0;
        margin-bottom: 15px;
        padding: 15px 15px 0
    }
    .domain-result-main .item {
        overflow: hidden;
        text-align: center;
        padding: 10px 0;
        min-height: 94px;
        background-image: linear-gradient(to right, #868686 1px, #0000 1px)
    }
    .domain-result-main .item.not-available {
        min-height: 74px;
        margin: 2px 0
    }
    .domain-result-main .item .item-col1 {
        display: block;
        text-align: left;
        float: none;
        width: 100%
    }
    .domain-result-main .item .item-col2 {
        display: block;
        text-align: center;
        float: none;
        width: 100%;
        position: absolute;
        right: 0;
        top: 51px
    }
    .domain-result-main .item .item-col3 {
        display: none !important;
        text-align: left;
        float: none;
        width: 100%
    }
    .domain-result-main .item .item-col4 {
        display: block;
        text-align: left;
        float: none;
        width: 100%;
        padding-top: 13px
    }
    .domain-result-main .item .item-col5 {
        display: block;
        text-align: right;
        float: none;
        width: 100%;
        position: absolute;
        right: 0;
        top: 48px
    }
    .domain-result-main .item .item-col5 .item-loading {
        background: 0 0
    }
    .domain-result-main .item.not-available .item-col3 {
        text-align: center
    }
}

.section-sidebar {
    float: left;
    width: 250px;
    min-height: 100px;
    background-color: #fff;
    border: 1px solid #e5e8ed;
    box-shadow: 0 1px 10px 0 rgba(141, 153, 176, .1);
    border-radius: 3px;
    position: relative
}

.section-sidebar ul li a {
    line-height: 56px;
    display: block;
    padding: 0 15px;
    font-size: 16px;
    border-bottom: 1px solid #e5e8ed;
    position: relative;
    color: #262936
}

.section-sidebar ul li a:hover {
    background-color: #f9fbfc;
    text-decoration: none
}

.section-sidebar ul li.active a {
    font-weight: 500;
    color: #fff;
    background-color: #2e68d4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.section-sidebar ul li.active a:after {
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    bottom: 16px;
    width: 0;
    height: 0;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left: 10px solid #2e68d4;
    border-right: 10px solid transparent
}

.section-sidebar ul li:first-child a {
    border-radius: 4px 4px 0 0
}

.section-sidebar ul li:last-child a {
    border-bottom-width: 0;
    border-radius: 0 0 4px 4px
}

.section-content {
    float: right;
    margin-left: 20px;
    border: 1px solid #e5e8ed;
    box-shadow: 0 1px 10px 0 rgba(141, 153, 176, .1);
    background: #fff;
    border-radius: 3px;
    padding: 20px;
    width: calc(100% - 270px)
}

.section-content p {
    text-align: justify;
    color: #68717a;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px
}

.section-content h2 {
    margin: 0 0 15px
}

.section-content h3 {
    margin: 0 0 15px
}

.section-content h4 {
    margin: 0 0 15px
}

.section-content h5 {
    margin: 0 0 15px
}

.section-content a {
    color: #3eb9ff
}

.section-about {
    background: #f9fbfc;
    padding: 60px 0;
    position: relative
}

.section-about:after,
.section-about:before {
    display: table;
    content: " ";
    clear: both
}

.section-page {
    padding: 0;
    position: relative;
    height: 160px;
    width: 100%;
    text-align: center;
    background: #f9fbfc
}

.section-page>div {
    display: block;
    width: 100%;
    height: 210px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover
}

.section-page h2 {
    color: #252836;
    font-size: 36px;
    margin: 58px 0 15px
}

.section-page p {
    font-size: 18px;
    color: #252836
}

.page-item.active .page-link {
    z-index: 1
}

@media only screen and (max-width:767px) {
    .section-about {
        padding: 30px 0
    }
    .section-sidebar {
        float: none;
        width: 100%
    }
    .section-content {
        float: none;
        width: 100%;
        margin: 30px 0 0
    }
    .section-page {
        font-size: 30px;
        line-height: 36px;
        margin: 0
    }
    .section-page h2 {
        font-size: 30px;
        line-height: 36px
    }
}

.footer {
    position: relative;
    padding: 70px 0 0;
    background-color: #252835;
    background-image: url(../img/bg-footer.png);
    background-size: cover;
    background-repeat: no-repeat
}

.footer .footer-top-right {
    position: relative
}

.footer .footer-top-right:before {
    position: absolute;
    content: '';
    left: -60px;
    top: 0;
    height: 100%;
    width: 1px;
    background: rgba(247, 249, 251, .1)
}

.footer .footer-top-right img {
    max-width: 200px;
    object-fit: cover
}

.footer .footer-top-right p {
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    margin-right: 50px;
    color: #717988
}

.footer .footer-top-right ul {
    margin: 20px 0 0 0;
    padding: 0
}

.footer .footer-top-right ul li {
    list-style: none;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
    font-size: 18px
}

.footer .footer-top-right .footer-social-link {
    margin-top: 20px
}

.footer .footer-top-right .footer-social-link ul {
    margin: 0;
    padding: 0
}

.footer .footer-top-right .footer-social-link ul li {
    display: inline-block;
    list-style: none;
    margin-right: 4px
}

.footer .footer-top-right .footer-social-link ul li a {
    display: block;
    font-size: 24px;
    height: 48px;
    width: 48px;
    line-height: 50px;
    border-radius: 10px;
    text-align: center;
    background-color: #0003;
    color: #fff
}

.footer .footer-top-right .footer-social-link ul li a:hover {
    background: #00b9ff
}

.footer .footer-top-left .single-link h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize
}

.footer .footer-top-left .single-link ul {
    margin: 5px 0 30px;
    padding: 0
}

.footer .footer-top-left .single-link ul li {
    list-style: none;
    line-height: 1.7;
    font-weight: 400
}

.footer .footer-top-left .single-link ul li a {
    color: #717988;
    font-size: 15px;
    font-weight: 400
}

.footer .footer-top-left .single-link ul li a:hover {
    color: #3eb9ff;
    text-decoration: none
}

.footer .footer-top-left .footer-subscriber {
    margin-top: 40px
}

.footer .footer-top-left .footer-subscriber input.form-control {
    height: 60px;
    padding: 25px;
    background: #f5f7fa;
    border: 1px solid #f5f7fa;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    z-index: 0
}

.footer .footer-top-left .footer-subscriber button.btn-subscriber {
    width: 60px;
    height: 60px;
    background: #cb2d22;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    outline: 0;
    border: 1px solid #cb2d22;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    text-align: center;
    cursor: pointer
}

.footer .footer-bottom {
    padding: 18px 0;
    margin-top: 20px;
    background: #14161c
}

.footer .footer-bottom p {
    color: #fff;
    font-weight: 300;
    margin-bottom: 0;
    font-size: 14px
}

.footer .footer-bottom p a {
    color: #fff
}

.footer .footer-bottom ul {
    float: right;
    margin: 0;
    padding: 0
}

.footer .footer-bottom ul li {
    list-style: none;
    display: inline-block;
    margin-left: 30px
}

.footer .footer-bottom ul li a {
    color: #fff;
    font-weight: 300;
    font-size: 14px
}

@media only screen and (max-width:767px) {
    .top-bar ul.toplink1 {
        justify-content: center
    }
    .top-bar ul {
        justify-content: center
    }
    .header {
        display: none
    }
    .mobile-header {
        display: block
    }
    .link1 li {
        padding: 0 5px
    }
    .link2 {
        display: none
    }
    .performance__list ul li {
        width: calc(50% - 10px) !important;
        margin: 5px
    }
    .performance__list ul li p {
        font-size: 11px
    }
    .performance__list ul li b {
        font-size: 14px
    }
    .home__product ul li {
        width: 50% !important;
        margin-bottom: -1px
    }
    .home__transfer .block__feature {
        padding: 10px 15px !important
    }
    .home__transfer .text-left.block__feature {
        text-align: center !important
    }
    .home__transfer .text-right.block__feature {
        text-align: center !important
    }
    .heading>.heading-title {
        font-size: 24px
    }
    .home__domain #owl-domain {
        margin: 0 0 15px
    }
    #home-carousel-1x .container .carousel-title {
        top: 48px
    }
    #home-carousel-1x .container .carousel-title h1 {
        font-size: 24px
    }
    #home-carousel-1x .container .carousel-title p {
        font-size: 16px
    }
    #home-carousel-1x .img1 {
        display: none
    }
    .section__performance {
        padding-top: 50px !important;
        margin-top: 40px !important
    }
    .section__performance>svg {
        display: none
    }
    .section__compare {
        display: none
    }
    .section__compare>svg {
        display: none
    }
    .section__related>svg {
        display: none
    }
    .related__product {
        margin: 10px 0
    }
    .section__click {
        padding: 10px 0 40px !important
    }
    .section__click h3 {
        font-size: 24px;
        margin-top: 0 !important
    }
    .section__click p {
        font-size: 18px;
        line-height: 1.4
    }
    .section__click img {
        margin: 0 0 20px !important
    }
    .block__support {
        margin-bottom: 20px
    }
    .block__support a {
        width: 100%;
        margin: 5px 0;
        background: #fff
    }
    .ssl-compare-main {
        overflow-y: scroll
    }
    .section__featured>svg {
        display: none
    }
    .section__banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 380px !important;
        padding-top: 0 !important
    }
    .section__banner h1 {
        font-size: 30px !important
    }
    .section__banner svg {
        display: none !important
    }
    .section__product {
        margin-top: 15px
    }
    .section__product .heading {
        margin-bottom: 30px !important
    }
    .package {
        width: 100%;
        margin: 10px 0
    }
    .package .p-header>h3 {
        font-size: 16px
    }
    .package .p-header>p {
        display: none
    }
    .package .p-order .btn {
        width: calc(100% - 20px);
        margin: 0 10px
    }
    .package .p-detail {
        padding-top: 10px
    }
    .package .p-detail>p {
        padding: 4px 0
    }
    .DomainKampanya {
        display: none
    }
    .package.best-hosting .DomainKampanya {
        display: none
    }
    .package.best-hosting {
        margin-top: 10px
    }
    .package.best-hosting[data-promo-text]:before {
        font-size: 13px
    }
    .section__customer {
        padding-bottom: 70px !important
    }
    .section__customer>svg {
        display: none
    }
    #support__slider .owl-nav {
        top: 174px
    }
    .support__client {
        font-size: 30px;
        margin-bottom: 20px
    }
    .dataTables_wrapper .col-sm-12 {
        width: 50%;
        background: #fff
    }
    .footer {
        padding-top: 50px
    }
    .footer-top-left {
        display: none
    }
    .footer-top-right {
        margin-bottom: 50px
    }
    .footer .footer-top-left .single-link ul {
        margin: 10px 0 20px
    }
    .footer .footer-top-left .footer-subscriber {
        margin-top: 10px
    }
    .footer .footer-bottom {
        margin-top: 0;
        text-align: center;
        padding: 30px 0
    }
    .footer .footer-bottom ul li {
        margin: 5px 10px
    }
}

.info-section {
    position: relative;
    background: #fafbfb
}

.info-section .heading {
    margin-bottom: 30px
}

.info-section .nav-tabs {
    border-bottom: 1px solid #eaedf1
}

.info-section .nav-tabs .nav-link {
    position: relative;
    padding: 15px 20px;
    color: #3c4858;
    border-radius: 0;
    height: 64px;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    border: 1px solid #eaedf1;
    border-right: 0;
    margin-bottom: -1px
}

.info-section .nav-tabs .nav-link img {
    float: left;
    height: 32px;
    margin-right: 8px
}

.info-section .nav-tabs .nav-link i {
    float: left;
    height: 32px;
    font-size: 30px;
    line-height: 1;
    margin-right: 4px
}

.info-section .nav-tabs .nav-link span {
    float: left;
    margin-top: 4px
}

.info-section .nav-tabs .nav-link:last-child {
    border-top-right-radius: 4px;
    border-right: 1px solid #eaedf1;
    color: #3c4858
}

.info-section .nav-tabs .nav-link:first-child {
    border-top-left-radius: 4px
}

.info-section .nav-tabs .nav-link.active {
    background: #fafbfb
}

.info-section .nav-tabs .nav-link.active:after {
    position: absolute;
    content: '';
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    width: 100%;
    background: #fafbfb
}

.info-section .tab-pane {
    padding: 50px 0 0;
    font-size: 17px
}

.info-section .tab-pane .heading {
    text-align: center
}

.info-section .tab-pane .heading>.heading-title {
    margin-bottom: 0
}

.info-article {
    margin: 15px 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 3px 0 1rem 0 rgb(18 38 63 / 25%)
}

.info-article .thumb {
    position: relative
}

.info-article .thumb img {
    width: 100%
}

.info-article .title {
    min-height: 100px;
    padding: 23px 30px 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.info-article .title span {
    display: block;
    font-size: 14px;
    margin-bottom: 8px
}

.info-article .title h3 {
    display: block;
    line-height: 1.4;
    font-size: 16px;
    margin-bottom: 8px
}

.info-article .title h3 a {
    display: block;
    color: #3c4858
}

.info-article .desc {
    margin-bottom: 15px;
    height: 90px;
    padding: 0 30px 0;
    font-size: 14px;
    line-height: 1.5
}

.info-article .avatar {
    padding: 0 30px 23px;
    overflow: hidden
}

.info-article .avatar>img {
    float: left;
    border-radius: 50%;
    margin-right: 12px;
    width: 30px;
    height: 30px
}

.info-article .avatar>strong {
    float: left;
    width: calc(100% - 43px);
    padding-top: 5px;
    color: #3c4858;
    font-size: 14px
}

.hide {
    display: none !important
}

#fullpage-overlay {
    display: table;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-color: rgba(0, 0, 0, .8);
    color: #fff
}

#fullpage-overlay .outer-wrapper {
    position: relative;
    height: 100%
}

#fullpage-overlay .inner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 30%;
    width: 50%;
    margin: -3% 0 0 -25%;
    text-align: center
}

#fullpage-overlay .msg {
    display: inline-block;
    padding: 20px;
    max-width: 400px
}

.hidden {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden
}

div.header-lined h1 {
    margin-top: 0;
    margin-bottom: 15px;
    padding: 6px 0;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    color: #058;
    font-size: 24px
}

div.header-lined .breadcrumb {
    margin-top: -15px;
    padding-left: 0;
    background: 0 0;
    font-size: .8em;
    border-radius: 0 0 4px 4px
}

div.header-lined .breadcrumb li a {
    color: #888
}

div.header-lined .breadcrumb>.active {
    color: #0e5077
}

div.header-lined small {
    white-space: nowrap;
    overflow: hidden
}

.panel-sidebar {
    border-color: #eee;
    font-size: 15px
}

.panel-sidebar>.panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-bottom: 0
}

.panel-heading i.fab,
.panel-heading i.fal,
.panel-heading i.far,
.panel-heading i.fas {
    font-size: .85em
}

.panel-sidebar .panel-title {
    font-size: 16px;
    padding: 10px 0;
    font-weight: 500;
    line-height: 26px;
    color: #555
}

.panel-sidebar .panel-minimise {
    margin-top: 4px;
    color: #ddd;
    cursor: pointer;
    transition: transform .2s ease
}

.panel-sidebar .panel-minimise.minimised {
    transform: rotate(180deg);
    margin-top: 7px
}

.panel-sidebar>.panel-footer {
    color: #333;
    background-color: #f5f5f5;
    border-top: 0
}

.panel-sidebar .list-group-item {
    line-height: 24px
}

.panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle):not(.no-transform) {
    float: right;
    line-height: 24px;
    font-size: 16px;
    color: #ccc
}

.panel-sidebar .list-group-item.disabled,
.panel-sidebar .list-group-item.disabled:focus,
.panel-sidebar .list-group-item.disabled:hover {
    background-color: transparent;
    opacity: .5
}

.panel-sidebar a.list-group-item:hover i.far,
.panel-sidebar a.list-group-item:hover i.fas {
    color: #666 !important
}

.panel-sidebar a.list-group-item.active,
.panel-sidebar a.list-group-item.active:focus,
.panel-sidebar a.list-group-item.active:hover {
    background-color: #465054;
    border-color: #465054
}

.panel-sidebar a.list-group-item.active i,
.panel-sidebar a.list-group-item.active:focus i,
.panel-sidebar a.list-group-item.active:hover i {
    color: #fff
}

.panel-sidebar.view-filter-btns .list-group-item.active,
.panel-sidebar.view-filter-btns .list-group-item.active:focus,
.panel-sidebar.view-filter-btns .list-group-item.active:hover {
    background-color: #eee;
    border-color: #eee;
    color: #555
}

.panel-sidebar .recent-ticket {
    line-height: 20px
}

#registration {
    margin: 0;
    padding: 0 0 40px 0
}

#registration .field-container {
    margin: 0 0 30px 0
}

#registration label {
    font-weight: 300;
    color: #666;
    font-size: 13px
}

#registration .info-text-sm {
    font-size: .85em;
    text-align: center
}

.marketing-email-optin {
    margin: 0 0 20px 0;
    padding: 10px 20px 20px;
    background-color: #f8f8f8;
    border-radius: 3px
}

#registration .sub-heading {
    height: 0;
    border-top: 1px solid #ddd;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px
}

#registration .sub-heading span {
    display: inline-block;
    position: relative;
    padding: 0 17px;
    top: -11px;
    font-size: 16px;
    color: #058;
    background-color: #fff
}

#registration .prepend-icon {
    top: 0;
    left: 0;
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 100%;
    font-weight: 400
}

#registration .field,
#registration .form-control {
    position: relative;
    vertical-align: top;
    border: 1px solid #ddd;
    display: -moz-inline-stack;
    display: inline-block;
    color: #626262;
    outline: 0;
    background: #fff;
    height: 42px;
    width: 100%;
    border-radius: 3px;
    font-size: 13px
}

#registration .input-group-lg>.form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px 0 0 6px
}

#registration .form-control-qty {
    width: 70px;
    text-align: center
}

#registration .form-control-static-inline {
    display: inline-block
}

#registration .form-control:focus {
    border-color: #ddd;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

#registration textarea.field {
    height: auto
}

#registration .prepend-icon .field {
    -webkit-appearance: none;
    padding-left: 36px
}

#registration .prepend-icon .field-icon i {
    position: relative;
    font-size: 22px;
    z-index: 1;
    top: 4px
}

#registration .prepend-icon .field-icon {
    top: 0;
    z-index: 1;
    width: 42px;
    height: 42px;
    color: inherit;
    line-height: 42px;
    position: absolute;
    text-align: center;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    pointer-events: none
}

#registration .field-icon i {
    color: #bbb
}

#registration .field[disabled],
#registration .field[readonly],
#registration .form-control[disabled],
#registration .form-control[readonly] {
    background-color: #f8f8f8;
    opacity: 1
}

#registration .field-help-text {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #888;
    font-size: 12px
}

.password-strength-meter .progress {
    margin-bottom: 5px
}

.password-strength-meter p {
    margin-bottom: 15px
}

@media (min-width:992px) {
    .pull-md-left {
        float: left
    }
    .pull-md-right {
        float: right
    }
}

@media (min-width:768px) {
    .pull-sm-left {
        float: left
    }
    .pull-sm-right {
        float: right
    }
    .text-right-sm {
        text-align: right
    }
}

.mega-menu-header a .menu-icon {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 15px;
    display: -webkit-inline-flex;
    display: inline-flex;
    justify-content: center;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 8px 0 rgb(0 0 0 / 10%), 0 1px 3px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1), 0 1px 3px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 10%), 0 1px 3px 0 rgb(0 0 0 / 10%);
    margin-bottom: 20px
}

.menu-icon {
    background: #048ffd;
    transition: all .2s
}

.client-panel {
    margin-bottom: 30px
}

.panel {
    background-color: #fff;
    border: 1px solid #e2e7ec;
    box-shadow: 0 .75rem 1.5rem rgb(18 38 63 / 5%);
    color: #576879
}

.client-panel .panel-title {
    margin-top: 20px;
    margin-bottom: 5px;
    color: #333
}

.client-panel .panel-title i {
    font-size: 25px;
    line-height: 18px;
    float: left;
    margin-right: 5px;
    color: #2c87cf
}

.form-horizontal .control-label {
    padding-top: 0;
    margin-bottom: 0
}

.knowledgebody a {
    font-weight: 600;
    font-size: 16px
}

.page-banner {
    position: relative;
    background: #333;
    overflow: hidden;
    height: 390px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%
}

.page-banner:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000000bf;
    background: linear-gradient(202deg, #0000, #000)
}

.page-banner .page-banner-color {
    position: relative
}

.page-banner .page-banner-text {
    color: #fff;
    overflow: hidden;
    height: 100%;
    width: 100%;
    padding: 54px 50px 0 0;
    font-size: 18px;
    line-height: 1.4
}

.page-banner .page-banner-text h1 {
    font-size: 42px;
    margin: 0 0 10px
}

.page-banner .page-banner-text h1 span {
    display: block;
    font-size: 20px;
    color: #ffffffbf
}

.page-banner .page-banner-text p {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffffbf
}

.page-banner .page-banner-text ul {
    margin-bottom: 15px;
    overflow: hidden
}

.page-banner .page-banner-text li {
    float: left;
    padding: 8px 0;
    width: 50%
}

.page-banner .page-banner-text li i {
    position: relative;
    top: 4px;
    background: url(../img/check-w.svg) 0 0 no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    margin-right: 5px
}

.page-banner .page-banner-text li i:before {
    display: none
}

.page-banner .banner-hero {
    width: 100%;
    margin: 0 auto;
    display: block;
    z-index: 1;
    margin-left: 18px;
    position: absolute;
    right: -563px;
    width: initial;
    max-width: 610px;
    bottom: 0
}

.badge-taksit {
    position: absolute;
    left: -75px;
    top: 30px;
    width: 200px
}

.badge-taksit3 {
    position: absolute;
    right: -148px;
    top: -37px;
    width: 180px
}

@media only screen and (max-width:767px) {
    .page-banner {
        height: auto
    }
    .page-banner .page-banner-color {
        display: none
    }
    .page-banner .page-banner-text {
        padding: 30px 15px;
        font-size: 16px
    }
    .page-banner .page-banner-text h1 {
        font-size: 32px
    }
    .page-banner .page-banner-text li {
        width: 100%;
        padding: 4px 0
    }
    .badge-taksit {
        display: none
    }
    .badge-taksit3 {
        display: none
    }
}

.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite
}

@keyframes blink-animation {
    to {
        visibility: hidden
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden
    }
}

.whyAll {
    background: #fff url(https://i.hizliresim.com/8efbovi.gif) no-repeat center center;
    padding-top: 30px;
    padding-bottom: 30px
}

.whyRow {
    margin-left: -15px;
    margin-right: -15px
}

.whyCol {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    float: left
}

.whyBox {
    max-width: 440px
}

.fw {
    width: 100%;
    display: inline-block;
    float: left
}

.whyBoxTab {
    padding-top: 30px
}

.whyBoxTab ul {
    position: relative;
    padding-left: 110px;
    min-height: 80px;
    display: inline-block;
    width: 100%;
    float: left
}

.whyBox .whyBoxTab:last-child ul:after,
.whyBox .whyBoxTab:last-child ul:before {
    display: none
}

.whyBoxTab ul:before {
    content: "";
    height: 70px;
    width: 2px;
    background: #f1f3f8;
    display: inline-block;
    position: absolute;
    left: 40px;
    bottom: -32px
}

.whyBoxTab ul:after {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 31px;
    bottom: -11px;
    border: 2px solid #f1f3f8;
    background: #fff
}

.whyBoxTab ul li {
    width: 100%;
    display: inline-block;
    float: left
}

.whyBoxTab ul li.title {
    color: #000;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 20px
}

.whyBoxTab ul li.desc {
    color: #878691;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 25px
}

.whyBox .whyBoxTab:last-child ul li.desc {
    border-bottom: 0
}

.whyBoxTab ul li.desc {
    border-bottom: 2px solid #f1f3f8
}

.whyBoxTab ul li.icon {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    background: #f1f3f8
}

.whyBoxTab ul li.icon img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

.whyBox.right {
    float: right
}

.whyBox.right ul {
    padding-left: 0;
    padding-right: 110px
}

.whyBox.right ul li {
    text-align: right
}

.whyBox.right ul li.icon {
    right: 0;
    left: auto
}

.whyBox.right .whyBoxTab ul:before {
    left: auto;
    right: 40px
}

.whyBox.right .whyBoxTab ul:after {
    left: auto;
    right: 31px
}

@media (max-width:1199px) {
    .whyAll {
        background: #fff
    }
    .whyTitle {
        width: 100%;
        height: auto;
        position: relative;
        margin-bottom: 10px;
        padding-top: 0
    }
}

@media (max-width:600px) {
    .whyCol {
        width: 100%
    }
    .whyBox.right ul li {
        text-align: left
    }
    .whyBox.right ul li.icon {
        left: 0;
        right: auto
    }
    .whyBox.right ul {
        padding-left: 110px;
        padding-right: 0
    }
    .whyBox {
        max-width: 100%;
        float: left
    }
    .whyBox .whyBoxTab ul:before {
        display: none
    }
    .whyBox .whyBoxTab ul:after {
        display: none
    }
    .whyBoxTab ul li.desc {
        border-bottom: 0
    }
    .whyBoxTab {
        padding-top: 10px
    }
    .whyBox .whyBoxTab:last-child {
        border-bottom: 0
    }
    .whyBox .whyBoxTab:first-child {
        border-top: 0
    }
    .whyAll {
        padding-top: 15px;
        padding-bottom: 15px
    }
    .whyTitle {
        margin-bottom: 15px
    }
}

.info-section {
    position: relative;
    padding: 70px 0 50px;
    background: #fafbfb
}

.info-section .heading {
    margin-bottom: 30px
}

.info-section .nav-tabs {
    border-bottom: 1px solid #eaedf1
}

.info-section .nav-tabs .nav-link {
    position: relative;
    padding: 15px 22px;
    color: #3c4858;
    border-radius: 0;
    height: 54px;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    border: 1px solid #eaedf1;
    border-right: 0;
    margin-bottom: -1px
}

.info-section .nav-tabs .nav-link img {
    float: left;
    height: 32px;
    margin-right: 8px
}

.info-section .nav-tabs .nav-link i {
    float: left;
    height: 32px;
    font-size: 30px;
    line-height: 1;
    margin-right: 4px
}

.info-section .nav-tabs .nav-link span {
    float: left;
    margin-top: 4px
}

.info-section .nav-tabs .nav-link:last-child {
    border-top-right-radius: 4px;
    border-right: 1px solid #eaedf1;
    color: #3c4858
}

.info-section .nav-tabs .nav-link:first-child {
    border-top-left-radius: 4px
}

.info-section .nav-tabs .nav-link.active {
    background: #fafbfb
}

.info-section .nav-tabs .nav-link.active:after {
    position: absolute;
    content: '';
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    width: 100%;
    background: #fafbfb
}

.info-section .tab-pane {
    padding: 50px 0 0;
    font-size: 15px
}

.info-section .tab-pane .heading {
    text-align: center
}

.info-section .tab-pane .heading>.heading-title {
    margin-bottom: 0
}

.info-article {
    margin: 15px 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .05)
}

.info-article .thumb {
    position: relative
}

.info-article .thumb img {
    width: 100%
}

.info-article .title {
    min-height: 100px;
    padding: 23px 30px 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.info-article .title span {
    display: block;
    font-size: 14px;
    margin-bottom: 8px
}

.info-article .title h3 {
    display: block;
    line-height: 1.4;
    font-size: 16px;
    margin-bottom: 8px
}

.info-article .title h3 a {
    display: block;
    color: #3c4858
}

.info-article .desc {
    margin-bottom: 15px;
    height: 90px;
    padding: 0 30px 0;
    font-size: 14px;
    line-height: 1.5
}

.info-article .avatar {
    padding: 0 30px 23px;
    overflow: hidden
}

.info-article .avatar>img {
    float: left;
    border-radius: 50%;
    margin-right: 12px;
    width: 30px;
    height: 30px
}

.info-article .avatar>strong {
    float: left;
    width: calc(100% - 43px);
    padding-top: 5px;
    color: #3c4858;
    font-size: 14px
}

.content-banner {
    position: relative;
    background: #fff;
    min-height: 81px
}

.main-banner {
    position: relative;
    padding-top: 135px;
    background-size: 1440px, 100%;
    padding-bottom: 58px;
    background-image: url(/theme/domain1.jpg), linear-gradient(to bottom, #318cff66, #0000)
}

.main-banner h1 {
    font-size: 30px;
    text-align: center;
    line-height: 1.29
}

.content-category {
    position: relative;
    padding: 20px;
    background: #fff;
    border: 1px solid #eaedf1;
    -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
    box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03)
}

.content-category h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px
}

.content-category ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.content-category ul li {
    position: relative;
    padding: 10px 0
}

.content-category ul li:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 1px;
    top: -3px;
    width: 2px;
    bottom: 0;
    background-color: #eaedf1
}

.content-category ul li a {
    position: relative;
    display: block;
    width: 100%;
    color: #3c4858;
    margin-left: 16px
}

.content-category ul li.active a {
    position: relative;
    font-weight: 800;
    color: #2d8cff
}

.content-category ul li.active a:before {
    content: "";
    position: absolute;
    left: -19px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2d8cff;
    z-index: 2
}

.content-category ul li i {
    display: none
}

.modalInvoice .modal-content {
    border: 0
}

.modalInvoice .modal-header {
    background: #2d8cff;
    color: #fff;
    border: 0
}

.modalInvoice .modal-header .modal-title {
    color: #fff
}

.modalInvoice .form-group {
    margin-bottom: 5px
}

.modalInvoice .form-group label {
    margin-bottom: 2px;
    font-size: 12px;
    font-weight: 600
}

.modalInvoice .btn {
    height: 38px;
    min-height: 38px;
    line-height: 1;
    padding: 5px 30px
}

.comparison__table {
    position: relative
}

.comparison__table .item__header {
    display: flow-root
}

.comparison__table .item__header .item__row .column-left {
    float: left;
    width: 30%
}

.comparison__table .item__header .item__row .column-right {
    float: right;
    width: 70%
}

.comparison__table .item__header .item__row .column-right .column {
    position: relative;
    float: left;
    text-align: center;
    line-height: 1.3;
    width: 25%;
    border-left: 1px solid #dededc;
    border-bottom: 1px solid #dededc;
    border-top: 1px solid #dededc;
    -webkit-user-drag: none
}

.comparison__table .item__header .item__row .column-right .column:last-child {
    border-right: 1px solid #dededc
}

.comparison__table .item__header .p-header {
    position: relative;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background: #f7f7f7
}

.comparison__table .item__header .p-header>h3 {
    font-size: 16px;
    margin: 0
}

.comparison__table .item__header .p-header>p {
    margin: 0;
    font-size: 14px;
    padding-right: 10px;
    line-height: 1.3
}

.comparison__table .item__header .p-header>img {
    position: absolute;
    left: 8px;
    top: 15px;
    display: block;
    margin: 0 auto;
    width: 64px
}

.comparison__table .item__header .p-price {
    position: relative;
    text-align: center;
    padding: 10px 0 5px
}

.comparison__table .item__header .p-price .badge {
    margin-bottom: 10px
}

.comparison__table .item__header .p-price .old {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #242736;
    line-height: 1;
    margin-bottom: 5px
}

.comparison__table .item__header .p-price .old span {
    position: relative;
    display: inline-block;
    color: #9e9e9e
}

.comparison__table .item__header .p-price .old span:after {
    display: block;
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    right: 0;
    top: 10px;
    background: red;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg)
}

.comparison__table .item__header .p-price .price-tag {
    padding-left: 15px;
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    justify-content: center
}

.comparison__table .item__header .p-price .price-tag span {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    justify-content: center
}

.comparison__table .item__header .p-price .price-tag sub {
    color: #242736;
    font-size: 14px;
    font-weight: 400;
    bottom: 0;
    top: 5px;
    left: 6px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.comparison__table .item__header .p-price .price-tag sup {
    font-size: 18px;
    top: -7px;
    left: -19px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.comparison__table .item__header .p-price .price-tag sup>small {
    font-weight: 600;
    margin-left: 3px;
    font-size: 16px
}

.comparison__table .item__header .p-price i {
    position: absolute;
    right: 30px;
    top: 62%
}

.comparison__table .item__header .p-order {
    margin-top: 0;
    text-align: center;
    padding: 0 10px 15px
}

.comparison__table .item__header .p-order .btn {
    height: 36px;
    padding: 15px 10px;
    line-height: 6px;
    letter-spacing: -.3px;
    font-weight: 700
}

.comparison__table .item__detail {
    display: none
}

.comparison__table .item__detail.open {
    display: block
}

.comparison__table .item__detail .item__row {
    position: relative;
    display: flex;
    border: 1px solid #dededc;
    margin-bottom: -1px;
    font-size: 14px
}

.comparison__table .item__detail .item__row .column-left {
    float: left;
    position: relative;
    padding: 10px;
    height: 42px;
    font-weight: 400;
    width: 30%;
    font-size: 16px;
    background: #fff
}

.comparison__table .item__detail .item__row .column-left i {
    position: absolute;
    right: 10px;
    top: 11px;
    font-size: 18px;
    color: #a7acae
}

.comparison__table .item__detail .item__row .column-right {
    float: right;
    width: 70%
}

.comparison__table .item__detail .item__row .column-right .column {
    position: relative;
    float: left;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    height: 42px;
    line-height: 1.3;
    width: 25%;
    border-left: 1px solid #dededc;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-drag: none;
    background: #fff
}

.comparison__table .item__detail .item__row .column-right .column .bold {
    font-weight: 700;
    font-size: 16px;
    color: #000
}

.comparison__table .item__detail .item__row .column-right .column .fa-check {
    background: url(../img/check.svg) 0 4px no-repeat;
    background-size: 20px;
    width: 20px;
    height: 24px
}

.comparison__table .item__detail .item__row .column-right .column .fa-check:before {
    display: none
}

.comparison__table .item__detail .item__row .column-right .column .fa-times {
    background: url(../img/close.svg) 0 4px no-repeat;
    background-size: 20px;
    width: 20px;
    height: 24px
}

.comparison__table .item__detail .item__row .column-right .column .fa-times:before {
    display: none
}

.comparison__table .item__row__split {
    position: relative;
    background-color: #f7f7f7;
    cursor: pointer;
    padding: 13px 10px 13px 25px;
    border: 1px solid #dededc;
    margin-bottom: -1px;
    font-weight: 800;
    font-size: 18px;
    -webkit-user-drag: none
}

.comparison__table .item__row__split:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    right: 10px;
    top: 14px;
    font-size: 18px
}

.comparison__table .item__row__split.open:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    right: 10px;
    top: 15px;
    font-size: 18px
}

.comparison__table .item__detail .item__row .column-right .column:nth-child(2) {
    -webkit-box-shadow: inset -55px 0 36px -65px rgba(0, 0, 0, .4);
    -moz-box-shadow: inset -55px 0 36px -65px rgba(0, 0, 0, .4);
    box-shadow: inset -55px 0 36px -65px rgba(0, 0, 0, .4)
}

.comparison__table .item__detail .item__row .column-right .column:nth-child(4) {
    -webkit-box-shadow: inset 55px 0 36px -65px rgba(0, 0, 0, .4);
    -moz-box-shadow: inset 55px 0 36px -65px rgba(0, 0, 0, .4);
    box-shadow: inset 55px 0 36px -65px rgba(0, 0, 0, .4)
}

.comparison__table .item__header .column-right .column:nth-child(2) {
    -webkit-box-shadow: inset -55px 0 36px -65px rgba(0, 0, 0, .4);
    -moz-box-shadow: inset -55px 0 36px -65px rgba(0, 0, 0, .4);
    box-shadow: inset -55px 0 36px -65px rgba(0, 0, 0, .4)
}

.comparison__table .item__header .column-right .column:nth-child(4) {
    -webkit-box-shadow: inset 55px 0 36px -65px rgba(0, 0, 0, .4);
    -moz-box-shadow: inset 55px 0 36px -65px rgba(0, 0, 0, .4);
    box-shadow: inset 55px 0 36px -65px rgba(0, 0, 0, .4)
}

.comparison__table .item__header.head .item__row .column-left {
    position: relative;
    font-size: 20px;
    border-top: 1px solid #dededc;
    border-left: 1px solid #dededc;
    padding: 9px 10px 9px 25px;
    font-weight: 800
}

.comparison__table .item__header.head .item__row .column-right .column {
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    box-shadow: 0 0 50px rgba(34, 34, 34, .2)
}

.comparison__table .item__header.head .p-header {
    background: #262936;
    color: #fff;
    border-bottom: 0;
    border-top: 10px solid #425480
}

@media only screen and (max-width:767px) {
    .comparison__table .item__detail .item__row {
        display: block;
        overflow: hidden
    }
    .step-number:after {
        display: none
    }
    .comparison__table .item__header .item__row .column-right .column {
        zoom: 70%
    }
    .comparison__table .item__header .item__row .column-left {
        float: none;
        width: 100%
    }
    .comparison__table .item__header.head .item__row .column-left {
        display: none
    }
    .comparison__table .item__header .item__row .column-right {
        float: none;
        width: 100%
    }
    .comparison__table .item__detail .item__row .column-left {
        width: 100%;
        float: none;
        border-bottom: 1px solid #dededc;
        border-right: 0;
        font-size: 14px;
        text-align: center
    }
    .comparison__table .item__detail .item__row .column-right {
        float: none;
        width: 100%
    }
    .comparison__table .item__detail .item__row .column-right .column {
        font-size: 12px
    }
    @media only screen and (max-width:767px) {
        .comparison__table .item__detail .item__row .column-right .column:nth-child(2),
        .comparison__table .item__detail .item__row .column-right .column:nth-child(4) {
            box-shadow: none !important
        }
        .comparison__table .item__header .column-right .column:nth-child(2),
        .comparison__table .item__header .column-right .column:nth-child(4) {
            box-shadow: none !important
        }
    }
    .comparison__table .item__detail .item__row .column-right .column .bold {
        font-size: 12px
    }
    .comparison__table .item__detail .item__row .column-right .column:nth-child(1) {
        border-left: 0
    }
    .comparison__table .item__row__split {
        text-align: left
    }
}

.best-hosting .plan-ribbon {
    background: #31a745;
    display: block;
    width: 150px;
    text-align: center;
    font-size: 12px;
    line-height: 24px;
    font-weight: 600;
    position: relative;
    color: #fff;
    transform: rotate(45deg);
    transform-origin: 30px 5px;
    text-transform: uppercase;
    z-index: 3
}

.heading {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden
}

.heading>.heading-title {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 10px
}

.heading>.heading-desc {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 10px
}

.page-content {
    position: relative;
    padding: 60px 0
}

.most-popular {
    position: relative
}

.most-popular li {
    float: left;
    width: 25%;
    padding: 20px;
    text-align: center;
    border-right: 1px solid #f0f3f7;
    border-bottom: 1px solid #f0f3f7
}

.most-popular li b {
    display: block;
    font-weight: 800;
    font-size: 18px
}

.most-popular li p {
    display: block;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4
}

.most-popular li:nth-child(4) {
    border-right: 0
}

.most-popular li:nth-child(5) {
    border-bottom: 0
}

.most-popular li:nth-child(6) {
    border-bottom: 0
}

.most-popular li:nth-child(7) {
    border-bottom: 0
}

.most-popular li:nth-child(8) {
    border-bottom: 0;
    border-right: 0
}

.oneclick-icon {
    width: 75px;
    height: 75px;
    overflow: hidden;
    margin: 0 auto;
    display: block
}

@media only screen and (max-width:767px) {
    .choose-bar {
        text-align: center
    }
    .most-popular li {
        width: 50%;
        padding: 10px;
        min-height: 250px
    }
    .most-popular li:nth-child(2) {
        border-right: 0
    }
    .most-popular li:nth-child(5) {
        border-bottom: 1px solid #eee
    }
    .most-popular li:nth-child(6) {
        border-right: 0;
        border-bottom: 1px solid #eee
    }
}

.custom-faq1 .faq h4 {
    position: relative;
    font-size: 19.2px;
    font-weight: 600;
    color: #333333e6;
    text-transform: none;
    cursor: pointer;
    padding: 15px 20px 15px 40px
}

.custom-faq1 .faq h4 i {
    position: absolute;
    top: 8px;
    left: 0;
    border: 1px solid #3c4858;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 5px;
    font-size: 28px;
    color: #3c4858
}

.custom-faq1 .faq .collapse__detail>div {
    padding: 0 0 20px 20px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300
}

.custom-faq1 .faq h4[aria-expanded=true] {
    color: #ec7530
}

.custom-faq1 .faq h4[aria-expanded=true] i {
    color: #fff;
    border-color: #2d8cff;
    background: #2d8cff
}

.custom-faq1 .faq h4[aria-expanded=false]:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    left: 15px;
    top: 16px;
    font-size: 18px
}

.custom-faq1 .faq h4[aria-expanded=true]:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f105';
    left: 13px;
    top: 16px;
    font-size: 18px
}

.custom-faq1 .faq .btn {
    padding: 8px 24px;
    height: 36px;
    min-height: 36px;
    font-size: 13px
}

.custom-faq1 .faq:last-child {
    margin-bottom: 0
}

@media only screen and (max-width:767px) {
    .custom-faq1 .faq h4 {
        font-size: 16px;
        line-height: 1.5
    }
}

.line {
    
    height: 7px;
    border-radius: 50px;
    color: #3a3a3a;
    margin-top: 20px;
    margin-bottom: 20px
}

.service-block1 {
    overflow: hidden;
    margin: 15px 0
}

.service-block1 h3 {
    font-size: 19.2px;
    font-weight: 600;
    margin: 0 0 15px
}

.service-block1 p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 15px
}

.service-block1 img {
    width: 100%;
    max-width: 96px;
    max-height: 96px;
    display: block;
    margin: 0 auto
}

.content-steps {
    text-align: center
}

.content-steps img {
    margin: 0 auto 15px;
    display: block
}

.content-steps h5 {
    margin: 0 auto 5px;
    display: block
}

.choose-bar {
    position: relative;
    padding: 30px 0;
    background: #262936
}

.choose-bar p {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
    color: #fff
}

.choose-bar p>span {
    display: block;
    font-size: 24px
}

.choose-bar p>span>a {
    color: #fff;
    display: inline-block;
    padding-left: 6px
}

.choose-bar a.btn {
    margin-top: 8px;
    border: 1px solid #fff;
    font-size: 16px;
    padding: 17px 40px;
    border-radius: 4px;
    font-weight: 900
}

.hosting__niobe {
    position: relative;
    padding: 70px 0 40px;
    background: #fff url(../img/map-bg.png) center center no-repeat
}

.hosting__niobe .heading {
    position: relative;
    text-align: center;
    margin-bottom: 60px
}

.hosting__niobe .col-lg-4 {
    margin-bottom: 50px
}

.hosting__niobe .box1 {
    position: relative
}

.hosting__niobe .box1>.box-thumb {
    height: 60px;
    font-size: 30px;
    margin-bottom: 22px
}

.box1>.box-thumb img {
    height: 100%
}

.hosting__niobe .box1>.box-body {
    padding: 0 25px;
    font-size: 14px;
    line-height: 1.3
}

.bg1 {
    background: linear-gradient(to right, #425480, #e7b8a6);
    -pie-background: linear-gradient(#f9ad0a #ea3d1a);
    color: #ff
}

@media only screen and (max-width:900px) {
    .ssl-table {
        border: 0 !important
    }
    .ssl-table .ssl-tr {
        margin-bottom: 20px !important;
        min-height: 338px
    }
    .ssl-table .ssl-tr.item {
        float: left;
        width: 33%;
        border: 1px solid #e2e2e2
    }
    .ssl-table .ssl-tr .ssl-col {
        display: block !important;
        width: 100% !important;
        height: inherit !important;
        text-align: center !important;
        border: 0 !important
    }
    .ssl-table .ssl-tr .ssl-col .btn {
        padding: 8px 40px !important
    }
    .ssl-table .ssl-tr .ssl-col.ssl8 .item-price {
        text-align: center !important
    }
    .ssl-table .ssl-tr .ssl-col.ssl8 .item-price span {
        text-align: center !important
    }
    .ssl-table .ssl-tr .ssl-col.ssl8 .item-price small:after {
        width: 19% !important;
        right: 40% !important
    }
    .ssl-tr.ssl-header {
        display: none
    }
    .ssl-menu2 {
        width: 100%
    }
    .ssl-menu3 {
        width: 100%;
        margin-top: 15px
    }
    .ssl-menu2 a {
        float: none !important;
        text-align: left !important;
        padding: 0 5px !important
    }
    .ssl-menu3 a {
        float: none !important;
        text-align: left !important;
        padding: 0 5px !important
    }
    .ssl-menu1 {
        display: none !important
    }
    .ssl-list .clearfix {
        margin-bottom: 15px !important
    }
}

@media only screen and (max-width:767px) {
    .ssl-table .ssl-tr {
        float: none;
        display: block;
        width: 100% !important;
        border-bottom: 4px solid #e2e2e2;
        min-height: inherit
    }
    .ssl-tr.ssl-header {
        display: none !important
    }
}

.big-icon {
    border-radius: 50px;
    color: #1e1e1e;
    display: block;
    height: 84px;
    margin: 0 auto 10px;
    text-align: center;
    width: 84px;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear
}

.big-services-box {
    margin-bottom: 40px;
    text-align: center;
    padding: 0 15px
}

.big-services-box .title {
    margin-bottom: 10px
}

.text-muted {
    color: #5f7d92
}

.colocation-product {
    position: relative;
    padding: 60px 0
}

.big-icon svg {
    width: 64px;
    height: 64px
}

.hosting-information .service {
    min-height: 110px
}

.service .icon:hover {
    opacity: .8;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear
}

.hosting-information .icon svg {
    width: 64px;
    height: 64px;
    fill: #0b304a
}

.services .features-block,
.services .service {
    margin-bottom: 50px;
    min-height: 125px
}

.service .title {
    margin: 0 0 5px;
    font-size: 18px
}

.service .text-muted {
    line-height: 1.4 !important
}

.service .icon {
    border-radius: 35px;
    color: #fff !important;
    display: block;
    height: 64px;
    float: left;
    margin: 0 25px 0 0;
    text-align: center;
    text-decoration: none;
    width: 64px;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear
}

.icon {
    background: 0 0;
    color: #1e1e1e;
    display: inline-block;
    font-size: 15px;
    height: 18px;
    line-height: 19px;
    margin: 0 0 4px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    width: 32px
}

.hosting-information {
    padding: 80px 0 40px
}

.heading {
    overflow: hidden;
    margin-bottom: 60px
}

.control-panel {
    padding: 40px 0 50px
}

.control-panel img {
    display: block;
    margin: 0 auto 20px
}

.btn-basket {
    white-space: nowrap !important;
    font-weight: 400 !important;
    background-color: #ffcb26 !important;
    border: none !important;
    color: #444 !important
}

.bg-grey {
    background: #f0f3f7 !important
}

.step-number {
    position: relative;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    width: 43px;
    height: 43px;
    text-align: center;
    margin: 10px auto 0;
    border-radius: 50%;
    background: #2c87cf
}

.step-number:after {
    position: absolute;
    content: '';
    left: 65px;
    top: 20px;
    background: #b9defb;
    height: 4px;
    width: 290px
}

.step-number.last:after {
    display: none
}

.cookie-policy {
    width: 450px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    padding: 10px;
    border-top: 4px solid #0785fb;
    font-size: 13px;
    z-index: 9999999;
    display: none;
    box-shadow: 0 0 30px rgb(0 0 0 / 20%);
    border-radius: 5px
}

.cookie-policy .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 3px;
    color: #4b5563
}

.cookie-policy p {
    margin: 0;
    color: #4b5563;
    line-height: 20px
}

.cookie-policy svg {
    width: 15px;
    height: 15px;
    color: #374151
}

.cookie-policy button {
    border: 0;
    cursor: pointer;
    background: #e5e7eb;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding: 0 4px
}

.cookie-policy button:hover {
    background: #d1d5db
}

@media only screen and (max-width:640px) {
    .regeneration-price {
        z-index: 1
    }
    .turhost-ik {
        right: 190px
    }
    .turhost-ik a {
        padding: 7px 10px;
        height: 43px
    }
    .banner-installment {
        display: none
    }
    .cookie-policy {
        width: 340px;
        left: 10px;
        bottom: 10px
    }
}

@media (min-width:992px) and (max-width:1024px) {
    .menu-arrow {
        display: none !important
    }
}

@media (min-width:1024px) and (max-width:1270px) {
    .price-boxes .ddown-price-box .price-periods {
        left: -25% !important
    }
}

.home-domain-block {
    width: 70%;
    margin: auto
}

.home-domain-bar .text {
    color: #fff;
    margin-bottom: 15px;
    overflow: hidden
}

.home-domain-bar .text h2 {
    font-size: 30px;
    margin-bottom: 5px
}

.home-domain-bar .text p {
    font-size: 18px;
    color: #fff
}

.home-domain-bar .form-bg {
    overflow: hidden;
    border-radius: 4px
}

.home-domain-bar .form-bg input {
    float: left;
    border: 0;
    padding: 10px 25px;
    width: calc(100% - 150px);
    height: 44px;
    border-radius: 4px;
    font-weight: 500
}

.home-domain-bar .form-bg .btn {
    float: right;
    width: 150px;
    padding: 10px 15px;
    height: 44px;
    border-radius: 0;
    font-weight: 500;
    background: #1d709b;
    transition: all .25s ease;
    border: 0;
    box-shadow: none
}

.home-domain-bar .form-bg .btn:hover {
    background: #0a5075
}

.home-domain-bar ul.domain-link {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    text-align: center;
    width: 100%;
    justify-content: space-between
}

.home-domain-bar ul.domain-link li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    width: 31.33%
}

.home-domain-bar ul.domain-link li a {
    color: #fff;
    font-weight: 500;
    background: #1d709b;
    padding: 10px;
    display: block;
    border-radius: 5px;
    transition: all .3s ease
}

.home-domain-bar ul.domain-link li a:hover {
    background: #0a5075
}

.register img {
    width: 120px
}

.domain-form {
    display: flex;
    align-items: center
}

.domain-item {
    width: calc(100% - 120px);
    margin-left: 40px
}

.register {
    position: relative
}

.home-domain-bar ul.domain-link li:last-child:after {
    display: none
}

.custom-switch {
    padding: 4px 10px 10px 65px;
    min-height: 33px;
    background: #fff;
    box-shadow: 1px 1px 10px #d0d0d0;
    width: 100% !important;
    border-radius: 5px
}

.custom-switch .custom-control-label {
    line-height: 32px;
    font-size: 15px;
    font-weight: 600
}

.custom-switch .custom-control-label::before {
    width: 50px;
    height: 26px;
    border-radius: 20px;
    left: -60px
}

.custom-switch .custom-control-label::after {
    width: calc(24px - 4px);
    height: calc(24px - 4px);
    top: calc(5px + 2px);
    left: calc(-55px + -4px);
    border-radius: 20px
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    -webkit-transform: translateX(22px);
    transform: translateX(27px)
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #0f3654;
    background-color: #0f3654
}

.custom-control-input {
    width: 56px;
    height: 33px
}

.custom-control-input:focus {
    box-shadow: none;
    border: 0
}

.table1 div.dataTables_wrapper div.dataTables_filter label {
    display: flex;
    text-overflow: ellipsis;
    white-space: nowrap;
    align-items: center;
    font-weight: 600
}

.home-domain-price {
    position: relative;
    padding: 20px 0;
    background: #0a5075;
    color: #fff
}

.home-domain-price #domainPrice .owl-item {
    position: relative
}

.home-domain-price #domainPrice .owl-item:after {
    position: absolute;
    content: '';
    right: -4px;
    top: 2px;
    width: 1px;
    height: 22px;
    background: #ffffff40
}

.home-domain-price #domainPrice .owl-item:first-child:after {
    display: none
}

.home-domain-price .item-price {
    text-align: center
}

.home-domain-price .item-price .name {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    margin-right: 10px;
    background: #0d8be8;
    border-radius: 4px;
    color: #fff;
    padding: 2px 6px 4px;
    line-height: 1
}

.home-domain-price .item-price .price {
    display: inline-block
}

.home-domain-price .item-price .price sub {
    position: relative;
    font-size: 15px;
    font-weight: 300;
    bottom: inherit
}

.home-domain-price .item-price .price sub:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid red;
    height: 45%;
    height: calc(50% - 1px);
    width: 100%;
    transform: rotateZ(-10deg)
}

.home-domain-price .item-price .price sup {
    font-size: 18px;
    font-weight: 800;
    top: inherit
}

.home-domain-price.bg-green .item-price .name {
    background: #333
}

@media only screen and (max-width:767px) {
    .home-domain-bar .text {
        text-align: center;
        margin-bottom: 15px
    }
    .home-domain-bar .form-bg input {
        width: calc(100% - 100px);
        padding: 10px
    }
    .home-domain-bar .form-bg .btn {
        width: 100px
    }
    .home-domain-price {
        padding-top: 20px;
        padding-bottom: 20px
    }
    .home-domain-price .item-price .name {
        margin-right: 2px
    }
}

.home-counter {
    position: relative;
    overflow: hidden;
    padding: 90px 0 90px;
    color: #fff;
    background: rgb(0 73 112 / 73%)
}

.home-counter:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../img/intro-parallax.jpg) center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
    background-attachment: fixed;
    background-size: cover
}

.home-counter .heading {
    margin-bottom: 30px
}

.home-counter .heading .heading-title {
    font-size: 38px;
    margin-bottom: 5px;
    text-align: center
}

.home-counter .heading .heading-desc {
    font-size: 22px;
    text-align: center
}

.home-counter p {
    position: relative;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 0;
    display: block;
    padding: 5px 20px;
    background: #fff;
    border-radius: 10px;
    color: #4a84af;
    text-align: center
}

.home-counter p span {
    display: block;
    font-size: 18px;
    color: #024b70;
    font-weight: 400
}

@media only screen and (max-width:767px) {
    .home-counter:before {
        display: none
    }
    .home-counter .col-lg-3 {
        margin: 15px 0
    }
}

.home-domain-bar1 {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background: url(../img/bg-hosting-17.jpg) no-repeat;
    background-size: cover;
    background-position: center
}

.home-domain-bar1 .text {
    color: #fff
}

.home-domain-bar1 .text h1 {
    font-size: 30px;
    margin-bottom: 5px
}

.home-domain-bar1 .text p {
    font-size: 18px;
    color: #fff
}

.home-domain-bar1 .form-bg {
    background: #fff;
    overflow: hidden;
    border-radius: 4px
}

.home-domain-bar1 .form-bg input {
    float: left;
    border: 0;
    padding: 10px 25px;
    width: calc(100% - 150px);
    height: 56px;
    border-radius: 4px;
    font-weight: 500
}

.home-domain-bar1 .form-bg .btn {
    float: right;
    width: 150px;
    padding: 10px 15px;
    height: 56px;
    border-radius: 0;
    font-weight: 500
}

.home-domain-bar1 ul.domain-link {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    clear: both;
    display: inline-block;
    text-align: center
}

.home-domain-bar1 ul.domain-link li {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    font-size: 15px
}

.home-domain-bar1 ul.domain-link li a {
    color: #fff;
    font-weight: 500
}

.home-domain-bar1 ul.domain-link li:after {
    position: absolute;
    content: '';
    top: 3px;
    right: -2px;
    height: 16px;
    width: 1px;
    background: #ffffff40
}

.home-domain-bar1 ul.domain-link li:last-child:after {
    display: none
}

.domain__price {
    position: relative;
    background: #333;
    padding: 10px 0;
    background: #2980b9;
    background: -webkit-linear-gradient(to top, #106fb5, #4ac1ff);
    background: linear-gradient(to right, #0a5075, #4dc4ff)
}

.domain__price h3 {
    text-align: center;
    margin-bottom: 30px
}

.domain__price .item {
    position: relative;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 1px 10px 0 rgba(141, 153, 176, .1);
    border-radius: 4px;
    margin: 10px 0;
    padding: 10px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.domain__price .item:hover {
    transform: scale(1.06)
}

.domain__price .item img {
    display: block;
    width: auto;
    height: 56px;
    margin: 0 auto
}

.domain__price .item .name {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    height: 56px;
    color: #f45828
}

.domain__price .item .price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.domain__price .item .price .old {
    display: flex;
    letter-spacing: -.4px;
    text-decoration: line-through;
    font-size: 14px;
    width: 100%;
    font-weight: 600;
    color: red;
    margin-bottom: 0;
    text-align: center;
    display: block
}

.domain__price .item .price .old small {
    font-size: 14px;
    letter-spacing: -.4px;
    display: inline-block;
    margin-left: 2px
}

.domain__price .item .price .new {
    display: flex;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.4px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: #0f3654;
    font-weight: 700
}

.domain__price .item .price .new small {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.4px;
    margin-left: 2px
}

.domain__price .item a {
    display: block;
    padding: 6px 10px 8px;
    border: 1px solid #00b9ff;
    border-radius: 4px;
    text-align: center;
    line-height: 1
}

.best-domain {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    z-index: 1
}

.best-domain .plan-ribbon {
    background: #0d8be8;
    display: block;
    width: 118px;
    text-align: center;
    font-size: 12px;
    line-height: 24px;
    font-weight: 600;
    position: relative;
    color: #fff;
    transform: rotate(45deg);
    transform-origin: 30px 5px;
    text-transform: uppercase;
    z-index: 3
}

.best-domain:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background: #48bcf6
}

.best-domain:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #48bcf6
}

.table1 {
    position: relative;
    font-size: 13px;
    background: #fff;
    border: 1px solid #80c9ff;
    box-shadow: 0 0 10px rgb(170 219 255);
    overflow: hidden;
    border-radius: 5px
}

.table1 .table {
    margin-bottom: 0;
    font-size: 14px
}

.table1 .table th {
    color: #fff;
    border: 0;
    font-size: 14px;
    background: -webkit-linear-gradient(to top, #106fb5, #4ac1ff)
}

.table1 .table td {
    position: relative;
    background-color: #fff;
    border-top: 1px solid #80c9ff
}

.table1 .table td:nth-child(1) {
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    padding-left: 40px
}

.table1 .table td:nth-child(2) {
    text-align: center
}

.table1 .table td:nth-child(3) {
    text-align: right;
    font-weight: 700
}

.table1 .table td:nth-child(4) {
    text-align: right;
    font-weight: 700
}

.table1 .table td:nth-child(5) {
    text-align: right;
    font-weight: 700
}

.filterX {
    width: 100% !important;
    justify-content: space-between;
    left: 0 !important;
    overflow: initial !important;
    padding: 0 30px;
    box-sizing: border-box;
    top: 14px !important
}

.table1 .table td .fa-globe-europe {
    position: absolute;
    top: 13px;
    left: 10px;
    font-size: 20px;
    color: #9a9a9a
}

.table1 .table td .badge {
    position: relative;
    top: -1px;
    font-weight: 500;
    margin-left: 10px;
    font-size: 11px;
    padding: 3px 5px 4px;
    border-radius: 2px
}

.table1 .price {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.table1 .price .old {
    display: flex;
    color: #6f7379;
    letter-spacing: -.4px;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 400;
    margin-right: 5px
}

.table1 .price .old small {
    font-size: 13px;
    letter-spacing: -.4px;
    display: inline-block;
    margin-left: 2px
}

.table1 .price .new {
    display: flex;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.4px
}

.table1 .price .new small {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.4px;
    display: inline-block;
    margin-left: 2px
}

.table1 .form-control {
    height: 40px;
    background: #fff;
    box-shadow: 1px 1px 10px #d0d0d0;
    border: 0;
    width: 245px;
    margin-left: 10px
}

.table1 .dataTables_length {
    padding: 10px 10px 0
}

.table1 table.dataTable {
    margin: 0 !important
}

.table1 div.dataTables_wrapper div.dataTables_filter {
    padding: 10px 30px 0 0;
    display: flex;
    align-items: center;
    margin-top: 60px;
    justify-content: flex-end;
    margin-bottom: 10px
}

.table1 div.dataTables_wrapper div.dataTables_info {
    padding: 12px 10px 0
}

.table1 div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    padding: 5px 10px;
    margin: 0;
    float: left;
    margin-left: -25px;
    margin-top: 10px;
    margin-bottom: 10px
}

.table1 .row:nth-child(3) {
    background: #fff;
    border-top: 1px solid #dee2e6
}

.table1 .page-item.active .page-link {
    color: #fff;
    background-color: #0d8be8;
    border-color: #0d8be8;
    z-index: 1
}

.table1 .page-link {
    color: #333
}

.step-number {
    position: relative;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    width: 43px;
    height: 43px;
    text-align: center;
    margin: 30px auto 20px;
    border-radius: 50%;
    background: #0f3654
}

.content-steps .col-lg-4 span {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 100%;
    background: #ecf7fc;
    box-shadow: 1px 1px 10px #0d5479;
    position: relative
}

.content-steps .col-lg-4 span:after {
    content: "";
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    left: 100%;
    width: 200%;
    height: 5px;
    background: #8ca5b1
}

.content-steps .row>div:last-child span:after {
    display: none
}

@media only screen and (max-width:767px) {
    .page-content.domain-area .row {
        flex-wrap: wrap;
        overflow: inherit
    }
    .page-content.domain-area .row>div {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center
    }
    .table1 div.dataTables_wrapper div.dataTables_filter label {
        width: 100%;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center
    }
    .table1 .form-control {
        width: 100%;
        margin-left: 0;
        margin-top: 10px
    }
    .home-domain-bar1 .text {
        text-align: center;
        margin-bottom: 15px
    }
    .home-domain-bar1 .form-bg input {
        width: calc(100% - 100px);
        padding: 10px
    }
    .home-domain-bar1 .form-bg .btn {
        width: 100px
    }
    .step-number:after {
        display: none
    }
    .table1 {
        padding-top: 50px
    }
    .table1 .filterX {
        left: 0;
        flex-wrap: wrap;
        padding: 0 20px
    }
    .table1 .custom-switch {
        margin-right: 4px !important;
        margin-bottom: 10px
    }
    .table1 .custom-switch .custom-control-label {
        font-size: 13px
    }
    .table1 div.dataTables_wrapper div.dataTables_filter {
        width: 100%;
        float: none;
        text-align: center;
        margin-top: 190px;
        flex-wrap: wrap;
        margin-left: auto;
        margin-right: auto;
        padding-right: 0
    }
    .table1 div.dataTables_wrapper div.dataTables_paginate {
        text-align: center
    }
    .table1 div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        width: 100%;
        float: none;
        margin-left: auto;
        margin-right: auto;
        justify-content: center
    }
    .table1 .table thead {
        display: none;
        width: 100%
    }
    .table1 .table tbody tr {
        border-bottom: 5px solid #333
    }
    .table1 .table td {
        display: block;
        width: 100%;
        text-align: center !important
    }
    .table1 .table td .fa-globe-europe {
        display: none
    }
    .table1 .table td:before {
        position: absolute;
        left: 10px;
        top: 13px
    }
    .table1 .table td:nth-child(1) {
        padding-left: inherit !important
    }
    .table1 .table td:nth-child(3) {
        text-align: right !important
    }
    .table1 .table td:nth-child(4) {
        text-align: right !important
    }
    .table1 .table td:nth-child(5) {
        text-align: right !important
    }
    .table1 .table td:nth-child(3):before {
        content: 'Domain Kayit'
    }
    .table1 .table td:nth-child(4):before {
        content: 'Domain Yenileme:'
    }
    .table1 .table td:nth-child(5):before {
        content: 'Domain Transfer:'
    }
}

.page-content ul {
    /* list-style:square; */
    padding-left: 15px;
}

.page-content ul li {
    margin: 14px 0;
    line-height: 1.4
}

.home-domain-bar1:before {
    opacity: .3
}

.home-domain-bar1 .form-bg1 {
    overflow: hidden;
    text-align: left;
    font-weight: 600;
    font-size: 18px
}

.home-domain-bar1 .form-bg1 label {
    margin-bottom: 2px;
    color: #fff
}

.home-domain-bar1 .form-bg1 input {
    border: 0;
    padding: 10px 25px;
    width: 100%;
    height: 56px;
    border-radius: 4px;
    font-weight: 500
}

.home-domain-bar1 .form-bg2 {
    overflow: hidden;
    border-radius: 4px;
    margin-top: 15px
}

.home-domain-bar1 .form-bg2 label {
    display: block;
    color: #fff;
    width: 100%;
    margin-bottom: 2px;
    text-align: left;
    font-weight: 600;
    font-size: 18px
}

.home-domain-bar1 .form-bg2 input {
    float: left;
    border: 0;
    padding: 10px 25px;
    width: calc(100% - 190px);
    height: 56px;
    border-radius: 4px 0 0 4px;
    font-weight: 500
}

.home-domain-bar1 .form-bg2 .btn {
    float: right;
    width: 190px;
    border-radius: 0 4px 4px 0;
    padding: 10px 15px;
    height: 56px;
    font-weight: 500
}

.page-content.transfer h3 {
    font-size: 20px
}

.page-content.transfer p {
    font-size: 14px;
    line-height: 1.3
}

@media only screen and (max-width:767px) {
    .page-content img {
        margin: 15px 0 10px
    }
    .page-content .img11 {
        width: 100%
    }
    .home-domain-bar1 .form-bg2 input {
        width: calc(100% - 150px)
    }
    .home-domain-bar1 .form-bg2 .btn {
        width: 150px
    }
}

.service-block1 {
    overflow: hidden;
    margin: 15px 0
}

.service-block1 h3 {
    font-size: 19.2px;
    font-weight: 600;
    margin: 0 0 15px
}

.service-block1 p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 15px
}

.service-block1 img {
    width: 100%;
    max-width: 96px;
    max-height: 96px;
    display: block;
    margin: 0 auto
}

.breadcrumb>.active {
    color: #777
}

.breadcrumb>li {
    font-size: 14px
}

.knowledgebody {
    padding: 5px 20px 1px 20px
}

@media only screen and (max-width:767px) {
    .section-sidebar {
        display: none
    }
    .position-relative-profile {
        display: none
    }
}

.product-name {
    position: relative
}

.product-name>.m-logo {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -20px
}

.m-logo {
    position: relative;
    display: inline-block;
    height: 126px;
    width: 126px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden
}

.m-logo .title-icon {
    width: 112px;
    height: 112px;
    left: 50%;
    top: 50%;
    margin: -56px 0 0 -56px
}

.m-logo .title-icon>img {
    height: 100%
}

.m-logo .title-slogan {
    display: none
}

.m-logo-sm .title-icon,
.m-logo-xs .title-icon {
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    margin: 0
}

.m-logo-xs {
    height: 40px;
    width: 40px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.m-logo-xs .title-icon>img {
    width: 89%;
    margin-left: 2px
}

.m-logo-xs .title-icon>span {
    display: none
}

.m-logo-sm {
    height: 48px;
    width: 48px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.m-logo-sm .title-icon>img {
    width: 36px
}

.m-logo-md {
    height: 138px;
    width: 138px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px
}

.m-logo-lg .title-icon,
.m-logo-md .title-icon {
    height: 136px;
    width: 136px;
    margin: -68px 0 0 -68px
}

.m-logo-lg .title-icon span:after,
.m-logo-md .title-icon span:after {
    width: calc(100% + 96px);
    height: calc(100% + 96px);
    margin-top: calc(-50% - 48px);
    margin-left: calc(-50% - 48px)
}

@media (max-width:767px) {
    .m-logo-md {
        height: 56px;
        width: 56px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px
    }
    .m-logo-md .title-icon>img {
        width: 36px
    }
}

.m-logo-lg {
    height: 152px;
    width: 152px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

.widget-bulk {
    background: #78c2ff;
    background: -moz-linear-gradient(160deg, #78c2ff 0, #27a5e8 100%);
    background: -o-linear-gradient(160deg, #78c2ff 0, #27a5e8 100%);
    background: -webkit-linear-gradient(290deg, #78c2ff 0, #27a5e8 100%);
    background: -ms-linear-gradient(160deg, #78c2ff 0, #27a5e8 100%);
    background: linear-gradient(295deg, #8da0b1 0, #a9bccd 100%)
}

.news-bar {
    position: relative;
    padding: 8px 0;
    background: #425480
}

.news-bar .news-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    color: #fff
}

.news-bar .news-content p {
    margin: 0;
    font-size: 20px;
    margin-right: 10px
}

.news-bar .news-content strong {
    font-weight: 800
}

.news-bar .news-content .btn-sm {
    padding: 2px 10px !important;
    height: 28px;
    font-size: 14px;
    min-width: 120px
}

.news-bar .news-content .newsClose {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    color: #343a40;
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center
}

mark {
    background-color: #fedc45;
    color: #000;
    display: inline-block;
    padding: .08em .2em;
    margin: -.08em 0;
    position: relative;
    line-height: 1.42857143;
    font-weight: 700
}

mark a {
    color: #000 !important;
    text-decoration: underline
}

mark:after {
    content: "";
    background-color: #fedc45;
    position: absolute;
    top: 0;
    right: -.1em;
    width: .2em;
    height: 1.535em;
    -moz-transform: skew(-7deg, 0);
    -webkit-transform: skew(-7deg, 0);
    -o-transform: skew(-7deg, 0);
    -ms-transform: skew(-7deg, 0)
}

skew(13deg, 0) .home__product {
    position: relative;
    padding: 60px 0
}

.home__product ul li {
    position: relative;
    float: left;
    width: 16.6%;
    margin-right: -1px;
    line-height: 1.3;
    border: 1px solid #e5e8ed
}

.home__product ul li a {
    display: block;
    color: #262936;
    transition: all .3s ease-in-out;
    padding: 20px 10px;
    text-align: center
}

.home__product ul li .n__n {
    display: block;
    font-weight: 700;
    font-size: 18px
}

.home__product ul li .n__p {
    display: block;
    font-weight: 700;
    font-size: 18px
}

.home__product ul li .n__d {
    display: block;
    font-size: 13px;
    height: 32px;
    color: #717988;
    margin-bottom: 15px
}

.home__product ul li .n__i {
    display: block;
    font-size: 76px;
    line-height: 1;
    color: #3db9ff
}

.home__product ul li .n__b {
    display: block;
    width: 130px;
    margin: 10px auto 0;
    font-size: 13px;
    line-height: 1;
    text-align: center;
    padding: 10px 4px;
    border-radius: 4px;
    color: #212529;
    background-color: #ffc107
}

.home__product ul li a:hover {
    background: #3db9ff;
    color: #fff
}

.home__product ul li:hover .n__d {
    color: #fff
}

.home__product ul li:hover .n__i {
    color: #fff
}

.home__transfer {
    position: relative;
    padding: 60px 0;
    background: #f9fbfc
}

.home__transfer .btn {
    height: 48px;
    line-height: 36px;
    width: 220px;
    font-weight: 600
}

.home__transfer .block__feature {
    padding: 0
}

.home__transfer .block__feature h6 {
    font-size: 22px;
    margin-top: 35px
}

.home__transfer .block__feature p {
    font-size: 18px
}

.home__transfer img {
    width: 100%;
    margin-top: 25px
}

.reviews-box .reviews {
    background: #fff
}

.reviews-box .reviews:after {
    background: #fff
}

.reviews-box .reviews:before {
    color: #fff
}

@media only screen and (max-width:767px) {
    #home-carousel-1x .container .carousel-title {
        width: 100%
    }
    #home-carousel-1x .container .carousel-title ul li {
        font-size: 16px
    }
}

.sinceyear {
    padding: 1px;
    width: 55px;
    height: 23px;
    line-height: 20px;
    text-align: center;
    background: #425480;
    font-size: 12px;
    color: #fff;
    position: relative;
    top: -2px;
    border-radius: 3px;
    float: right;
    top: 2px;
    left: -25px
}

.sinceyear:after {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-right-color: #425480;
    border-width: 6px;
    margin-top: -6px
}