@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");
:root {
--dsc-bg: #0a0a0f;
--dsc-surface: #12121a;
--dsc-surface-light: #1a1a24;
--dsc-cyan: #22d3ee;
--dsc-cyan-dim: rgba(34, 211, 238, 0.1);
--dsc-violet: #a78bfa;
--dsc-violet-dim: rgba(167, 139, 250, 0.1);
--dsc-text: #ffffff;
--dsc-text-dim: #ffffff;
--dsc-text-muted: #e2e8f0;
--dsc-border: rgba(255,255,255,0.08);
--dsc-success: #10b981;
--dsc-warning: #f59e0b;
--dsc-danger: #ef4444;
--dsc-blue: #3b82f6;
} .dsc-calc {
box-sizing: border-box;
line-height: 1.6;
font-family: 'Space Grotesk', system-ui, sans-serif;
background: var(--dsc-bg);
color: var(--dsc-text) !important;
padding: 0;
min-height: 100vh;
font-size: 15px;
position: relative;
}
.dsc-calc * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.dsc-calc input, .dsc-calc button, .dsc-calc select, .dsc-calc textarea {
font-family: inherit;
} .dsc-calc::before {
content: '';
position: fixed;
inset: 0;
background-image: 
radial-gradient(circle at 20% 50%, var(--dsc-cyan-dim) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, var(--dsc-violet-dim) 0%, transparent 50%);
opacity: 0.5;
pointer-events: none;
z-index: 0;
}
.dsc-calc::after {
content: '';
position: fixed;
inset: 0;
background-image: 
linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
background-size: 50px 50px;
pointer-events: none;
z-index: 0;
} @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4); } 50% { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); } } .dsc-wrap {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
padding: 0 20px;
} .dsc-hero {
text-align: center;
padding: 60px 20px 40px;
animation: fadeIn 0.5s;
}
.dsc-hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--dsc-cyan-dim);
border: 1px solid rgba(34, 211, 238, 0.3);
padding: 8px 16px;
border-radius: 50px;
font-size: 12px;
color: var(--dsc-cyan) !important;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
}
.dsc-hero-badge .dsc-pulse {
width: 8px;
height: 8px;
background: var(--dsc-success);
border-radius: 50%;
animation: pulse 2s infinite;
}
.dsc-hero h1 {
font-size: clamp(2rem, 5vw, 3rem);
font-weight: 700;
margin: 0 0 16px 0;
background: linear-gradient(135deg, var(--dsc-text) 0%, var(--dsc-cyan) 50%, var(--dsc-violet) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.2;
}
.dsc-hero p {
font-size: 1.1rem;
color: var(--dsc-text-dim) !important;
max-width: 650px;
margin: 0 auto;
line-height: 1.7;
} .dsc-trust-bar {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-wrap: wrap;
padding: 24px 0;
margin-bottom: 30px;
border-top: 1px solid var(--dsc-border);
border-bottom: 1px solid var(--dsc-border);
}
.dsc-trust-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 16px;
background: var(--dsc-surface);
border: 1px solid var(--dsc-border);
border-radius: 10px;
font-size: 12px;
color: var(--dsc-text-dim) !important;
text-decoration: none;
transition: all 0.3s;
}
.dsc-trust-item:hover {
border-color: var(--dsc-cyan) !important;
}
.dsc-trust-item img {
height: 36px;
width: auto;
} .dsc-progress {
margin-bottom: 30px;
padding: 0 20px;
}
.dsc-progress-bar {
display: flex;
justify-content: space-between;
max-width: 500px;
margin: 0 auto;
position: relative;
}
.dsc-progress-line {
position: absolute;
top: 16px;
left: 0;
right: 0;
height: 2px;
background: var(--dsc-border);
}
.dsc-progress-fill {
position: absolute;
top: 16px;
left: 0;
height: 2px;
background: linear-gradient(90deg, var(--dsc-cyan), var(--dsc-violet));
transition: width 0.4s ease;
width: 0%;
}
.dsc-progress-step {
flex: 1;
text-align: center;
position: relative;
z-index: 2;
cursor: pointer;
transition: transform 0.2s;
}
.dsc-progress-step:hover {
transform: translateY(-2px);
}
.dsc-progress-circle {
width: 32px;
height: 32px;
border-radius: 50%;
background: var(--dsc-surface);
border: 2px solid var(--dsc-border);
margin: 0 auto 6px;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: 700;
transition: all 0.3s;
}
.dsc-progress-step.active .dsc-progress-circle {
background: var(--dsc-cyan);
border-color: var(--dsc-cyan) !important;
color: var(--dsc-bg);
}
.dsc-progress-step.done .dsc-progress-circle {
background: var(--dsc-success);
border-color: var(--dsc-success);
color: white;
}
.dsc-progress-label {
font-size: 11px;
color: var(--dsc-text-dim) !important;
}
.dsc-progress-step.active .dsc-progress-label {
color: var(--dsc-cyan) !important;
font-weight: 600;
} .dsc-layout {
display: grid;
grid-template-columns: 1fr 340px;
gap: 30px;
align-items: start;
padding: 0 0 80px;
}
.dsc-layout.full-width {
grid-template-columns: 1fr;
}
.dsc-main {
min-width: 0;
} .dsc-sidebar {
position: relative;
}
.dsc-summary {
position: sticky;
top: 100px;
background: var(--dsc-surface);
border: 1px solid var(--dsc-border);
border-radius: 16px;
padding: 24px;
}
.dsc-summary-label {
font-size: 10px;
font-weight: 700;
color: var(--dsc-text-dim) !important;
text-transform: uppercase;
letter-spacing: 1.5px;
}
.dsc-summary-price {
font-size: 42px;
font-weight: 700;
color: var(--dsc-cyan) !important;
line-height: 1;
margin: 6px 0;
}
.dsc-summary-period {
font-size: 13px;
color: var(--dsc-text-dim) !important;
margin-bottom: 12px;
}
.dsc-badges {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-bottom: 16px;
min-height: 24px;
}
.dsc-badge {
background: var(--dsc-success);
color: white;
padding: 4px 10px;
border-radius: 6px;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
}
.dsc-badge.blue {
background: var(--dsc-blue);
}
.dsc-breakdown {
background: rgba(255,255,255,0.02);
border-radius: 10px;
padding: 14px;
margin-bottom: 14px;
}
.dsc-breakdown-title {
font-size: 10px;
font-weight: 700;
color: var(--dsc-text-dim) !important;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
}
.dsc-breakdown-row {
display: flex;
justify-content: space-between;
padding: 6px 0;
font-size: 12px;
color: var(--dsc-text-dim) !important;
border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dsc-breakdown-row:last-child {
border-bottom: none;
}
.dsc-breakdown-total {
display: flex;
justify-content: space-between;
font-weight: 700;
color: var(--dsc-cyan) !important;
padding-top: 10px;
margin-top: 6px;
border-top: 2px solid rgba(34, 211, 238, 0.3);
font-size: 13px;
}
.dsc-breakdown-value {
font-weight: 600;
color: var(--dsc-text) !important;
}
.dsc-onetime {
background: rgba(245, 158, 11, 0.05);
border: 1px solid rgba(245, 158, 11, 0.15);
border-radius: 10px;
padding: 14px;
margin-bottom: 14px;
}
.dsc-onetime-title {
font-size: 10px;
font-weight: 700;
color: var(--dsc-warning);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
}
.dsc-summary-btn {
display: block;
width: 100%;
padding: 14px;
border-radius: 10px;
font-size: 14px;
font-weight: 600;
text-align: center;
cursor: pointer;
transition: all 0.3s;
border: none;
text-decoration: none;
margin-bottom: 8px;
}
.dsc-summary-btn.primary {
background: linear-gradient(135deg, var(--dsc-cyan) 0%, #06b6d4 100%);
color: var(--dsc-bg);
}
.dsc-summary-btn.primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
} .dsc-step {
display: none;
animation: fadeIn 0.4s;
}
.dsc-step.active {
display: block;
} .dsc-card {
background: var(--dsc-surface);
border: 1px solid var(--dsc-border);
border-radius: 16px;
padding: 32px;
}
.dsc-card-title {
font-size: 1.5rem;
font-weight: 700;
color: var(--dsc-text) !important;
margin-bottom: 8px;
} .dsc-section {
margin-bottom: 32px;
}
.dsc-section-title {
font-size: 15px;
font-weight: 600;
color: var(--dsc-text) !important;
margin-bottom: 12px;
}
.dsc-required {
color: var(--dsc-danger);
} .dsc-validation-error {
background: rgba(239, 68, 68, 0.1);
border: 1px solid rgba(239, 68, 68, 0.3);
color: var(--dsc-danger);
padding: 12px 16px;
border-radius: 10px;
margin-bottom: 20px;
font-size: 14px;
font-weight: 600;
} .dsc-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 10px;
}
.dsc-option {
background: rgba(255,255,255,0.02);
border: 2px solid var(--dsc-border);
border-radius: 12px;
padding: 16px 14px;
cursor: pointer;
transition: all 0.2s;
text-align: center;
}
.dsc-option:hover {
border-color: rgba(34, 211, 238, 0.5);
}
.dsc-option.selected {
border-color: var(--dsc-cyan) !important;
background: var(--dsc-cyan-dim);
}
.dsc-option-title {
font-weight: 600;
margin-bottom: 4px;
}
.dsc-option-desc {
font-size: 11px;
color: var(--dsc-text-dim) !important;
}
.dsc-option-price {
font-size: 12px;
color: var(--dsc-cyan) !important;
margin-top: 4px;
} .dsc-industry-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 10px;
}
.dsc-industry {
background: rgba(255,255,255,0.02);
border: 2px solid var(--dsc-border);
border-radius: 10px;
padding: 14px;
text-align: center;
cursor: pointer;
transition: all 0.2s;
font-size: 13px;
font-weight: 500;
}
.dsc-industry:hover {
border-color: rgba(34, 211, 238, 0.5);
}
.dsc-industry.selected {
border-color: var(--dsc-cyan) !important;
background: var(--dsc-cyan-dim);
color: var(--dsc-cyan) !important;
} .dsc-slider-wrap {
margin-bottom: 16px;
}
.dsc-slider-head {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.dsc-slider-title {
font-size: 14px;
font-weight: 500;
color: var(--dsc-text) !important;
}
.dsc-slider-value {
font-size: 20px;
font-weight: 700;
color: var(--dsc-cyan) !important;
}
.dsc-slider {
width: 100%;
-webkit-appearance: none;
appearance: none;
height: 6px;
border-radius: 3px;
background: var(--dsc-border);
outline: none;
}
.dsc-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--dsc-cyan);
cursor: pointer;
border: 3px solid var(--dsc-bg);
box-shadow: 0 2px 8px rgba(34, 211, 238, 0.4);
}
.dsc-slider::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--dsc-cyan);
cursor: pointer;
border: 3px solid var(--dsc-bg);
box-shadow: 0 2px 8px rgba(34, 211, 238, 0.4);
}
.dsc-slider-hint {
font-size: 12px;
color: var(--dsc-text-dim) !important;
margin-top: 8px;
} .dsc-checks {
display: flex;
flex-direction: column;
gap: 10px;
}
.dsc-check {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 14px 16px;
background: rgba(255,255,255,0.02);
border: 1px solid var(--dsc-border);
border-radius: 10px;
cursor: pointer;
transition: all 0.2s;
}
.dsc-check:hover {
border-color: rgba(34, 211, 238, 0.3);
}
.dsc-check:has(input:checked) {
border-color: var(--dsc-cyan) !important;
background: var(--dsc-cyan-dim);
}
.dsc-check input {
width: 18px;
height: 18px;
accent-color: var(--dsc-cyan) !important;
flex-shrink: 0;
margin-top: 2px;
}
.dsc-check-text {
flex: 1;
font-size: 14px;
color: var(--dsc-text) !important;
}
.dsc-check-text strong {
display: block;
margin-bottom: 2px;
}
.dsc-check-text small {
display: block;
font-size: 12px;
color: var(--dsc-text-dim) !important;
font-weight: 400;
}
.dsc-check-price {
font-size: 13px;
font-weight: 600;
color: var(--dsc-cyan) !important;
white-space: nowrap;
}
.dsc-check.enhanced365 {
background: var(--dsc-violet-dim);
border-color: rgba(167, 139, 250, 0.3);
}
.dsc-check.enhanced365:has(input:checked) {
border-color: var(--dsc-violet) !important;
} .dsc-enhanced365 {
background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
border: 1px solid rgba(167, 139, 250, 0.2);
border-radius: 14px;
padding: 20px;
margin-top: 20px;
display: none;
}
.dsc-enhanced365.visible {
display: block;
}
.dsc-enhanced365-badge {
display: inline-block;
background: var(--dsc-violet);
color: white;
padding: 4px 10px;
border-radius: 6px;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 12px;
}
.dsc-enhanced365-title {
font-size: 18px;
font-weight: 700;
color: var(--dsc-text) !important;
margin: 0 0 8px 0;
}
.dsc-enhanced365-desc {
font-size: 13px;
color: var(--dsc-text-dim) !important;
margin-bottom: 16px;
line-height: 1.6;
} .dsc-tip {
background: rgba(255,255,255,0.02);
border: 1px solid var(--dsc-border);
border-radius: 10px;
padding: 14px 16px;
font-size: 13px;
color: var(--dsc-text-dim) !important;
margin-bottom: 16px;
}
.dsc-tip strong {
color: var(--dsc-text) !important;
}
.dsc-tip.warning {
background: rgba(245, 158, 11, 0.05);
border-color: rgba(245, 158, 11, 0.2);
}
.dsc-tip.warning strong {
color: var(--dsc-warning);
}
.dsc-tip.info {
background: var(--dsc-cyan-dim);
border-color: rgba(34, 211, 238, 0.2);
} .dsc-expand {
padding: 16px 0;
} .dsc-bp-security-grid-large {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 8px;
}
.dsc-bp-security-item {
font-size: 12px;
padding: 10px 12px;
background: rgba(34, 211, 238, 0.05);
border: 1px solid rgba(34, 211, 238, 0.1);
border-radius: 8px;
color: var(--dsc-text) !important;
position: relative;
padding-left: 24px;
}
.dsc-bp-security-item::before {
content: '';
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
width: 6px;
height: 6px;
background: var(--dsc-success);
border-radius: 50%;
} .dsc-contract-options {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
.dsc-contract-option {
background: rgba(255,255,255,0.02);
border: 2px solid var(--dsc-border);
border-radius: 12px;
padding: 16px;
cursor: pointer;
text-align: center;
transition: all 0.2s;
}
.dsc-contract-option:hover {
border-color: rgba(34, 211, 238, 0.5);
}
.dsc-contract-option.selected {
border-color: var(--dsc-cyan) !important;
background: var(--dsc-cyan-dim);
}
.dsc-contract-option.recommended {
position: relative;
}
.dsc-contract-option.recommended::before {
content: 'Popular';
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
background: var(--dsc-success);
color: white;
padding: 2px 10px;
border-radius: 10px;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
} .dsc-btn-group {
display: flex;
gap: 12px;
margin-top: 30px;
}
.dsc-btn {
flex: 1;
padding: 14px 24px;
border-radius: 10px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
border: none;
text-align: center;
}
.dsc-btn.primary {
background: linear-gradient(135deg, var(--dsc-cyan) 0%, #06b6d4 100%);
color: var(--dsc-bg);
}
.dsc-btn.primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
}
.dsc-btn.secondary {
background: transparent;
border: 2px solid var(--dsc-border);
color: var(--dsc-text) !important;
}
.dsc-btn.secondary:hover {
border-color: var(--dsc-cyan) !important;
color: var(--dsc-cyan) !important;
} .dsc-summary-full {
display: none;
}
.dsc-summary-full.active {
display: block;
}
.dsc-price-hero {
text-align: center;
padding: 40px 20px;
background: linear-gradient(135deg, var(--dsc-surface) 0%, var(--dsc-surface-light) 100%);
border: 1px solid var(--dsc-border);
border-radius: 20px;
margin-bottom: 30px;
}
.dsc-price-hero-label {
font-size: 11px;
font-weight: 700;
color: var(--dsc-text-dim) !important;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 8px;
}
.dsc-price-hero-amount {
font-size: 64px;
font-weight: 700;
color: var(--dsc-cyan) !important;
line-height: 1;
}
.dsc-price-hero-period {
font-size: 16px;
color: var(--dsc-text-dim) !important;
margin-top: 4px;
}
.dsc-price-hero-annual {
font-size: 14px;
color: var(--dsc-text-muted) !important;
margin-top: 12px;
}
.dsc-price-hero-badges {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 16px;
flex-wrap: wrap;
}
.dsc-disclaimer {
font-size: 11px;
color: var(--dsc-text-muted) !important;
margin-top: 20px;
}
.dsc-disclaimer-small {
font-size: 10px;
color: var(--dsc-text-muted) !important;
margin-top: 12px;
} .dsc-summary-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.dsc-summary-card {
background: var(--dsc-surface);
border: 1px solid var(--dsc-border);
border-radius: 14px;
padding: 24px;
}
.dsc-summary-card-title {
font-size: 11px;
font-weight: 700;
color: var(--dsc-text-dim) !important;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 16px;
}
.dsc-summary-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.dsc-summary-list-item {
display: flex;
justify-content: space-between;
font-size: 13px;
padding: 8px 0;
border-bottom: 1px solid rgba(255,255,255,0.05);
color: var(--dsc-text-dim) !important;
}
.dsc-summary-list-item:last-child {
border-bottom: none;
}
.dsc-summary-list-value {
font-weight: 600;
color: var(--dsc-text) !important;
} .dsc-included-full {
background: var(--dsc-cyan-dim);
border: 1px solid rgba(34, 211, 238, 0.15);
border-radius: 14px;
padding: 28px;
margin-bottom: 24px;
}
.dsc-included-full-title {
font-size: 12px;
font-weight: 700;
color: var(--dsc-cyan) !important;
text-transform: uppercase;
margin-bottom: 20px;
text-align: center;
}
.dsc-included-full-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 10px;
}
.dsc-included-item {
font-size: 12px;
padding-left: 16px;
position: relative;
color: var(--dsc-text) !important;
}
.dsc-included-item::before {
content: '';
position: absolute;
left: 0;
top: 6px;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--dsc-success);
} .dsc-included {
background: var(--dsc-cyan-dim);
border: 1px solid rgba(34, 211, 238, 0.15);
border-radius: 10px;
padding: 14px;
margin-bottom: 14px;
}
.dsc-included-title {
font-size: 10px;
font-weight: 700;
color: var(--dsc-cyan) !important;
text-transform: uppercase;
margin-bottom: 10px;
}
.dsc-included-list {
display: grid;
gap: 4px;
} .dsc-cta {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
margin-top: 30px;
padding-top: 30px;
border-top: 1px solid var(--dsc-border);
}
.dsc-cta-btn {
padding: 16px 36px;
border-radius: 12px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
border: none;
text-decoration: none;
transition: all 0.3s;
}
.dsc-cta-btn.primary {
background: linear-gradient(135deg, var(--dsc-cyan) 0%, #06b6d4 100%);
color: var(--dsc-bg);
}
.dsc-cta-btn.primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
}
.dsc-cta-btn.secondary {
background: transparent;
border: 2px solid var(--dsc-border);
color: var(--dsc-text) !important;
}
.dsc-cta-btn.secondary:hover {
border-color: var(--dsc-cyan) !important;
color: var(--dsc-cyan) !important;
} .dsc-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
z-index: 10000;
padding: 20px;
overflow-y: auto;
}
.dsc-modal.active {
display: flex;
align-items: center;
justify-content: center;
}
.dsc-modal-content {
background: var(--dsc-surface);
border: 1px solid var(--dsc-border);
border-radius: 20px;
padding: 36px;
max-width: 500px;
width: 100%;
position: relative;
}
.dsc-modal-close {
position: absolute;
top: 16px;
right: 16px;
font-size: 28px;
color: var(--dsc-text) !important;
background: transparent;
border: none;
cursor: pointer;
line-height: 1;
}
.dsc-modal-close:hover {
color: var(--dsc-cyan) !important;
}
.dsc-modal-title {
font-size: 1.5rem;
font-weight: 700;
color: var(--dsc-text) !important;
margin-bottom: 24px;
} .dsc-form-group {
margin-bottom: 16px;
}
.dsc-form-label {
display: block;
font-size: 13px;
font-weight: 600;
color: var(--dsc-text-dim) !important;
margin-bottom: 6px;
}
.dsc-form-input, .dsc-form-textarea, .dsc-form-select {
width: 100%;
background: var(--dsc-bg);
border: 1px solid var(--dsc-border);
color: var(--dsc-text) !important;
padding: 14px 16px;
border-radius: 10px;
font-size: 15px;
}
.dsc-form-input:focus, .dsc-form-textarea:focus, .dsc-form-select:focus {
outline: none;
border-color: var(--dsc-cyan) !important;
box-shadow: 0 0 0 3px var(--dsc-cyan-dim);
}
.dsc-form-textarea {
min-height: 100px;
resize: vertical;
}
.dsc-form-select {
cursor: pointer;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
background-size: 20px;
padding-right: 44px;
} .dsc-success {
text-align: center;
padding: 20px 0;
}
.dsc-success-icon {
font-size: 60px;
color: var(--dsc-success);
margin-bottom: 20px;
}
.dsc-success-title {
font-size: 1.5rem;
font-weight: 700;
color: var(--dsc-text) !important;
margin-bottom: 20px;
} .dsc-mobile-menu {
display: none !important;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dsc-surface);
border-top: 1px solid var(--dsc-border);
padding: 12px 16px;
z-index: 1000;
}
.dsc-mobile-menu-steps {
display: flex;
gap: 8px;
}
.dsc-mobile-step {
flex: 1;
padding: 10px;
border-radius: 8px;
background: rgba(255,255,255,0.02);
border: 1px solid var(--dsc-border);
color: var(--dsc-text-dim) !important;
font-size: 13px;
font-weight: 600;
cursor: pointer;
}
.dsc-mobile-step.active {
background: var(--dsc-cyan);
border-color: var(--dsc-cyan) !important;
color: var(--dsc-bg);
}
.dsc-mobile-menu-price {
margin-top: 8px;
text-align: center;
font-size: 20px;
font-weight: 700;
color: var(--dsc-cyan) !important;
} .dsc-tools-banner {
background: linear-gradient(135deg, var(--dsc-violet-dim) 0%, var(--dsc-cyan-dim) 100%);
border: 1px solid var(--dsc-border);
border-radius: 16px;
padding: 28px;
text-align: center;
margin-top: 40px;
}
.dsc-tools-banner h3 {
font-size: 1.1rem;
margin: 0 0 8px 0;
color: var(--dsc-text) !important;
}
.dsc-tools-banner > p {
color: var(--dsc-text-dim) !important;
font-size: 14px;
margin: 0 0 20px 0;
}
.dsc-tools-links {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
}
.dsc-tool-link {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
background: var(--dsc-surface);
border: 1px solid var(--dsc-border);
border-radius: 10px;
color: var(--dsc-text) !important;
text-decoration: none;
font-size: 13px;
font-weight: 500;
transition: all 0.3s;
}
.dsc-tool-link:hover {
border-color: var(--dsc-cyan) !important;
color: var(--dsc-cyan) !important;
transform: translateY(-2px);
}
.dsc-tool-link svg {
width: 16px;
height: 16px;
opacity: 0.7;
} .dsc-rates {
background: var(--dsc-violet-dim);
border: 1px solid rgba(167, 139, 250, 0.2);
border-radius: 12px;
padding: 20px;
margin: 24px 0;
}
.dsc-rates-title {
font-size: 11px;
font-weight: 700;
color: var(--dsc-violet) !important;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
}
.dsc-rates-subtitle {
font-size: 11px;
color: var(--dsc-text-dim) !important;
margin-bottom: 12px;
}
.dsc-rates-row {
display: flex;
justify-content: space-between;
font-size: 13px;
padding: 6px 0;
border-bottom: 1px solid rgba(167, 139, 250, 0.1);
color: var(--dsc-text-dim) !important;
}
.dsc-rates-row:last-child {
border-bottom: none;
}
.dsc-rates-value {
font-weight: 600;
color: var(--dsc-text) !important;
} .dsc-contract-opt {
background: rgba(255,255,255,0.02);
border: 2px solid var(--dsc-border);
border-radius: 12px;
padding: 16px 12px;
cursor: pointer;
text-align: center;
transition: all 0.2s;
}
.dsc-contract-opt:hover {
border-color: rgba(34, 211, 238, 0.5);
}
.dsc-contract-opt.selected {
border-color: var(--dsc-cyan) !important;
background: var(--dsc-cyan-dim);
}
.dsc-contract-opt-title {
font-weight: 600;
font-size: 14px;
color: var(--dsc-text) !important;
}
.dsc-contract-opt-premium {
font-size: 11px;
color: var(--dsc-warning);
margin-top: 4px;
}
.dsc-contract-opt-discount {
font-size: 11px;
color: var(--dsc-success);
margin-top: 4px;
} .dsc-toggle-wrap {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.dsc-toggle-label {
font-size: 14px;
font-weight: 500;
color: var(--dsc-text) !important;
}
.dsc-toggle {
position: relative;
width: 50px;
height: 26px;
}
.dsc-toggle input {
opacity: 0;
width: 0;
height: 0;
}
.dsc-toggle-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--dsc-border);
border-radius: 26px;
transition: 0.3s;
}
.dsc-toggle-slider::before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 3px;
bottom: 3px;
background-color: var(--dsc-text) !important;
border-radius: 50%;
transition: 0.3s;
}
.dsc-toggle input:checked + .dsc-toggle-slider {
background-color: var(--dsc-cyan) !important;
}
.dsc-toggle input:checked + .dsc-toggle-slider::before {
transform: translateX(24px);
} .dsc-migration-info {
background: rgba(59, 130, 246, 0.1);
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: 10px;
padding: 14px 16px;
font-size: 13px;
color: var(--dsc-text-dim) !important;
margin-top: 12px;
}
.dsc-migration-info strong {
color: var(--dsc-blue);
} .dsc-footer-links {
display: flex;
justify-content: center;
gap: 24px;
flex-wrap: wrap;
padding: 32px 0;
margin-top: 40px;
border-top: 1px solid var(--dsc-border);
}
.dsc-footer-link {
color: var(--dsc-text-dim) !important;
text-decoration: none;
font-size: 14px;
transition: color 0.2s;
}
.dsc-footer-link:hover {
color: var(--dsc-cyan) !important;
} @media (max-width: 900px) {
.dsc-layout {
grid-template-columns: 1fr;
}
.dsc-sidebar {
order: -1;
}
.dsc-summary {
position: static;
}
.dsc-summary-grid {
grid-template-columns: 1fr;
}
.dsc-bp-security-grid-large {
grid-template-columns: repeat(2, 1fr);
}
.dsc-hero h1 {
font-size: 2rem;
}
.dsc-trust-bar {
gap: 10px;
}
.dsc-contract-options {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.dsc-mobile-menu {
display: flex !important;
flex-direction: column;
}
.dsc-calc {
padding-bottom: 120px;
}
.dsc-price-hero-amount {
font-size: 48px;
}
.dsc-options {
grid-template-columns: 1fr;
}
.dsc-industry-grid {
grid-template-columns: repeat(2, 1fr);
}
.dsc-included-full-grid {
grid-template-columns: 1fr;
}
.dsc-bp-security-grid-large {
grid-template-columns: repeat(2, 1fr);
}
.dsc-contract-options {
grid-template-columns: 1fr;
}
.dsc-btn-group {
flex-direction: column;
}
.dsc-cta {
flex-direction: column;
}
.dsc-cta-btn {
width: 100%;
text-align: center;
}
.dsc-hero {
padding: 40px 20px 30px;
}
.dsc-card {
padding: 24px;
}
} .dsc-calculator *,
.dsc-calculator *::before,
.dsc-calculator *::after {
color: inherit !important;
}
.dsc-calculator {
color: #ffffff !important;
}
.dsc-calculator h1,
.dsc-calculator h2,
.dsc-calculator h3,
.dsc-calculator h4,
.dsc-calculator h5,
.dsc-calculator h6,
.dsc-calculator p,
.dsc-calculator span,
.dsc-calculator label,
.dsc-calculator div,
.dsc-calculator input,
.dsc-calculator select,
.dsc-calculator option,
.dsc-calculator button,
.dsc-calculator a,
.dsc-calculator li,
.dsc-calculator td,
.dsc-calculator th,
.dsc-calculator small,
.dsc-calculator strong,
.dsc-calculator em {
color: #ffffff !important;
}
.dsc-calculator .hint,
.dsc-calculator .dsc-hint,
.dsc-calculator [class*="hint"],
.dsc-calculator [class*="muted"],
.dsc-calculator [class*="dim"],
.dsc-calculator [class*="secondary"],
.dsc-calculator [class*="subtle"] {
color: #e2e8f0 !important;
}
.dsc-calculator .dsc-step-number {
color: #0a0a0f !important;
}
.dsc-calculator input[type="text"],
.dsc-calculator input[type="number"],
.dsc-calculator input[type="email"],
.dsc-calculator select {
color: #ffffff !important;
}
.dsc-calculator input::placeholder {
color: #cbd5e1 !important;
} .dsc-proposal-section {
background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%) !important;
border: 1px solid rgba(34, 211, 238, 0.3) !important;
border-radius: 16px !important;
padding: 32px !important;
margin-top: 40px !important;
}
.dsc-proposal-header {
display: flex !important;
align-items: flex-start !important;
gap: 16px !important;
margin-bottom: 24px !important;
}
.dsc-proposal-icon {
background: linear-gradient(135deg, var(--dsc-cyan) 0%, var(--dsc-violet) 100%) !important;
border-radius: 12px !important;
padding: 12px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
flex-shrink: 0 !important;
}
.dsc-proposal-icon svg {
color: #0a0a0f !important;
}
.dsc-proposal-title-group {
flex: 1 !important;
}
.dsc-proposal-title {
font-size: 1.5rem !important;
font-weight: 700 !important;
color: #ffffff !important;
margin-bottom: 4px !important;
}
.dsc-proposal-subtitle {
color: #e2e8f0 !important;
font-size: 0.95rem !important;
}
.dsc-proposal-form {
display: flex !important;
flex-direction: column !important;
gap: 16px !important;
}
.dsc-proposal-row {
display: grid !important;
grid-template-columns: 1fr 1fr !important;
gap: 16px !important;
}
@media (max-width: 600px) {
.dsc-proposal-row {
grid-template-columns: 1fr !important;
}
}
.dsc-proposal-section .dsc-form-group {
margin-bottom: 0 !important;
}
.dsc-proposal-section .dsc-form-label {
color: #ffffff !important;
font-weight: 600 !important;
margin-bottom: 6px !important;
display: block !important;
}
.dsc-proposal-section .dsc-form-input {
background: rgba(255, 255, 255, 0.1) !important;
border: 1px solid rgba(255, 255, 255, 0.2) !important;
color: #ffffff !important;
padding: 12px 16px !important;
border-radius: 8px !important;
font-size: 1rem !important;
width: 100% !important;
box-sizing: border-box !important;
}
.dsc-proposal-section .dsc-form-input::placeholder {
color: #94a3b8 !important;
}
.dsc-proposal-section .dsc-form-input:focus {
outline: none !important;
border-color: var(--dsc-cyan) !important;
box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2) !important;
}
.dsc-proposal-btn {
display: flex !important;
align-items: center !important;
justify-content: center !important;
gap: 10px !important;
padding: 16px 32px !important;
font-size: 1.1rem !important;
font-weight: 600 !important;
margin-top: 8px !important;
}
.dsc-proposal-btn:disabled {
opacity: 0.7 !important;
cursor: not-allowed !important;
}
.dsc-proposal-hint {
text-align: center !important;
color: #94a3b8 !important;
font-size: 0.85rem !important;
margin-top: 4px !important;
}
.dsc-proposal-success {
background: rgba(16, 185, 129, 0.2) !important;
border: 1px solid rgba(16, 185, 129, 0.4) !important;
border-radius: 8px !important;
padding: 12px 16px !important;
color: #10b981 !important;
display: flex !important;
align-items: center !important;
gap: 8px !important;
margin-top: 12px !important;
} @keyframes dsc-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.dsc-spinner {
animation: dsc-spin 1s linear infinite !important;
}@font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4yoqhmva.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ygqhmva.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ycqhmva.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4y6qha.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4yoqhmva.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ygqhmva.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ycqhmva.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4y6qha.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4yoqhmva.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ygqhmva.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ycqhmva.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4y6qha.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4yoqhmva.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ygqhmva.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ycqhmva.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4y6qha.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4yoqhmva.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ygqhmva.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ycqhmva.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4y6qha.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4yoqhmva.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ygqhmva.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ycqhmva.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4y6qha.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4yoqhmva.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ygqhmva.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4ycqhmva.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldiuaomqnqcsa88c7o9yz4kmcoog4koz4y6qha.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko70yyyga.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko50yyyga.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko40yyyga.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko20yw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko70yyyga.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko50yyyga.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko40yyyga.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko20yw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko70yyyga.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko50yyyga.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko40yyyga.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko20yw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko70yyyga.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko50yyyga.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko40yyyga.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko20yw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko70yyyga.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko50yyyga.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko40yyyga.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko20yw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko70yyyga.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko50yyyga.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko40yyyga.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko20yw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko70yyyga.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko50yyyga.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko40yyyga.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/plusjakartasans-ldioaomqnqcsa88c7o9yz4kmcoog4ko20yw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.woff2) format('woff2');
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.woff2) format('woff2');
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
} @font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://deadsimplecomputing.co.uk/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}