/*************  MEDIA   ***************************************/
@media (min-width: 1025px) {
  ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    -webkit-transition: width .1s ease;
    transition: width .1s ease;
  }
  ::-webkit-scrollbar-track {
    border-radius: 0;
  }
  ::-webkit-scrollbar-thumb {
    background: #ababab;
    border-radius: 2px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #999999;
  }
}

@media (min-width: 768px) {
  nav {
    grid-template-columns: 1fr 1fr 1fr;
  }
  nav .menu {
    top: 60px;
  }
  nav .menu ul {
    padding: 2rem;
  }
  .section-title {
    grid-template-columns: 1fr 2fr;
  }
  .mob-show {
    display: none;
  }
}

@media (max-width: 767.98px) {
  aside {
    display: none;
  }
  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  /* nav {
    height: 60px;
  } */
  nav .menu {
    top: 60px;
    flex-wrap: wrap;
    text-align: center;
  }
  nav .menu ul {
    display: block;
  }
  nav .nav-logo {
    padding-left: 1rem;
    max-width: 180px;
  }
  nav .nav-phone {
    font-size: 20px;
    padding-right: 1rem;
  }
  nav .quick-nav {
    width: 50px;
    height: 50px;
  }
  .master-slider-parent {
    display: none;
  }
  .section-title {
    grid-template-columns: 1fr;
  }
  .mob-bg {
    background-color: var(--bg-header);
  }
  .mob-show {
    display: block;
  }
  .mob-hide {
    display: none;
  }
  .project-section {
    grid-gap: 2rem;
  }
  .project-section::before {
    display: none;
  }
  .project-section figure {
    padding-left: 0;
  }
  .project-section figure figcaption {
    position: relative;
    min-width: 100%;
    height: auto;
  }
  .project-section figure figcaption a {
    padding: 1rem;
    background-color: transparent;
  }
  .project-section figure figcaption a h2 {
    color: var(--text-2);
  }
  .project-section .ratio-1-5::before {
    padding-top: 70%;
  }
  .section-title article p {
    color: var(--text-1);
  }
  .project-list-section {
    display: block;
    padding: 0;
  }
  .project-list-section .project-list {
    grid-gap: 1rem;
    grid-template-columns: 1px;
    grid-auto-flow: column;
    grid-auto-columns: calc(80% - 1rem * 2);
    overflow-x: scroll;
    scroll-snap-type: x proximity;
    padding-top: 0;
  }
  .project-list-section .project-list::before, .project-list-section .project-list::after {
    content: '';
  }
  .project-list-section .project-list::after {
    width: 1px;
  }
  .project-list-section .project-list::before {
    width: 1rem;
  }
  .project-list-section .project-list li {
    background-color: var(--bg-header);
  }
  .project-list-section .project-list a {
    padding: 1rem;
  }
  .project-list-section li {
    box-shadow: none;
  }
  .project-list-section .project-list-img {
    display: none;
  }
  .gallery-header {
    padding: 0;
  }
  .gallery-header figure {
    padding-left: 0;
  }
  .gallery-header figure > div {
    width: 100%;
  }
  .gallery-header figure > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-header figure figcaption {
    position: relative;
    width: 100%;
    padding: 1rem;
  }
  .gallery-header figure figcaption h1 {
    font-size: 4rem;
    padding: 0;
  }
  .gallery-header figure figcaption.fit-content .title-lg {
    font-size: 3.5rem;
  }
  .gallery-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .gallery-container div:before,
  .gallery-container div:after {
    display: none;
  }
  .gallery-collection {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  footer .social a i {
    font-size: 3rem;
  }
  .gallery-project .ratio-2-5:before {
    padding-top: 60%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .gallery-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section-title {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-title {
    grid-template-columns: 1fr 4fr;
  }
}

@media (min-width: 1200px) {
  section {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
/*# sourceMappingURL=respons.css.map */