h1 {
  max-width: 50%;
}

ul {
  margin-left: 20px;
}

ul li{
  font-size: 20px;
}

.js-tilt{
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  width: 100%;
  display: grid !important;
  grid-template-columns: 60% 40%
}

.js-tilt .left{
  align-items: flex-start;
  gap: 30px
}

.js-tilt .right{
  align-items: center;
  padding: 25px;
  gap: 50px;
}

.js-tilt iframe{
  width: 100%;
  height: 60%;
  border-radius: 20px;
  aspect-ratio: 16/9;
}

.box-form {
  width: 100%;
  padding: 40px;
  background: white
  box-sizing: border-box;
  border-radius: 2px;
  border: 2px solid orange
}

.js-tilt h2{
  font-size: clamp(36px,4.4vw,52px);
}

.box-form h2,  .js-tilt h2{
  margin: 0 0 20px;
  padding: 0;
  color: #67d2ff;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(45deg,#004562,#67d2ff);
}

.box-form .inputBox {
  position: relative;
}

.box-form input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid #000;
  outline: none;
  background: transparent;
}

.box-form label {
  /* 	position: absolute;
  top: 0;
  left: 0; */
  padding: 10px 0;
  font-size: 16px;
  color: black;
  pointer-events: none;
  transition: .5s;
  animation: LabelOnLoad 1s forwards 0s ease;
} 

@keyframes LabelOnLoad{
  0%{
    transform: rotate(0) translateY(-19px);
    opacity: 0;
  }
  100%{
    transform: rotate(0) translateY(0);
    opacity: 1;
  }
}

.box-form input:focus ~ label, 
.box-form input:valid ~ label {
  top: -19px;
  left:0;
  color: #03A9F4;
  font-size: 12px;
}

.box-form input[type='submit'] {
  border: none;
  outline: none;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 3px;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  -webkit-transition: .7s ease;
  transition: .7s ease;
  text-transform: uppercase;
  background: linear-gradient(267.72deg, #1da851 0.88%, #6affa1 100%);
  position: relative;
}

.box-form input[type='submit']::after {
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 30%;
  height: 70%;
  opacity: 0;
  -webkit-transition: .7s ease;
  transition: .7s ease;
  border-radius: 3px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.box-form input[type='submit']::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 30%;
  height: 70%;
  opacity: 0;
  -webkit-transition: .7s ease;
  transition: .7s ease;
  border-radius: 1px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.box input[type='submit']:hover {
  -webkit-transform: skew(-10deg) scale(1.05);
  transform: skew(-10deg) scale(1.05);
}

.box input[type='submit']:hover::after {
  opacity: 1;
}

.box input[type='submit']:hover::before {
  opacity: 1;
}

.hs-input {
  width: 100%!important;
}

.hs_firstname {
  padding: 10px 0!important;
}

@media(max-width: 800px) {
  .js-tilt{
    flex-direction: column;
    justify-content: center;
    padding: 0;
    grid-template-columns: 1fr;
    padding: 0;
    gap: 30px;
  }

  .js-tilt .left{

  }

  .js-tilt .right{
    align-items: center;
    padding: 0;
  }
  .box-form{
    padding: 1;
  }
  
  h1 {
    max-width: 100%;
    font-size: 30px
  }
}