<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.work-page {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 130px), 50% 100%, 0 calc(100% - 130px));
}
.work-page::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(95.64% 77.06% at 46.43% 27.95%, #D0DAE2 0%, #FFFFFF 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
}
.work-page::after {
  content: '';
  position: absolute;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  z-index: -1;
  background: url('../img/work-page-bg.png') no-repeat;
  background-size: 100% 100%;
  background-position: top center;
}
.section-title {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: bold;
  font-size: 54px;
  line-height: 66px;
  display: flex;
  align-items: center;
  color: #001427;
  margin-bottom: 16px;
}

.work-page-text {
  font-family: 'Chantal Light';
  font-style: normal;
  font-weight: 300;
  font-size: 26px;
  line-height: 31px;
  text-align: center;
  text-transform: uppercase;
  color: #D0DAE2;
  transform: rotate(-10.31deg);
  position: absolute;
  top: 100px;
  right: 100px;
}

.work-page-bg1 {
  position: absolute;
  width: 400px;
  top: 100px;
  left: 0;
}

.work-page-bg2 {
  position: absolute;
  width: 400px;
  bottom: 100px;
  right: 0;
}

.work-page-bg1 img,
.work-page-bg2 img {
  width: 100%;
}

.work-page .section-title {
  padding-top: 16vw;
  justify-content: center;
}

.section-tabs {
  display: flex;
  justify-content: center;
  margin: 2.5em 0;
}

.section-tab {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #5C6C7C;
  padding: 0 1.5em;
  transition: color 0.3s ease;
  cursor: pointer;
}

.section-tab:hover {
  color: #F79023;
}
.section-tab.active {
  color: #001427;
}

.section-tab.active::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 120%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, 0);
  border-radius: 50%;
  background: #F79023;
  box-shadow: 0px 1px 10px rgb(247 144 35 / 60%);
}

.section-content {
  display: flex;
  flex-flow: row wrap;
  margin: 10% -10px 10%;
}

.project {
  width: calc(50% - 20px);
  margin: 10px;
  position: relative;
  height: 0;
  padding-top: 40%;
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
  margin-top: -7%;
}
.project.even {
  clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0 100%);
}
.project-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: rgba(10, 11, 15, 0.4);
  padding: 24% 10%;
}
.project.even .project-wrapper {
  align-items: flex-start;
}
.project-title {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
}
.project-desc {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #D0DAE2;
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.project .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(190.54deg, rgba(10, 11, 15, 0.83) 18.03%, rgba(10, 11, 15, 0.5) 83.41%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.project .hover-image {
  display: none;
}
.project:hover .image {
  display: none;
}
.project:hover .hover-image {
  display: block;
  z-index: 3;
}

@media (max-width: 1200px) {
  .section-tab {
    font-size: 20px;
  }
  .work-page-text {
    top: 65px;
    right: 60px;
  }
  .section-title {
    font-size: 48px;
    line-height: 58px;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .work-page {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
  }
  .work-page-text {
    top: 65px;
    right: 10px;
    font-size: 14px;
    line-height: 17px;
    transform: rotate(-13.31deg);
  }
  .work-page-bg1 {
    width: 40%;
    top: 50px;
  }
  .work-page-bg2 {
    width: 50%;
    bottom: -30px;
  }
  .work-page .section-title {
    font-size: 36px;
    line-height: 44px;
    padding-top: 42vw;
  }
  .section-tabs {
    margin: 2em 0;
  }
  .section-tab {
    font-size: 16px;
    padding: 0 0.5em;
    white-space: nowrap;
  }
  .section-content {
    margin: 80px 16px 120px;
  }
  .project {
    width: 100%;
    padding-top: 120vw;
    clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
    margin: 0;
    margin-top: -12%;
  }
  .project.even {
    clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0 85%);
  }
  .project-wrapper {
    justify-content: center;
    align-items: center;
  }
  .project.even .project-wrapper {
    align-items: center;
  }
  .project-title {
    font-size: 24px;
  }
  .project-desc {
    font-size: 16px;
  }
}
</pre></body></html>