@font-face {
  font-family: "Suisse";
  src: url("../font/Suisse.ttf");
}

* {
  box-sizing: border-box;
}
/* Setting fade transition and default settings */
body {
  color: #000;
  background-color: #f4f4f4;
  transition: background-color 1s ease;
}
body::before{
   content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent
    url("http://assets.iceable.com/img/noise-transparent.png") repeat 0 0;
  background-size: 300px 300px;
  -webkit-animation: noise-animation 0.3s steps(5) infinite;
          animation: noise-animation 0.3s steps(5) infinite;
  opacity: 0.9;
  will-change: transform;
  z-index: 100;
  pointer-events: none;
}

  /* Dust/Scratches background effect for the entire site */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://img.freepik.com/premium-photo/white-dust-scratches-black-background_279525-2.jpg?w=640");
  background-repeat: repeat;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 999;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
}

.home-section{
    background: url("../bg.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.home-title, .about h1{
  font-family: "Suisse";
   src: url("../font/Suisse.tt");
  font-weight: 600;
  font-style: normal;
  line-height: .80em;
  color:#fff;
  font-size: 8em;
}
.mobile-services-section{
  display: none;
}
.client-logo{
  max-width: 10em;
}
.projects{
  background:#07101d;
}
.about h1{
  color:#000;
  font-size:6em;
}
.about h2{
  font-size:2em;
  font-weight:bold;
  padding:20px 0;
} 
.main-menu a{
    padding: 0 20px;
    font-size: 13px;
    color:#fff!important;
    text-decoration: none;
    border: none;
}
.main-menu a:hover{
    color: #feba01!important;
}
a.service-item {
  border: 0px solid #000!important;
  background: #000;
  text-align: center;
  padding: 10px;
  border-radius: 45px;
  margin:0 5px;
  display: flex;
  color: #f4f4f4!important;
}
.vl {
  border-left: 1px solid #feba01;
  height: 130px;
}

a, a > span {
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: 24px;
}
a:before, a:after, a > span:before, a > span:after {
  content: '';
  position: absolute;
  transition: transform .5s ease;
}
.hover-1 {
  padding-top: 10px;
}
.hover-1:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  transform: scaleX(0);
}
.hover-1:hover:before {
  transform: scaleX(1);
}
.swipe-text{
  display: none;
}
.footer-section{
  font-size: 2em;
}
.footer h1{
  padding: .8em 0;
    font-size: 5em;
}


@media (min-width: 1024px) {
    .lg\:h-screen {
        height: 90vh;
    }
}


.fade-out-on-scroll {
  transition: opacity 0.1s ease;
  opacity: 1;
}

.fade-out-on-scroll.hidden {
  opacity: 0;
}

/* -------------------------------- 

Mask 2

-------------------------------- */
.mask-2.cd-intro-content * {
  /* overwrite default style */
  opacity: 1;
}

.mask-2.cd-intro-content .content-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 2em 0;
  overflow: hidden;
}
.mask-2.cd-intro-content .content-wrapper::before {
  /* vertical bar */
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background-color: #ffffff;
  -webkit-animation: cd-pulse 1.3s 0.3s both;
  -moz-animation: cd-pulse 1.3s 0.3s both;
  animation: cd-pulse 1.3s 0.3s both;
}
.no-cssanimations .mask-2.cd-intro-content .content-wrapper::before {
  opacity: 0;
}
.mask-2.cd-intro-content .content-wrapper > div {
  /* wrap the entire content */
  position: relative;
  z-index: 1;
}

.mask-2.cd-intro-content .content-wrapper,
.mask-2.cd-intro-content .content-wrapper > div {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  animation-delay: 1.8s;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.mask-2.cd-intro-content .content-wrapper {
  -webkit-animation-name: cd-mask-wrapper;
  -moz-animation-name: cd-mask-wrapper;
  animation-name: cd-mask-wrapper;
}

.mask-2.cd-intro-content .content-wrapper > div {
  -webkit-animation-name: cd-mask-content;
  -moz-animation-name: cd-mask-content;
  animation-name: cd-mask-content;
}

@-webkit-keyframes cd-mask-wrapper {
  0% {
    -webkit-transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-mask-wrapper {
  0% {
    -moz-transform: translateX(50%);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-mask-wrapper {
  0% {
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-mask-content {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-mask-content {
  0% {
    -moz-transform: translateX(-100%);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-mask-content {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-pulse {
  0%, 30.8% {
    opacity: 0;
  }
  15.4%, 46.2%, 61.5%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes cd-pulse {
  0%, 30.8% {
    opacity: 0;
  }
  15.4%, 46.2%, 61.5%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cd-pulse {
  0%, 30.8% {
    opacity: 0;
  }
  15.4%, 46.2%, 61.5%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}





/***********CUSTOM CURSOR****
html,
html *,
body,
body * {
  cursor: none;
}

.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
    z-index: 1000;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cursor-dot {
  width: 12px;
  height:12px;
  background-color: #ffcc00;
}

.cursor-dot-outline {
  width: 40px;
  height: 40px;
  background-color: rgb(255, 204, 0, 0.25);
}****/

/*
section:not(#sectionPin) {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  padding: 50px 10vw;
  margin: auto;
  place-items: center;
}

img {
  height: 80vh;
  width: auto;
  object-fit: cover;
}

h1 {
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 1rem;
  position: absolute;
  top: 10vw;
  left: 10vw;
  z-index: 4;
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (max-width: 768px) {
  h1 {
    font-size: 16vw;
  }
}
h1 span {
  display: block;
}

h2 {
  font-size: 2rem;
  max-width: 400px;
}

.credit {
  font-family: Termina, sans-serif;
}
.credit a {
  color: var(--text-color);
}

* {
  box-sizing: border-box;
}

#sectionPin {
  height: 100vh;
  overflow: hidden;
  display: flex;
  left: 0;
  background: var(--text-color);
  color: var(--bg-color);
}

.pin-wrap {
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 10vw;
}
.pin-wrap > * {
  min-width: 60vw;
  padding: 0 5vw;
}

p {
  position: absolute;
  bottom: 10vw;
  right: 10vw;
  width: 200px;
  line-height: 1.5;
}

*/

.header,
footer {
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.work-header {
  background: #000!important;
  margin:auto;
  padding: 0px;
  background: transparent
    url("http://assets.iceable.com/img/noise-transparent.png") repeat 0 0;
  background-size: 300px 300px;
  -webkit-animation: noise-animation 0.3s steps(5) infinite;
          animation: noise-animation 0.3s steps(5) infinite;
  opacity: 0.9;
  will-change: transform;
  z-index: 100;
  pointer-events: none;
}
.work-header h1{
  color:#fff;
  font-size: 58vh;
  text-transform: uppercase;
  padding: 15vh 5vh;
}

.footer{
  margin: 1em auto;
  width: 50%;
}
.footer h2{
  font-size: 0.6em;
}
.footer p{
  font-size: 0.2em;
}
.footer a{
  text-decoration:underline;
}


.media-and-text {
  display: grid;
  grid-template: auto / 40% 60%;
}

.media {
  position: sticky;
  top: 0;
  height: 100vh;
}

.work-info{
  margin: 3em 0;
}
h3 {
  font-size: 3rem!important;
  font-weight: 800!important;
}


.img-fluid {
  max-width: 100%;
}

ul {
  margin-left: 40px;
}

li {
  margin: 10px 0;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .media-and-text {
    grid-template: auto auto / 100%;
  }

  .media {
    position: relative;
    height: 400px;
  }

  .media-and-text:nth-child(2) .media {
    grid-row: 1;
  }
}



.section {
  text-align: center;
  color: #eee;
  margin: 0 auto;
  max-width: 600px;
}
.section__title {
  font-size: 2.5rem;
  font-weight: 600;
}
.section__text {
  font-size: 1.25rem;
  margin: 10px auto 20px auto;
  max-width: 50ch;
  position: relative;
  z-index: 1;
}
.section__link {
  z-index: 0;
}

.dot {
  position: fixed;
  width: 8em;
  height: 8rem;
  fill: #474787;
  top: -4em;
  left: -4em;
  opacity: 0;
  transform: scale(0);
  transform-origin: 50% 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
.dot text {
  font: normal 4px sans-serif;
  text-transform: uppercase;
  fill: #eee;
  opacity: 0;
}



