@import url("https://fonts.googleapis.com/css2?family=K2D:wght@200;300&display=swap");
:root {
  --main: #3a5a40;
  --main-dark: #344e41;
  --red: #dc3545;
  --grey: #525353;
  --violet: #891ca1;
  --color: #fff;
  --bg: #000;
  --app-height: 100%; }

html,
body {
  font-family: 'K2D', sans-serif;
  font-size: 18px;
  background-color: #333;
  color: #fff;
  letter-spacing: .5px; }

.text-muted {
  font-size: 0.8rem;
  padding-top: 0.15rem; }

.text-main {
  color: var(--main); }

.flatpickr-input[readonly] {
  background: #fff; }

.nav-bar {
  display: flex;
  justify-content: space-between; }

.btn:focus {
  box-shadow: none;
  outline: none; }

.dt-buttons.btn-group {
  display: none; }

.btn-main {
  background: var(--main);
  color: #fff;
  border: 2px solid var(--main); }

.btn-main-dash {
  background: #fff;
  color: var(--main);
  border: 2px dashed var(--main); }

.btn-main-dash:hover {
  background: var(--main);
  color: #fff;
  border: 2px dashed #fff; }

.btn-main-gd {
  background: transparent linear-gradient(90deg, #3abaf4 0%, #008fec 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  color: #fff; }

.btn-main-rd {
  background: transparent linear-gradient(76deg, #1fa3f3 0%, #008fec 100%, #008fec 100%);
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 53px 0px;
  color: #fff; }

.btn-main-dark {
  background: var(--main-dark);
  color: #fff;
  border: 2px solid var(--main-dark); }

.btn-main:hover {
  background: none;
  color: var(--main); }

.btn-main-dark:hover {
  background: none;
  color: var(--main-dark); }

.dataTables_filter {
  display: none; }

.link {
  text-decoration: underline; }

.tableFixHead thead th {
  position: sticky !important;
  background-color: #fff;
  top: 0px;
  z-index: 1; }

a,
a:hover {
  color: inherit;
  text-decoration: none; }

i {
  margin-right: 7px; }

.splide__arrow {
  background-color: rgba(0, 0, 0, 0); }
  .splide__arrow svg {
    fill: #fff;
    height: 2rem;
    width: 2rem; }

.header {
  padding-top: .75rem;
  padding-bottom: .75rem; }
  .header .logo {
    max-height: 60px; }
  .header .menu-mobile-icon {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
  .header .nav {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    .header .nav .nav-link {
      text-align: center;
      color: #fff;
      font-size: 0.9rem;
      margin: 0 0.5rem;
      padding: 0 0.3rem .3rem;
      border-bottom: 1px solid #333; }
    .header .nav .nav-link:hover,
    .header .nav .nav-link.active {
      border-bottom: 1px solid #fff;
      transition: 0.3s linear; }

.video {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 0.5rem; }
  .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.content {
  min-height: calc(100vh - 165.5px); }

.page-home .categories {
  text-align: center;
  padding: 1.5rem 1rem; }
  .page-home .categories .categories-list {
    display: inline-block;
    padding: .25rem 1rem;
    margin: .5rem 0.5rem;
    border: 1px solid #333;
    transition: .3s linear; }
  .page-home .categories .categories-list.active,
  .page-home .categories .categories-list:hover {
    border: 1px solid #fff;
    transition: .3s linear;
    cursor: pointer; }

.page-home .project {
  margin-bottom: 1rem; }
  .page-home .project .preview {
    width: 100%;
    overflow: hidden; }
    .page-home .project .preview img {
      animation-name: bgload;
      animation-duration: 1s;
      animation-iteration-count: infinite;
      animation-direction: alternate;
      animation-timing-function: ease;
      display: block;
      width: 100%;
      max-height: 230px;
      object-fit: cover;
      transition: 0.3s; }
  .page-home .project .box {
    cursor: pointer;
    text-decoration: none; }
    .page-home .project .box:hover .preview img {
      transform: scale(1.1);
      transition: 0.3s; }
  .page-home .project .title {
    font-size: 0.9rem;
    padding-top: 0.5rem; }
  .page-home .project .detail {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 1rem; }

.page-home .more {
  text-align: center;
  margin: 1.75rem 0 2rem; }

.page-home .more .btn {
  border-radius: 3px; }

.breadcrumb {
  padding: 0.25rem .75rem;
  font-size: 0.8rem;
  background-color: #444; }
  .breadcrumb a {
    color: #fff; }
  .breadcrumb .breadcrumb-item.active {
    color: #ccc; }

.page-detail .detail {
  word-break: break-word; }
  .page-detail .detail .title {
    margin-top: 1.2rem;
    font-size: 1.5rem;
    margin-bottom: 0.25rem; }
  .page-detail .detail .description {
    font-size: 1rem;
    font-weight: lighter;
    color: #ccc; }

.page-detail .more-project .box {
  cursor: pointer;
  text-decoration: none; }
  .page-detail .more-project .box .preview {
    width: 100%;
    overflow: hidden; }
    .page-detail .more-project .box .preview img {
      animation-name: bgload;
      animation-duration: 1s;
      animation-iteration-count: infinite;
      animation-direction: alternate;
      animation-timing-function: ease;
      display: block;
      width: 100%;
      max-height: 230px;
      object-fit: cover;
      transition: 0.3s; }
  .page-detail .more-project .box:hover .preview img {
    transform: scale(1.1);
    transition: 0.3s; }

.page-detail .more-project .title {
  font-size: 0.9rem;
  margin-top: 0.5rem; }

.page-detail .more-project .detail {
  font-size: 0.8rem;
  color: #ccc;
  margin-bottom: 1rem; }

.page-detail .hr {
  background: #fff;
  margin: 1rem 0 2rem; }

.page-categories .project {
  margin-bottom: 1rem; }
  .page-categories .project .preview {
    width: 100%;
    overflow: hidden; }
    .page-categories .project .preview img {
      animation-name: bgload;
      animation-duration: 1s;
      animation-iteration-count: infinite;
      animation-direction: alternate;
      animation-timing-function: ease;
      display: block;
      width: 100%;
      max-height: 230px;
      object-fit: cover;
      transition: 0.3s; }
  .page-categories .project .box {
    cursor: pointer;
    text-decoration: none; }
    .page-categories .project .box:hover .preview img {
      transform: scale(1.1);
      transition: 0.3s; }
  .page-categories .project .title {
    font-size: 0.9rem;
    padding-top: 0.5rem; }
  .page-categories .project .detail {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 1rem; }
  .page-categories .project .more {
    text-align: center;
    margin: 1.75rem 0 2rem; }
  .page-categories .project .more .btn {
    border-radius: 3px; }

.page-contact .fas {
  font-size: 0.75rem;
  margin-right: 0.5rem;
  width: 1rem; }

.page-contact li {
  list-style: none;
  padding-left: 1rem; }

.footer {
  background: #fff;
  color: #333;
  font-size: 0.8rem; }
  .footer .fab {
    margin: 0 0.5rem;
    font-size: 1.25rem;
    color: #333; }

@media (max-width: 768px) {
  .header .logo {
    max-height: 40px; }
  .header .menu-mobile {
    margin-top: 1rem; }
    .header .menu-mobile .nav-link {
      padding: .5rem;
      background-color: rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .page-home .categories .categories-list {
    padding: 0 0.25rem;
    margin: 0.25rem 0rem;
    font-size: 0.75rem; }
  .content {
    min-height: calc(100vh - 87px - 35px); }
  .footer {
    font-size: 0.65rem; }
    .footer .fab {
      font-size: 0.65rem;
      margin: 0 0.1rem; } }

@keyframes bgload {
  0% {
    background-color: rgba(255, 255, 255, 0.1); }
  100% {
    background-color: rgba(51, 51, 51, 0.9); } }
