section {
    padding : 30px 0;
}

section h1 {
    margin      : 0;
    margin-bottom: 30px;
    text-align  : center;
    font-family : 'Open Sans', sans-serif;
    font-weight : 300;
    font-size   : 33px;
}

section h2 {
    margin      : 0;
    margin-top  : 50px;
    text-align  : left;
    font-family : 'Open Sans', sans-serif;
    font-weight : 300;
    font-size   : 24px;
    cursor      : pointer;
}

section h2:hover {
    font-weight : 600;
}

section p {
    margin      : 0 auto;
    margin-top  : 20px;
    text-align  : left;
    font-family : 'Open Sans', sans-serif;
    font-weight : 300;
    font-size   : 16px;
}

section.FAQ {
    padding : 30px 0;
}

section.FAQ h1 {
    margin      : 0;
    text-align  : center;
    font-family : 'Open Sans', sans-serif;
    font-weight : 300;
    font-size   : 33px;
}

section.FAQ h2 {
    margin      : 0;
    margin-top  : 50px;
    text-align  : left;
    font-family : 'Open Sans', sans-serif;
    font-weight : 300;
    font-size   : 24px;
    cursor      : pointer;
}

section.FAQ h2:hover {
    font-weight : 600;
}

section.FAQ p {
    margin      : 0 auto;
    margin-top  : 20px;
    text-align  : left;
    font-family : 'Open Sans', sans-serif;
    font-weight : 300;
    font-size   : 16px;
}

section.time-calculator h1 {
    margin      : 0;
    text-align  : center;
    font-family : 'Open Sans', sans-serif;
    font-weight : 300;
    font-size   : 33px;
}

.calculation-area {
	position: relative;
	border: solid #EBEBEB 1px;
    border-radius: 5px;
    padding: 0;
    margin: 15px 0 0 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 0;
    box-sizing: border-box;
}
.calculation-area * {
	font-size: initial;
}
.calculation-area-left {
	padding: 30px;
	height: 100%;
	vertical-align: top;
	box-sizing: border-box;
}
.calculation-area-right {
	background-color: #124C8A;
	color: #fff;
	padding: 30px;
	box-sizing: border-box;
	/* position: absolute;
	top: 0;
	bottom: 0; */
}
.calculation-area-bottom {
	background-color: #124C8A;
	color: #fff;
	margin: 0 -15px -15px -15px;
	padding: 15px 0;
}
.calculation-area-bottom p {
	margin: 0;
	text-align: center;
}
.discounts {
	margin-top: 15px;
	padding: 5px;
	border-radius: 1000px;
	background-color: white;
	color: black;
}

input[type=range] {
	width: 100%;
	border-radius: 10px;
	height: 10px;
    margin: 10px 0;
    -webkit-appearance: none;
    background: #cce5ff;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
input[type=range]:focus {
	outline: none;
}
input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	background-color: #004085;
	border-radius: 10px;
	position: relative;
	width: 20px;
	height: 20px;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.2);
}
input[type=range]::-moz-range-thumb {
	-webkit-appearance: none;
	background-color: #004085;
	border-radius: 10px;
	position: relative;
	width: 20px;
	height: 20px;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.2);
}
output {
	display: block;
	color: #fff;
}

#minutes-required {
    font-size: 57px;
    line-height: 55px;
}

#minutes-description {
    font-size: 17px;
    margin: 0;
}
.minutes p {
	text-align: center;
}
.cards .multi-line {
	padding: 22px 10px !important;
}
.cards .multi-line span {
	line-height: 24px !important;
}

#header {
    background: linear-gradient(to right, #367CDA, #224C86);
}

@media screen and (max-width: 580px) {
	.calculation-area-left {
		display: block;
		width: 100%;
	}
	.calculation-area-right {
		display: block;
		width: 100%;
		position: relative;
	}
}
@media (max-width: 767px) {
	.cards .multi-line {
		padding: 12px 10px !important;
	}
}