@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1rem;
}

body {
  background-color: #FDFDFD;
}

p {
  font-size: 1.2rem;
  line-height: 2rem;
}

@keyframes rotate {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.circle {
  animation-name: rotate;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#loader {
  position: fixed;
  z-index: 200;
  width: 100%;
  height: 100vh;
  background-color: #1D1D1D;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader .circle {
  width: 15vw;
  height: 15vw;
}
#loader .circle svg {
  width: 15vw;
  height: 15vw;
}

#loader.fadeOut {
  animation: fadeOut 1s forwards;
}

.logo__white {
  fill: #FDFDFD;
}

.logo__black {
  fill: #1D1D1D;
}

header {
  position: fixed;
  width: 100%;
  mix-blend-mode: difference;
  background-color: transparent;
  z-index: 100;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1D1D1D;
  height: 80px;
  padding: 0 4vw;
}

main {
  padding-top: 80px;
}

.ham-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  overflow: hidden;
  right: 0;
  top: -100%;
  width: 100vw;
  height: 100%;
  color: #FDFDFD;
  background: #1D1D1D;
  transition-duration: 0.35s;
  z-index: 50;
}
.ham-menu.active {
  top: 0;
}
.ham-menu ul {
  width: 35%;
  min-width: 230px;
  list-style: none;
  padding-right: 30px;
}
.ham-menu ul li {
  width: 100%;
  font-size: 2rem;
  padding: 4vh 0;
}
.ham-menu ul li a {
  display: block;
  text-decoration: none;
  font-size: 36px;
  line-height: 70px;
  color: #FDFDFD;
  transition-duration: 0.2s;
  font-weight: 700;
  max-width: 250px;
}
.ham-menu ul li a span {
  position: relative;
}
.ham-menu ul li a span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  height: 1px;
  top: auto;
  bottom: 0;
  background-color: #fff;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition-duration: 0.6s;
  -ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition-duration: 0.6s;
  -moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 0;
  left: auto;
  right: 0;
}
.ham-menu ul li a:hover span::after {
  width: 100%;
  right: auto;
  left: 0;
}

#logo {
  grid-column: 2/3;
  font-size: 24px;
  color: #FDFDFD;
}

.ham {
  justify-self: end;
  width: 55px;
  height: 50px;
  padding: 10px;
  cursor: pointer;
}

.ham span {
  display: block;
  background: #FDFDFD;
  width: 40px;
  height: 2px;
  transition: margin 0.25s 0.25s, 0.25s transform;
}

.ham .bar1 {
  margin-bottom: 10px;
}

.ham .bar3 {
  margin-top: 10px;
}

.ham.active span {
  transition: 0.25s margin, 0.25s transform 0.25s;
}

.ham.active .bar1 {
  margin-top: 12px;
  margin-bottom: -2px;
  transform: rotate(45deg);
}

.ham.active .bar2 {
  transform: rotate(45deg);
}

.ham.active .bar3 {
  margin-top: -2px;
  transform: rotate(135deg);
}

.slick-vertical .slick-slide {
  height: min(70vw, 80vh);
}

.slider {
  visibility: hidden;
}
.slider img {
  height: min(70vw, 80vh);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider .slick-slide {
  position: relative;
}

.slider.slick-initialized {
  visibility: visible;
}

.slick-vertical .slick-slide {
  border: none;
  width: 100%;
}

.mainvisual {
  background: #1D1D1D;
  width: 100%;
  height: calc(60vh - 1px);
  overflow: hidden;
  display: flex;
}
.mainvisual .slider.__vertical {
  width: 65%;
  height: 60vh;
  position: relative;
  top: -1px;
}
.mainvisual .slider.__vertical div {
  height: 60vh;
}
.mainvisual .slider.__vertical img {
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainvisual .slider.__vertical .slick-next,
.mainvisual .slider.__vertical .slick-prev {
  z-index: 1;
  height: 60px;
  width: 60px;
  right: -120px;
  top: 30%;
  transition: background-color 0.5s ease;
}
.mainvisual .slider.__vertical .slick-next:hover,
.mainvisual .slider.__vertical .slick-prev:hover {
  background: #fff;
  color: #1D1D1D;
}
.mainvisual .slider.__vertical .slick-next:hover::before,
.mainvisual .slider.__vertical .slick-prev:hover::before {
  background: #1D1D1D;
}
.mainvisual .slider.__vertical .slick-next:hover::after,
.mainvisual .slider.__vertical .slick-prev:hover::after {
  background: #1D1D1D;
}
.mainvisual .slider.__vertical .slick-next::before, .mainvisual .slider.__vertical .slick-next::after,
.mainvisual .slider.__vertical .slick-prev::before,
.mainvisual .slider.__vertical .slick-prev::after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 1px;
  background: #fff;
  top: 29px;
}
.mainvisual .slider.__vertical .slick-next::before,
.mainvisual .slider.__vertical .slick-prev::before {
  right: 26px;
  rotate: 45deg;
}
.mainvisual .slider.__vertical .slick-next::after,
.mainvisual .slider.__vertical .slick-prev::after {
  right: 8px;
  rotate: -45deg;
}
.mainvisual .slider.__vertical .slick-prev {
  left: auto;
  top: 20%;
}
.mainvisual .slider.__vertical .slick-prev::before {
  rotate: 135deg;
}
.mainvisual .slider.__vertical .slick-prev::after {
  rotate: 45deg;
}
.mainvisual .description {
  width: 35%;
  background-color: #1D1D1D;
  color: #FDFDFD;
  position: relative;
}
.mainvisual .description .description__inner {
  position: absolute;
  padding: 0 70px;
  top: 40%;
}

.description h2 {
  font-size: 2.5rem;
  margin-bottom: 35px;
  line-height: 3.5rem;
}
.description h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.heading {
  margin-bottom: 80px;
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  #logo {
    font-size: 20px;
  }
  .mainvisual {
    height: auto;
    flex-direction: column;
  }
  .mainvisual .slider.__vertical {
    width: 100%;
  }
  .mainvisual .description {
    width: 100%;
  }
  .mainvisual .description .description__inner {
    position: static;
    padding: 120px 6vw;
  }
}
.about {
  display: flex;
  margin-inline: auto;
}

.about__container {
  width: 65%;
}

.about__block {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: 120px 25vw 200px 6vw;
}

.about__images {
  width: 35%;
  position: relative;
}
.about__images .circle {
  position: absolute;
  left: -100px;
  bottom: 50px;
  right: 0;
  z-index: 1;
  width: 150px;
  height: 150px;
}
.about__images .circle svg {
  width: 150px;
  height: 150px;
}

.about__name {
  margin-bottom: 35px;
  font-weight: 600;
}

.about__image {
  width: 100%;
  height: 100%;
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

.about__button {
  position: relative;
}
.about__button::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1D1D1D;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.19, 0.77, 0.29, 1.05);
}

.small-slider-wrap {
  width: 100%;
  display: flex;
  padding: 0;
  overflow: hidden;
}
.small-slider-wrap .description {
  bottom: 17%;
  left: 10%;
}
.small-slider-wrap .description h2 {
  margin-bottom: 0.3rem;
}
.small-slider-wrap .small-slider-content {
  flex: 1;
  width: 100px;
  position: relative;
  padding-left: 10px;
}
.small-slider-wrap .small-slider-content:first-of-type {
  padding: 0;
}
.small-slider-wrap .slider img {
  height: min(60vh, 50vw);
}
.small-slider-wrap .description {
  margin: 45px 15px 0;
}
.small-slider-wrap .slick-dots {
  text-align: left;
  margin-left: 10px;
}
.small-slider-wrap .slick-dots li {
  margin: 0 5px;
}
.small-slider-wrap .slick-dots li button {
  width: 50px;
  height: 23px;
  padding: 0;
}
.small-slider-wrap .slick-dots li button::before {
  content: "";
  width: 50px;
  height: 3px;
  background: #fff;
  top: 50%;
}
.small-slider-wrap .slick-dots li button:hover::before,
.small-slider-wrap .slick-dots li button:focus::before {
  background: #fff;
}
.small-slider-wrap .slick-dots li .slick-active button:before {
  background: #fff;
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    overflow: hidden;
  }
  .about__block {
    padding: 120px 6vw;
  }
  .about__container {
    width: 100%;
  }
  .about__images {
    width: 100%;
  }
  .about__images .circle {
    left: auto;
    top: -60px;
  }
  .small-slider-wrap {
    display: block;
  }
  .small-slider-wrap .small-slider-content {
    width: 100%;
  }
  .small-slider-wrap .small-slider-content .slider {
    width: 100%;
  }
  .small-slider-wrap .description {
    padding-bottom: 100px;
  }
}
.service {
  background-color: #1D1D1D;
  color: #FDFDFD;
  padding: 120px 6vw;
}

.works {
  background-color: #FDFDFD;
  color: #1D1D1D;
  padding-bottom: 150px;
}
.works h2 {
  padding: 120px 6vw 0;
}
.works .slick-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.work-slider {
  position: relative;
}
.work-slider .slick-slide img {
  width: 100%;
}
.work-slider .slick-list {
  padding: 0 !important;
}

.section-project {
  padding: 50px 0;
  position: relative;
  background-color: #222;
}

.section__title,
.section__subtitle {
  text-align: center;
  color: white;
  display: block;
}

.section__title {
  font-size: 3em;
  line-height: 1;
  margin: 0 0 20px;
}

.section__subtitle {
  font-size: 1.2em;
  line-height: 1.5;
  opacity: 0.5;
}

.section__subtitle a {
  color: inherit;
}

.work-slider__nav.__bg {
  margin: 150px 0 180px;
  filter: blur(10px);
}

.work-slider__nav.__bg img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.work-slider__nav.__list img {
  padding: 10px;
}
.work-slider__nav.__list .slick-list {
  padding: 0 6vw !important;
}

.slick-screen {
  width: 768px;
  height: 451px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.slick-screen .project-detail {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

.slick-screen .screen-frame {
  content: " ";
  width: 100%;
  height: 451px;
  position: absolute;
  background-image: url("https://dl.dropboxusercontent.com/u/26808427/cdn/experiments/training/macbook-frame.png");
  background-repeat: no-repeat;
}

.slick-screen .project {
  margin-right: -100%;
  float: left;
  cursor: grab;
  position: relative;
}
.slick-screen .project:active {
  cursor: grabbing;
}

.cursor {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 6vw;
  height: 6vw;
  opacity: 0;
  z-index: 100;
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
}

.cursor__text {
  font-size: 0.8vw;
  letter-spacing: 0.04em;
}

.cursor--works {
  background-color: #1D1D1D;
}

.cursor--works .cursor__text {
  color: #FDFDFD;
}

@media (max-width: 768px) {
  .service {
    padding: 120px 6vw 0;
  }
  .slick-screen {
    width: 100%;
  }
  .cursor {
    display: none;
  }
  .works {
    padding-bottom: 100px;
  }
  .works h2 {
    padding: 100px 7vw 70px;
    margin: 0;
  }
  .works .slick-screen {
    position: static;
    height: auto;
  }
  .works .slick-slider {
    position: static;
  }
  .works .slick-slide {
    min-width: 100px;
    flex-basis: calc(33.333% - 20px);
  }
  .work-slider {
    padding-bottom: 20px;
  }
  .work-slider__nav.__bg {
    display: none;
  }
  .work-slider__nav.__list .slick-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .work-slider__nav.__list .slick-track:before {
    display: none;
  }
  .work-slider__nav.__list .slick-track:after {
    display: none;
  }
}
footer {
  background: #1D1D1D;
  padding: 120px 6vw;
}

.contact__title {
  color: #fff;
  font-weight: 300;
  margin-bottom: 28px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.contact__link {
  color: #1D1D1D;
  text-decoration: none;
  font-size: min(5.59895vw, 7rem);
  font-weight: 900;
  text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
  transition-property: color, text-shadow;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
}
.contact__link:hover {
  color: #fff;
  text-shadow: none;
}

.footer__container {
  color: #fff;
  border-top: 1px solid #fff;
  margin-top: 5rem;
  padding-top: 2rem;
}

.footer__copyright {
  font-weight: 300;
  color: #777;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact__title {
    margin-bottom: 14px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}/*# sourceMappingURL=style.css.map */