/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

:root {
  /******************* Custom **********************/
  /* Main Color */
  --primary-color: #014d4e;
  --color-purple: #eb2f64;
  --color-purple-light: #ff3366;
  --color-purple-dark: #ba265d;
  /* Secondary */
  --secondary-color: #ff9408;
  /* Secondary Color Modify */
  --secondary-color-m: #ff94088e;
  /* Tertiary Color*/
  --tertiary-color: #017374;
  /* Tertiary Color Modified */
  --tertiary-color-m: #01727498;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #f4f2f2;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #cccccc; }

body {
  font-family: "Helvetica Neue";
  line-height: 1.8; }

/* List Items */
li {
  list-style: none; }

/* Anchor */
a:link, a:visited {
  text-decoration: none;
  font-size: 1.5rem;
  color: white; }

.et-header {
  width: 100%;
  height: 80vh;
  background: #1a202c;
  background-: url("/img/header-bg.jpg");
  position: relative; }
  .et-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 1rem;
    background-color: var(--secondary-color); }
    .et-header__container--navbar-brand a.et-navbar-item {
      font-size: 3rem;
      width: 80px;
      height: 60px;
      display: block; }
      .et-header__container--navbar-brand a.et-navbar-item img {
        width: 100%; }
    .et-header__container--navbar-menu {
      width: 50%; }
      .et-header__container--navbar-menu .et-navbar-end {
        display: flex;
        justify-content: flex-end; }
      .et-header__container--navbar-menu .et-navbar-end a {
        padding: 0 2rem; }
  .et-header .t-header__container--navbar-brand a img {
    width: 100%; }
  .et-header section#motto {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
    .et-header section#motto .motto__box h1 {
      font-size: 8rem;
      color: white;
      text-align: center; }
    .et-header section#motto .motto__box p {
      font-size: 3rem;
      color: white; }

/*--*--*--* Search Section *--*--*--*/
section#search {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 3rem 0 2rem 0; }
  section#search .search__lookup-wrap {
    flex: 0 0 30%; }
    section#search .search__lookup-wrap .search--form input.search--input {
      background-color: var(--color-grey-light-1);
      border: none;
      padding: 0.7rem 2rem;
      border-radius: 2rem;
      width: 90%;
      transition: all .2s;
      margin-right: -3.5rem; }
      section#search .search__lookup-wrap .search--form input.search--input:focus {
        outline: none;
        width: 100%;
        background-color: var(--color-grey-light-3); }
    section#search .search__lookup-wrap .search--form button.search--button {
      border: none;
      background-color: var(--color-grey-light-1); }
      section#search .search__lookup-wrap .search--form button.search--button:focus {
        outline: none; }
      section#search .search__lookup-wrap .search--form button.search--button:active {
        transform: translateY(2px); }

/*--*--*--* Intro Section *--*--*--*/
section#intro {
  width: 140rem;
  margin: auto; }
  section#intro p {
    font-size: 1.5rem;
    padding: 1rem 0 1.5rem 0; }

/*--*--*--* Post Section *--*--*--*/
section#posts {
  background-color-: #718096;
  text-align: center; }
  section#posts .posts__container {
    background-color-: yellow;
    width: 140rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 2rem; }
    section#posts .posts__container .post-box {
      background-color-: #718096;
      padding: 2rem;
      flex-basis: 40rem;
      flex-grow: 1; }
    section#posts .posts__container .item {
      position: relative; }
    section#posts .posts__container .item-featured {
      position: absolute;
      top: 1rem;
      right: 0.5rem;
      color: white;
      background-color: var(--color-purple);
      padding: 1rem;
      border-radius: 100%;
      font-size: 1rem; }
    section#posts .posts__container .item-tags {
      text-align: left;
      padding: 1rem; }
      section#posts .posts__container .item-tags .button {
        background-color: var(--color-grey-light-1);
        color: black;
        padding: 1rem 2rem 1rem;
        border-radius: 1.5rem;
        border: var(--color-grey-light-2); }
    section#posts .posts__container h2.item-title {
      color: black;
      text-align: left; }
      section#posts .posts__container h2.item-title a {
        color: black;
        font-size: 2rem;
        font-weight: bold; }
    section#posts .posts__container .level {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.5rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid grey; }
    section#posts .posts__container .post-box img {
      height: 200px;
      width: 100%;
      object-fit: cover;
      transition: filter 0.45s ease; }
    section#posts .posts__container .post-box img:hover,
    section#posts .posts__container .post-box img:active {
      filter: sepia(80%); }

section.pagination {
  background-color-: #1a202c;
  padding: 2rem; }
  section.pagination .pagination-list {
    width: 140rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center; }
    section.pagination .pagination-list li {
      margin-right: 2rem; }
    section.pagination .pagination-list li button {
      padding: 1rem 2rem 1rem;
      border-radius: 1.5rem; }

section#et-footer {
  width: 140rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0 3rem 0;
  border-bottom: 1px solid grey; }
  section#et-footer .hanse {
    width: 80px;
    height: 60px; }
    section#et-footer .hanse img {
      width: 100%; }
  section#et-footer .ul--nav {
    display: flex; }
    section#et-footer .ul--nav li {
      margin-right: 2rem;
      font-size: 1rem; }

section#et-owner {
  width: 140rem;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center; }
  section#et-owner p {
    font-size: 1.4rem;
    padding-top: 0.8rem; }
