*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  background: black;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
  color: white;
}

html {
  scroll-behavior: smooth;
}


section .wpcf7.js{
    width: 100%;
}

form .control input,
form .control textarea,
form .control select
 {
  width: 100%;
  padding: 25px 0;
  border: none;
  color: white;
  border-bottom: 2.5px dotted #ffffff31;
  background: transparent;
  font-size: 16px;
  transition: all 0.5s;
}
/* Apply white text color to the first select element */
form .control select option:nth-of-type(1) {
  color: #fff;
}

/* Apply black text color to all select elements except the first one */
form .control select option:not(:first-of-type) {
  color: black;
}

form .control input::placeholder,
form .control textarea::placeholder,
form .control select:valid {
  color: rgb(189, 189, 189);
}
form .control input:hover,
form .control textarea:hover,
form .control select:hover {
  border-color: #fff;
}
form .control input:focus,
form .control textarea:focus,
form .control select:focus {
  outline: none;
  border-color: #fff;
}
form .control button.hover-gsap {
    position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  overflow: visible;
  transition: all 0.5s ease;
  width: 100px;
  height: 100px;
  background-color: transparent;
  color: #777;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  border: none;
  margin: 30px 0 0 0;
  text-decoration: none;
}
form .control .hover-gsap::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 50%;
  border: 2.5px dotted #777;
  animation: rotateOutline 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}
form .control .hover-gsap .content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
form .control button.hover-gsap span br{
  display: none;
}
form .control button.hover-gsap:hover {
  color: white;
  outline-color: white;
}
form .control button.hover-gsap:hover::before {
  border-color: white;
}
@keyframes rotateOutline {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}