/** Structure **/

html,
body {
  height: 100%;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
    background-color: #1D1E1F;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

/* Page */
#page {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
#container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Section */
.section {
    position: relative;
}

/* Content */
.content {
  display: flex;
  flex-wrap: wrap;
}

/* Column */
.col {
  flex: 1;
  padding: 40px;
}

.col--full {
  flex: 100%;
}

/** Elements **/
.el {
    flex: auto;
    position: relative;
}

/* Button */
.btn {
    padding: 10px 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    background-color: #56b3ce;
    font-weight: 600;
    letter-spacing: .05rem;
    border: none;
    border-radius: 3px;
    display: inline-block;
    margin-top: 60px;
    transition: background-color .1s ease-in-out;
}

.btn:hover {
    cursor: pointer;
    background-color: #62b8d1;
}

.btn:focus {
    outline: none;
}

.link {
  text-decoration: none;
}

/* Headers */
.header {
    font-size: 32px;
    letter-spacing: ;
    margin: 0 0 20px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.el--header {
    flex: 0;
}

/* Input */

.input {
    border: none;
    border-radius: 0;
    width: 100%;
    padding: 20px;
    font-size: 14px;
}

.input:focus {
    outline: none;
}

.input--search {
    color: #555555;
    padding-left: 40px;
    border-bottom: solid 1px #d1d1d1;
}

.input--search::placeholder {
    color: #999999;
    opacity: 1;
}


.el--search {
    flex: 0;
}

.el--search:before {
    content: '';
    height: 7px;
    width: 7px;
    border-radius: 50%;
    border: solid 1px #555555;
    position: absolute;
    left: 20px;
    top: 22px;
}

.el--search:after {
    content: '';
    height: 5px;
    width: 1px;
    background-color: #555555;
    position: absolute;
    left: 20px;
    top: 30px;
    transform: rotate(45deg);
}

/* Text */
.highlight {
  color: #56b3ce;
}

/* Borders */
.bb {
  border-bottom: solid 1px #3b3b3b;
}

.br {
  border-right: solid 1px #3b3b3b;
}

/* Spacing */
.mb {
  margin-bottom: 20px;
}

.mb-no {
  margin-bottom: 0;
}

.nm {
  margin: 0;
}

/* Media Queries */

@media (max-width: 655px) {
  #page {
    display: block;
  }
  .col,
  .col--full {
    flex: 100%;
    border-right: none;
    border-bottom: solid 1px #3b3b3b;
  }
  .mb {
    margin-bottom: 0;
  }
}
