html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
 * ==================
 * Start Here
 * ==================
 */
*,*::before,*::after{
    padding: 0;
    margin: 0;
    box-sizing: inherit;
}
html {
    font-size: 62.5%; /* 10px of 16px */
    box-sizing: border-box;
    height: 100%;
}

body {
    color: white;
    background-color: #111111;
    position: relative;
    height: 100%;
    line-height: 1.5;
    font-size: 1.6rem; /* 16px */
    font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.coursor{
    height: 20px;
    width: 20px;
    background-color: #00FF94;
    border-radius: 50%;
    /* box-shadow: 0 0 15px 5px rgb(255, 255, 255); */
    position: fixed;
    font-size: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9;
    filter: blur(5px);
}

.container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
.section{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 7rem;
}
.section:last-of-type{
    margin-bottom: 0;
}
.section__title{
    font-weight: 800;
    font-size: 5rem;
    position: relative;
}
.section__title::before{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 125%;
    transform: translateX(-50%);
    border-bottom: 3px dashed #00FF94;
}

/*
 * ==================
 * Navbar Component
 * ==================
 */
.nav {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(25px);
}
.nav__list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 0;
    overflow-y: scroll;
}
.nav__list-item {
    text-align: center;
    margin-bottom: 5rem;
}
.nav__list-link {
    color: #688277;
    position: relative;
    font-weight: 800;
    text-decoration: none;
    outline: none;
    font-size: 2rem;
}
.nav__list-link::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 99rem;
    background-color: #59FFB9;
    position: absolute;
    bottom: -12px;
    left: 0;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform .15s ease-in-out;
}
.nav__list-link:focus,
.nav__list-link:hover {
    color: #59FFB9;
}
.nav__list-link:focus::before,
.nav__list-link:hover::before {
    transform: scaleX(1);
}
.nav__list-link.active {
    color: #59FFB9;
}
.nav__list-link.active:focus {
    color: #93ffd0;
}
.nav__list-link.active:focus::before {
    background-color: #93ffd0;
}
.nav__list-link.active::before {
    transform: scaleX(1);
}
.nav__hamburger-btn{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    overflow: hidden;
}
.nav__hamburger-top,
.nav__hamburger-center,
.nav__hamburger-bottom{
    display: block;
    width: 95%;
    height: 3px;
    border-radius: 99rem;
    background-color: white;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}
.nav__hamburger-top{
    top: 25%;
}
.nav__hamburger-center{
    top: 50%;
}
.nav__hamburger-bottom{
    top: 75%;
}

/*
 * ==================
 * Hero Header
 * ==================
 */
.hero-header{
    position: relative;
    overflow: hidden;
}
.header__container{
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.header__bg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background: linear-gradient(to top, #111, #1110);
    z-index: -1;
}
.header__left{
    width: 100%;
    max-width: 900px;
}
.header__right{
    position: absolute;
    right: 0;
    z-index: -1;
    display: none;
}
.header__right img{
    width: 100%;
}
.header__sup-text{
    display: inline-flex;
    font-weight: 600;
    font-size: 1.2rem;
}
.header__title{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 5rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
}
.header__title-1,
.header__title-2{
    display: block;
    position: relative;
}
.header__title-1::before,
.header__title-1::after,
.header__title-2::before,
.header__title-2::after{
    content: attr(data-role);
    position: absolute;
    left: 2px;
    top: 0;
    color: white;
    background: #111111; /* To create an illusion that the text is moving */
    overflow:hidden;
    clip: rect(0,900px,0,0); /* Only show some part of the clipped-text */
}

.header__title-1::before,
.header__title-2::before{
    text-shadow: -5px 0 #59FFB9;
    animation: distort-1 2s infinite linear alternate-reverse;
}

.header__title-1::after,
.header__title-2::after{
    text-shadow: -5px 0 #7218FA;
    animation: distort-2 2s infinite linear alternate-reverse;
}

.header__msg{
    font-weight: 300;
    font-size: 1.6rem;
    margin-top: 1.5rem;
    line-height: 1.8;
}
.header__resume{
    display: inline-flex;
    border-radius: 7px;
    text-decoration: none;
    background-color: #37AE7C;
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    color: white;
    margin-top: 5rem;
    position: relative;
}
.header__resume:hover::before{
    width: 80%;
    height: 80%;
}
.header__resume::before{
    content: '';
    background-color: #00FF94;
    width: 120%;
    height: 120%;
    display: block;
    position: absolute;
    transition: all .15s ease-in-out;
    top: 50%;
    left: 50%;
    z-index: -1;
    filter: blur(30px);
    transform: translate(-50%, -50%);
}

/*
 * ==================
 * Services
 * ==================
 */
.service-cards{
    display: flex;
    flex-direction: column;
    margin-top: 10rem;
}
.service-card__box{
    margin-bottom: 7rem;
    border: 2px solid #00372b;
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.02));
}
.service-card__illustration{
    display: flex;
    width: 250px;
}
.service-card__illustration img{
    width: 100%;
    pointer-events: none;
}
.service-card__title{
    font-weight: 800;
    font-size: 2rem;
    color: #00FF94;
    margin-top: 2rem;
}
.service-card__msg{
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.6;
}
.service-card__bg{
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #00FF94;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(30px);
    transform: translate(-50%, -50%);
}

/*
 * ==================
 * Works
 * ==================
 */
.works{
    margin-top: 10rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
    align-items: stretch;
}
.work{
    width: 100%;
    padding: 0; /* padding handled inside work__box */
}
.work__box{
    margin-bottom: 7rem;
    border: 2px solid #00372b;
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.008), rgba(0,0,0,0.03));
    transition: transform .25s cubic-bezier(.22,.9,.27,1), box-shadow .25s ease;
    will-change: transform;
    display: flex;
    flex-direction: column;
}

/* blurred floating background via pseudo-element positioned with CSS variables */
.work__box::before{
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #00FF94;
    top: var(--fx-glow-y, 12%);
    left: var(--fx-glow-x, 8%);
    z-index: 0;
    filter: blur(30px);
    transform: translate(-50%, -50%) scale(1);
    transition: transform .3s ease, left .12s linear, top .12s linear;
}

/* when JS adds hovering class */
.work__box.work--hovering::before{
    transform: translate(-50%, -50%) scale(1.08);
}

/* push internal content above the blur */
.work__box > * {
    position: relative;
    z-index: 2;
}

/* small hover nudge */
.work__box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.work__img-box{
    width: 100%;
    display: flex;
    border-radius: 12px;
    overflow: hidden; /* ensures image respects rounded corners */
}
.work__img-box img{
    width: 100%;
    display: block;
    object-fit: cover;
}

/* title / badges should stay above the blur */
.work__title{
    margin-top: 1rem;
    font-weight: 700;
    z-index: 2;
}
.work__badges{
    display: flex;
    margin-top: 2rem;
    overflow: hidden;
    z-index: 2;
}

/* make badges visually consistent */
.work__badge{
    background-color: #59ffb91c;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem;
    margin-right: 1rem;
}

/* Remove link styling inside Work cards */
.work__link {
    text-decoration: none !important;
    color: inherit !important;
}

.work__link * {
    text-decoration: none !important;
    color: inherit !important;
}

/*
 * ==================
 * Contact
 * ==================
 */
.contact{
    display: flex;
    width: 100%;
    margin-top: 10rem;
    justify-content: space-between;
    padding-bottom: 5rem;
}
.contact__form{
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}
.contact__illustration{
    display: none;
}
.contact__field-wrapper{
    margin-bottom: 5rem;
}
.contact__field-wrapper label{
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: .8rem;
    display: inline-flex;
}
.contact__field-wrapper input[type="text"],
.contact__field-wrapper textarea{
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    border-radius: 5px;
    background-color: transparent;
    outline: none;
    display: block;
    width: 100%;
}
.contact__field-wrapper input[type="text"]:focus,
.contact__field-wrapper textarea:focus,
.contact__field-wrapper input[type="text"]:hover,
.contact__field-wrapper textarea:hover{
    border-style: solid;
}
.contact__field-wrapper input[type="text"]{
    padding: 1.5rem;
    border: 2px dashed #64fcd9;
}
.contact__field-wrapper textarea{
    padding: 1rem;
    border: 2px dashed #64fcd9;
    resize: none;
    height: 150px;
    line-height: 1.6;
}
.contact__illustration{
    position: relative;
}
.contact__illustration img{
    pointer-events: none;
    width: 100%;
}
.contact__illustration::before{
    content: '';
    position: absolute;
    width: 95%;
    height: 95%;
    border-radius: 50%;
    background-color: #64fcd9;
    display: block;
    z-index: -1;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contact__submit-btn{
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    padding: 2rem 2rem;
    border-radius: 7px;
    font-weight: 700;
    font-family: inherit;
    font-size: 1.6rem;
    background-color: #64fcd9;
    width: 100%;
    position: relative;
    color: #111;
}
.contact__submit-btn:hover::before{
    transform: scale(0.3);
}
.contact__submit-btn::before{
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: #64fcd9;
    filter: blur(150px);
    left: 0;
    top: 0;
    z-index: -1;
    transform-origin: center;
    transition: all .35s ease-in-out;
}

/* ---------- New Sections: About / Why / Testimonials / FAQ / CTA (Pricing removed) ---------- */
.about__inner{
  display:flex;
  flex-direction:column;
  gap:3rem;
  margin-top:10rem;
}
.about__lead{
  font-size:1.6rem;
  font-weight:300;
  line-height:1.8;
  max-width:65ch;
}
.about__highlights{
  margin-top:2rem;
  display:flex;
  flex-wrap:wrap;
  gap:1.6rem 3rem;
  list-style:none;
}
.about__highlights li{
  font-weight:700;
  color:#59FFB9;
  font-size:1.4rem;
}

.about__card{
  background:#1b1b1b;
  padding:2.4rem;
  border-radius:12px;
  border:1px solid rgba(89,255,185,0.06);
  display:flex;
  flex-direction:column;
  gap:1.2rem;
  max-width:420px;
}

/* Team card image fill + slide-up overlay (matches service card style) */
.team-card {
  border: 2px solid #00372b;
  padding: 1.6rem;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.01));
  width: 15em;
}

.team-card__inner {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  display:block;
}

.team-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .6s cubic-bezier(.22,.9,.27,1);
  border-radius: 12px;
  will-change: transform;
}

.team-card .service-card__bg {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #00FF94;
  top: 0;
  left: 0;
  z-index: -1;
  filter: blur(30px);
  transform: translate(-50%, -50%);
}

.team-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.22,.9,.27,1), opacity .35s ease;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(2,2,2,0.75));
  color: #fff;
  z-index: 5;
  opacity: 0;
  display:flex;
  flex-direction:column;
  gap:0.25rem;
}

.team-card__name {
  font-weight: 900;
  font-size: 1.8rem;
  color: #00FF94;
  margin: 0;
}
.team-card__role {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

.team-card:hover .team-card__img,
.team-card:focus-within .team-card__img {
  transform: scale(1.06);
}

.team-card:hover .team-card__overlay,
.team-card:focus-within .team-card__overlay {
  transform: translateY(0);
  opacity: 1;
}

.team-card a,
.team-card button {
  outline: none;
}

.team-card.team-card--toggled .team-card__overlay {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 47.99em) {
  .team-card__inner { height: 300px; }
}
@media (min-width: 48em) {
  .team-card__inner { height: 360px; }
}

/* Why choose us */
.why__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2.4rem;
  margin-top:10rem;
}
.why__item h4{
  font-size:1.6rem;
  font-weight:800;
  color:#00FF94;
  margin-bottom:.6rem;
}
.why__item p{
  font-weight:600;
  line-height:1.6;
}

/* FAQ */
.faq__list{
  margin-top:3rem;
  max-width:900px;
  width:100%;
}
.faq__item{
  border-radius:8px;
  overflow:hidden;
  margin-bottom:1rem;
  border:1px solid rgba(255,255,255,0.03);
  background:#101010;
}
.faq__q{
  width:100%;
  text-align:left;
  padding:1.4rem 1.6rem;
  font-weight:800;
  font-size:1.4rem;
  background:transparent;
  border:none;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: #59FFB9;
}
.faq__a{
  padding:1.2rem 1.6rem;
  font-weight:600;
  line-height:1.7;
  display:none;
  border-top:1px solid rgba(255,255,255,0.02);
}
.faq__item.open .faq__a{ display:block; }
.faq__icon{ font-weight:900; }

/* CTA */
.cta__box{
  background: linear-gradient(180deg, rgba(11,11,11,0.6), rgba(11,11,11,0.2));
  padding:2.8rem;
  border-radius:12px;
  display:flex;
  gap:1.2rem;
  flex-direction:column;
  align-items:flex-start;
  margin-top:2.4rem;
  border:1px solid rgba(89,255,185,0.04);
}
.cta__title{ font-size:2.2rem; font-weight:900; }
.cta__lead{ font-weight:600; }


/* Buttons */
.btn{ text-decoration:none; color:inherit; }
.btn--ghost{ background:transparent; border:1px solid rgba(255,255,255,0.03); padding:1rem 1.2rem; border-radius:8px; font-weight:800; }
.btn--primary{
  background:#37AE7C;
  color:#fff;
  padding:1rem 1.6rem;
  border-radius:7px;
  text-decoration:none;
  display:inline-block;
  font-weight:800;
}

/* Responsive layout */
@media only screen and (min-width: 48em) {
  .about__inner{ flex-direction:row; justify-content:space-between; align-items:flex-start; }
  .about__left{ flex:1; padding-right:3rem; }
  .about__right{ width:360px; flex:0 0 360px; }
  .why__grid{ grid-template-columns:repeat(2,1fr); }
  .testimonials__track{ width:calc(100% - 110px); } /* account for nav buttons */
}

/*
 * ==================
 * Footer
 * ==================
 */
.footer{
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    backdrop-filter: blur(75px);
    text-align: center;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
}
.footer__link{
    color: #64fcd9;
}

/*
 * ========================
 * Small Screen -- 576px
 * ========================
 */
 /* Fix team card overflow/stretch on phones */
/* === Fix: force team card / service card box to 15em on small phones === */
@media (max-width: 430px) {

  /* target both possible class names: .team-card and .team__card */
  .team-card,
  .team__card {
    width: 15em !important;
    max-width: 15em !important;
    margin: 1.2rem auto !important;
    padding: 1rem !important;

    /* prevent stretching */
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;

    /* layout */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    box-sizing: border-box !important;
  }

  /* If service-card__box sits inside team card or is used standalone */
  .service-card__box,
  .team-card .service-card__box,
  .team__card .service-card__box {
    width: 15em !important;
    max-width: 15em !important;
    padding: 0.8rem !important;
    box-sizing: border-box !important;
  }

  /* images: fit inside 15em, don't create vertical overflow */
  .team-card__img,
  .team__avatar img,
  .team-card img,
  .team__card img,
  .service-card__box img,
  .work__img-box img {
    width: 100% !important;
    height: auto !important;
    max-height: 22em !important;     /* prevents extremely tall images */
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
  }

  /* hide glow pseudo-elements that can form long vertical bars */
  .team-card::before,
  .team__card::before,
  .service-card__box::before,
  .work__box::before,
  .team-card::after,
  .team__card::after,
  .service-card__box::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
  }

  /* make sure the grid collapses to single column around this width */
  .team__grid,
  .team-grid,
  .works {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}


@media only screen and (min-width: 36em) {
    .container {
        max-width: 540px;
    }

    /* Header */
    .header__right{
        display: block;
        opacity: 0.3;
    }
    .header__title{
        flex-direction: row;
    }
    .header__title-1{
        margin-right: 1.5rem;
    }

    /* Navbar */
    .nav__list{
        height: unset;
        flex-direction: row;
        justify-content: flex-end;
        overflow-y: unset;
    }
    .nav__list-item{
        margin-bottom: 0;
        margin-right: 2rem;
    }
    .nav__list-item:last-of-type{
        margin-right: 0;
    }
    .nav__list-link{
        font-size: 1.3rem;
    }
    .nav__hamburger-btn{
        display: none;
    }

    /* Works */
    .work{
        width: 50%;
    }
}

/*
 * ========================
 * Medium Screen -- 768px
 * ========================
 */
@media only screen and (min-width: 48em) {
    .container {
        max-width: 760px;
    }
    .service-cards{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    .service-card__box{
        width: 28%;
        max-width: 350px;
    }
    .service-card__illustration{
        width: 100%;
        max-width: 150px;
        height: 150px;
    }

    /* medium screen: two columns of works */
    .works { gap: 2rem; }
    .work { width: 48%; }
}

/*
 * ========================
 * Large Screen -- 992px
 * ========================
 */
@media only screen and (min-width: 62em) {
    .container {
        max-width: 960px;
    }
    .section__title{
        font-size: 8rem;
    }
    
    /* Make room for 3 cards per row: use 30% width + gaps */
    .works{
        justify-content: space-between;
        gap: 2.4rem;
    }
    .work{
        width: 30%;
    }

    .contact__form{
        width: 40%;
        margin-left: unset;
    }
    .contact__illustration{
        width: 60%;
        display: flex;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*
 * ======================================
 * Large Screen Extended -- 1000px
 * ======================================
 */
@media only screen and (min-width: 62.5em) {
    .header__right{
        width: 500px;
        opacity: 1;
        top: 35px;
    }
}

/*
 * ========================
 * XLarge Screen -- 1200px
 * ========================
 */
@media only screen and (min-width: 75em) {
    .container {
        max-width: 1140px;
    }
    .header__title{
        font-size: 8rem;
    }
    .section{
        margin-bottom: 13rem;
    }
}

/*
 * ========================
 * XXLarge Screen -- 1400px
 * ========================
 */
@media only screen and (min-width: 87.5em) {
    .container {
        max-width: 1320px;
    }
}


/*
 *
 * Animations
 *
 */
@keyframes distort-1{
    0% { clip: rect(57px, 9999px, 46px, 0); }
    5% { clip: rect(15px, 9999px, 56px, 0); }
    10% { clip: rect(6px, 9999px, 70px, 0); }
    15% { clip: rect(40px, 9999px, 80px, 0); }
    20% { clip: rect(32px, 9999px, 44px, 0); }
    25% { clip: rect(65px, 9999px, 85px, 0); }
    30% { clip: rect(27px, 9999px, 78px, 0); }
    35% { clip: rect(59px, 9999px, 93px, 0); }
    40% { clip: rect(44px, 9999px, 77px, 0); }
    45% { clip: rect(74px, 9999px, 10px, 0); }
    50% { clip: rect(73px, 9999px, 42px, 0); }
    55% { clip: rect(32px, 9999px, 58px, 0); }
    60% { clip: rect(21px, 9999px, 54px, 0); }
    65% { clip: rect(71px, 9999px, 11px, 0); }
    70% { clip: rect(85px, 9999px, 25px, 0); }
    75% { clip: rect(83px, 9999px, 77px, 0); }
    80% { clip: rect(62px, 9999px, 52px, 0); }
    85% { clip: rect(68px, 9999px, 84px, 0); }
    90% { clip: rect(37px, 9999px, 20px, 0); }
    95% { clip: rect(10px, 9999px, 15px, 0); }
    100% { clip: rect(83px, 9999px, 28px, 0); }
}
@keyframes distort-2 {
    0% { clip: rect(20px, 9999px, 96px, 0); }
    5% { clip: rect(62px, 9999px, 2px, 0); }
    10% { clip: rect(63px, 9999px, 39px, 0); }
    15% { clip: rect(92px, 9999px, 75px, 0); }
    20% { clip: rect(54px, 9999px, 2px, 0); }
    25% { clip: rect(22px, 9999px, 96px, 0); }
    30% { clip: rect(39px, 9999px, 98px, 0); }
    35% { clip: rect(49px, 9999px, 37px, 0); }
    40% { clip: rect(90px, 9999px, 17px, 0); }
    45% { clip: rect(36px, 9999px, 57px, 0); }
    50% { clip: rect(92px, 9999px, 78px, 0); }
    55% { clip: rect(97px, 9999px, 65px, 0); }
    60% { clip: rect(69px, 9999px, 30px, 0); }
    65% { clip: rect(92px, 9999px, 13px, 0); }
    70% { clip: rect(74px, 9999px, 76px, 0); }
    75% { clip: rect(2px, 9999px, 45px, 0); }
    80% { clip: rect(30px, 9999px, 21px, 0); }
    85% { clip: rect(58px, 9999px, 34px, 0); }
    90% { clip: rect(79px, 9999px, 27px, 0); }
    95% { clip: rect(32px, 9999px, 1px, 0); }
    100% { clip: rect(87px, 9999px, 63px, 0); }
}
