@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");
@font-face {
  font-family: "LemonMilk";
  src: url("./assets/fonts/LEMONMILK-Regular.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "LemonMilk";
  src: url("../assets/fonts/LEMONMILK-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "LemonMilk";
  src: url("../assets/fonts/LEMONMILK-Light.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "LemonMilk";
  src: url("../assets/fonts/LEMONMILK-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
#root {
  overflow-x: hidden !important;
}
body {
  font-family: "LemonMilk", sans-serif !important;
  all: unset;
  background-color: #ede3d3 !important;
  overflow-x: hidden !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin: 0px !important;
}
.container {
  max-width: 90% !important;
  margin: auto !important;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.main-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;

  background: linear-gradient(179deg, #1f5870 0%, #ede3d3 80%);
}

.main-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%; /* Adjust height as needed */
  background: linear-gradient(0deg, #ede3d3 0%, rgb(31 88 112 / 0%) 100%);
  z-index: -2;
  pointer-events: none; /* Ensures no interference with user interactions */
}
.buttons a {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  color: black !important;
}
.bg-btn {
  border-radius: 31px;
  font-family: Poppins;

  font-size: clamp(16px, 1vw, 25px);
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  color: black !important;
  padding: clamp(12px, 1vw, 20px) clamp(20px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.20000000298023224px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

  background: linear-gradient(
    140deg,
    #fffa73 0%,
    /* First color */ #ffcf1e 55%,
    /* Second color (zyada prominent) */ #ff847c 90% /* Last color (aur kam) */
  );

  box-shadow: -1px 1px 2px #fffdcb inset;
  border-radius: 31px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  border: none;
}
.bg-white-btn {
  border-radius: 31px;
  font-family: Poppins;
  font-size: clamp(16px, 1vw, 25px);
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  color: black !important;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.20000000298023224px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: clamp(12px, 1vw, 20px) clamp(20px, 4vw, 40px);
  background: white;
  border-radius: 31px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  border: none;
}
.header a {
  font-family: Poppins;
  font-size: clamp(16px, 1vw, 30px);

  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.20000000298023224px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  text-decoration: none;
  padding: 15px;
}
.hero {
  flex: 1;
}
.hero h3 {
  text-align: center;
  color: white;
  font-size: clamp(20px, 1vw, 50px);

  font-family: Poppins;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 6px;
  word-wrap: break-word;
}
.hero h1 {
  color: white;
  font-size: clamp(64px, 3vw, 144px);
  text-align: center;

  font-weight: 500;
  line-height: 1.1;
  word-wrap: break-word;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.15); /* Start smaller */
    opacity: 0; /* Fully transparent */
  }
  100% {
    transform: scale(1); /* Full size */
    opacity: 1; /* Fully visible */
  }
}

.content {
  animation: zoomIn 5s ease-in-out forwards; /* Apply the animation */
}

.slide-fade-right {
  animation: slideFadeRight 10s forwards;
}
.slide-fade-left {
  animation: slideFade 10s forwards;
}
.updown {
  animation: upDown 8s infinite ease-in-out;
}
.right-cloud {
  position: absolute;
  right: 0;
  bottom: -200px;
  z-index: 11;
  width: 40%;
}

.left-cloud {
  position: absolute;
  left: 0px;
  bottom: -200px;

  z-index: 11;
  width: 42%;
}
.zerotofiftyfade {
  animation: slideFadeZero 7s forwards;
}
@keyframes slideFadeZero {
  0% {
    left: 0px; /* Start from left -100px */
    opacity: 0; /* Fully transparent */
  }
  100% {
    left: 28%; /* End at left 0 */
    opacity: 1; /* Fully visible */
  }
}
@keyframes slideFade {
  0% {
    left: -100px; /* Start from left -100px */
    opacity: 0; /* Fully transparent */
  }
  100% {
    left: 0; /* End at left 0 */
    opacity: 1; /* Fully visible */
  }
}
@keyframes slideFadeRight {
  0% {
    right: -100px; /* Start from right -100px */
    opacity: 0; /* Fully transparent */
  }
  100% {
    right: 0; /* End at right 0 */
    opacity: 1; /* Fully visible */
  }
}
.hero .robot {
  position: absolute;
  top: 60%;
  left: 27%;
  z-index: -3;
}
.offcanvas {
  background-color: #37697b !important;
}
.offcanvas ul {
  padding: 0px;
  margin: 0px;
}
.offcanvas ul li {
  list-style-type: none;
  padding: 8px;
}
.offcanvas ul li a {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -0.20000000298023224px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  text-decoration: none;
  padding: 15px;
}
.main-gradient {
  background: linear-gradient(
    180deg,
    #ede2d2 2%,
    #3883a2 6%,
    #157aa5 76%,

    #89af99 100%
  );
  position: relative;
}
.additional {
  position: relative;
  z-index: 111;
}
.additional h2 {
  text-align: center;
  color: #10668b;
  font-size: 64px;
  font-weight: 500;
  line-height: 76.8px;
  word-wrap: break-word;
}
.additional p {
  text-align: center;
  color: #10668b;
  font-size: 24px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 30px;
  word-wrap: break-word;
}
.ai-robot {
  position: absolute;
  animation: upDown 5s infinite ease-in-out;
  bottom: -35px;
  z-index: 11;
}
.messaging {
  padding: 40.45px;
  background: linear-gradient(
    103deg,
    rgba(190, 254, 124, 0.7) 0%,
    rgba(252.67, 236.37, 218, 0.7) 21%,
    rgba(58.01, 111.72, 15.82, 0.49) 75%,
    rgba(128.3, 128.3, 128.3, 0.7) 100%
  );
  border-radius: 26px;
  border: 0.92px white solid;
  backdrop-filter: blur(58.74px);
  margin-bottom: 150px;
}

.powered {
  background: linear-gradient(
    103deg,
    rgba(108.96, 108.96, 108.96, 0.3) 0%,
    rgba(9.1, 36.17, 76.78, 0.35) 44%,
    rgba(252.67, 236.37, 218, 0.5) 69%,
    rgba(190, 254, 124, 0.5) 100%
  );
}
.inner-mess-bg {
  background-image: url(/assets/images/mess-bg.png);
  background-repeat: no-repeat;
  background-size: cover; /* Keeps the image's original dimensions */
  /* background-position: center; */
  display: flex;
  justify-content: center;
  padding: 60px;
  position: relative;
  width: 100%; /* Makes the container span the full width */
  height: auto; /* Lets the height adjust based on content */
  border-radius: 10px;
}

.inner-mess-bg h3 {
  color: #1d2739;

  font-size: clamp(20px, 1vw, 24px);

  font-weight: 500;
  line-height: 1.1;
  word-wrap: break-word;
}
.progress {
  background-color: #f9fafb;
  height: 7.3px !important;
}
.progress-bar {
  height: 7.3px;
  background: linear-gradient(
    140deg,
    #fffa73 0%,
    /* First color */ #ffcf1e 55%,
    /* Second color (zyada prominent) */ #ff847c 90% /* Last color (aur kam) */
  );
  box-shadow: -1px 1px 2px #fffdcb inset;
  border-radius: 31px;
}
.mess-box {
  padding: 10px;
  color: black;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 18px;
  word-wrap: break-word;
  background-color: white;
  border-radius: 10px;
}
.profile {
  position: absolute;
  bottom: 105px;
  right: 132px;
}
.messaging h4 {
  color: white;

  font-size: clamp(14.71px, 1vw, 24px);

  font-family: Poppins;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 5px;
  word-wrap: break-word;
}
.messaging h5 {
  text-align: center;
  color: white;
  font-size: 24px;
  font-size: clamp(14.71px, 1vw, 24px);

  font-weight: 500;
  line-height: 31.2px;
  word-wrap: break-word;
}
.messaging h2 {
  color: white;

  font-size: clamp(44px, 3vw, 64px);

  font-weight: 500;
  line-height: 1.1;
  word-wrap: break-word;
}
.messaging h3 {
  color: white;
  font-size: 32px;
  font-size: clamp(32px, 1vw, 42px);

  font-weight: 500;
  line-height: 1.1;
  word-wrap: break-word;
}
.messaging p {
  color: white;
  font-size: 14.71px;
  font-size: clamp(14.71px, 1vw, 24px);

  font-family: Poppins;
  font-weight: 500;
  line-height: 23.53px;
  word-wrap: break-word;
}
.secure {
  position: relative;
  z-index: 10;
}
.big-cloud {
  position: absolute;
  top: -138px;
  right: 0;
  animation: leftRight 8s infinite ease-in-out;
}

.curve-cloud {
  position: absolute;
  bottom: 65%;

  width: 50%;
  right: -12%;
  animation: leftRight 8s infinite ease-in-out;
}
.onecloud {
  position: absolute;
  bottom: -35%;
  z-index: -10;
  width: 100%;
}
.new-sec {
  margin-bottom: 550px;
}
.topcloud {
  position: absolute;
  top: -24%;
  z-index: -1;
}
.left-curve-cloud {
  position: absolute;
  top: 18%;
  width: 50%;
  left: 0;
  animation: leftRight 8s infinite ease-in-out;
}
.nim-1 {
  position: absolute;
  bottom: 54%;
  animation: upDown 5s infinite ease-in-out;
  left: 32%;
}
.nim-2 {
  position: absolute;
  bottom: 57%;
  animation: upDown 5s infinite ease-in-out;
  right: 13%;
}
.footer p {
  color: white;
  font-size: clamp(14.71px, 1vw, 24px);

  font-family: Poppins;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
}
.footer ul {
  margin: 0px;
  padding: 0px;
}
.footer ul li {
  list-style-type: none;
  padding: 7px;
}
.footer ul li a {
  list-style-type: none;
  color: white;
  font-size: clamp(14.71px, 1vw, 24px);

  font-family: Poppins;
  font-weight: 400;
  line-height: 25.2px;
  word-wrap: break-word;
  text-decoration: none;
}
.input-groups {
  font-size: clamp(16px, 1vw, 25px);

  padding: clamp(12px, 1vw, 20px) clamp(20px, 4vw, 40px);
  background: rgba(116.76, 109.01, 120.49, 0.1);
  border-radius: 40px;
  border: 1px rgba(248, 249, 250, 0.2) solid;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}
.input-groups input {
  color: white !important;
  font-size: clamp(16px, 1vw, 25px) !important;
  font-family: Poppins !important;
  font-weight: 400 !important;
  line-height: 25.2px !important;
  word-wrap: break-word;
  text-transform: capitalize !important;
  all: unset;
  background-color: transparent;
}
.input-groups input::placeholder {
  color: white !important;
}
/* .last {
  background-image: url(/assets/images/curve-cloud.png);
  background-repeat: no-repeat;
  background-size: contain; 
  background-position: center bottom -50px;
  
} */
.sright-cloud {
  position: absolute;
  right: 0px;
  width: 90%;
  bottom: -384px;
  z-index: 999999999999999999;
}
.sleft-cloud {
  position: absolute;
  left: 0px;
  width: 90%;
  z-index: 9999999999999999999;
  bottom: -301px;
}
@keyframes fadeAndSlideOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

@keyframes fadeAndSlideOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.sleft-cloud.animate-out {
  animation: fadeAndSlideOutLeft 8s forwards;
}

.sright-cloud.animate-out {
  animation: fadeAndSlideOutRight 8s forwards;
}
.splash {
  height: 100vh;
  overflow: hidden;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes leftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0);
  }
}
.moving-element {
  animation: leftRight 4s infinite ease-in-out;
}
.mobile-header {
  display: none !important ;
}
::-webkit-scrollbar {
  width: 10px; /* Width of the scrollbar */
  height: 10px; /* Height of the scrollbar (horizontal) */
}

::-webkit-scrollbar-thumb {
  background-color: #859ea2; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Round edges for the thumb */
  border: 3px solid #e6e6e6; /* Border around the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #859ea2; /* Thumb color when hovered */
}

::-webkit-scrollbar-track {
  backdrop-filter: blur(58.74px);
  background-color: #e6e6e6;
}

/* For Firefox */
scrollbar {
  width: 12px;
}

scrollbar-thumb {
  background-color: #859ea2;
  border-radius: 10px;
}

scrollbar-track {
  backdrop-filter: blur(58.74px);
  background-color: #e6e6e6;
}
.internal-part h4 {
  text-align: center;
  color: white;
  font-size: 64px;

  font-weight: 500;
  line-height: 76.8px;
  word-wrap: break-word;
}
.internal-part p {
  text-align: center;
  color: white;
  font-size: 24px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 30px;
  word-wrap: break-word;
}
.slide-robo {
  position: absolute;
  left: 23%;
  top: -10%;
}
.register {
  background: linear-gradient(179deg, #1f5870 0%, #ede3d3 80%);
  overflow: hidden;
  /* height: 100vh; */
  padding: 35px;
  background-image: url(../assets/images/Registerbg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.inner-register {
  background: linear-gradient(180deg, #0176a7 0%, white 100%);
  border-radius: 24px;

  height: 100%;
}
.p-10 {
  padding: 100px 30px;
}
.inner-register h3 {
  color: white;
  font-size: 15.24px;
  font-family: Poppins;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 18.28px;
  letter-spacing: 4.57px;
  word-wrap: break-word;
}
.inner-register h1 {
  color: white;
  font-size: 31.37px;
  font-weight: 500;
  line-height: 37.65px;
  word-wrap: break-word;
}
.inner-form h4 {
  color: black;
  font-size: 26px;
  font-family: Poppins;
  font-weight: 600;
  word-wrap: break-word;
}
.inner-form {
  background: #fcfeff;
  border-radius: 25px;
  height: 100%;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 0px 100px;
}
.inner-form > div {
  width: 100%;
}
.inner-form input {
  background: rgba(176, 186, 195, 0.4);
  border-radius: 20px;
  padding: 20px;
  border: none;
  width: 100%;
}
.inner-form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  font-family: Poppins;
  font-weight: 400;
  word-wrap: break-word;
}
.inner-form label {
  color: #7c838a;
  font-size: 20px;
  font-family: Poppins;
  font-weight: 500;
  word-wrap: break-word;
  margin-bottom: 13px;
}
.cloud-login {
  position: absolute;
  width: 70%;
  bottom: -41px;
  right: 0;
}
.login-content {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.inner-form p {
  color: #7c838a;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  word-wrap: break-word;
}
.inner-form a {
  color: #0f7eac;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  word-wrap: break-word;
  text-decoration: none;
}
.card-cus {
  min-height: 330px;
}
@media only screen and (min-width: 2560px) {
  .slide-robo {
    position: absolute;
    left: 30%;
    top: -6%;
  }

  .hero .robot {
    position: absolute;
    top: 80%;
    left: 35%;
  }
}
@media only screen and (max-width: 1440px) {
  .slide-robo {
    position: absolute;
    left: 11%;
    top: 0%;
  }
  .right-cloud {
    position: absolute;
    bottom: -100px;
  }
  .left-cloud {
    position: absolute;
    left: 0px;
    bottom: -100px;
  }
  .curve-cloud {
    position: absolute;
    bottom: 75%;
    width: 50%;
    right: -12%;
    animation: leftRight 8s infinite ease-in-out;
  }
}
@media only screen and (max-width: 1399px) {
  .inner-mess-bg .w-50 {
    width: 70% !important;
  }
  .inner-form {
    padding: 100px 30px;
  }
}
@media only screen and (max-width: 992px) {
  .messaging h3 {
    font-size: 24px;
  }
  .card-cus {
    min-height: auto;
  }
  .inner-register {
    background: linear-gradient(180deg, #0176a7 0%, white 26%);
  }
  .logo {
    width: 200px;
  }
  .p-10 {
    padding: 20px;
  }
  .inner-form {
    padding: 25px;
    display: block;
  }
  .inner-form {
    background-color: transparent;
  }
  .sright-cloud {
    position: absolute;
    right: 0px;
    width: 160%;
    bottom: -30%;
    z-index: 9999;
  }
  .sleft-cloud {
    position: absolute;
    left: 0px;
    width: 160%;
    z-index: 9999;
    bottom: -30%;
  }
  .nim-1 {
    position: absolute;
    bottom: 52%;
    animation: upDown 5s infinite ease-in-out;
    left: 21%;
  }
  .nim-2 {
    position: absolute;
    bottom: 46%;
    animation: upDown 5s infinite ease-in-out;
    right: 7%;
  }
  .mobile-header {
    display: block !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header {
    display: none;
  }
  .hero h1 {
    color: white;
    font-size: 41px;
    text-align: center;
    font-weight: 500;
    line-height: 50.8px;
    word-wrap: break-word;
  }
  .internal-part h4 {
    font-size: 34px;
    line-height: 45px;
  }
  .internal-part p {
    font-size: 16px;
  }
  .hero .robot {
    position: absolute;
    top: 70%;
    left: 0%;
  }
  .onecloud {
    position: absolute;
    bottom: 0;
    z-index: -10;
    width: 100%;
  }
  .new-sec {
    margin-bottom: 150px;
  }
  @keyframes slideFadeZero {
    0% {
      left: 0px; /* Start from left -100px */
      opacity: 0; /* Fully transparent */
    }
    100% {
      left: 0%; /* End at left 0 */
      opacity: 1; /* Fully visible */
    }
  }
}
@media only screen and (max-width: 500px) {
  .register {
    padding: 35px 0px;
  }
  .inner-form {
    padding: 35px;
  }
}
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}
@media only screen and (max-width: 600px) {
  .slide-robo {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 400px !important;
    height: 400px !important;
  }
  @keyframes slideFadeZero {
    0% {
      left: 0px; /* Start from left -100px */
      opacity: 0; /* Fully transparent */
    }
    100% {
      left: -40%; /* End at left 0 */
      opacity: 1; /* Fully visible */
    }
  }
  .hero .robot {
    position: absolute;
    top: 40%;
    left: -20%;
  }
  .inner-mess-bg {
    padding: 20px;
  }
  .inner-mess-bg .w-50 {
    width: 100% !important;
  }
  .messaging {
    margin-bottom: 100px;
  }
  .messaging h2 {
    font-size: 31.12px;
    line-height: 40.36px;
  }
  .messaging h5 {
    font-size: 16px;
    line-height: 26.2px;
  }
  .ai-robot {
    bottom: -99px;
    width: 50%;
  }
  br {
    display: none;
  }
  .additional h2 {
    font-size: 31px;
    line-height: 44.8px;
  }
  .messaging {
    padding: 20.45px;
  }
  .content {
    padding: 0px 20px !important;
  }
  .right-cloud {
    position: absolute;
    bottom: 0px;
  }
  .left-cloud {
    position: absolute;
    left: 0px;
    bottom: 0px;
  }

  .hero h1 {
    color: white;
    font-size: 28px;
    text-align: center;
    font-weight: 500;
    line-height: 32.8px;
    word-wrap: break-word;
  }
  .buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .buttons button {
    width: 100%;
    text-align: center;
  }
  .content a {
    width: 100% !important;
  }
  .last {
    padding-bottom: 0px !important;
  }
  .buttons a {
    width: 100%;
    text-align: center;
  }
  .nim-1 {
    position: absolute;
    bottom: 38%;
    animation: upDown 5s infinite ease-in-out;
    left: 17%;
  }
  .nim-2 {
    position: absolute;
    bottom: 42%;
    animation: upDown 5s infinite ease-in-out;
    right: 0%;
  }
  /* .main-hero {
    min-height: 60vh;
  } */
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .input-groups input {
    width: 100%;
  }
}

@media only screen and (max-width: 470px) {
  .inner-form input {
    padding: 15px;
  }
  .inner-form input::placeholder {
    font-size: 16px;
  }
  .inner-form p {
    font-size: 15px;
  }
  .inner-form h4 {
    font-size: 20px;
  }
  .inner-form label {
    font-size: 16px;
  }
  .hero .robot {
    position: absolute;
    top: 58%;
    left: -40%;
  }
  .left-cloud {
    position: absolute;
    left: 0px;
    bottom: -15px;
    z-index: 11;
    width: 61%;
  }
  .right-cloud {
    position: absolute;
    right: 0;
    bottom: -17px;
    z-index: 11;
    width: 51%;
  }
  /* .hero .robot {
    position: absolute;
    bottom: -160px;
    left: 47%;
    animation: upDown 5s infinite ease-in-out;
  } */
  .hero .robot img {
    width: 50%;
  }
  .nim-1 {
    width: 32%;
  }
  .nim-2 {
    width: 120px !important;
    height: 120px !important;
    right: 7%;
  }
  .hero h1 {
    font-size: 23px;

    line-height: 30.8px;
  }
  .register {
    padding: 25px 0px;
  }
  .logo {
    width: 200px;
  }
}
@media only screen and (max-width:400px){
  @keyframes slideFadeZero {
    0% {
      left: 0px; /* Start from left -100px */
      opacity: 0; /* Fully transparent */
    }
    100% {
      left: -50%; /* End at left 0 */
      opacity: 1; /* Fully visible */
    }
  }
}
