
html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

@font-face {
  font-family: 'Asul';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/asul-v7-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Asul Regular'), local('Asul-Regular'),
       url('../fonts/asul-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/asul-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/asul-v7-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/asul-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/asul-v7-latin-regular.svg#Asul') format('svg'); /* Legacy iOS */
}

img {
    width: 100%;
    height: auto;
}

.l {
	float:left;
	width: 50%;
	margin: 0 15px 0 0;
}

.r {
	float:right;
	width: 50%;
	margin: 0 0 0 15px;
}
.rx {
	float:right;
	width: 62%;
	margin: 0 0 0 15px;
}
.fl {
	float:left;
	width: 48%;
	margin: 0 15px 10px 0;
}
.fr {
	float:right;
	width: 48%;
	margin: 0 0 10px 15px;
}

body {
  width: 100%;
  height: 100%;
  background-color: #20441E;
  font-family: 'Asul', sans-serif;
  color: #384047;
}

#wrapper {
  min-height: 0;
  display: inline-block;
  position: relative;
  left: 50%;
  margin: 10px 0;
  transform: translate(-50%, 0);
  background-color: #E3E3CF;
  max-width: 850px;
  padding: 0px 15px;
  border-left: 6px solid #20441E;
  border-right: 6px solid #20441E;
  margin-right: 25px;
}

h1,
h2 {
  color: #384047;
}
h1 {
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: 100;
  text-align: center;
  display: table;
  padding: 10px 0;
  font-weight: bolder;
  border-bottom: 2px solid #000;
}
h2 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
}
.imp {
	font-size: 80%;
}
a:link, a:visited {
	text-decoration: none;
  color: #384047;
}

a:hover, a:active {
	text-decoration: none;
  color: #384047;
}



p {
  color: #384047;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
  transition: all 500ms ease;
}
p,
ul li i:before,
ul li i:after {
  transition: all 0.25s ease-in-out;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
  border-top: 1px dotted #9BA8B3;
}
ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 9px;
  left: 97%;
}
ul li i:before,
ul li i:after {
  content: "";
  position: absolute;
  background-color: #758897;
  width: 3px;
  height: 16px;
}
ul li i:before {
  transform: translate(2px, 0) rotate(45deg);
}
ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
ul li input[type=checkbox]:checked ~ i:before {
  margin-top: 9px;
  height: 9px;
  transform: translate(2px, 0) rotate(45deg);
}
ul li input[type=checkbox]:checked ~ i:after {
  margin-top: 9px;
  height: 9px;
  transform: translate(-2px, 0) rotate(-45deg);
}
ul li:nth-of-type(1) {
  border-top: none;
  animation-delay: 0.5s;
}
ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
ul li:nth-of-type(3) {
  animation-delay: 1s;
}
ul li:last-of-type {
  padding-bottom: 0;
}
li {
  animation: bounceInUp 1s ease both;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* media queries
--------------------------------------------------------- */
@media (max-width: 765px) {

#wrapper {
  margin-left: -8px;
}
	
.l {
	float:left;
	width: 100%;
	margin:0 0 12px 0;
}

.r {
	float:right;
	width: 100%;
	margin:0 0 12px 0;
}
.fl {
	float:left;
	width: 100%;
	margin: 0 12px 10px 0;
}
.fr {
	float:right;
	width: 100%;
	margin: 0 0 10px 12px;
}
.imp {
	font-size: 60%;
}

.rx {
	float:right;
	width: 100%;
	margin:0 0 12px 0;
}

ul li i {
	left: 98%;
}

p {
 font-size: 90%;
}

h1,
h2 {
  font-size: 97%;
}

}