.slide-in { position: relative; transform: translateX(-100px); opacity: 0; transition: transform 400ms cubic-bezier(0.05, 1.28, 0.71, 1.13);}
.slide-in.active { transform: translateX(0); opacity: 1; }

.button-53 {
  padding: 12px 26px;
  border: 0;
  font-size: 16px;
  transition--: all 150ms ease-in-out;
  border-radius: 16px;
  font-weight: 600;
  color: #000;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 70.48%, #FFF 93.62%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(180deg, rgba(30, 54, 87, 0.00) 0%, rgba(30, 54, 87, 0.01) 100%), #FAFAFA;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 70.48%, #fbf0cc 93.62%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(180deg, rgba(30, 54, 87, 0.00) 0%, rgba(30, 54, 87, 0.01) 100%), var(--accent);
  border: none;
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 0 1px, rgba(0, 0, 0, 0.08) 0 -2px 1px 0 inset, rgba(255, 255, 255, 0.5) 0 2px 1px 0 inset, 0 2px 5px -1px rgba(0, 0, 0, 0.05), 0 1px 3px -1px rgba(0, 0, 0, 0.3);
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  display--: inline-flex;
}
.button-53:hover {
  background-color: #F5F5F5;
}
.button-53:active {
  background-color: #F1F1F1;
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 0 1px, rgba(0, 0, 0, 0.08) 0 1px 1px 0 inset, rgba(255, 255, 255, 0.1) 0 2px 1px 0 inset, 0 2px 5px -1px rgba(0, 0, 0, 0.05);
}

@keyframes shine {
	0% {left: -100px}
	100% {left: 100%}
}
.shine::before {
	content: '';
	position: absolute;
	width: 100px;
	height: 100%;
	background-image: linear-gradient( 120deg, rgba(255,255,255, 0) 30%, rgba(255,255,255, .8), rgba(255,255,255, 0) 70% );
	top: 0;
	left: -100px;
	animation--: shine 15s infinite linear;
	animation-delay--: 3s;
}
.shine:hover::before {
	animation: shine 400ms 1 linear;
}

.hero .image-body {
    position: relative;
    width: 300px;
    height: 300px;
}
.hero .image-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background--: linear-gradient(135deg, #3b82f6, #1e40af);
    background: linear-gradient(135deg, #3b82f6, var(--lavender));
    background-color--: var(--lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    animation--: pulse 2s infinite;
}
.hero .image-main i {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 5px var(--lavender);
}
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}
.hero .floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero .floating-icons .icon-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float-around 4s infinite ease-in-out;
}
.hero .floating-icons .icon-item:nth-child(1) {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}
.hero .floating-icons .icon-item:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}
.hero .floating-icons  .icon-item:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}
.hero .floating-icons  .icon-item:nth-child(4) {
    top: 30%;
    left: 20%;
    animation-delay: 3s;
}
@keyframes float-around {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.hero .floating-icons .icon-item i {
    font-size: 1.5rem;
    color: white;
}

.hdraw {
  box-sizing: border-box;
  position: relative;
  vertical-align: middle;
}
.hdraw::before, .hdraw::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.hdraw {
  transition--: color 400ms;
}
.hdraw::before, .hdraw::after {
  border: 1px solid transparent;
  width: 0;
  height: 0;
  border-radius: 5px;
}
.hdraw::before {
  top: 0;
  left: 0;
}
.hdraw::after {
  top: 0;
  left: 0;
}
.hdraw:hover {
  color: none;
}
.hdraw:hover::before, .hdraw:hover::after {
  width: 100%;
  height: 100%;
}
.hdraw:hover::before {
  border-top-color: var(--twilight);
  border-right-color: var(--twilight);
  transition: width 200ms linear, height 200ms linear 200ms;
}
.hdraw:hover::after {
  border-bottom-color: var(--twilight);
  border-left-color: var(--twilight);
  transition--: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
  transition: height 200ms linear, width 200ms linear 200ms;
}

.menu-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: 35px;
  width: 30px;
  cursor: pointer;
  pointer-events: auto;
  margin-left: 25px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  float: right;
}
.menu-button i {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--lavender-text);
  transition: .3s;
}
.menu-button i + i {
  margin-top: 5px;
}

