#cursor {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
  mix-blend-mode: difference;
}

@media (hover: hover) and (pointer: fine) {
  .cursor__circle {
    width: 64px;
    height: 64px;
    margin-top: -50%;
    margin-left: -50%;
    border-radius: 50%;
    border: solid 1px rgba(227, 222, 193, 0.64);
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  #cursor.arrow .cursor__circle{
    width: 128px;
    height: 128px;
    background-color: #073099;
    border-color: #073099;
  }
  
  #cursor.arrow::after{
    content: '';
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    background-image: url('https://svgshare.com/i/MzQ.svg');
    background-repeat: no-repeat;
    background-position: center;
  }
  
  #cursor.subtle .cursor__circle{
    opacity: 0.16;
  }
  
  #cursor.overlay .cursor__circle{
    width: 48px;
    height: 48px;
    background-color: rgba(227, 222, 193, 0.08);
    border-color: transparent;
  }
}








* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

html,
body,
section{
  width: 100%;
  height: 100%;
}

section{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
}

section::after{
  content: 'Only for laptop or desktop 🙇‍♂️';
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #1c213e;
  line-height: 1.7;
}

.container{
  width: 33vw;
}

.image-container{
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 75%;
/*   margin-bottom: 0.5vw; */
  margin-top: 10vw;
}

.image-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(95%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.text{
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #1c213e;
  line-height: 1.7;
}

.underline{
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.underline::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #1c213e;
  opacity: 0.32;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.button{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  color: #1c213e;
}

.button.icon-button{
  background-color: transparent;
  width: 40px;
  height: 40px;
  margin: -8px;
}

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

@media (hover: hover) and (pointer: fine) {
  .image-container:hover img{
    transform: scale(1.1);
  }
  
  .underline:hover::after{
    opacity: 1;
  }
  
  section::after{
    display: none;
  }
}