/*** The new CSS Reset - version 1.4.5 (last updated 13.1.2022) ***/

/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}
*{
	scroll-behavior: smooth;
}
/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]){
  display:none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]){
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

input[type="checkbox"],
input[type="radio"] {
  all: revert;
}

 input,
 textarea,
 select {
  all: revert;
 }
 html{
  background-color: #f9f9f9;
  font-size: 15px;
  transition: .3s ease all;
 }
 body,
 html{
  transition: .3s ease all;
 }
*,a{
  font-family: "Kanit", sans-serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: "Teko", sans-serif;
  font-weight: 600;
}
h6{
  color: #434447;
  font-size: 1.75rem;
  text-transform: uppercase;
  display: inline-block;
  padding-right: 1.7rem;
  position: relative;
  overflow: hidden;
}
/*
h6::before{
  content: "";
  display: block;
  position: absolute;
  width: 1.3rem;
  height: 1.3rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icons/info.svg);
  top: .5rem;
  right: 0;
  transform: translate(0, -3rem);
  opacity: 0;
  transition: .3s ease all;
}
h6::after{
  content: "";
  display: block;
  position: absolute;
  width: 1.3rem;
  height: 1.3rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icons/info.svg);
  top: .5rem;
  right: 0;
  filter: brightness(0);
  opacity: .7;
  transition: .3s ease all;
}
h6:hover{
  color: #ec9b4d;
}
h6:hover::after{
  transform: translate(0, -3rem);
  opacity: 0;
}
h6:hover::before{
  transform: translate(0, 0);
  opacity: 1;
}
  */
p,small{
  color: #505050;
  font-size: 1rem;
  line-height: 1.3;
  display: inline-block;
  font-weight: 300;
}
header{
  width: 100%;
      background-color: #ffffff;
    border-bottom: 1px solid #e9e9e9;
}
header .wrapper{
  width: 90%;
  margin: auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
}
header .wrapper .logo{
  position: relative;
  overflow: hidden;
}
header .wrapper .logo img{
  display: block;
  width: 7rem;
  transition: .3s ease all;
}
header .wrapper .logo img:last-of-type{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translateY(3rem);
  opacity: 0;
}

/* Estilo del switch */
.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  background-color: #048bda;
  border-radius: 24px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  transition: 0.4s;
}
.slider:hover {
  background-color: #2083bc;
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4);
}
.slider img{
  width: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  transform: translateY(30px);
  transition: .3s ease all
}
.slider img:first-of-type{
  left: 6px;
  z-index: 1;
}
.slider img:last-of-type{
  right: 6px;
  transform: translateY(0);
}
.slider:before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
  z-index: 5;
}
input:checked + .slider {
  background-color: #2b3142;
  border: 1px solid #414551;
}
input:checked + .slider:before {
  transform: translateX(26px);
  background-color: #717171;
}
input:checked + .slider:hover{
  background-color: #485b91 !important;
  box-shadow: inset 2px 2px 5px rgb(0 0 0 / 57%);
}
input:checked + .slider img:first-of-type{
  transform: translateY(0);
}




h1{
  display: none;
}
.portfolio{
  width: 90%;
  margin: auto;
  max-width: 500px;
  margin-top: 5rem;
  padding-bottom: 8rem;
}
.projects {
    width: 100% !important;
    min-height: 50vh !important;
}
.project{
  position: relative;
  margin-bottom: 3rem;
}
.project div.info{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project ol{
  opacity: .5;
}
.project ol li{
  display: inline-block;
  font-size: .85rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #000000;
}
.project ol li::after{
  content: "/";
  padding: 0 2px;
}
.project ol li:last-child::after{
  display: none;
}
.project .image-container img{
  border-radius: 15px;
}
.project b{
  font-weight: 400;
  background-color: #f9f9f9;
  position: absolute;
  display: inline-block;
  right: 0;
  top: 0;
  font-size: .9rem;
  padding: .5rem 1.1rem;
  color: #000;
  border-bottom-left-radius: 15px;
}
.project b::after,
.project b::before{
  content: "";
  position: absolute;
  background-color: transparent;
  height: calc(2 * 15px);
  width: 15px;
  box-shadow: 0 calc(-1 * 15px) 0 0 #f9f9f9;
}
.project b::before{
  left: calc(-1 * 15px);
  border-top-right-radius: 15px;
  top: 0;
}
.project b::after{
  right: 0;
  border-top-right-radius: 15px;
  bottom: calc(-2 * 15px);
}
.project a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #363b4d;
  gap: 10px;
  width: 160px;
  padding: .85rem 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: .3s ease all;
}
.project a::after{
  content: "";
  width: .8rem;
  height: .8rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f9f9f9;
  border-top-right-radius: .2rem;
  transition: .3s ease all;
}
.project a:hover::after{
  transform: scale(30);
  background-color: #eb9b4d;
  border-radius: 3rem;
}
.project a *{
  z-index: 5;
  transition: .3s ease all;
}
.project a div{
  position: relative;
  width: .65rem;
}
.project a span{
  text-transform: uppercase;
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: #fafafa;
  letter-spacing: .5px;
}
.project a img{
  filter: invert(1);
}
.project a img:last-of-type{
    transform: translate(-1.2rem, 0) rotate(45deg);
    opacity: 0;
}
.project a div img:first-of-type{
  position: absolute;
}
.project a:hover div img:first-of-type{
    transform: translate(.8rem, -.8rem);
    opacity: 0;
}
.project a:hover img:last-of-type{
  transform: translate(0, 0) rotate(45deg);
  opacity: 1;
}
.main-slider{
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: contain;

}
.swiper {
  max-width: 500px;
}
.swiper-pagination-bullet {
    background: #575757 !important;
}
.swiper-pagination-bullet-active{
  background: #3b3f4d !important;
}
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal{
  bottom: unset !important;
  top: calc(45vh + 25px) !important;
  width: 40% !important;
  left: 5% !important;
}
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal{
  display: flex;
  gap: 3%;
}
.swiper-pagination-clickable .swiper-pagination-bullet{
  display: block;
  margin: 0 !important;
  width: 100%;
  padding: 0;
  border-radius: 0;
  height: 2px;
}
.swiper-button-next,
.swiper-button-prev {
    background-color: #2f3139;
    width: 40px !important;
    height: 40px !important;
    top: calc(45vh + 25px) !important;
    margin-top: 0 !important;
    color: #ffffff !important;
    cursor: none !important;
    transition: .3s ease all;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: .85;
}
.swiper-button-next {
    background-color: #24252b;
}
.swiper-button-next::after, 
.swiper-button-prev:after {
    font-size: 1rem !important;
}
.swiper-button-next{
  right: 5% !important;
}
.swiper-button-prev{
  left: unset !important;
  right: calc(5% + 40px) !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-prev:focus {
  outline: none;
}
.slide-container {
    width: 100%;
    display: flex;
    align-items: center;
    margin: auto;
    flex-direction: column-reverse;
    position: relative;
}
.slide-container::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 50%;
    background-image: radial-gradient(circle at 1px 1px, var(--clb-pattern-color) 1px, transparent 0);
    background-size: 20px 20px;
}
.slide-container ol li {
  display: inline-block;
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #626262;
}
.slide-container ol li::after {
    content: "/";
    padding: 0 2px;
}
.slide-container ol li:last-child::after {
  display: none;
}
.slide-description ol{
  background-color: transparent;
  padding: 0;
  position: absolute;
  top: 0;
  left: 1.5rem;
  text-align: right;
  transform: rotate(90deg);
  transform-origin: 0 0;
}
.slide-description{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 90%;
  margin: auto;
  max-width: 500px;
  margin-bottom: 5rem;
  position: relative;
  padding-left: 2.5rem;
  margin-top: 2rem;
}
.slide-description b {
  font-weight: 400;
  background-color: rgb(255 255 255);
  font-size: .9rem;
  padding: .25rem .8rem;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05);
  display: inline-block;
  z-index: 5;
  margin-bottom: .3rem;
  border-radius: 10px;
  color: #000;
}
.slide-description *{
  text-align: left;
}
.slide-description h2{
  font-size: 4rem;
  line-height: .95;
  margin: .75rem 0 1.2rem 0;
  font-weight: 700;
  text-transform: uppercase;
  color: #3b3f4c;
}
.slide-description p{
    line-height: 1.5;
    font-size: 1.15rem;
    font-weight: 400;
}


.slide-image img {
  display: block;
  width: 50%;
  height: 45vh;
  object-fit: cover;
}
.slide-image img:last-of-type{
  margin-top: 3rem;
}
.slide-image{
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 500px;
  display: flex;
}
.slide-description a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  background-color: #363b4d;
  gap: 11px;
  padding: 1rem 1rem;
  position: relative;
  overflow: hidden;
  margin-top: 1.4rem;
  transition: .3s ease all;
  min-width: 200px;
  border-radius: .75rem;
  border-top-right-radius: 0px;
}
.slide-description a::before {
    content: "";
    display: block;
    width: 300px;
    height: 300px;
    position: absolute;
    left: 0;
    top: -127px;
    background-color: #eb9b4d;
    transform: translate(-380px, 0) rotate(45deg);
    transition: .4s ease all;
}
.slide-description a:hover::before {
  transform: translate(0, 0) rotate(45deg);
}
.slide-description a div {
    position: relative;
    width: .65rem;
}
.slide-description a div img{
  filter: invert(1);
}
.slide-description a div img:first-of-type {
    position: absolute;
}
.slide-description a img:last-of-type {
    transform: translate(-1.2rem, 0) rotate(45deg);
    opacity: 0;
}




.slide-description a:hover div img:first-of-type{
    transform: translate(.8rem, -.8rem);
    opacity: 0;
}
.slide-description a:hover img:last-of-type{
  transform: translate(0, 0) rotate(45deg);
  opacity: 1;
}
.slide-description a::after{
  content: attr(data-letters);
  display: block;
  width: 100%;
  text-align: center;
  background-color: red;
}




.slide-description a span {
    text-transform: uppercase;
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: #fafafa;
    letter-spacing: .5px;
    transition: .3s ease all;
}
.slide-description a span:last-of-type {
    position: absolute;
    left: 2.8rem;
    transform: translateY(1rem);
    transition: .3s ease all;
    opacity: 0;
}
.slide-description a:hover span:first-of-type {
  transform: translateY(-1rem);
  opacity: 0;
}
.slide-description a:hover span:last-of-type {
  transform: translateY(0);
  opacity: 1;
}
.slide-description a::after {
    content: "";
    width: 1rem;
    height: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top-right-radius: .2rem;
    background-color: #f9f9f9;
}
.swiper {
  width: 100%;
  height: 100%;
}
.autoplay-progress {
    position: absolute;
    right: 5%;
    top: 5px;
    z-index: 10;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color:#4a4d5a;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 2px;
  stroke: #4a4d5a;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.slide-description *{
  transition: .3s ease-out all;
  opacity: 0;
  transform: translateY(2rem);
}
.slide-description ol{
transform:  translateY(-4rem) rotate(90deg);
}
.slide-description b{
  transition-delay: .35s;
}
.slide-description ol{
  transition-delay: .4s;
}
.slide-description h2{
  transition-delay: .5s;
}
.slide-description p{
  color: #5c5757;
  transition-delay: .6s;
}
.slide-description a{
  transition-delay: .7s;
}
.swiper-slide-active .slide-description *{
  opacity: 1;
  transform: translateY(0);
}
.swiper-slide-active .slide-description ol{
    transform:  translateY(0) rotate(90deg);
    opacity: .5;
}
.slide-image img{
transition: .5s .3s cubic-bezier(0.76, 0, 0.24, 1);
}
.slide-image img:last-of-type{
  transform: translateY(50%);
  opacity: 0;
}
.slide-image img:first-of-type{
  transform: translateY(-50%);
  opacity: 0;
}
.swiper-slide-active .slide-image img{
  transform: translateY(0);
  opacity: 1;
}


.x-delivery-marquee {
  overflow: hidden;
}

.x-marquee-text {
  display: inline;
  white-space: nowrap;
}
.x-delivery-marquee::after {
  content: "";
  display: block;
  clear: both;
}

.x-marquee-text div,
.x-marquee-text p {
  display: inline-block;
}
.x-marquee-text p{
  font-size: 4rem !important;
}
.filters{
  display: none;
}
.filters button {
  font-size: 1.1rem;
  font-weight: 400;
  background: transparent;
  padding: .5rem 1.5rem;
  border-radius: .6rem;
  transition: .3s ease all;
}
.filters button:hover{
  background-color: #e3e3e3;
}
.filters button.active,
.filters button.active:hover{
  background-color: #434447;
  color:#FFF;
}

.dark-mode{
  background-color: #212329;
}
.dark-mode h1{
  color: #000;
  opacity: .08;
}
.dark-mode .slide-description h2,
.dark-mode h6{
  color: #ffb070;
}
.dark-mode .slide-description p,
.dark-mode small{
    color: #bbbbbb;
    font-weight: 200 !important;
}
.dark-mode .project ol li {
    color: #ffb070;
    font-weight: 200 !important;
}
.dark-mode .project b::after, 
.dark-mode .project b::before {
    box-shadow: 0 calc(-1 * 15px) 0 0 #212329;
}
.dark-mode .project b {
    background-color: #212329;
    color: #ffb070;
}
.dark-mode .project a,
.dark-mode .slide-description a{
  background-color: #ffffff26;
}
.dark-mode .slide-description b{
      background-color: rgb(32 38 44);
      color: #FFF;
}
.dark-mode .slide-container ol li {
    font-weight: 200;
    color: #ffb070;
}
.dark-mode .filters{
  background-color: #252b32e8;
}
.dark-mode .filters button{
  color: #b3b3b3;
}
.dark-mode .filters button:hover{
  background-color: #2c333c;
}
.dark-mode .filters button.active, 
.dark-mode .filters button.active:hover {
    background-color: #4e6178 !important;
    color: #FFF !important;
}
.dark-mode .swiper-pagination-bullet {
    background: #ffffff !important;
}
.dark-mode .swiper-pagination-bullet-active {
    background: #ffb071 !important;
}
.dark-mode .swiper-button-next {
    background-color: #273748;
}
.dark-mode .swiper-button-prev {
    background-color: #2f445b;
}
.dark-mode header {
    width: 100%;
    background-color: #1b1d23;
    border-bottom: 1px solid #282b33;
}
.dark-mode header .wrapper .logo img:first-of-type{
  opacity: 0;
  transform: translateY(-3rem);
}
.dark-mode header .wrapper .logo img:last-of-type{
  transform: translate(0);
  opacity: 1;
}
.dark-mode h6:hover{
  color: #FFF;
}
.dark-mode h6::after{
  opacity: 1;
  filter: brightness(1);
}
.dark-mode h6::before{
  filter: brightness(0) invert(1);
}
.dark-mode .project a::after {
    background-color: #212329;
}
.dark-mode .project a:hover::after {
    background-color: #eb9b4d;
}

@media screen and (min-width: 768px) {
  html{
    font-size: 16px;
  }
  header{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 6;
  }
  .portfolio{
    max-width: 1350px;
  }
  .projects {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
  }
  li.project {
    width: calc(50% - .7rem);
    box-sizing: border-box;
    margin-bottom: 0;
    padding-left: 1.5rem;
    margin: 2rem 0;
  }
  .slide-container{
    height: calc(100vh - 75px);
    max-width: 1350px;
    position: relative;
    width: 90%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .slide-image img {
    height: calc(70vh - 70px);
    z-index: 1;
  }
  .slide-image img:first-of-type{
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }
  .slide-image img:last-of-type{
    margin-top: 6rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
  .slide-image{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    left: unset;
    right: 0;
    display: flex;
    align-items: center;
  }
  .slide-image::after{
    background: linear-gradient(90deg, rgb(252 251 251 / 90%) 0%, rgba(255, 255, 255, 0) 100%);
    height: 100%;
    width: 75%;
  }
  .slide-description{
    z-index: 6;
    margin: unset;
    max-width: 380px;
  }
  h1{
    display: block;
    position: absolute;
    width: 100%;
    text-transform: uppercase;
    font-size: 20vw;
    top: 50%;
    transform: translateY(-50%);
    opacity: .03;
    line-height: .85;
    font-weight: 900;
    padding-left: 4rem;
  }
  .swiper {
    max-width: unset;
  }
  .swiper-horizontal>.swiper-pagination-bullets, 
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: 0 !important;
    width: 18% !important;
    left: unset !important;
    right: 30% !important;
    bottom: 0 !important;
    margin: auto !important;
    height: 2px;
    transform: translateY(calc(35vh + -10px)) !important;
    max-width: 200px;
  }
  .slide-description {
    padding-left: 2rem;
  }
  .swiper-button-next, .swiper-button-prev {
    top: 0 !important;
    bottom: 0 !important;
    margin: auto !important;
    transform: translateY(calc(35vh + 13px)) !important;
  }
  .swiper-button-next{
    right: 7% !important;
  }
  .swiper-button-prev {
    right: calc(7% + 40px) !important;
  }
  .autoplay-progress {
  top: 0 !important;
  bottom: 0 !important;
  margin: auto !important;
  transform: translateY(calc(35vh + 13px)) !important;
  width: 50px;
  height: 50px;
  right: unset !important;
  left: calc(5% + 2rem);
  }
  .slide-description a span:last-of-type {
    left: 2.5rem;
  }
  .project b{
    font-size: 1rem;
  }
  header .wrapper {
    max-width: 1350px;
    height: 75px;
  }
  .filters{
      display: flex;
      background-color: #eeeeeecc;
      border-radius: .9rem;
      padding: .3rem .3rem .27rem .3rem;
      overflow: auto;
      align-items: center;
      max-width: 47.8rem;
      margin: auto;
      gap: .37rem 6.29px;
      position: sticky;
      top: 92vh;
      z-index: 6;
      backdrop-filter: blur(2px);
    }
}

@media screen and (min-width: 1024px) {
  h6{
    margin-top: 0;
  }
  .project div.info {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding-left: 2rem;
  }
  .project div.info > div{
    width: calc(100% - 130px);
    max-width: 390px;
  }
  .project a{
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    width: 115px;
    min-height: 7.5rem;
    border-radius: 12px;
    padding: 1rem;
  }
  .project a div {
    width: .8rem;
  }
  .project a span{
    font-weight: 600;
    font-size: .8rem;
  }
  p, small {
    font-size: .95rem;
  }
  .project a::before {
    top: -65px;
  }
  .project a:hover::before {
    transform: translate(-50px, 0) rotate(45deg);
  }
  .slide-description h2 {
    font-size: 4.5rem;
  }
  .slide-description p {
    line-height: 1.5;
    font-size: 1.2rem;
    font-weight: 300;
  }
  .slide-description{
    padding-left: 6%;
    max-width: 490px;
  }
  .projects .image-container{
    position: relative;
    justify-content: flex-end;
    display: flex;
  }
  .projects .image-container img{ 
    width: calc(100% - 2rem);
  }
  .project ol {
    background-color: transparent;
    padding: 0;
    position: absolute;
    top: 0;
    left: 3rem;
    text-align: right;
    transform: rotate(90deg);
    transform-origin: 0 0;
  }
  .slide-description ol{
    left: 2.8rem;
  }
  .swiper {
    max-width: 1350px;
  }
  header .wrapper .logo {
    width: 8rem;
  }
}
@media screen and (min-width: 1100px) {
  html{
    font-size: 17px;
  }
  .swiper-horizontal>.swiper-pagination-bullets, 
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    max-width: 250px;
  }
  .slide-image{
    max-width: 550px;
  }
  .slide-description a {
    min-width: 215px;
  }
}
@media screen and (min-width: 1200px) {
  .project a {
    min-height: 6.5rem;
  }
  .slide-image{
    max-width: 600px;
  }
  h1{
    font-size: 14rem;
  }
  .slide-container{
    width: 95%;
  }
}



.cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
}

.cursor--small{
    width: 10px;
    height: 10px;
    left: -2.5px;
    top: -2.5px;
    border-radius: 50%;
    z-index: 11000;
    background: #f99442;
}

.cursor--canvas
{
    width: 100vw;
    height: 100vh;
    z-index: 12000;
}

.cursor--emoji {
  background: none;
  font-size: 24px;
  width: auto;
  height: auto;
  left: -11px;
  top: -19px;
}
body , body a
{
    cursor: none;
}



/*
.modal {
  z-index: 9999;
  position: fixed;
  opacity: 0;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(54 59 77 / 95%);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0,0,0,.8);
}



.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(1) scaleX(1);
  }
}
@keyframes unfoldOut {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.005) scaleX(0);
    opacity: 0;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}


.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}
  */