@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    max-width: 100vw;
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
}

section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* section one */
.section-1 {
    background-color: black;
    color: white;
}

.section-1 .stroke {
    font-size: calc(100vw / 6);
    line-height: 100px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    animation: fadein 1s ease-in-out;
    margin-bottom: 50px;
}

@keyframes fadein {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

.title {
    color: white;
    font-size: 50px;
    font-weight: bold;
    display: flex;
}

.title > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.title span:nth-child(1) {
    animation: fadelr 1s ease-out;
}

.title span:nth-child(2) {
    animation: fadebt 1s ease-out;
}

.title span:nth-child(3) {
    animation: faderl 1s ease-out;
}

@keyframes fadelr {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes faderl {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadebt {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* section two */
.section-2 button {
    height: 40px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    padding: 0 20px;
    border: 2px solid black;
    cursor: pointer;
    background: linear-gradient(to right, #000 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.7s ease-out, color 0.7s ease-out;
}

.section-2 button:hover {
    background-position: left bottom;
    color: white;
}

.section-2 ul {
    width: 100%;
    max-width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: bold;
}

.section-2 ul li {
    list-style-type: none;
    position: relative;
    cursor: pointer;
}

.section-2 ul li::after {
    content: '';
    height: 4px;
    position: absolute;
    bottom: -2px;
    left: 50%;
    background-color: #000;
    width: 0;
    transform: translateX(-50%);
    transition: width 0.3s;
}

.section-2 ul li:hover::after {
    width: 100%;
}

/* section three */
.section-3 {
    background-color: black;
    color: white;
    
}

.section-3 p {
    margin-top: 25px;
    font-size: 1.25rem;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: red;
}
  
.small {
    padding: 15px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    border-radius: 50%;
    animation: small 1s linear infinite;
}
  
.medium {
    padding: 15px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    border-radius: 50%;
    animation: medium 1s linear infinite;
}
  
.large {
    padding: 15px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    border-radius: 50%;
    animation: large 1s linear infinite;
}
  
@keyframes small {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(720deg);
    }
}
  
@keyframes medium {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(720deg);
    }
}
  
@keyframes large {
    from {
      transform: rotate(360deg);
    }
    to {
      transform: rotate(0deg);
    }
}

/* section four */
.section-4 {
    justify-content: start !important;
}

.section-4 div {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.section-4 h1:nth-child(1) {
    animation: chute 5000ms linear 2s infinite;
}
.section-4 h1:nth-child(2) {
    animation: chute 5500ms linear 2s infinite;
}
.section-4 h1:nth-child(3) {
    animation: chute 6000ms linear 2s infinite;
}
.section-4 h1:nth-child(4) {
    animation: chute 6500ms linear 2s infinite;
}
.section-4 h1:nth-child(5) {
    animation: chute 7000ms linear 2s infinite;
}
.section-4 h1:nth-child(6) {
    animation: chute 7500ms linear 2s infinite;
}
.section-4 h1:nth-child(7) {
    animation: chute 8000ms linear 2s infinite;
}
  
@keyframes chute {
    0% {
      margin-top: 0vh;
      opacity: 1;
    }
    50% {
      margin-top: 50vh;
      opacity: 0.8;
    }
    75% {
      margin-top: 75vh;
      opacity: 0.3;
    }
    100% {
      margin-top: 90vh;
      opacity: 0;
    } 
}

/* section five */
.section-5 {
    background-color: #07252d;
}

.section-5 h2 {
    font-size: 6em;
    text-transform: uppercase;
    font-weight: bold;
    color: #0e3742;
    position: relative;
    letter-spacing: 15px;
    width: 100%;
    text-align: center;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0004); /* reflect the text */
    line-height: 0.70em;
    outline: none;
    animation: tubelight 5s linear infinite;
}
  
@keyframes tubelight {
    0%, 15%, 20%, 50.1%, 60%, 65.1%, 80%, 90.1%, 92% {
      color: #0e3742;
      text-shadow: none;
    }
    15.1%, 20.1%, 50%, 60.1%, 65%, 80.1%, 90%, 92.1%,100% {
      color: #fff;
      text-shadow: 0 0 10px #03bcf4,
      0 0 20px #03bcf4,
      0 0 40px #03bcf4,
      0 0 80px #03bcf4,
      0 0 160px #03bcf4;
    }
}

/* section six */
.section-6 .pulse-anim {
    width: 100px;
    height: 100px;
    background-color: #000;
    border-radius: 50%;
    margin-bottom: 60px;
    animation: pulse 1.3s infinite;
}

@keyframes pulse {
    from {
        box-shadow: 0 0 0 0 black;
    }
    to {
        box-shadow: 0 0 0 18px rgba(0, 0, 0, 0.01);
    }
}

.section-6 .nope-anim {
    width: 40px;
    height: 40px;
    background-color: #000;
    margin-bottom: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.section-6 .nope-anim:hover {
    animation: nope 0.3s backwards;
}

@keyframes nope {
    0% {
        transform: translateX(0px);
    }
    20% {
        transform: translateX(-10px);
    }
    40% {
        transform: translateX(10px);
    }
    60% {
        transform: translateX(-10px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0px);
    }
}

.section-6 .defile {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.defile h2 {
    animation: defile 15s linear 1s infinite;
}

@keyframes defile {
    from {
        transform: translateX(70%);
    }
    to {
        transform: translateX(-70%);
    }
}

/* section seven */
.section-7 {
    background-color: #000;
}

.section-7 div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.section-7 img {
    filter: saturate(0);
    transition: filter 0.4s ease-in-out;
    cursor: pointer;
}

.section-7 img:hover {
    filter: saturate(100%);
}

/* section eight */
.section-8 {
    background: linear-gradient(45deg, #07252d, #0e3742);
}

.menu {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu li {
    position: absolute;
    left: 0;
    list-style: none;
    transform-origin: 100px;
    transition: 0.5s;
    transition-delay: calc(0.1s * var(--i));
    transform: rotate(0deg) translateX(80px);
}

.menu.active li {
    transform: rotate(calc(360deg / 8 * var(--i)));
}

.menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    transform: rotate(calc(360deg / -8 * var(--i)));
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
    color: #000;
    transition: 0.5s;
}

.menu li a:hover {
    color: red;
}

.toggle {
    position: absolute;
    height: 60px;
    width: 60px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    font-size: 2em;
    transition: transform 1.25s;
}

.menu.active .toggle {
    transform: rotate(315deg);
}

/* section nine */
.section-9 {
    background-color: #333;
    font-family: 'Poppins', sans-serif;
}

.container {
    position: relative;
    display: flex;
    padding: 80px 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
}

.section-9 .card {
    position: relative;
    width: 350px;
    height: 180px;
    background: #fff;
    transition: 0.5s;
}

.section-9 .card:hover {
    height: 450px;
}

.section-9 .card .lines {
    position: absolute;
    inset: 0;
    background: #000;
    overflow: hidden;
}

.section-9 .card .lines::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 120px;
    background: linear-gradient(transparent, #45f3ff, #45f3ff, #45f3ff, transparent);
    animation: animate 4s linear infinite;
    animation-play-state: paused;
}

.section-9 .card:hover .lines::before {
    animation-play-state: running;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.section-9 .card .lines:after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #292929;
}

.section-9 .card .imgBx {
    position: absolute;
    top: -60px;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translateX(-50%);
    background-color: #000;
    transition: 0.5s;
    z-index: 10;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-9 .card:hover .imgBx {
    top: 25px;
    width: 200px;
    height: 20 0px;
}

.section-9 .card .imgBx::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: linear-gradient(transparent, #ff3c7b, #ff3c7b, #ff3c7b, transparent);
    animation: animate-imgbox 4s linear infinite;
    animation-play-state: paused;
}

.section-9 .card:hover .imgBx::before {
    animation-play-state: running;
}

@keyframes animate-imgbox {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.section-9 .card .imgBx:after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #292929;
}

.section-9 .card .imgBx img {
    position: absolute;
    width: 100px;
    z-index: 1;
    filter: invert(1);
    opacity: 0.5;
    transition: 0.5s;
}

.section-9 .card:hover .imgBx img {
    opacity: 1;
}

.section-9 .card .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.section-9 .card .content .details {
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    transition: 0.5s;
    transform: translateY(145px);
}

.section-9 .card:hover .content .details {
    transform: translateY(0px);
}

.section-9 .card .content .details h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #45f3ff;
    line-height: 1.2em;
}

.section-9 .card .content .details p {
    color: #fff;
    opacity: 0;
    transition: 0.5s;
}

.section-9 .card:hover .content .details p {
    opacity: 1;
}

.section-9 .card .content .details a {
    display: inline-block;
    padding: 8px 15px;
    background: #45f3ff;
    color: #292929;
    margin-top: 10px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transition: 0.5s;
}

.section-9 .card:hover .content .details a {
    opacity: 1;
}

/* section ten */
.section-10 {
    background-color: #acbaca;
}

.clock {
    position: relative;
    width: 300px;
    height: 300px;
    background-color: #c9d5e0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    box-shadow: 30px 30px 30px -10px rgba(0, 0, 0, 0.15),
    inset 15px 15px 30px 10px rgba(255, 255, 255, 0.75),
    -15px -15px 35px rgba(255, 255, 255, 0.55),
    inset -1px -1px 10px rgba(0, 0, 0, 0.2);
}

.clock::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #e91e63;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 0 0 1px #e91e63,
    0 0 0 3px #fff,
    0 0 5px 5px rgba(0, 0, 0, 0.15);
}

.clock .numbers {
    position: absolute;
    inset: 35px;
    background-color: #152b4a;
    border-radius: 50%;
    box-shadow: 5px 5px 15px #152b4a66,
    inset 5px 5px 5px rgba(255, 255, 255, 0.55),
    -6px -6px 10px rgba(255, 255, 255, 1);
}

.clock .numbers span {
    position: absolute;
    inset: 5px;
    text-align: center;
    color: #fff;
    font-size: 1.25rem;
    transform: rotate(calc(90deg * var(--i)));
}

.clock .numbers span b {
    font-weight: 600;
    display: inline-block;
    transform: rotate(calc(-90deg * var(--i)));
}

.clock .numbers::before {
    content: '';
    position: absolute;
    inset: 35px;
    background: linear-gradient(#2196f3, #e91e63);
    border-radius: 50%;
    animation: clock 2s linear infinite;
}

@keyframes clock {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.clock .numbers:after {
    content: '';
    position: absolute;
    background: #152b4a;
    inset: 38px;
    border-radius: 50%;
}

.clock .numbers .circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.clock .numbers .circle i {
    position: absolute;
    width: 3px;
    height: 50%;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    background-color: #fff;
    transform-origin: bottom;
}

.clock .numbers .circle#hr i {
    transform: scaleY(0.3);
    width: 4px;
}

.clock .numbers .circle#min i {
    transform: scaleY(0.45);
}

.clock .numbers .circle#sec i {
    transform: scaleY(0.55);
    width: 2px;
    background-color: #e91e63;
    box-shadow: 0 30px 0 #e91e63;
}

/* section eleven */
.section-11 {
    background-color: #000;
}

.section-11 .container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-11 .container .ring {
    position: relative;
    width: 150px;
    height: 150px;
    margin: -70px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top: 4px solid #24ecff;
    animation: animate-ant 4s linear infinite;
}

@keyframes animate-ant {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.section-11 .container .ring::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #24ecff;
    box-shadow: 0 0 0 5px #24ecff33,
    0 0 0 10px #24ecff22,
    0 0 0 20px #24ecff11,
    0 0 20px #24ecff,
    0 0 50px #24ecff;
}

.section-11 .container .ring:nth-child(2) {
    animation: animate-ant-2 4s linear -1s infinite;
    border-left: 4px solid #93ff2d;
    border-top: 4px solid transparent;
}

@keyframes animate-ant-2 {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.section-11 .container .ring:nth-child(2)::before {
    content: '';
    position: absolute;
    top: initial;
    bottom: 12px;
    left: 12px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #93ff2d;
    box-shadow: 0 0 0 5px #93ff2d33,
    0 0 0 10px #93ff2d22,
    0 0 0 20px #93ff2d11,
    0 0 20px #93ff2d,
    0 0 50px #93ff2d;
}

.section-11 .container .ring:nth-child(3) {
    animation: animate-ant-2 4s linear -3s infinite;
    position: absolute;
    top: 15px;
    border-top: 4px solid transparent;
    border-left: 4px solid #e41cf8
}

.section-11 .container .ring:nth-child(3)::before {
    content: '';
    position: absolute;
    top: initial;
    bottom: 12px;
    left: 12px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #e41cf8;
    box-shadow: 0 0 0 5px #e41cf833,
    0 0 0 10px #e41cf822,
    0 0 0 20px #e41cf811,
    0 0 20px #e41cf8,
    0 0 50px #e41cf8;
}

.section-11 .container p {
    position: absolute;
    color: white;
    font-size: 1.5rem;
    bottom: -60px;
    letter-spacing: 0.15rem;
}

/* section twelve */
.section-12 {
    font-family: 'Poppins';
    background-color: #f1f1f1;
    overflow: hidden;
}

.section-12 #text {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 12em;
    line-height: 1.2em;
    letter-spacing: 2px;
    text-align: center;
    transform: rotate(-28deg) skew(25deg);
}

.section-12 #text::before {
    content: attr(data-text);
    position: absolute;
    top: 30px;
    left: -30px;
    color: rgba(0, 0, 0, 0.3);
    text-shadow: none;
    filter: blur(8px);
    z-index: -1;
}

/* section thirteen */
.section-13 {
    font-family: 'Poppins';
    background-color: #000;
}

.section-13 h2 {
    font-size: 6em;
    font-weight: 500;
    color: #222;
    letter-spacing: 5px;
    cursor: pointer;
}
.section-13 h2 span {
    transition: 0.5s;
}

.section-13 h2:hover span:nth-child(1) {
    margin-right: 10px;
}

.section-13 h2:hover span:nth-child(1)::after {
    content: "'";
}

.section-13 h2:hover span:nth-child(2) {
    margin-left: 40px;
}

.section-13 h2:hover span {
    color: #fff;
    text-shadow: 0 0 10px #fff,
                 0 0 20px #fff,
                 0 0 40px #fff,
                 0 0 80px #fff,
                 0 0 120px #fff;
}

/* section fourteen */
.section-14 {
    background-color: #000;
    font-family: 'Poppins';
    border-top: 1px solid white;
}

.section-14 .loader {
    position: relative;
}

.section-14 .loader span {
    position: relative;
    font-size: 2rem;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    animation: animate-loader 2s ease-in-out infinite;
    animation-delay: calc(0.1s*var(--i));
    animation-play-state: paused;
}

@keyframes animate-loader {
    0%, 40%, 100% {
        transform: translateY(0px);
    }

    20% {
        transform: translateY(-50px);
    }
}

.section-14 .loader:hover span {
    animation-play-state: running;
}

/* section fifteen */
.section-15 {
    background-color: #000;
    font-family: 'Poppins';
    position: relative;
    overflow: hidden;
    border-top: 1px solid white;
}

.section-15 h2 {
    font-size: calc(100vw / 10);
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    display: flex;
}
.section-15 h2 span {
    transition: 1.5s;
}

.section-15 h2:hover span {
    filter: blur(20px);
    opacity: 0;
    transform: scale(2);
}

.section-15 h2 span:nth-child(10n+1) {
    transition-delay: 0s;
}

.section-15 h2 span:nth-child(10n+2) {
    transition-delay: 0.1s;
}

.section-15 h2 span:nth-child(10n+3) {
    transition-delay: 0.2s;
}

.section-15 h2 span:nth-child(10n+4) {
    transition-delay: 0.3s;
}

.section-15 h2 span:nth-child(10n+5) {
    transition-delay: 0.4s;
}

.section-15 h2 span:nth-child(10n+6) {
    transition-delay: 0.5s;
}

.section-15 h2 span:nth-child(10n+7) {
    transition-delay: 0.6s;
}

.section-15 h2 span:nth-child(10n+8) {
    transition-delay: 0.7s;
}

.section-15 h2 span:nth-child(10n+9) {
    transition-delay: 0.8s;
}

.section-15 h2 span:nth-child(10n) {
    transition-delay: 0.9s;
}

/* section 16 */
.section-16 {
    font-family: 'Poppins';
    background-color: #000;
    height: 100%;
    min-height: fit-content;
}

.section-16 article {
    position: relative;
    width: 100%;
    padding: 50px;
}

.section-16 .circle {
    position: relative;
    overflow: hidden;
}

.section-16 .circle img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle.circle1 {
    width: 500px;
    height: 500px;
    float: left;
    border-radius: 50%;
    margin: 20px;
    shape-outside: circle();
}

.circle.circle2 {
    width: 300px;
    height: 300px;
    float: right;
    border-radius: 50%;
    margin: 20px;
    shape-outside: circle();
}

.section-16 article h2 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
}

.section-16 article p {
    color: #fff;
    text-align: justify;
}

/* Section seventeen */
.section-17 {
    background: radial-gradient(#444, #222);
    font-family: 'Poppins';
    border-top: 1px solid white;
}

.section-17 .card {
    position: relative;
    width: 200px;
    height: 200px;
}

.section-17 .card .rating {
    position: relative;
    width: 100%;
    height: 100%;
}

.section-17 .card .rating .block {
    position: absolute;
    width: 2px;
    height: 20px;
    background: #000;
    left: 50%;
    transform-origin: 50% 100px;
    opacity: 0;
    animation: pulse 0.1s linear forwards;
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}

.section17 .card .rating .block:first-child {
    background-color: #0f0;
    box-shadow: 0 0 15px #0f0, 0 0 30px #0f0;
}

.section-17 .card .rating h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
}

.section-17 .card .rating h2 span {
    font-size: 2.5em;
    font-weight: 700;
}

.section-17 .card .rating h2 sup {
    font-size: 1.5em;
    font-weight: 300;
}