::-moz-selection {
  color: #ffffff; 
  background: #000000;
}

::selection {
  color: #ffffff; 
  background: #000000;
}

@font-face {
  font-family: 'FFPigalle';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/FFPigalle.eot');
  src: url('../fonts/FFPigalle?#iefix') format('embedded-opentype'),
		url('../fonts/FFPigalle.woff') format('woff'),
		url('../fonts/FFPigalle.ttf')  format('truetype'),
		url('../fonts/FFPigalle.svg#FFPigalle') format('svg');
}

@font-face {
  font-family: 'NeueMachina-Regular';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/NeueMachina-Regular.eot');
  src: url('../fonts/NeueMachina-Regular?#iefix') format('embedded-opentype'),
		url('../fonts/NeueMachina-Regular.woff') format('woff'),
		url('../fonts/NeueMachina-Regular.ttf')  format('truetype'),
		url('../fonts/NeueMachina-Regular.svg#NeueMachina-Regular') format('svg');
}

html,
body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100%;	
  background: #ec8168;
  color: transparent;	
}

* {cursor: pointer;}

.cursor{
  position: absolute;
  pointer-events: none;
  z-index: 999;  
  mix-blend-mode: difference;
}

.cursor:before{
  position: fixed;
  margin-top: -230px;
  margin-left: -12px;
  font-family: 'Arial', sans-serif;
  font-size: 300px;
  content: '•';
  color: #fb926a;
}

.mobile .cursor,
.tablet .cursor {
  display: none !important;
}

canvas[resize] {
  width: 100%;
  height: 100%;
  mix-blend-mode:hard-light;
}

.bg {
  background: #fd9265;
}

.bg2 {
  background: blue;
}

.bg3 {
  background: #f2eee4;
}

.bright a {
  background: #f2eee4;
}

.bg-hide {
  position: absolute;
  top: 0px;	
  height: 100%;
  width: 100%;
  background-repeat: repeat;	
  	
}

.grain {
  position: absolute; 
  z-index: 1; 
  width: 100%; 
  height: 100%; 
  background-image: url("../img/grain.gif");
  mix-blend-mode: multiply;
}

.grain-dark {
  margin: 0;
  overflow: hidden;
  height: 100%;
  background-image: url("../img/grain-dark.gif");
}

.l-container{
  position:absolute;
  top: 0px;
  left: 0;
  padding: 0px 25px;
}

.g-container{
  position:absolute;
  top: 0px;
  right: 0;
  padding:  0px 21px;
}
.i-container{
  position:absolute;
  bottom: 0px;
  right: 0;
  padding: 0px 21px;
}

.und-container{
  position:absolute;
  bottom: 0px;
  left: 0;
  padding: 0px 25px;
}

#circle {
  position:absolute;
  z-index: 9999999;
  top: 50%;
  left: 50%;
  margin-left: -100px;
  margin-top: -100px;
  width: 200px;
  height: 200px;	
}

.fade-in-circle-asterisk {
  animation: fadeIn ease 6.5s;
}

@keyframes fadeIn {
  0% { opacity: 0 }
  40% { opacity: 0 }
  50% { opacity: 1 }	
  100% { opacity: 1 }
}

.fade-in-circle-asterisk {
  animation: fadeIn ease 6.5s;
}

@keyframes fadeIn {
  0% { opacity: 0 }
  40% { opacity: 0 }
  50% { opacity: 1 }	
  100% { opacity: 1 }
}

.fade-in-back-to-start {
  animation: fadeIn ease 2.5s;
}

@keyframes fadeIn {
  0% { opacity: 0 }
  40% { opacity: 0.25 }
  50% { opacity: 0.5 }	
  100% { opacity: 1 }
}

.circle-asterisk{
  position:absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  margin-left: -100px;
  margin-top: -100px;
  width: 200px;
  height: 200px;	
}

.circle-link{
  display: flex; 
  justify-content: center; 
  align-items: center;
}

.rotating {
  -webkit-animation: rotating 7s linear infinite;
  -moz-animation: rotating 7s linear infinite;
  -ms-animation: rotating 7s linear infinite;
  -o-animation: rotating 7s linear infinite;
  animation: rotating 7s linear infinite;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#description {
  position:absolute;
  z-index: 9999;
  width: 50%;
  left: 25%;  
  bottom: 50px !important;
}

.description {

  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 1.5vh;		
  color: blue;
  text-align: center;
  animation: fadeIn ease 6.5s;	
}

@keyframes fadeIn {
  0% { opacity: 0 }
  40% { opacity: 0 }
  50% { opacity: 1 }	
  100% { opacity: 1 }
}

#description2 {
  position:absolute;
  z-index: 9999;
  width: 50%;
  height: 50%;
  left: 25%;  
  top: 55px !important;
  mix-blend-mode: difference;	
}

.description2 {
  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 1.5vh;		
  color: blue;
  text-align: center;
  animation: fadeIn ease 6.5s;	
}

@keyframes fadeIn {
  0% { opacity: 0 }
  40% { opacity: 0 }
  50% { opacity: 1 }	
  100% { opacity: 1 }
}

.mobile .description,
.tablet .description {
  display: none;	
}

.description3 {
  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 4.5vh;		
  color: blue;
  text-align: center;
  animation: fadeIn ease 21s;	
}

@keyframes fadeIn {
  0% { opacity: 0 }
  30% { opacity: 0 }
  40% { opacity: 0 }
  50% { opacity: 0 }	
  60% { opacity: 1 }	
  100% { opacity: 1 }
}

.circle-text {
  position:absolute;
  z-index: 999;
  margin-top: -50px;	
  text-align: center;	
}

.fade-out-circle-text {
  -webkit-animation: seconds 1.0s forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-delay: 2.5s;
  animation: seconds 1.0s forwards;
  animation-iteration-count: 1;
  animation-delay: 2.5s;
}
@-webkit-keyframes seconds {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: -9999px; 
  }
}
@keyframes seconds {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: -9999px; 
  }
}

a {
  position:relative;
  z-index: 9;
  font-family: 'FFPigalle', sans-serif;
  font-size: 40vh;	
  color: #f2eee4;
  text-decoration: none;	
}

a:hover {
  color: #fd9265 !important;
  mix-blend-mode: difference !important;
}

.desc-portfolio {
  z-index: 12;		
  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 1.5vh;
  color: #fd9265;
  text-decoration: underline;
  text-align: center;	
}

.text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50px;
  width: 100vw;
  height: 100vh;
}

.left-container {
  position: absolute;
  float: left;
  left: 0;
  top: 50%;
  padding-left: 30px;
  width: 1.2em; 
  text-align: center;
  word-break: break-all;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.right-container {
  position: absolute;
  float: right;
  right: 0;
  top: 50%;
  padding-right: 30px;
  width: 1.2em; 
  text-align: center;
  word-break: break-all;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.a-small {
  position: relative;
  z-index: 9;
  display: flex; 
  justify-content: center; 
  align-items: center;	
  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 1.2vh;	
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s ease-in-out 0.1s;	
}

.a-small:hover {
  color: #d2ccc5;
  transition: all 0.2s ease-in-out 0.1s;
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 3vh;		
  color: blue;
  text-decoration: none;
  text-align: center;	
  -webkit-animation: seconds 1.0s forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-delay: 2.0s;
  animation: seconds 1.0s forwards;
  animation-iteration-count: 1;
  animation-delay: 2.0s;
}
@-webkit-keyframes seconds {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes seconds {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.refresh {  
  position: fixed;
  z-index: 1999;	
  left: 35%;
  margin-top: 55px;
  height: 50px;		
  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 1.5vh;		
  color: blue;
  text-decoration: underline;
  text-align: center;	
  animation: fadeIn2 ease 6.5s;	
}

@keyframes fadeIn2 {
  0% { opacity: 0 }
  40% { opacity: 0 }
  50% { opacity: 1 }	
  100% { opacity: 1 }
}

.close-info {  
  position: fixed;
  z-index: 999;	
  left: 35%;
  margin-top: 55px;
  height: 50px;	
  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 1.5vh;		
  color: #fd9265;
  text-decoration: underline;
  animation: fadeIn3 ease 6.5s;	
}

@keyframes fadeIn3 {
  0% { opacity: 0 }
  40% { opacity: 0 }
  50% { opacity: 1 }	
  100% { opacity: 1 }
}

.letters {  
  position: fixed;
  z-index: 999;		
  right: 35%;
  margin-top: 55px;
  height: 50px;		
  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 1.5vh;		
  color: blue;
  text-decoration: underline;
  animation: fadeIn4 ease 6.5s;	
}

@keyframes fadeIn4 {
  0% { opacity: 0 }
  40% { opacity: 0 }
  50% { opacity: 1 }	
  100% { opacity: 1 }
}

.letters a{  
  color: inherit !important;
  mix-blend-mode: normal !important;
}

.letters2 {  
  position: fixed;
  z-index: 999;		
  right: 35%;
  margin-top: 55px;
  height: 50px;		
  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 1.5vh;		
  color: #fd9265;
  text-decoration: underline;
  animation: fadeIn5 ease 6.5s;	
}

@keyframes fadeIn5 {
  0% { opacity: 0 }
  40% { opacity: 0 }
  50% { opacity: 1 }	
  100% { opacity: 1 }
}

.letters2 a{  
  color: inherit !important;
  mix-blend-mode: normal !important;
}

.line {  
  display: block;
  height: 2px;
  border: 0;
  border-top: 2px solid blue;
  margin: 5px 90px;
  padding: 0;
}

.hr-container {
  display: flex; 
  justify-content: center; 
  align-items: center;
}

.hr {
  padding: 100px 0px 100px 0px;
  border-left: 1px solid #000000;
}

* {
  user-select: none;
}

.word {
  position: fixed;
  cursor: grab;
  font-family: 'NeueMachina-Regular', sans-serif;
  font-size: 6vh;
  line-height: 1;	
  color: black;
}

.word.highlighted {
  font-weight: bold;
  color: #fd9265;
}

.carousel {
  position: relative;
  z-index: 9;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}

.carousel-item {
  --items: 10;
  --width: clamp(315px, 75vw, 1700px);
  --height: clamp(415px, 57vw, 850px);
  --x: calc(var(--active) * 800%);
  --y: calc(var(--active) * 400%);
  --rot: calc(var(--active) * 360deg);
  --opacity: calc(var(--zIndex) / var(--items) * 1 - 0);
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transform-origin: 0% 100%;
  background: #f2eee4;
  pointer-events: all;
  transform: translate(var(--x), var(--y)) rotate(var(--rot));
  transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
}

.carousel-item .carousel-box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  opacity: var(--opacity);
  font-family: 'NeueMachina-Regular', sans-serif;
}

.carousel-item .carousel-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-item .title {
  position: absolute;
  z-index: 1;
  color: #f2eee4;
  bottom: 20px;
  right: 0px;
  width: 100%;
  text-align: center;	
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-size: clamp(15px, 1.8vw, 25px);
}

.carousel-item .num {
  position: absolute;
  z-index: 1;
  color: #f2eee4;
  top: 20px;
  left: 00px;
  width: 100%;
  text-align: center;	
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-size: clamp(15px, 1.8vw, 25px);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

@media only screen and (device-width:768px) and (orientation:portrait) {	
.carousel-item {
  --width: clamp(315px, 75vw, 1700px);
  --height: clamp(415px, 100vw, 850px);
}
}







@media screen and (max-width: 1440px) {
.refresh { 
  left: 25%;	
}
.close-info { 
  left: 25%;	
}	
.letters {  	
  right: 25%;	
}
.letters2 {  	
  right: 25%;	
}	
}

@media screen and (max-width: 1280px) {
.refresh { 
  font-size: 2vh;		
  left: 25%;	
}
.close-info { 
  font-size: 2vh;		
  left: 25%;	
}	
.letters {  
  font-size: 2vh;		
  right: 25%;
}
.letters2 {  
  font-size: 2vh;		
  right: 25%;
}	
.desc-portfolio {
  font-size: 2vh;
}	
}

@media screen and (max-width: 1024px) {
.carousel {
  z-index: 11 !important;
}
}

@media only screen and (max-device-width: 1024px) and (orientation: portrait) {
.refresh { 
  font-size: 1.3vh;		
  left: 4%;	
}
.close-info { 
  font-size: 1.3vh;		
  left: 4%;	
}	
.letters {  
  font-size: 1.3vh;		
  right: 4%;
}
.letters2 {  
  font-size: 1.3vh;		
  right: 4%;
}	
.desc-portfolio {
  font-size: 1.3vh;
}	
.word {
  font-size: 4.2vh;
}	
}

@media screen and (max-width: 834px) {
.refresh { 
  font-size: 1.5vh;		
  left: 4%;	
}
.close-info { 
  font-size: 1.5vh;		
  left: 4%;	
}	
.letters {  
  font-size: 1.5vh;		
  right: 4%;	
}
.letters2 { 	
  font-size: 1.5vh;		
  right: 4%;	
}	
.desc-portfolio {
  font-size: 1.5vh;
}	
}

@media screen and (max-width: 810px) {
.refresh { 	
  left: 5%;	
}
.close-info{ 	
  left: 5%;	
}	
.letters {  	
  right: 5%;	
}
.letters2 {  	
  right: 5%;	
}
.word {
  font-size: 4.5vh;
}		
}

@media screen and (max-width: 590px) {
a {
	font-size: 27vh;	
}	
.hr-vert {
	padding: 100px 0px 100px 0px;
	border-left: 0px solid #000000;
}
.centered {
  font-size: 4vh;	
}	
.refresh {  
  font-size: 1.8vh;
  margin-top: 20px;	
  left: 8%;	
}
.close-info {  
  font-size: 1.8vh;
  margin-top: 20px;		
  left: 8%;	
}	
.letters {  
  font-size: 1.8vh;	
  margin-top: 20px;		
  right: 8%;	
}
.letters2 {  
  font-size: 1.8vh;	
  margin-top: 20px;
  right: 8%;	
}	
.desc-portfolio {
  font-size: 1.8vh;
}
.description3 {
  position: relative;
  padding-bottom: 122px !important;	
}		
.circle-asterisk {
  position:absolute;
  z-index: 99999;
  top: 49%;
  left: 49%;
  margin-left: -74px;
  margin-top: -74px;
  width: 150px;
  height: 148px;
}	
.carousel {
  z-index: 9 !important;
}
.word {
  font-size: 3.5vh;
}	
}