/* =========================================
   CENTRAL SERVERS - UNIFIED MAIN STYLES
   Based on plans.html reference structure
   ========================================= */

/* === 1. VARIABLES & RESET === */
:root {
    --cs-primary: #f59e0b;
    --cs-primary-dark: #d97706;
    --cs-primary-light: #fbbf24;
    --cs-bg-dark: #0a0a1a;
    --cs-bg-card: #111827;
    --cs-bg-card-hover: #1a2332;
    --cs-text: #e5e7eb;
    --cs-text-muted: rgba(210, 175, 120, 0.85);
    --cs-gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 40%, #0f172a 100%);
    --cs-gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --cs-border-subtle: rgba(245, 158, 11, 0.15);
    --cs-shadow-glow: 0 0 30px rgba(245, 158, 11, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cs-bg-dark);
    color: var(--cs-text);
    overflow-x: hidden;
}

a { color: var(--cs-primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--cs-primary-light); }

.text-muted { color: #9ca3af !important; }

/* === 2. NAVBAR === */
.cs-navbar {
    background: rgba(10, 10, 26, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cs-border-subtle);
    padding: 0.8rem 0;
}
.cs-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.cs-navbar .navbar-brand span { color: var(--cs-primary); }
.cs-logo-svg { height: 75px; width: auto; max-width: none; }

.cs-navbar .nav-link {
    color: var(--cs-text-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}
.cs-navbar .nav-link:hover { color: var(--cs-primary) !important; }

.cs-navbar .btn-outline-light {
    border-color: var(--cs-primary);
    color: var(--cs-primary);
    font-weight: 600;
	margin-right: 1.5rem;
}
.cs-navbar .btn-outline-light:hover { background: var(--cs-primary); color: #000; }

/* === 3. PAGE HEADERS & HERO === */
.cs-page-header {
    background: var(--cs-gradient-hero);
    padding: 10rem 1rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cs-page-header::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.cs-page-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.cs-hero {
    background: var(--cs-gradient-hero);
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}
.cs-hero::before, .cs-hero::after {
    content: ''; position: absolute; border-radius: 50%;
    animation: heroPulse 8s ease-in-out infinite;
}
.cs-hero::before { top: -50%; left: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%); }
.cs-hero::after { bottom: -30%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(239,68,68,0.06) 0%, transparent 70%); animation-direction: reverse; }

@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.cs-hero h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; letter-spacing: -1px; }
.cs-hero .lead { font-size: 1.2rem; color: var(--cs-text-muted); max-width: 600px; line-height: 1.7; }

.highlight {
    background: var(--cs-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge {
    display: inline-block;
    background: rgba(245,158,11,0.1);
    border: 1px solid var(--cs-border-subtle);
    color: var(--cs-primary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
/* === 3.5. SECTION TITLES (Restores Centering & Boldness) === */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800; /* Restores the bold heading style */
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}
.section-title p {
    color: var(--cs-text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto; /* Centers the description text under the heading */
}
/* === 4. BUTTONS === */
.btn-cs-primary {
    background: var(--cs-gradient-accent);
    border: none; color: #fff; font-weight: 700;
    padding: 0.8rem 2rem; border-radius: 8px;
    transition: all 0.3s; box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}
.btn-cs-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,0.4); color: #fff; }

.btn-cs-outline {
    border: 2px solid var(--cs-primary); color: var(--cs-primary);
    font-weight: 600; padding: 0.75rem 1.75rem; border-radius: 8px; transition: all 0.3s;
}
.btn-cs-outline:hover { background: var(--cs-primary); color: #000; transform: translateY(-2px); }

.btn-plan {
    display: block; text-align: center;
    background: rgba(245,158,11,0.1); border: 1px solid var(--cs-border-subtle);
    color: var(--cs-primary); font-weight: 600; padding: 0.6rem; border-radius: 8px; transition: all 0.3s;
}
.btn-plan:hover { background: var(--cs-primary); color: #000; }

/* === 5. PLANS & PRICING === */
.cs-plans { padding: 4rem 0; }
.plans-section { margin-bottom: 5rem; }
.plans-section:last-child { margin-bottom: 0; }
.plans-section-title { text-align: center; margin-bottom: 2.5rem; }
.plans-section-title h2 { font-size: 2rem; font-weight: 800; }
.plans-section-title p { color: var(--cs-text-muted); font-size: 1rem; }

.plan-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.plan-tab {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: var(--cs-text-muted); padding: 0.5rem 1.25rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.plan-tab:hover, .plan-tab.active { background: var(--cs-primary); color: #000; border-color: var(--cs-primary); }

.plan-card {
    background: var(--cs-bg-card); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 2rem; height: 100%; transition: all 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-5px); border-color: var(--cs-border-subtle); box-shadow: var(--cs-shadow-glow); }
.plan-card.featured { border-color: var(--cs-primary); box-shadow: var(--cs-shadow-glow); }
.plan-card.featured::before {
    content: 'POPULAR'; position: absolute; top: 1rem; right: -2rem;
    background: var(--cs-gradient-accent); color: #fff; font-size: 0.65rem; font-weight: 700;
    padding: 0.3rem 2.5rem; transform: rotate(45deg); letter-spacing: 1px;
}

.plan-card .plan-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.plan-card .plan-price { font-size: 2rem; font-weight: 900; color: var(--cs-primary); margin-bottom: 0.25rem; }
.plan-card .plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--cs-text-muted); }
.plan-card .plan-setup { font-size: 0.85rem; color: var(--cs-text-muted); margin-bottom: 1.5rem; }

.plan-card .plan-features { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.plan-card .plan-features li { padding: 0.35rem 0; font-size: 0.88rem; color: var(--cs-text-muted); border-bottom: 1px solid rgba(255,255,255,0.04); }
.plan-card .plan-features li:last-child { border-bottom: none; }
.plan-card .plan-features li strong { color: var(--cs-text); }
.plans-section .row  {align-items: stretch; }
.plan-features { flex-grow: 1; }
.hardware-specs {
    background: var(--cs-bg-card); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 2rem; margin-top: 2rem;
}
.hardware-specs h5 { font-weight: 700; margin-bottom: 1rem; color: var(--cs-primary); }
.hardware-specs ul { list-style: none; padding: 0; }
.hardware-specs ul li { padding: 0.3rem 0; color: var(--cs-text-muted); font-size: 0.9rem; }
.hardware-specs ul li i { color: var(--cs-primary); margin-right: 0.5rem; width: 16px; }

/* === 6. SERVICES & TILES === */
.cs-services { padding: 5rem 0; background: #0d1117; }
.service-tile {
    position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; height: 280px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid rgba(255,255,255,0.06);
}
.service-tile:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(245,158,11,0.15); border-color: var(--cs-primary); }
.service-tile .tile-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.service-tile:hover .tile-bg { transform: scale(1.1); }
.service-tile .tile-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,26,0.3) 0%, rgba(10,10,26,0.85) 100%); transition: background 0.4s; }
.service-tile:hover .tile-overlay { background: linear-gradient(180deg, rgba(10,10,26,0.2) 0%, rgba(10,10,26,0.9) 100%); }
.service-tile .tile-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; z-index: 2; }
.service-tile .tile-icon { width: 70px; height: 70px; margin-bottom: 1rem; transition: all 0.4s; filter: drop-shadow(0 0 10px rgba(245,158,11,0.3)); }
.service-tile:hover .tile-icon { transform: scale(1.15) rotate(-3deg); filter: drop-shadow(0 0 20px rgba(245,158,11,0.5)); }
.service-tile .tile-title { font-size: 1.15rem; font-weight: 700; text-align: center; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.service-tile .tile-subtitle { font-size: 0.78rem; color: var(--cs-text-muted); text-align: center; margin-top: 0.4rem; opacity: 0; transform: translateY(10px); transition: all 0.3s; }
.service-tile:hover .tile-subtitle { opacity: 1; transform: translateY(0); }

/* === 7. MODALS === */
.modal-content.cs-modal { background: var(--cs-bg-card); border: 1px solid var(--cs-border-subtle); border-radius: 16px; color: var(--cs-text); }
.modal-header.cs-modal-header { border-bottom: 1px solid var(--cs-border-subtle); padding: 1.5rem 2rem; }
.modal-header.cs-modal-header .modal-title { font-weight: 700; font-size: 1.3rem; }
.modal-body.cs-modal-body { padding: 2rem; }
.modal-footer.cs-modal-footer { border-top: 1px solid var(--cs-border-subtle); padding: 1.25rem 2rem; }
.btn-close { filter: invert(1); }
.modal-features-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.modal-features-list li { padding: 0.4rem 0; color: var(--cs-text-muted); font-size: 0.95rem; }
.modal-features-list li i { color: var(--cs-primary); margin-right: 0.75rem; width: 16px; }

/* === 8. CONTENT BLOCKS & CARDS === */
.cs-content-section, .cs-about-section, .cs-policy-content, .cs-dual-approach, .cs-techniques, .cs-process, .cs-pricing, .cs-cta { padding: 5rem 0; }
.cs-content-section:nth-child(even), .cs-about-section:nth-child(even) { background: #0d1117; }

.content-block, .about-block { max-width: 900px; margin: 0 auto; }
.content-block h2, .about-block h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.75rem; }
.content-block h2::after, .about-block h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--cs-gradient-accent); border-radius: 2px; }
.content-block p, .about-block p { color: var(--cs-text-muted); line-height: 1.8; font-size: 1rem; margin-bottom: 1rem; }

.service-grid, .tech-grid, .budget-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.service-card, .tech-card, .budget-tier, .approach-card, .technique-card, .price-card {
    background: var(--cs-bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 2rem; height: 100%; transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card:hover, .tech-card:hover, .budget-tier:hover, .approach-card:hover, .technique-card:hover, .price-card:hover { transform: translateY(-5px); border-color: var(--cs-border-subtle); box-shadow: var(--cs-shadow-glow); }

.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--cs-gradient-accent); opacity: 0; transition: opacity 0.3s; }
.service-card:hover::before { opacity: 1; }

.card-icon, .approach-icon, .tech-icon { width: 56px; height: 56px; background: rgba(245,158,11,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card-icon i, .approach-icon i, .tech-icon i { font-size: 1.5rem; color: var(--cs-primary); }

.tech-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.tech-tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: var(--cs-text-muted); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 500; }

/* === 9. PROCESS & TIMELINE === */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.process-step { text-align: center; padding: 1.5rem; position: relative; }
.step-number { width: 48px; height: 48px; background: var(--cs-gradient-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.2rem; font-weight: 800; color: #fff; }

.timeline { position: relative; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--cs-border-subtle); transform: translateX(-50%); }
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-item::before { content: ''; position: absolute; left: 50%; top: 1.5rem; width: 14px; height: 14px; background: var(--cs-primary); border-radius: 50%; transform: translateX(-50%); z-index: 1; box-shadow: 0 0 10px rgba(245,158,11,0.4); }
.timeline-content { width: 45%; background: var(--cs-bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 1.5rem; }
.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; margin-right: 5%; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 5%; }
.timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--cs-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }

/* === 10. POLICY & STATS === */
.policy-card { background: var(--cs-bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 3rem; max-width: 900px; margin: 0 auto; }
.policy-card h2 { font-size: 1.5rem; font-weight: 700; color: var(--cs-primary); margin-top: 2rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--cs-border-subtle); }
.policy-card h2:first-child { margin-top: 0; }
.policy-card p, .policy-card li { color: var(--cs-text-muted); line-height: 1.8; font-size: 0.95rem; }
.policy-card ul { padding-left: 1.5rem; margin: 1rem 0; }
.policy-card li { padding: 0.3rem 0; }

.stats-bar, .cs-stats { background: var(--cs-bg-card); border-top: 1px solid var(--cs-border-subtle); border-bottom: 1px solid var(--cs-border-subtle); padding: 3rem 0; }
.stat-item { text-align: center; padding: 1rem; }
.stat-number { font-size: 2.5rem; font-weight: 900; background: var(--cs-gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { color: var(--cs-text-muted); font-size: 0.9rem; margin-top: 0.25rem; }

/* === 11. CTA & FOOTER === */
.cta-section, .cs-cta { background: var(--cs-gradient-hero); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before, .cs-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%); border-radius: 50%; }

.cs-footer { background: #050510; border-top: 1px solid var(--cs-border-subtle); padding: 3rem 0 2rem; }
.cs-footer h6 { font-weight: 700; color: #fff; margin-bottom: 1rem; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.cs-footer a { color: var(--cs-text-muted); font-size: 0.9rem; display: block; padding: 0.2rem 0; transition: color 0.3s; }
.cs-footer a:hover { color: var(--cs-primary); }
.cs-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; margin-top: 2rem; color: var(--cs-text-muted); font-size: 0.85rem; }

/* === 12. ANIMATIONS & RESPONSIVE === */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeInUp 0.6s ease forwards; }

@media (max-width: 768px) {
    .cs-page-header h1, .cs-hero h1 { font-size: 1.8rem; }
    .cs-hero { padding: 6rem 0 4rem; }
    .service-tile { height: 220px; }
    .content-block h2, .about-block h2 { font-size: 1.5rem; }
    .timeline::before { left: 20px; }
    .timeline-item::before { left: 20px; }
    .timeline-content { width: calc(100% - 50px); margin-left: 50px !important; }
    .stat-number { font-size: 2rem; }
    .policy-card { padding: 2rem 1.5rem; }
}
/* === 13. DE-CLOUD SECTION === */
.cs-decloud {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--cs-bg-dark) 0%, #0d1117 100%);
}
.cs-decloud-card {
    background: var(--cs-bg-card);
    border: 1px solid var(--cs-border-subtle);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s;
}
.cs-decloud-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cs-shadow-glow);
    border-color: var(--cs-primary);
}
.cs-decloud-card .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245,158,11,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.cs-decloud-card .icon-circle i {
    font-size: 1.5rem;
    color: var(--cs-primary);
}

/* === 14. WHY CHOOSE US SECTION === */
.cs-why {
    padding: 5rem 0;
    background: var(--cs-bg-dark);
}
.cs-why-card {
    background: var(--cs-bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}
.cs-why-card:hover {
    border-color: var(--cs-border-subtle);
    transform: translateY(-3px);
}
.cs-why-card i {
    font-size: 2rem;
    color: var(--cs-primary);
    margin-bottom: 1rem;
}
.cs-why-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.cs-why-card p {
    color: var(--cs-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === 15. DOMAIN SEARCH SECTION === */
.cs-domain-search {
    padding: 3rem 0;
    background: #0d1117;
}
.domain-search-box {
    background: var(--cs-bg-card);
    border: 1px solid var(--cs-border-subtle);
    border-radius: 12px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
}
.domain-search-box .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}
.domain-search-box .form-control::placeholder {
    color: var(--cs-text-muted);
}
.domain-search-box .form-control:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--cs-primary);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
    color: #fff;
}
/* === MOBILE FIXES === */

/* Fix 1: Hero badge cut off by fixed navbar on mobile */
@media (max-width: 991.98px) {
    .cs-hero {
        padding-top: 9rem; /* Increased from 6rem to clear the fixed navbar + give hero-badge room */
    }
}

/* Fix 2: Login/Register button spacing - horizontal on desktop, vertical on mobile */
@media (max-width: 991.98px) {
    .cs-navbar .btn-outline-light {
        margin-right: 0 !important;   /* Remove horizontal margin */
        margin-bottom: 1.5rem !important; /* Add vertical spacing equivalent to desktop */
    }

    /* Also remove the ms-1 left-margin on Register so it aligns properly in stacked layout */
    .cs-navbar .navbar-nav > li.nav-item {
        margin-top: 0.25rem;          /* Small breathing room between nav links and buttons */
   }
}
/* === FONT DATA === */
/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-v20-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/inter-v20-latin-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/inter-v20-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/inter-v20-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/inter-v20-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/inter-v20-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/inter-v20-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/inter-v20-latin-800.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* inter-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/inter-v20-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/inter-v20-latin-900.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}