/*==============================
=            Global            =
==============================*/

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
    
    
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
  }

a {
    text-decoration: none;
    color: inherit;
}


a:focus {
    outline: 0;
}

body {
    margin: 0;
    padding: 0;
    font-size: 100%;
    
}

p {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    color:white;
}
h1,
h2,
h3,
h4,
h5,
h6,
p{
    padding: 0;
    font-weight: normal;
    text-rendering: optimizelegibility;
    font-family: 'Eczar', serif;
    font-weight: 800;
}

article {
    display: block;
}
h3{
    font-size: 1.3em;
}
/*============================
=            Site            =
============================*/

.wrapper {
    width:100%;
}

/*====================================
=            LEFT SECTION            =
====================================*/

section.left {
   position: fixed;
   top: 0;
   left: 0;
   width: 50%;
   height: 100%;
   overflow: hidden;
   z-index: 10;
   background-color: #26408B;
   background-image: url("../images/bg-5_compressed.jpg");
   background-size: cover;
   background-position: center center;
   background-repeat: no-repeat;
}

section.left:after {
  content: " ";
  z-index: 10;
  display: block;
  position: absolute;
  height: 800px;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  
}

.copy-wrapper {
  padding:29px;
  position: relative;
  z-index: 20;
}

.copy-wrapper h1{
  color:white;
  font-family: 'Lato', sans-serif;
}

.copy-wrapper h1 {
  text-align: left;
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 900;
  margin:20px 0px;
}

.copy-wrapper h1 span {
  color:#E32527;
}



.copy-wrapper h3, li {
  font-family: "Times New Roman", Times, serif;
  color:white;
  font-weight: normal;
  font-size: 1.1em;
  line-height: 1.5em;
}

.copy-wrapper h3 span {
  font-weight: bolder;
}

ol.dashed {
  margin: 0;
   padding: 0;
   list-style-type: none;
}

ol.dashed > li {
  text-indent: 10px;
  font-size: 1.1em;
  line-height: 1.5em;
  text-align: left;
  counter-increment: step-counter;
    margin-bottom: 10px;
}

ol.dashed > li:before {
  content: counter(step-counter);
    margin-right: 5px;
    font-size: 80%;
    background-color: rgb(227,37,39);
    color: white;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 31px;
}

ol.dashed > li span {
  font-weight: 900;
}




/*=====================================
=            RIGHT SECTION            =
=====================================*/

section.right {
    float: right;
    background-color: black;
    width:50%;
    padding: 10px 27px;
}



