:root {
    --blue: #002654;
    --red: #ed2939;
    --white: #ffffff;
    --gray: #d9d9d9;
    --black: #0b0d10;
    --dark-gray: #161a20;
}

/* Reset */
html, body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* Global */
body {
    background-color: var(--black);
    color: var(--gray);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

/* Sections */
section {
    padding: 60px 20px;
}

/* HERO */
.hero {
    background-color: transparent;
    border-bottom: 1px solid #1f2430;
}

.hero h1 {
    color: var(--white);
}

.hero h1 span {
    color: var(--red);
}

.hero p {
    color: var(--gray);
}

/* Logo */
.logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
    margin: auto auto auto auto;
}

/* Titles */
h1, h2 {
    font-weight: 600;
}

h2 {
    color: var(--white);
}

/* Text blocks */
section p {
    max-width: 720px;
    margin: 0 auto 15px auto;
    line-height: 1.6;
}

/* SERVICES */
.services {
    background-color: transparent;
	border-top: 1px solid #1f2430;
}

.service-box {
    border-left: 3px solid var(--red);
    padding-left: 15px;
    margin: 25px auto;
    max-width: 620px;
    text-align: left;
    color: var(--gray);
}

/* CONTACT */
.contact {
    background-color: transparent;
    border-top: 1px solid #1f2430;
}

.contact h2 {
    color: var(--white);
}

/* Links */
a {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background-color: transparent;
    color: #777;
    font-size: 0.85rem;
    padding-bottom: 20px;
}
