html,
body {
	margin: 0;
	padding: 0;
	font-family: 'Palanquin';
	background-color: #fff;
	width: 100%;
	color: #1d1d1d;
}

button, input {
    -webkit-appearance: none;
	outline: none;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}

header {
    border-color: rgba(223,225,229,0);
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #e9e9e9;
    height: 95px;
    z-index: 99;
}

nav {
	position: absolute;
	right: 5%;
	z-index: 5;
	top: 0;
	bottom: 0;
	display: block;
	height: 45px;
	line-height: 45px;
	margin: auto;
}

main {
	overflow: hidden;
}

.page {
	width: 90%;
	margin: auto;
	padding-top: 110px;
}

section {
	position: relative;
	padding: 5%;
	box-sizing: border-box;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 110px;
}

#switch {
	position: absolute;
	color: white;
	margin-left: auto;
	margin-top: 25px;
	font-size: 16px;
	right: 5%;
	margin-right: 260px;
	cursor: pointer;
	z-index: 2;
	line-height: 44px;
	display: none;
}

#switch a {
	color: #c7d8f3;
	cursor: pointer;
}

section.right {
	text-align: left;
}

section.right .title,
section.right .subtitle {
	margin-left: 53%;
	z-index: 5;
}

section.right .btn {
	margin-left: 53%;
	z-index: 5;
	margin-right: auto;
}

section.left {
	text-align: left;
}

section.left .title,
section.left .subtitle {
	margin-right: 53%;
	z-index: 5;
}

section.left .btn {
	margin-left: 0;
	margin-right: auto;
	z-index: 5;
}

section.center {
	margin: auto;
	width: 80%;
	max-width: 900px;
}

section.center .title,
section.center .subtitle {
	z-index: 5;
	max-width: auto !important;
}

section.center .btn {
	margin-left: auto;
	z-index: 5;
	margin-right: auto;
}

section.left .subtitle, section.right .subtitle {
	max-width: 522px;
}

.faq-box {
	padding-bottom: 0;
}

.last-box {
	padding-top: 0;
	padding-bottom: 0;
}

.last-box h1 {
	margin-top: 0;
}

strong { 
	font-weight: 900 !important; 
}

.btn {
	text-align: center;
	border-radius: 1.5em;
	padding: 0.7em 1.8em;
	border: 2px solid #009dfe;
	list-style-type: none;
	color: #009dfe;
	text-decoration: none;
	min-width: 140px;
	margin-top: 25px;
	background-color: transparent;
	font-family: "Montserrat";
	font-weight: 600;
	cursor: pointer;
	transition: .4s ease !important;
	width: auto;
}

.btn:hover {
	background-color: #009dfe;
	color: #fff;
}

.title {
	font-family: 'Montserrat';
	line-height: 7vh;
	color: #000;
	font-size: 4vh;
}

.subtitle {
	font-family: 'Palanquin';
	line-height: 28px;
	color: #1d1d1d;
	font-size: 18px;
	margin-top: 10px;
	font-weight: 400;
}

#brandlogo {
	height: 45px;
	position: absolute;
	left: 5%;
	margin-top: 25px;
}

.left .images--effect {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	min-height: 100vh;
	height: 100%;
	width: 50%;
}

.right .images--effect {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	min-height: 100vh;
	height: 100%;
	width: 50%;
}

footer {
	width: 100%;
	background: #e9e9e9;
	position: relative;
	color: #000;
	padding-top: 20px;
	padding-bottom: 10px;
}

footer a {
	color: #000;
	margin-right: 7px;
	text-decoration: none;
	font-size: 14px;
}

footer table {
	width: 85%;
	table-layout: fixed;
	margin: auto;
}

footer table td {
	padding: 5px;
	text-align: center;
}

footer p {
	margin: 0;
	font-size: 13px;
}

footer p.small, footer a.small  {
    font-size: 10px;
}

#logofooter {
	max-width: 90%;
	width: 110px;
	height: auto;
}

footer tr.credits td {
	font-size: 12px;
	text-align: center;
	color: #666;
	padding-top: 20px;
}

footer tr.credits td span {
	display: inline-block;
	margin: 0 10px;
}

.footercredit {
	font-size: 12px;
	text-align: center;
	color: #666;
}


.only_mobile {
    display: none;
}