@charset "UTF-8";

:root {
	/* Delta Colors */
	--mj-purple: #6673FD;
	--mj-purple-rgb: 102,115,253;
	
	--mj-light-purple: #C9BAFC;
	--mj-light-purple-rgb: 201,186,252;
	
	--mj-dark-purple: #2C2E65;
	--mj-dark-purple-rgb: 44,46,101;
	
	--mj-orange: #FAAA8D;
	--mj-orange-rgb: 250,170,141;
	
	
	/* Chota overrides */
	--color-primary: var(--mj-purple);
}

@font-face {
	font-family: 'Poppins-ExtraLight';
	src: url('../font/poppins/Poppins-ExtraLight.ttf') format('truetype');
	font-weight: 200;
	font-style: normal
}

@font-face {
	font-family: 'Poppins-Light';
	src: url('../font/poppins/Poppins-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal
}

@font-face {
	font-family: 'Poppins-Regular';
	src: url('../font/poppins/Poppins-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: 'Poppins-SemiBold';
	src: url('../font/poppins/Poppins-SemiBold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal
}

@font-face {
	font-family: 'Hanno-Regular';
	src: url('../font/hanno/Hanno-Regular.woff') format('woff'),
		url('../font/hanno/Hanno-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal
}

html {
	box-sizing: border-box;
	width: 100%;
	min-height: 100%;
	font-family: 'Poppins-Regular';
	padding: 0;
	color: #fff;
}

*, *:before, *:after {
	box-sizing: inherit;
	outline: none;
}

body {
	width: 100%;
	font-family: 'Poppins-Regular';
	padding: 0;
	color: #fff;
	overflow: auto;
	background: linear-gradient(124deg, rgba(var(--mj-purple-rgb), 1) 0%, rgba(var(--mj-dark-purple-rgb), 1) 100%);
}

#page-content {
	max-width: 600px;
	height: 100%;
	padding: 2em;
	margin: 0 auto;
	font-family: 'Poppins-Regular';
	background-color: transparent;
	color: #fff;
}

header {
	width: 100%;
	height: 80px;
	background-color: rgba(201, 186, 252, 0.1);
}

.header-title {
	color: #fff;
	font-family: 'Hanno-Regular';
	font-size: 1.5em;
	letter-spacing: 1px;
}

h1 {
	margin: 0 0 .5em 0;
}

p {
	line-height: 1.3;
	margin-bottom: 0;
}

.service {
	background: #fff;
	display: inline-block;
	padding: 0;
	border-radius: 16px;
	margin: 0 0 1em 0;
	vertical-align: top;
	overflow: hidden;
	line-height: 1;
	color: var(--mj-purple);
}

.service-body {
	padding: 1em;
}

.service-image {
	font-size: 0;
}

.service-description {
	margin-bottom: 1em;
}

.button {
	padding: .8em 1em;
	float: none;
	background-color: var(--mj-purple);
	border: 2px solid var(--mj-purple);
	border-radius: 1000px;
	color: #fff;
	text-align: left;
	box-shadow: 0px 10px 10px rgba(var(--mj-dark-purple-rgb), 0.16);
	font-family: 'Poppins-ExtraLight';
	position: relative;
	white-space: nowrap;
	background-position: right 1em center;
	background-repeat: no-repeat;
}

.contact .col-12 {
	background-color: rgba(201, 186, 252, 0.1);
	color: #fff;
	border-radius: 16px;
	padding: 1em;
}

.contact p {
	text-align: center
}

.contact a {
	color: #fff;
	text-decoration: underline;
}

.icon {
	width: 40px;
	vertical-align: middle;
	margin-right: 20px;
}

.footer {
	margin-top: 2em;
}

.footer p {
	font-size: 80%;
	text-align: center;
	color: var(--mj-light-purple);
}

@media only screen and (max-width: 600px) {
	.service-image {
		background-image: none !important;
	}
	
/*
	.contact {
		padding: 1em .5em 0 .5em;
	}
*/
	
	.contact img {
		display: block;
		margin: 0 auto 6px auto;
	}

	.contact {
		text-align: center;
	}
	
}

@media only screen and (min-width: 600px) {
	.service {
		min-height: 1px;
		display: flex;
	}
	
	.service-image {
		width: 100%;
		float: left;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}
	
	.service-body {
		width: 100%;
	}
	
	.service-image img {
		display: none;
	}
	
	.service-title {
		margin-top: 0;
	}
	
}