
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  #roto {
    position: relative;
  }
  #roto::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    /* background: linear-gradient(0deg, #fff, transparent); */
    opacity: 0;
    z-index: 4;
    transition: 0.2s all ease;
  }
  #roto.active::before {
    opacity: 1;
    height: 50%;
  }
  
  .slide {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    /* background-color: #000; */
  }
  .slide .mainImage {
    position: absolute;
    /* width: 130vw; */
    width: 100vw;
    height: 130vw;
    object-fit: contain;
    object-position: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation-name: rotate;
    animation-timing-function: cubic-bezier(0.02, 0.63, 0.23, 0.99);
    animation-iteration-count: 1;
    animation-duration: 1.1s;
  }
  .slide .roundOuter {
    position: absolute;
    width: 86vw;
    height: 86vw;
    overflow: hidden;
    border-radius: 50%;
    left: calc(50% - 43vw);
    top: calc(50% - 43vw);
    filter: brightness(0.9);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .slide .roundOuter img {
    position: absolute;
    width: 130vw;
    height: 130vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center;
    animation-name: rotate;
    animation-timing-function: cubic-bezier(0.02, 0.63, 0.23, 0.99);
    animation-iteration-count: 1;
    animation-duration: 1.3s;
  }
  .slide .roundInner {
    position: absolute;
    width: 50vw;
    height: 50vw;
    overflow: hidden;
    left: calc(50% - 25vw);
    top: calc(50% - 25vw);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
  }
  .slide .roundInner img {
    position: absolute;
    width: 130vw;
    height: 130vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center;
    animation-name: rotate;
    animation-timing-function: cubic-bezier(0.02, 0.63, 0.23, 0.99);
    animation-iteration-count: 1;
    animation-duration: 1.2s;
  }
  .slide .slideText {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .slide .slideText.trans-bg{
    background-color: transparent;
    width: 70%;
  }
  .slide .slideText.trans-bg h1{
    font-size: 3vw;
  }
  .slide .slideText h1 {
    font-size: 4vw;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5vw;
    text-align: center;
    padding-left: 5vw;
    animation-delay: 1s;
    filter: drop-shadow(0 2px 10px #000);
    position: relative;
    color: white;
  }
  .slide .slideText h1::after {
    content: "";
    position: absolute;
    width: 40vw;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .slide .slideText p {
    text-align: center;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 1.3rem;
    padding-left: 1.3rem;
    text-transform: uppercase;
    animation-delay: 1.5s;
    filter: drop-shadow(0 2px 10px #000);
    color: white;
  }
  .slide .slideText .buttonNav {
    display: flex;
    justify-content: center;
    gap: 12px;
    animation-delay: 1.7s;
  }
  .slide .slideText .buttonNav button {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 10px #000);
  }
  .slide .slideText .buttonNav span {
    display: grid;
    width: 1px;
    flex: 0 0 1px;
    background-color: #fff;
    filter: drop-shadow(0 2px 10px #000);
  }
  
  @keyframes rotate {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) scale(5);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
  }
  /* #about {
    color: #999;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #about h2 {
    color: #000;
  }
  #about img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  } */
  
  @media (max-width: 575px) {
    .slide .mainImage {
      width: 130vh;
      height: 130vh;
    }
    .slide .roundOuter {
      width: 86vh;
      height: 86vh;
      left: calc(50% - 43vh);
      top: calc(50% - 43vh);
    }
    .slide .roundOuter img {
      width: 130vh;
      height: 130vh;
    }
    .slide .roundInner {
      width: 50vh;
      height: 50vh;
      left: calc(50% - 25vh);
      top: calc(50% - 25vh);
    }
    .slide .roundInner img {
      width: 130vh;
      height: 130vh;
    }
    .slide .slideText h1 {
      font-size: 6vw;
      letter-spacing: 2vw;
      padding-left: 3vw;
      padding-top: 2rem;
      color: white;
    }
    .slide .slideText p {
      font-size: 4vw !important;
      letter-spacing: 1vw;
      padding-left: 2vw;
      padding-top: 1rem;
      color: white;
    }
  }