@charset "utf-8";
/* CSS Document */
/* 
*  CSS TABLE OF CONTENTS
*   
*  1.0 - Reset
*  2.0 - Globals
*  3.0 - Fonts
*  4.0 - Body
*  5.0 - Mediaqueries
*/

/* 1.0 - Reset */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Conv_Roboto-Regular', Sans-Serif;
  /* Font family for entire body */
  font-size: 14px;
  font-weight: normal;
  color: #282829;
  /* color for entire body */
  line-height: 1.5em;
  background: #f1f3f6;
}

a {
  text-decoration: none;
  outline: 0;
  color: #0a61e3;
  /* color for hyperlinks */
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

/* 2.0 - Globals */

h1 {
  text-transform: uppercase;
  font-size: 26px;
}

h2,
h3 {
  font-weight: 500;
}

h2 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.5em;
}

h2 span {
  vertical-align: bottom;
  margin-left: 20px;
}

h3 {
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 16px;
}

article {
  margin-bottom: 40px;
}

p {
  margin-bottom: 5px;
}

p span {
  color: #8f9293;
  margin-bottom: 15px;
  display: block;
}

ul li {
  background: url("../../images/arrow.png") 0 9px no-repeat;
  padding-left: 15px;
  line-height: 28px;
}

/* 3.0 - Fonts */
@font-face {
  font-family: 'Conv_Roboto-Regular';
  src: url('fonts/Roboto-Regular.eot');
  src: local('☺'), url('../fonts/Roboto-Regular.woff') format('woff'), url('../fonts/Roboto-Regular.ttf') format('truetype'), url('../fonts/Roboto-Regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* 4.0 - Body */
#container {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
  border-top: 1px solid #eaeaea;
  padding: 40px;
  margin: 40px auto;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

header {
  min-height: 50px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #ddd;
  width: 100%;
  float: left;
}

header h1 {
  float: left;
  line-height: 40px;
  /* here line-height should be equal to height of the main class header */
}

header ul li {
  background: none;
  float: right;
  margin-right: 15px;
  line-height: 40px;
  /* here line-height should be equal to height of the main class header */
}

header ul li i {
  vertical-align: middle;
  padding-right: 8px;
}

.main-content {
  border-bottom: 1px dashed #f4f4f4;

}

.left {
  flex: 1;
  padding: 20px;
  padding-right: 400px;
}

.left p {
  line-height: 2;
  padding-right: 100px;
}

.left h2 {
  margin-bottom: 10px;
}

.left ul li {
  line-height: 2;
  padding-left: 3px;
  padding-right: 130px;
}

.right {
  flex: 1;
  padding-right: 40px;
  margin-bottom: 10px;
}

.right h2 {
  margin-bottom: 10px;
}

.right h3 {
  margin-bottom: 5px;
}

.right ul li {
  line-height: 2;
  padding: 3px;

}

aside {
  width: 60%;
  float: left;
}

.body-content {
  width: 80%;
  float: right;
}

/* 5.0 - Mediaqueries */
@media (min-width:320px) and (max-width: 991px) {

  h1 {
    color: #fff;
    margin-bottom: 0px;
  }

  h2 {
    background: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
  }

  h2 i {
    float: right;
    vertical-align: bottom;
  }

  aside {
    width: 100%;
  }

  .body-content {
    width: 100%;
  }

  header {

    border-radius: 5px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#49c0f0+0,2d5ae2+100 */
    background: #49c0f0;
    /* Old browsers */
    background: -moz-linear-gradient(45deg, #49c0f0 0%, #2d5ae2 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #49c0f0 0%, #2d5ae2 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #49c0f0 0%, #2d5ae2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#49c0f0', endColorstr='#2d5ae2', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    border-bottom: 0;
    padding: 20px 5%;
    margin-top: 0;
    width: 90%;
  }

  header h1 {
    float: none;
    line-height: 20px;
  }

  header ul li {
    background: none;
    float: none;
    margin-right: 0;
    line-height: 36px;
    padding-left: 0;
  }

  header ul li a {
    color: #fff;
  }

  #container {
    max-width: 84%;
    padding: 20px 5%;
    margin: 15px 3%;
  }

}
