/* ============================================================== *
 * Container styles                                               *
 * ============================================================== */

body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Helvetica Neue', Helvetica, sans-serif;
	font-weight: 300;
    transition: .3s;
	transition-delay: .4s;
	background: #1D1D1B;
}

.sr-row {
    width: 75%;
	margin: 25px auto;
    display: block;
}

.sr-row.hidden {
    display: none;
}

/* ============================================================== *
 * Text styles                                                    *
 * ============================================================== */

h1 {
	margin: 54px 0;
    font-size: 36px;
	font-weight: 300;
}

h2 {
	margin: 54px 0 28px 0;
    font-size: 30px;
	font-weight: 300;
}

p, a {
	margin: 12px 0 28px 0;
    font-size: 18px;
	line-height: 28px;
}

a, a:visited {
	color: #4281A4;
}

.sr-paragraph {
    text-align: left;
    letter-spacing: 0.75px;
    line-height: normal;
}

.sr-paragraph.dark {
    color: #1D1D1B;
}

.sr-paragraph.bright {
    color: #fff;
}

.sr-unordered-list li::marker {
	font-size: 18px;
	color: #1D1D1B;
}

.sr-unordered-list li > p,
.sr-unordered-list li > a {
	margin: 12px 0;
}

/* ============================================================== *
 * Page media-queries (sizes)                                     *
 * ============================================================== */

@media only screen and (max-width: 768px) {
    .sr-row {
        width: 85%;
    }

    h1 {
       font-size: calc(0.8 * 36px);
    }

	h2 {
		font-size: calc(0.8 * 30px);
	}

    a, p {
        font-size: calc(0.8 * 18px);
		margin-bottom: calc(0.8 * 28px);
    }
}

@media only screen and (max-width: 576px) {
    .sr-row {
        width: 95%;
    }

    h1 {
       font-size: calc(0.7 * 36px);
    }

	h2 {
		font-size: calc(0.7 * 30px);
	}

    a, p {
        font-size: calc(0.7 * 18px);
		margin-bottom: calc(0.7 * 28px);
    }
}
