@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url(//db.onlinewebfonts.com/c/067cc4a05526cc8001ffbe6a576eace4?family=Cosi+Azure+Black+Stencil);
* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

body {
  overflow-x: hidden;
  background: #0a0a0a;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "cinzel";
  font-weight: 200;
}

.abt-container {
  max-width: 1166px;
  margin: 0 auto;
}

header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1000;
  height: 100%;
}

.logo-img {
  width: 150px;
}

.logo-menu {
  position: absolute;
  width: 50px;
  padding: 30px;
}

.section-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 200px;
}

.topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.topic h1 {
  font-size: 80px;
  font-weight: 200;
}

.section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(#000000), to(transparent));
  background: linear-gradient(to left, transparent, #000000, transparent);
}

header ul {
  padding-left: 0;
  padding: 30px;
}

header ul li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

header ul li a {
  color: #fff;
  font-family: "cinzel";
  text-decoration: none;
}

header ul li:before {
  content: '';
  position: absolute;
  top: 40%;
  right: 0;
  width: 50%;
  height: 7px;
  background: #721f19;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
}

header ul li :hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

header ul li :hover {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  color: #000000;
}

/* clients */
::-webkit-scrollbar {
  width: 0;
}

.progressbar {
  position: fixed;
  top: 0;
  left: 85%;
  background: rgba(255, 255, 255, 0.4);
  width: 1px;
  z-index: -2;
}

.navigation-wrapper {
  margin-top: -100px;
}

.navigation-wrapper ul {
  margin-top: 240px;
  margin-left: 100px;
  margin-bottom: 200px;
  list-style: none;
  position: absolute;
}

.navigation-item {
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 120px 0;
}

a {
  font-family: "cinzel";
  font-size: 100px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.3);
}

span {
  position: relative;
  display: block;
}

.navigation-item span:before {
  width: 0;
  color: #ffffff;
  overflow: hidden;
  position: absolute;
  font-family: "cinzel";
  content: attr(data-text);
  -webkit-transition: all 1s cubic-bezier(0.84, 0, 0.08, 0.99);
  transition: all 1s cubic-bezier(0.84, 0, 0.08, 0.99);
  z-index: -1;
}

.navigation-item span:hover:before {
  width: 100%;
}

.project-preview-wrapper {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -100;
}

.project-preview {
  position: fixed;
  top: 12%;
  left: 50%;
  width: 0px;
  height: 400px;
  background: url(../Images/portfolio/zoe.jpg) no-repeat 50% 50%;
  background-size: cover;
  overflow: hidden;
  z-index: -2;
}

/* navbar */
.navbar .navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
  font-size: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar .navbar-container .site-title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.navbar .navbar-container .site-type {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.navbar .navbar-container .site-year {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  text-align: right;
}

/* header */
.header {
  margin: 80px 0;
  z-index: 2 !important;
}

.header .header-container h1 {
  font-family: "cinzel";
  font-size: 12rem;
}

@media (max-width: 900px) {
  .header .header-container h1 {
    font-size: 5.4rem;
  }
}

/* hero-image */
.hero-image {
  width: 100%;
  margin-top: -300px;
}

.hero-image::after {
  content: "";
  display: table;
  clear: both;
}

.hero-image .hero-image-container {
  width: 40%;
  float: right;
}

.hero-image .hero-image-container img {
  width: 100%;
}

@media (max-width: 900px) {
  .hero-image {
    margin-top: 40px;
  }
  .hero-image .hero-image-container {
    width: 100%;
  }
}

/* section-header */
.section-header .section-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
  font-size: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* about */
.brand-logo {
  background: #fff;
  margin-top: 300px;
  position: relative;
  z-index: -5;
  color: black;
  padding: 30px;
  height: 50vh;
}

.brand-logo-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
}

.item img {
  height: 50px;
}

/* projects */
.client__item {
  position: relative;
  padding: 1.6vw 0 0 0;
  margin: 4px;
}

.client__item-link {
  display: inline-block;
  cursor: pointer;
  position: relative;
  color: #fff;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  font-family: "cinzel";
  text-transform: uppercase;
}

.client__item-link::before {
  all: initial;
  text-transform: uppercase;
  counter-increment: client;
  position: absolute;
  bottom: 60%;
  left: 0;
  pointer-events: none;
}

.client__item-link:hover {
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  opacity: 0;
}

.client__item-img {
  pointer-events: none;
  position: absolute;
  height: 50vh;
  max-height: 400px;
  opacity: 0;
  left: 100%;
  top: 50%;
  -webkit-transform: translate3d(calc(-100% - 6vw), -30%, 0) translate3d(0, 20px, 0);
  transform: translate3d(calc(-100% - 6vw), -30%, 0) translate3d(0, 20px, 0);
}

.client__item-link:hover + .client__item-img {
  opacity: 1;
  -webkit-transform: translate3d(calc(-100% - 6vw), -30%, 0) rotate3d(0, 0, 1, 4deg);
  transform: translate3d(calc(-100% - 6vw), -30%, 0) rotate3d(0, 0, 1, 4deg);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.client {
  padding: 0vh 0 0 0vh;
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  font-size: 8vw;
}

.marquee {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #fff;
  pointer-events: none;
  mix-blend-mode: difference;
}

.marquee__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-animation: marquee 5s linear infinite;
  animation: marquee 5s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  padding: 2vw 0;
}

.client__item-link:hover ~ .marquee .marquee__inner {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.client__item-link,
.marquee span {
  white-space: nowrap;
  font-size: 8vw;
  padding: 1.6vw 1vw;
  font-weight: 900;
}

.marquee span {
  font-family: "cinzel" !important;
  text-transform: uppercase;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(var(--move-initial), 0, 0);
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(var(--move-final), 0, 0);
    transform: translate3d(var(--move-final), 0, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(var(--move-initial), 0, 0);
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(var(--move-final), 0, 0);
    transform: translate3d(var(--move-final), 0, 0);
  }
}

/* clients */
.clients .clients-container p {
  font-family: "cinzel";
  font-size: 80px;
  line-height: 100px;
}

@media (max-width: 900px) {
  .clients .clients-container p {
    font-size: 36px;
    line-height: 50px;
    text-align: justify;
  }
}

/* socials */
.socials {
  padding: 20px 0;
}

.socials .socials-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.socials .socials-container a {
  cursor: pointer;
  text-decoration: none;
  font-family: "cinzel" !important;
  font-size: 64px;
}

@media (max-width: 900px) {
  .socials .socials-container a {
    font-size: 30px;
  }
}

@media (max-width: 900px) {
  .progressbar,
  .project-preview-wrapper {
    display: none;
  }
  .navigation-item a {
    font-size: 24px;
  }
}
/*# sourceMappingURL=portfolio.css.map */