@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600);

/* ==========================================================================
   Reset
   ========================================================================== */

* { 
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: sans-serif; 
  -ms-text-size-adjust: 100%; 
  -webkit-text-size-adjust: 100%; 
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block; 
  vertical-align: baseline; 
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
  text-decoration: none;
  transition: all 200ms ease-out;
  color: #000000;
}

a:active,
a:hover {
  color: #1a1d25;
  text-decoration: underline;
  outline: 0;  
  transition: all 200ms ease-out;
}

ul {list-style: none;}
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

img {
  border: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"], 
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; 
  cursor: pointer; 
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; 
  padding: 0; 
}

textarea {
  overflow: auto;
}

textarea, input { outline: none; }

table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset { border: none;}

td,
th {
  padding: 0;
}

p { margin-bottom: 10px;}

/* ==========================================================================
   General
   ========================================================================== */
body {
  height: 100%;
	font-family: 'Open Sans', sans-serif;
  font-weight: 300;
	 font-style: normal;
	 cursor: auto;
	 line-height: 1.5;
   font-size: 13px;
	 color: #fff;
}
.wrapper, .flex {

  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;

}

.flex {
  flex-direction: column;
  padding: 20px;
  justify-content: left;
}

.box {
  width: 50vw;
  height: 100vh;
background: #fff;
}


.box.two {
background: #ec6707; 
}

h1 { 

  font-size: 20px; 
  margin-bottom: 20px;
  font-weight: 400;

}


/* ==========================================================================
   Utilities
   ========================================================================== */
.left { float: left !important;}
.right { float: right !important;}
.clearfix {width: 100%; float: left;}
.hide { display: none;}
.text-left { text-align: left;}
.text-right { text-align: right;}
.text-center { text-align: center;}
.text-justify {text-align: justify;}
.radius { border-radius: 3px; }
.radius-5 { border-radius: 5px; }
.round { border-radius: 50%;}
small { font-size: 90%; }
ul.inline li { display: inline-block;}

img.alignright { float: right; margin: 0 0 1em 1em; }
img.alignleft { float: left; margin: 0 1em 1em 0; }
img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; }
.alignleft { float: left; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }


@media only screen and (max-width: 720px) {

.wrapper { flex-direction: column; height: inherit; align-content: flex-start; justify-content: flex-start;}
.flex { height: inherit;}
.box {
  width: 100vw;
  height: auto;
}

body {background: #ec6707; }

 }