/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
  overflow-x: hidden;
}

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%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

body {
  color: white;
  background-color: #000000;
  position: relative;
  /* width: 100%; */
  height: 100%;
  line-height: 1.5;
  font-size: 1.6rem; /* 16px */
  font-family: "SF Pro Display", Poppins, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;
}

.container {
  padding: 2.5rem;

  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.alignment {
  margin: 10rem 10rem 0 10rem;
}

.section {
  /* padding-top: 20rem; */
  /* justify-content: center;  */

  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  /* min-height: 100vh; */
  /* padding-bottom: 7rem; */
}

.fade-in-element {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0px);
}

.vl {
  border-left: 1px solid white;
  height: 120px;
  margin-left: 20px;
  margin-right: 20px;

  justify-content: center;
}

.content {
  margin: 50px 0;
  padding: 20px;
  background: #f0f0f0;
  border: 1px solid #ddd;
}

.section:last-of-type {
  margin-bottom: 0;
}
.section__title {
  font-weight: 800;
  text-align: center;
  font-size: 5rem;
  position: relative;
}
.section__title::before {
  content: "";
  position: absolute;
  text-align: center;
  bottom: -5px;
  left: 60%;
  width: 100%;
  z-index: -1;
  transform: translateX(-50%);
  border-bottom: 50px solid #67c2d3;
  width: 250px;
}
.section__bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: #67c2d3;
  top: var(--section-bg-top, auto);
  bottom: var(--section-bg-bottom, auto);
  left: var(--section-bg-left, auto);
  right: var(--section-bg-right, auto);
  z-index: -1;
  filter: blur(50px);
  transform: translate(50%, -50%);
  animation: blob 8s infinite ease-in-out;
}
/*
 * ==================
 * Navbar Component
 * ==================
 */
.nav {
  padding-top: 2rem;
  padding-bottom: 2rem;
  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: #67c2d3;
  position: absolute;
  bottom: -12px;
  left: 0;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.15s ease-in-out;
}
.nav__list-link:focus,
.nav__list-link:hover {
  color: #67c2d3;
}
.nav__list-link:focus::before,
.nav__list-link:hover::before {
  transform: scaleX(1);
}
.nav__list-link.active {
  color: #67c2d3;
}
.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 {
  /* padding: 0 2.5rem; */
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}
.header__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to top, #1110, #67c2d3); */
  z-index: -1;
}
.header__left {
  width: 100%;
  max-width: 900px;
}
.header__right {
  opacity: 0.3;
  position: absolute;
  right: 0;
  /* z-index: -1; */
  display: flex;
}
.header__right img {
  width: 100%;
}
.rotating-image {
  transition: transform 0s ease-in-out;
}
.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: #000000; /* 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 #67c2d3;
  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: 2rem;
  margin-top: 1.5rem;
  line-height: 1.8;
}
.header__resume {
  display: inline-flex;
  border-radius: 7px;
  text-decoration: none;
  background-color: #67c2d3;
  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: #67c2d3;
  width: 120%;
  height: 120%;
  display: block;
  position: absolute;
  transition: all 0.15s ease-in-out;
  top: 50%;
  left: 50%;
  z-index: -1;
  filter: blur(30px);
  transform: translate(-50%, -50%);
}

.header__about {
  font-weight: 300;
  font-size: 1.6rem;
  margin-top: 1.5rem;
  line-height: 1.8;
  text-align: center;
}

.aboutme {
  /* background-color: linear-gradient(to bottom, #3e00857c, #1110); */

  display: flex;
  align-items: center;
  position: static;
}
.aboutme__illustration {
  position: relative;
  display: flex;
  align-items: center;
  width: 100px;
}

.aboutme__illustration img {
  width: 100%;
  transition: transform 0.5s ease, opacity 0.5s ease;

  /* height: 100px; */
}

.aboutme__illustration--hover {
  position: absolute;
  /* top: 0; */
  margin-left: 10%;
  margin-right: 10%;
  left: var(--aboutme__illustration-left, auto);
  right: var(--aboutme__illustration-right, auto);
  opacity: 0;
  transform: var(--aboutme__illustration-transform, translateX(20px));
  pointer-events: none;
}

.aboutme__illustration:hover .aboutme__illustration--hover {
  opacity: 1;
  transform: translateX(0);
}
/*
 * ==================
 * Services
 * ==================
 */
.service-cards {
  display: flex;
  flex-direction: column;
  margin-top: 10rem;
}
.service-card__box {
  margin-bottom: 7rem;
  border: 2px solid white;
  padding: 1.5rem;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.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: #67c2d3;
  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: #67c2d3;
  top: 0;
  left: 0;
  z-index: -1;
  filter: blur(30px);
  transform: translate(-50%, -50%);
}

/*
 * ==================
 * Works
 * ==================
 */

.works {
  flex-direction: column;
  margin-top: 5rem;
  display: flex;
  /* flex-wrap: wrap; */
  width: 100%;
  justify-content: space-between;
  /* padding-bottom: 5rem; */
}
.work {
  width: 100%;
  padding: 2%;
}
.work__box {
  border-radius: 7px;
  padding: 1.5rem;
  background-color: #26222d;
}
.work__img-box {
  width: 100%;
  display: flex;
  border-radius: 7px;
  overflow: hidden;
}
.work__img-box img {
  width: 100%;
}
/* .work__title {
  margin-top: 1rem;
  font-weight: 700;
} */
.work__badges {
  display: flex;
  margin-top: 2rem;
  overflow: hidden;
}
.work__badge {
  background-color: #67c2d31c;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem;
  margin-right: 1rem;
}
.work__para {
  width: 100%;
  max-width: 450px;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  /* margin-right: auto; */
}
/* .work__illustration {
  display: none;
} */
.work__title {
  font-weight: 800;
  font-size: 3rem;
  color: #67c2d3;
  /* margin-top: 2rem; */
}
.work__msg {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.6;
}
.work__illustration {
  position: relative;
}
.work__illustration img {
  width: 100%;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  pointer-events: none;
  transition: transform 0.3s ease; /* Add transition for smooth effect */
  animation: fadeIn 0.5s ease-out;
}
.work__illustration:hover img {
  transform: scale(1.1); /* Scale up the image on hover */
}
.work__illustration:before {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  border-radius: 100%;
  background-color: #67c2d3;
  display: block;
  z-index: -1;
  filter: blur(150px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; /* Start hidden */
  transition: opacity 0.5s ease-in-out; /* Transition for fade-in and fade-out */
}

.work__illustration:hover:before {
  opacity: 1; /* Fade in on hover */
}

.work__button {
  display: inline-flex;
  border-radius: 7px;
  text-decoration: none;
  background-color: #67c2d3;
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  color: white;
  margin-top: 5rem;
  position: relative;
}

.work__button:hover::before {
  width: 80%;
  height: 80%;
}
.work__button::before {
  content: "";
  background-color: #67c2d3;
  width: 50%;
  height: 50%;
  display: block;
  position: absolute;
  transition: all 0.15s ease-in-out;
  top: 50%;
  left: 50%;
  z-index: -1;
  filter: blur(30px);
  transform: translate(-50%, -50%);
}

/* skills deatila  section*/
/* 
.arrow-icon {
  color: yellow;
  transform: rotate(-45deg);
}

.skillsdelt {
  background-color: var(--body-color);
}

.center-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}
 */

/*
 * ==================
 * Contact
 * ==================
 */
.contact {
  display: flex;
  min-width: 100%;
  margin-top: 10rem;
  justify-content: space-between;
  padding-bottom: 5rem;
  /* padding-left: 20rem; */
}
.contact__form {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.contact__illustration {
  display: none;
}
.contact__field-wrapper {
  margin-bottom: 2rem;
}
.contact__field-wrapper label {
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 0.8rem;
  display: inline-flex;
}
.contact__field-wrapper input[type="text"],
.contact__field-wrapper input[type="email"],
.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 input[type="email"]:focus,
.contact__field-wrapper textarea:focus,
.contact__field-wrapper input[type="text"]:hover,
.contact__field-wrapper input[type="email"]:hover,
.contact__field-wrapper textarea:hover {
  border-style: solid;
}
.contact__field-wrapper input[type="text"],
.contact__field-wrapper input[type="email"] {
  padding: 1.5rem;
  border: 2px dashed #67c2d3;
}
.contact__field-wrapper textarea {
  padding: 1rem;
  border: 2px dashed #67c2d3;
  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: #67c2d3;
  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: #67c2d3;
  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: #67c2d3;
  filter: blur(150px);
  left: 0;
  top: 0;
  z-index: -1;
  transform-origin: center;
  transition: all 0.35s ease-in-out;
}

/*
 * ==================
 * Footer
 * ==================
 */
.footer {
  margin-top: 34px;
  display: flex;
  width: 100%;
  flex-direction: column;

  font-size: 1.4rem;
  color: white;
  font-weight: 700;
  backdrop-filter: blur(75px);
  text-align: center;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  justify-content: space-between;
}
.otheracc {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .elementor-icon i {
  font-size: 2em; /* Adjust the size as needed */
  margin: 2ex;
}

@media screen and (min-width: 768px) {
  .otheracc {
    text-align: center;
    justify-content: center;
    display: flex;
    width: 100%;
    align-items: center;
  }
}
.footer__link {
  color: #67c2d3;
}

/*
 * ========================
 * Small Screen -- 576px
 * ========================
 */
@media only screen and (min-width: 36em) {
  .container {
    padding: 2.5rem;

    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%;
  }
  .work__illustration {
    /* width: 28%; */
    padding: 5%;
    /* max-width: 350px; */
  }
}

@media only screen and (max-width: 575px) {
  .aboutme__illustration--hover {
    display: none;
  }

  .section__bg {
    display: none;
  }
  .alignment {
    margin: 10rem 0 0 0;
  }
}

/*
 * ========================
 * Medium Screen -- 768px
 * ========================
 */
@media only screen and (min-width: 48em) {
  .container {
    padding: 2.5rem;

    max-width: 760px;
  }

  .aboutme__illustration {
    width: 100%;
    max-width: 100px;
    height: 100px;
  }
  .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;
  }
  .works {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .work__illustration {
    width: 100%;
    /* max-width: 350px; */
  }
}

/*
 * ========================
 * Large Screen -- 992px
 * ========================
 */
@media only screen and (min-width: 62em) {
  .container {
    padding: 2.5rem;

    max-width: 960px;
  }
  .section__title {
    text-align: center;
    font-size: 8rem;
    color: transparent; /* Make the text color transparent */
    -webkit-text-stroke-width: 2px; /* Width of the stroke */
    -webkit-text-stroke-color: white; /* Color of the stroke */
    stroke-miterlimit: 2px; /* Standard text stroke property */
    text-emphasis-color: white;
  }
  .work {
    width: 33.33333333333333%;
  }
  .work__para {
    width: 50%;
    padding: auto;
  }
  .work__illustration {
    width: 100%;
    display: flex;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact__form {
    width: 50%;
    /* 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: 700px;
    opacity: 1;
    /* top: 35px; */
  }
}

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

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

    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);
  }
}
/* @keyframes move-bg {
  0% {
    transform: translate(-50%, -50%) translateX(0) translateY(0);
  }
  25% {
    transform: translate(-50%, -50%) translateX(50px) translateY(50px);
  }
  50% {
    transform: translate(-50%, -50%) translateX(0) translateY(100px);
  }
  75% {
    transform: translate(-50%, -50%) translateX(-50px) translateY(50px);
  }
  100% {
    transform: translate(-50%, -50%) translateX(0) translateY(0);
  }
} */
@keyframes blob {
  0% {
    border-radius: 40% 60% 70% 30% / 60% 40% 50% 50%;
    transform: translate(0, 0) scale(1);
  }
  25% {
    border-radius: 60% 40% 50% 50% / 30% 70% 60% 40%;
    transform: translate(50px, -30px) scale(1.1);
  }
  50% {
    border-radius: 50% 50% 40% 60% / 50% 50% 60% 40%;
    transform: translate(-30px, 50px) scale(0.9);
  }
  75% {
    border-radius: 60% 40% 70% 30% / 40% 60% 50% 50%;
    transform: translate(-50px, -20px) scale(1.05);
  }
  100% {
    border-radius: 40% 60% 70% 30% / 60% 40% 50% 50%;
    transform: translate(0, 0) scale(1);
  }
}
