/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #fff;
  background-color: #000;
  font-size: 16px;
  line-height: 1.4;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body {
  font-family: 'Jost', Arial, Helvetica, sans-serif;
  font-weight: 300;
  background-color: #000;
  color: #fff;
}

/* =========== Loader =========== */
.ldBar{
  position: relative;
}
.ldBar-label {
  font-size: 12px;
  text-align: center;
  padding: 30px 0;
  white-space: nowrap;
  letter-spacing: 0.3rem;
  color: rgba(255, 255, 255, 0.5);
}
.ldBar-label:before{
  content: "Loading ";
  display: inline;
  text-transform: uppercase;
}
.ldBar-label:after{
  content: "%";
  display: inline;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1031;
  background-color: rgba(0, 0, 0, 1);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.is-loading {
  overflow: hidden;
}
.an-loading *,
.an-loading *:before,
.an-loading *:after {
  animation-play-state: paused !important;
}
.header {
  display: flex;
  background-color: #000;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 300ms cubic-bezier(.17,.67,1,1.23);
}
.logo-brand img {
  transition: all 300ms cubic-bezier(.17,.67,1,1.23);
  height: 150px;
}
.logo-brand img:hover {
  transform: scale(0.95);
}
.header.header-sticky {
  padding: 1rem 0;
}
.header.header-sticky .logo-brand img {
  height: 70px;
}
.main-section {
  padding: 3rem 0;
}
.heading-bar {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.heading-title {
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0;
}

.works-grid-item {
  display: block;
  position: relative;
  overflow: hidden;
}
.works-grid-item .works-image img {
  max-width: 100%;
  filter: saturate(0);
  transition: all 300ms cubic-bezier(.17,.67,1,1.23);
}
.works-grid-item:hover .works-image img {
  filter: saturate(1);
}
.works-grid-item .works-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  transition: all 300ms cubic-bezier(.17,.67,1,1.23);
  transition-delay: 300ms;
}
.works-grid-item:hover .works-overlay {
  height: 100%;
  transition-delay: 0ms;
}
.works-grid-item .works-content {
  padding: 2rem;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms cubic-bezier(.17,.67,1,1.23);
  transition-delay: 0ms;
  transform: translateY(-1rem);
}
.works-grid-item:hover .works-content {
  visibility: visible;
  opacity: 1;
  transition-delay: 300ms;
  transform: translateY(0);
}
.works-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.03em;
}
.works-date {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.works-desc {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
}
.nav-works .nav-link {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  padding: 0;
  margin: 0 1.5rem;
  transition: all 300ms cubic-bezier(.17,.67,1,1.23);
  border-bottom: 1px solid transparent;
}
.nav-works .nav-link:hover,
.nav-works .nav-link:focus {
  color: rgba(255, 255, 255, 1);
}
.nav-works .nav-link.active {
  color: rgba(255, 255, 255, 1);
  border-color: #fff;
}
.nav-works .nav-item:last-child .nav-link {
  padding-right: 0;
}
.main-menu {
  display: flex;
}
.main-menu-item label {
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  padding: 0;
  margin: 0 1rem;
  transition: all 300ms cubic-bezier(.17,.67,1,1.23);
  border-bottom: 1px solid transparent;
}
.main-menu-item input {
  display: none;
}
.main-menu-item input:checked + label {
  color: #fff;
  border-color: #fff;
}

.contact-section {
  padding: 10rem 0;
}
.widget-title {
  letter-spacing: 0.1em;
}
.text-main {
  letter-spacing: 0.025em;
  color: #8F8F8F;
}
.text-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.025em;
}
.text-link::after {
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #fff;
  content: ' ';
  bottom: 0;
  left: 0;
  transition: all 300ms ease-in-out;
}
.text-link:hover::after,
.text-link:focus::after {
  width: 100%;
}
.meta-wrapper {
  display: flex;
  column-gap: 1rem;
}
.meta-icon {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meta-title {
  font-size: 0.875rem;
}


.footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.hidden,
[hidden] {
  display: none !important;
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */
@media (max-width: 991px) {
  .footer-logo {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .logo-brand img {
    height: 120px;
  }
  .header.header-sticky .logo-brand img {
    height: 50px;
  }
  .heading-bar {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
  }
  .heading-title {
    font-size: 1.25rem;
  }
  .main-menu-item label {
    font-size: 0.875rem;
    margin: 0 0.75rem;
  }
  .contact-section {
    text-align: center;
    padding: 5rem 0;
  }
  .meta-wrapper {
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;
    text-align: center;
  }
  .footer-logo img {
    height: 76px;
  }
}

/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}