/* ==========================================
  IMPORT
============================================*/

@import url("./header.css");
@import url("./footer.css");
@import url("./home.css");
@import url("./pages.css");
@import url("./single.css");

@import url("./form.css");

@import url("./search.css");

@import url("./timeline.css");
@import url("./modal.css");

/* ==========================================
  RESET
============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  display: block;
  width: 100%;
}
ul {
  list-style: none;
}
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
blockquote {
  display: block;
  font-size: 14px;
  padding: 10px 0 10px 28px;
  margin: 16px;
  border-left: 4px solid #575756;
  color: #575756;
}
/* ==========================================
  GERAL
============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px;
  font-size: 0.8em;
  font-weight: normal;
  text-decoration: none;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  border: 0 none;
  cursor: pointer;
  outline: none;
}
.btn-default {
  background-color: #0099d1;
  color: white;
}
.btn-primary {
  background-color: #006a9e;
  color: white;
}
.btn-secundary {
  background-color: #00546c;
  color: white;
}
.btn-feature {
  background: linear-gradient(120deg, #0099d1 40%, #00546c 120%);
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  padding: 20px 40px;
  transition: background linear 300ms;
}

.btn-success {
  background: #4bae32;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  padding: 20px 40px;
  text-decoration: none;
}
/* bg */
.bg-default {
  background-color: #0099d1;
  color: white;
}
.bg-primary {
  background-color: #006a9e;
  color: white;
}
.bg-secundary {
  background-color: #00546c;
  color: white;
}
/* list */
.sc__list-default li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #646463;
  color: #00546c;
  font-size: 14px;
}
.sc__list-default li strong {
  color: #00546c;
}
.sc__list-default li a {
  margin: 0;
}
.sc__list-default.no-justify-content li {
  justify-content: inherit;
}
/* extras */
.arrow {
  background: url("../images/arrow.png") no-repeat left 4px;
  padding-left: 30px;
}

.link-unstyled {
  text-decoration: none;
  color: white;
}
