/* Theme - #5ece7b */

/****************************** General ******************************/
*,
::after,
::before {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  background: rgb(0, 0, 0);
  color: #fff;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
  margin: 0;
}
body.not_loaded {
  overflow: hidden;
  max-height: 100%;
}
button {
  font-size: 1rem;
  cursor: pointer;
  -webkit-appearance: none;
}
button:active,
button:focus {
  outline: none;
}
input:active,
input:focus {
  outline: none;
}
.section .sec_title {
  width: 100%;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  margin-bottom: 4rem;
}
h1,
h3 {
  margin: 0;
}
h1.meta_info,
h3.meta_info {
  position: absolute;
  z-index: -9999999999999999;
  opacity: 0;
}
/****************************** Home ******************************/
.section.home {
  min-height: 100vh;
  display: flex;
}
.section.home.error {
  min-height: 93vh;
}
.section.home.error a {
  text-decoration: none;
}
.section.home.error .cover {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}
.section.home .brand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  line-height: 1.3;
}
.section.home .brand .name {
  color: #fff;
  font-size: 5rem;
  font-family: "Anton", sans-serif;
  letter-spacing: 3px;
  text-decoration: underline;
  text-decoration-color: #5ece7b;
  transform: scaleY(1.1);
}

.section.home .brand .tagline {
  color: rgb(158, 158, 158);
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
  font-size: 2rem;
  text-transform: uppercase;
}
.section.home .cover {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.home .cover img {
  width: 80%;
}
/****************************** Articles list ******************************/
.section.articles_list {
  min-height: 100vh;
  margin-bottom: 10rem;
}
.section.articles_list .articles_filter {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.section.articles_list .articles_filter button {
  background: none;
  font-weight: 700;
  border: none;
  color: rgb(158, 158, 158);
  cursor: pointer;
  padding: 0.2rem 0.6rem;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  transition: color 0.2s;
}
.section.articles_list .articles_filter button:hover {
  color: rgb(255, 255, 255);
  transition: color 0.2s;
}
.section.articles_list .articles_filter button.active {
  color: #5ece7b;
  transition: color 0.2s;
}
.section.articles_list .articles_filter input {
  border: 1px solid rgb(158, 158, 158);
  border-radius: 3px;
  padding: 0.4rem 0.5rem;
  background: transparent;
  margin-left: 0.8rem;
  color: #fff;
  font-size: 1rem;
}
.section.articles_list .articles_filter input:active,
.section.articles_list .articles_filter input:focus {
  border: 1px solid #5ece7b;
}
.section.articles_list .articles_container {
  display: flex;
  flex-wrap: wrap;
  padding: 0rem 6rem;
}
.section.articles_list .articles_container .article_preview {
  width: 30%;
  margin-left: 1.66667%;
  margin-right: 1.66667%;
  margin-bottom: 3rem;
  overflow: hidden;
}
.section.articles_list .articles_container .article_preview a {
  text-decoration: none;
  color: #fff;
}
.section.articles_list .articles_container .article_preview .header {
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 4px;
}
.section.articles_list .articles_container .article_preview .header video,
.section.articles_list .articles_container .article_preview .header img {
  border-radius: 4px;
  width: 100%;
}
.section.articles_list .articles_container .meta {
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.section.articles_list .articles_container .article_preview .elapsed {
  color: rgb(158, 158, 158);
  font-size: 1rem;
  padding-left: 0.6rem;
}
.section.articles_list .articles_container .article_preview .category {
  color: rgb(158, 158, 158);
  font-size: 1rem;
  padding-right: 0.6rem;
  border-right: 1px solid rgb(158, 158, 158);
}
.section.articles_list .articles_container .article_preview .title {
  font-size: 1.2rem;
  font-weight: 700;
  transition: color 0.2s;
}
.section.articles_list .articles_container .article_preview:hover .title {
  color: #5ece7b;
}
.section.articles_list .posts_options {
  display: none;
  text-align: center;
  margin-top: 4rem;
}
.section.articles_list .posts_options button {
  background-color: #5ece7b;
  color: rgb(255, 255, 255);
  border: none;
  padding: 0.6rem 2rem;
  font-weight: 700;
  text-shadow: 1px 1px 5px #353535;
  border-radius: 3px;
  font-size: 1rem;
  transition: background-color 0.2s;
}
.section.articles_list .posts_options button:hover {
  background-color: #52bd6f;
  transition: background-color 0.2s;
}
.section.articles_list .not_found {
  display: none;
  text-align: center;
  padding: 0rem 6rem;
}
.section.articles_list .not_found .title {
  font-size: 2rem;
  color: #fff;
  font-family: "Anton", sans-serif;
  margin-top: 2rem;
}
.section.articles_list .not_found .sub_title {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
/****************************** About ******************************/
.section.about {
  text-align: center;
  margin-bottom: 10rem;
}
.section.about .content {
  display: flex;
}
.section.about .info {
  width: 100%;
}
.section.about .info .contact {
  color: rgb(158, 158, 158);
}
.section.about .content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.about .content img {
  width: 80%;
}
/****************************** Privacy ******************************/
.section.privacy {
  text-align: center;
  margin-bottom: 10rem;
  font-size: 1rem;
  line-height: 1.4;
}
.section.privacy .secondary {
  color: rgb(158, 158, 158);
}
/****************************** Footer ******************************/
.footer {
  padding-bottom: 2rem;
  text-align: center;
  color: rgb(158, 158, 158);
}
/****************************** Animation ******************************/
.articles_list .article_preview,
.not_found .info {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes zoom {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoom {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.zoom {
  -webkit-animation-name: zoom;
  animation-name: zoom;
}
.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/****************************** Spinner ******************************/
.loader {
  z-index: 999;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
}
.loader .wrap {
  position: relative;
}
.loader .wrap .spinner {
  -webkit-animation: rotator 1.4s linear infinite;
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
.loader .wrap .path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite;
  animation: dash 1.4s ease-in-out infinite;
  stroke: #5ece7b;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

/****************************** Responisve queries ******************************/

@media (max-width: 1026px) {
  .section.articles_list {
    min-height: 825px;
  }
  .section.home {
    min-height: unset;
    display: flex;
    padding: 7rem 2rem;
  }
  .section.articles_list .articles_filter,
  .section.articles_list .articles_container,
  .section.about,
  .section.privacy {
    padding: 0rem 2rem;
  }
  .section.articles_list .articles_filter {
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  .section.articles_list .articles_filter button {
    margin-left: 0;
    margin-right: 0;
  }
  .section.home.error .cover {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .section.home {
    display: inline-block;
    padding: 2rem 1rem;
  }
  .section.home.error {
    width: 100%;
  }
  .section.articles_list .articles_filter,
  .section.articles_list .articles_container,
  .section.about,
  .section.privacy {
    padding: 0rem 1rem;
  }
  .section.home .brand {
    margin-bottom: 4rem;
  }
  .section.home .cover img {
    width: 60%;
  }
  .section.home .brand .name {
    font-size: 2.5rem;
  }
  .section.home .brand .tagline {
    font-size: 1rem;
  }
  .section .sec_title {
    margin-bottom: 2rem;
  }
  .section.articles_list {
    min-height: 85vh;
  }
  .section.articles_list .articles_filter {
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
  }
  .section.articles_list .articles_filter button {
    margin-bottom: 1.5rem;
  }
  .section.articles_list .articles_container {
    display: inline-block;
  }
  .section.articles_list .articles_container .article_preview {
    width: 100%;
  }
  .articles_list .articles_container .article_preview {
    width: 100%;
    margin-bottom: 2rem;
  }
  .section.articles_list .articles_container .article_preview .header {
    height: unset;
  }
  .articles_list .articles_container .article_preview a {
    display: flex;
    align-items: center;
  }
  .articles_list .articles_container .article_preview a .header,
  .articles_list .articles_container .article_preview a .responsive {
    width: 100%;
  }
  .articles_list .articles_container .article_preview a .responsive {
    padding-left: 1rem;
  }
  .articles_list .articles_container .meta {
    margin-top: 0rem !important;
  }
  .section.about,
  .section.privacy {
    margin-bottom: 4rem;
  }
  .section.about .content {
    display: inline-block;
  }
  .section.about .content img {
    width: 50%;
    margin-bottom: 3rem;
  }
}
