/*TODO:Blockquotes*/
/*Base Reset---*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}
a {
  cursor: pointer;
}
/*Grid--*/
.container {
  width: 900px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .container {
    width: 100%;
    padding: 20px;
  }
}
.row {
  margin: 0 -10px;
  padding: 8px 0;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  display: block;
  float: left;
  height: auto;
  padding: 0 10px;
}
.col-1 {
  width: 8.3333333%;
}
.col-2 {
  width: 16.666666%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333333%;
}
.col-5 {
  width: 41.666666%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333333%;
}
.col-8 {
  width: 66.666666%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.3333333%;
}
.col-11 {
  width: 91.6666666%;
}
.col-12 {
  width: 100%;
}
/*Main styles----*/
body {
  font-family: "roboto", "proxima-nova", Helvetica, Arial, sans-serif;
  color: #3f3f3f;
  font-size: 14px;
}
h1,
h2,
h4 {
  color: #1eb8f4;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
h3 {
  font-size: 24px;
  font-weight: 300;
  color: #3f3f3f;
}
h4 {
  color: #c1c1c1;
}
img {
  width: 100%;
}
header:after,
nav:after,
nav ul:after,
.table .row:after {
  content: '';
  display: block;
  clear: both;
}
header {
  margin: 20px 0;
  padding: 0px 0;
  width: 100%;
}
header h1 {
  padding-top: 15px;
  float: left;
}
header h2 {
  float: right;
}
header nav ul {
  float: right;
}
header nav ul li {
  float: left;
}
header nav ul li a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  padding: 15px 25px;
  color: #c1c1c1;
  text-transform: uppercase;
}
header nav ul li a:hover {
  color: #1eb8f4;
}
#intro {
  margin: 45px 0;
}
#intro p {
  font-size: 55px;
  color: #3f3f3f;
  font-weight: 300;
  line-height: 80px;
}
#intro p span {
  color: #1eb8f4;
}
#intro p a {
  color: #c1c1c1;
  cursor: pointer;
  transition: all .5s ease;
}
#intro p a:hover {
  text-decoration: underline;
  color: #1eb8f4;
}
#projects {
  margin: 70px 0;
}
#projects h2 {
  margin-bottom: 15px;
}
#projects .table .container {
  overflow: hidden;
}
#projects .table .container .row {
  color: #c1c1c1;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 1s ease;
  cursor: pointer;
}
#projects .table .container .row.row_header {
  margin-bottom: 40px;
}
#projects .table .container .row .support_col {
  padding-top: 8px;
}
#projects .table .container .row h3 {
  text-transform: none;
  transition: color 1s ease;
}
#projects .project_details {
  position: relative;
  overflow: hidden;
  max-height: 0;
  margin-bottom: 30px;
  text-transform: none;
}
#projects .project_details .project_content {
  cursor: auto;
  position: relative;
  padding: 20px 0 60px;
  color: #3f3f3f;
  bottom: 0;
  border-bottom: #c1c1c1 solid 1px;
}
#projects .project_details .project_content .title {
  font-size: 52px;
  font-weight: 700;
  display: block;
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 20px;
  margin: 60px 0 30px;
  line-height: 65px;
}
#projects .project_details .project_content .title span {
  display: block;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 20px;
  color: #c1c1c1;
}
#projects .project_details .project_content .close {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 0;
  margin-left: -20px;
  left: 50%;
  color: #c1c1c1;
  text-align: center;
  padding-top: 10px;
  font-size: 30px;
  border: solid 1px #c1c1c1;
  border-bottom: none;
  border-radius: 50% 50% 0 0;
}
#projects .project_details .project_content img {
  width: 100%;
  margin: 20px 0 40px;
}
#projects .project_details .project_content p {
  font-size: 18px;
  line-height: 30px;
  color: #3f3f3f;
}
#projects .project_details .project_content .row {
  margin-top: 70px;
  text-transform: none;
  cursor: auto;
}
footer {
  height: 150px;
  background: #c1c1c1;
}
@media (max-width: 640px) {
  #intro p {
    font-size: 14px;
    line-height: 14px;
  }
  #projects .project_details img {
    width: 100%;
  }
}
