* {
	box-sizing: border-box;
}
body {
	min-height: 100%;
	height: 100%;
	background-size: cover;
   /*background-image:url(http://theartmad.com/wp-content/uploads/Dark-Grey-Texture-Wallpaper-5.jpg);
   */
	background-position: top center;
	font-family: helvetica neue, helvetica, arial, sans-serif;
	font-weight: 200;
}
body .modal-active {
	overflow: hidden;
}
#modal-container {
	position: fixed;
	display: table;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	transform: scale(0);
	transform-origin: 0 0;
	z-index: 1;
}
#modal-container.four {
	z-index: 0;
	transform: scale(1);
}
#modal-container.four .modal-background {
	background: rgba(0, 0, 0, .7);
}
#modal-container.four .modal-background .modal {
	animation: blowUpModal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.four + .contentM {
	animation: blowUpContent 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.four.out {
	transform: scale(0);
}
#modal-container.four.out .modal-background .modal {
	animation: blowUpModalTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.four.out + .contentM {
	animation: blowUpContentTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container .modal-background {
	display: table-cell;
	background: rgba(165, 43, 43, 0.8);
	text-align: center;
	vertical-align: middle;
}
#modal-container .modal-background .modal {
	background: white;
	padding: 50px;
	display: inline-block;
	border-radius: 60px;
	font-weight: 300;
	position: relative;
	margin-right: 300px;
	margin-left: 300px;
}
.modal_title {
	font-family: 'Quicksand', sans-serif;
	color: #000;
	font-size: 55px;
	font-weight: 800;
	text-align: right;
	display: inline;
}
.modal_p {
	font-family: 'Quicksand', sans-serif;
	color: #000;
	font-size: 22px;
	font-weight: 500;
	text-align: left;
}
.modaliconsize {
	height: 7%;
	width: 7%;
	margin-right: 30px;
	margin-bottom: 30px;
	display: inline;
}
.modal_bullet {
	font-family: 'Quicksand', sans-serif;
	color: #000;
	font-size: 28px;
	font-weight: 400;
}
.modal_sub {
	font-family: 'Quicksand', sans-serif;
	color: #908eef;
	font-size: 32px;
	font-weight: 800;
	text-align: center;
	margin-top: -10px;
}
.modal ul {
	list-style: none;
	text-align: left;
	padding: 0;
	margin: 0;
}
.modal li {
	padding-left: 1em;
	text-indent: -0.7em;
}
.modal li::before {
	content: "• ";
	color: #908eef;
   /* or whatever color you prefer */
	size: 20px;
	text-align: left;
}
.modal_btn {
	margin-top: 40px;
}
.modal_btn a {
	font-family: 'Quicksand', sans-serif;
	font-size: 26px;
	font-weight: 700;
	background-color: transparent;
	color: #908eef;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all 0.5s;
	margin-top: 80px;
	background-color: #fff;
	border-radius: 80px;
	width: 400px;
	height: 100px;
	border-style: solid;
	border-color: #908eef;
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 40px;
}
.contentM {
	min-height: 100%;
	height: 100%;
	background: transparent;
	position: relative;
}
.contentM h1 {
	padding: 75px 0 30px 0;
	text-align: center;
	font-size: 30px;
	line-height: 30px;
}
.contentM .buttons {
	
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
.contentM .buttons .button {
	display: inline-block;
	text-align: center;
	padding: 10px 15px;
	margin: 10px;
	background: red;
	font-size: 18px;
	background-color: #efefef;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
	cursor: pointer;
}
.contentM .buttons .button:hover {
	color: white;
	background: #009bd5;
}
@keyframes unfoldIn {
	0% {
		transform: scaleY(0.005) scaleX(0);
   }
	50% {
		transform: scaleY(0.005) scaleX(1);
   }
	100% {
		transform: scaleY(1) scaleX(1);
   }
}
@keyframes unfoldOut {
	0% {
		transform: scaleY(1) scaleX(1);
   }
	50% {
		transform: scaleY(0.005) scaleX(1);
   }
	100% {
		transform: scaleY(0.005) scaleX(0);
   }
}
@keyframes zoomIn {
	0% {
		transform: scale(0);
   }
	100% {
		transform: scale(1);
   }
}
@keyframes zoomOut {
	0% {
		transform: scale(1);
   }
	100% {
		transform: scale(0);
		transform-origin: 0 0;
   }
}
@keyframes fadeIn {
	0% {
		background: rgba(0, 0, 0, .0);
   }
	100% {
		background: rgba(0, 0, 0, .7);
   }
}
@keyframes fadeOut {
	0% {
		background: rgba(0, 0, 0, .7);
   }
	100% {
		background: rgba(0, 0, 0, .0);
   }
}
@keyframes scaleUp {
	0% {
		transform: scale(0.8) translateY(1000px);
		opacity: 0;
   }
	100% {
		transform: scale(1) translateY(0px);
		opacity: 1;
   }
}
@keyframes scaleDown {
	0% {
		transform: scale(1) translateY(0px);
		opacity: 1;
   }
	100% {
		transform: scale(0.8) translateY(1000px);
		opacity: 0;
   }
}
@keyframes scaleBack {
	0% {
		transform: scale(1);
   }
	100% {
		transform: scale(0.85);
   }
}
@keyframes scaleForward {
	0% {
		transform: scale(0.85);
   }
	100% {
		transform: scale(1);
   }
}
@keyframes quickScaleDown {
	0% {
		transform: scale(1);
   }
	99.9% {
		transform: scale(1);
   }
	100% {
		transform: scale(0);
   }
}
@keyframes slideUpLarge {
	0% {
		transform: translateY(0%);
   }
	100% {
		transform: translateY(-100%);
   }
}
@keyframes slideDownLarge {
	0% {
		transform: translateY(-100%);
   }
	100% {
		transform: translateY(0%);
   }
}
@keyframes moveUp {
	0% {
		transform: translateY(150px);
   }
	100% {
		transform: translateY(0);
   }
}
@keyframes moveDown {
	0% {
		transform: translateY(0px);
   }
	100% {
		transform: translateY(150px);
   }
}
@keyframes blowUpContent {
	0% {
		transform: scale(1);
		opacity: 1;
   }
	99.9% {
		transform: scale(2);
		opacity: 0;
   }
	100% {
		transform: scale(0);
   }
}
@keyframes blowUpContentTwo {
	0% {
		transform: scale(2);
		opacity: 0;
   }
	100% {
		transform: scale(1);
		opacity: 1;
   }
}
@keyframes blowUpModal {
	0% {
		transform: scale(0);
   }
	100% {
		transform: scale(1);
   }
}
@keyframes blowUpModalTwo {
	0% {
		transform: scale(1);
		opacity: 1;
   }
	100% {
		transform: scale(0);
		opacity: 0;
   }
}
@keyframes roadRunnerIn {
	0% {
		transform: translateX(-1500px) skewX(30deg) scaleX(1.3);
   }
	70% {
		transform: translateX(30px) skewX(0deg) scaleX(0.9);
   }
	100% {
		transform: translateX(0px) skewX(0deg) scaleX(1);
   }
}
@keyframes roadRunnerOut {
	0% {
		transform: translateX(0px) skewX(0deg) scaleX(1);
   }
	30% {
		transform: translateX(-30px) skewX(-5deg) scaleX(0.9);
   }
	100% {
		transform: translateX(1500px) skewX(30deg) scaleX(1.3);
   }
}
@keyframes sketchIn {
	0% {
		stroke-dashoffset: 778;
   }
	100% {
		stroke-dashoffset: 0;
   }
}
@keyframes sketchOut {
	0% {
		stroke-dashoffset: 0;
   }
	100% {
		stroke-dashoffset: 778;
   }
}
@keyframes modalFadeIn {
	0% {
		background-color: transparent;
   }
	100% {
		background-color: white;
   }
}
@keyframes modalFadeOut {
	0% {
		background-color: white;
   }
	100% {
		background-color: transparent;
   }
}
@keyframes modalContentFadeIn {
	0% {
		opacity: 0;
		top: -20px;
   }
	100% {
		opacity: 1;
		top: 0;
   }
}
@keyframes modalContentFadeOut {
	0% {
		opacity: 1;
		top: 0px;
   }
	100% {
		opacity: 0;
		top: -20px;
   }
}
@keyframes bondJamesBond {
	0% {
		transform: translateX(1000px);
   }
	80% {
		transform: translateX(0px);
		border-radius: 75px;
		height: 75px;
		width: 75px;
   }
	90% {
		border-radius: 3px;
		height: 182px;
		width: 247px;
   }
	100% {
		border-radius: 3px;
		height: 162px;
		width: 227px;
   }
}
@keyframes killShot {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
   }
	100% {
		transform: translateY(300px) rotate(45deg);
		opacity: 0;
   }
}
@keyframes fadeToRed {
	0% {
		background-color: rgba(0, 0, 0, .6);
   }
	100% {
		background-color: rgba(255, 0, 0, .8);
   }
}
@keyframes slowFade {
	0% {
		opacity: 1;
   }
	99.9% {
		opacity: 0;
		transform: scale(1);
   }
	100% {
		transform: scale(0);
   }
}

@media (max-width: 1200px) {
	.contentM {
		height: auto;
   }

   #modal-container {
	position: fixed;
	display: table;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	transform: scale(0);
	transform-origin: 0 0;
	z-index: 1;
}
#modal-container.four {
	z-index: 0;
	transform: scale(1);
}
#modal-container.four .modal-background {
	background: rgba(0, 0, 0, .7);
}
#modal-container.four .modal-background .modal {
	animation: blowUpModal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.four + .contentM {
	animation: blowUpContent 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.four.out {
	transform: scale(0);
}
#modal-container.four.out .modal-background .modal {
	animation: blowUpModalTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.four.out + .contentM {
	animation: blowUpContentTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container .modal-background {
	display: table-cell;
	background: rgba(165, 43, 43, 0.8);
	text-align: center;
	vertical-align: middle;
}
#modal-container .modal-background .modal {
	background: white;
	padding: 50px;
	display: inline-block;
	border-radius: 60px;
	font-weight: 300;
	position: relative;
	margin-right: 30px;
	margin-left: 30px;
}




}
@media (max-width: 992px) {
	.contentM {
		height: auto;
   }



}
@media (max-width: 768px) {
	#modal-container {
		position: fixed;
		display: table;
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		transform: scale(0);
		transform-origin: 0 0;
		z-index: 1;
   }
	#modal-container.four {
		z-index: 0;
		transform: scale(1);
   }
	#modal-container.four .modal-background {
		background: rgba(0, 0, 0, .7);
   }
	#modal-container.four .modal-background .modal {
		animation: blowUpModal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
   }
	#modal-container.four + .contentM {
		animation: blowUpContent 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
   }
	#modal-container.four.out {
		transform: scale(0);
   }
	#modal-container.four.out .modal-background .modal {
		animation: blowUpModalTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
   }
	#modal-container.four.out + .contentM {
		animation: blowUpContentTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
   }
	#modal-container .modal-background {
		display: table-cell;
		background: rgba(165, 43, 43, 0.8);
		text-align: center;
		vertical-align: middle;
   }
	#modal-container .modal-background .modal {
		background: white;
		padding: 50px;
		display: inline-block;
		border-radius: 60px;
		font-weight: 300;
		position: relative;
		margin-right: 30px;
		margin-left: 30px;

   }
}
@media (max-width: 530px) {
	#modal-container {
		position: fixed;
		display: table;
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		transform: scale(0);
		transform-origin: 0 0;
		z-index: 1;
   }
	#modal-container.four {
		z-index: 0;
		transform: scale(1);
   }
	#modal-container.four .modal-background {
		background: rgba(0, 0, 0, .7);
   }
	#modal-container.four .modal-background .modal {
		animation: blowUpModal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
   }
	#modal-container.four + .contentM {
		animation: blowUpContent 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
   }
	#modal-container.four.out {
		transform: scale(0);
   }
	#modal-container.four.out .modal-background .modal {
		animation: blowUpModalTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
   }
	#modal-container.four.out + .contentM {
		animation: blowUpContentTwo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
   }
	#modal-container .modal-background {
		display: table-cell;
		background: rgba(165, 43, 43, 0.8);
		text-align: center;
		vertical-align: middle;
   }
	#modal-container .modal-background .modal {
		
		background: white;
		padding: 15px;
		display: inline-block;
		border-radius: 60px;
		font-weight: 300;
		position: relative;
		margin-right: 35px;
		margin-left: 25px;



   }
	.modal_title {
		font-size: 35px;
		text-align: center; 
        display:flex;
   }
	.modal_p {
		font-size: 20px;
	   /* text-align: left;
		*/
   }
	.modal_sub {
		font-size: 25px;
		margin-top: -5px;
   }
	.modal_bullet {
		font-size: 22px;
   }
	.modaliconsize {
		height: 20%;
		width: 25%;
	   /* margin-right: 30px;
		*/
	   /* margin-bottom: 30px;
		*/
	   /* display: inline;
		*/
   }
}

