html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
::-moz-selection { /* Code for Firefox */
    color: red;
    background: yellow;
}

::selection {
    color: white; 
    background: #DADFE1;
}

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

body {
  font-size: 100%;
  font-family: 'Lato', serif;
  font-weight: 300;
  color: #777;
  background-color: white;
}
a{
  text-decoration: none;
	color: #777;
}

p a {
    text-decoration: none;
    padding:1px;
}
p a:hover{
    color:#fff;
    background-color: #4d5c66;
    border: none;
}
i {
    font-style: italic;
}

b {
    font-weight: 600;
}
p {
	font-size: 140%;
  line-height: 1.8rem;
}
h1 {
	font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}
@media only screen and (max-width : 320px) {
    h1 {
        font-size: 2.4rem;
    }
}
h2 {
	font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

h3 {
	font-size: 1.6rem;
   line-height: 2rem;
}

h4 {
	font-size: 0.9rem;
}

h5 {
	font-size: 0.8rem;
}

h6 {
	font-size: 0.7rem;
}
small{
    font-size: 1rem;
}
/*#4d5c66*/
.left{
  text-align: left;
}

/* --------------------------------

Main components

-------------------------------- */
html, body {
    height: 100%;
}
.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 10rem;
    margin-bottom: 5rem;
}
.cd-container:after {
    content: "";
    display: table;
    clear: both;
}

.cd-container h4 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1em;
}

@media only screen and (max-width : 1024px) {
    .cd-container{
        margin-top: 5rem;
    }
}
@media only screen and (max-width : 800px) {
    .cd-container{
        margin-top: 4rem;
    }
}
@media only screen and (max-width : 480px) {
    .cd-container.first{
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}
.cd-container.who{
    margin-top:6rem;
}
.cd-container-who-clmn-1 {
    width: 50%;
    float: left;
    padding: 10px 20px 10px 0px;

}
.cd-container-who-clmn-2 {
    width: 50%;
  float: left;
    padding: 10px 20px 10px 0px;

}
@media only screen and (max-width : 600px) {
  .cd-container-who-clmn-1,
  .cd-container-who-clmn-2,
  .cd-container-what-clmn-1,
  .cd-container-what-clmn-2{
    width: 100%;
  }
}