input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px #000 inset;
  box-shadow: 0 0 0 1000px #000 inset;
  caret-color: rgba(255, 252, 243, 1);
}

@keyframes underlineMove {
  0% {
    left: 0;
  }

  100% {
    left: 50%;
  }
}

@keyframes iconOrbit {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  30% {
    transform: translateX(22px) scale(0.75);
    opacity: 0.35;
  }

  50% {
    transform: translateX(-22px) scale(0.75);
    opacity: 0;
  }

  75% {
    transform: translateX(-10px) scale(0.9);
    opacity: 0.6;
  }

  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes arrowMoveLeft {
  0% {
    right: 130px;
    top: 135px;
  }

  100% {
    right: 62px;
    top: 203px;
  }
}

@keyframes tailGrow {
  0% {
    width: 167.02px;
  }

  50% {
    width: 263.04px;
  }

  100% {
    width: 167.02px;
  }
}

@keyframes arrowMoveRight {
  0% {
    left: 130px;
    top: 135px;
  }

  100% {
    left: 62px;
    top: 203px;
  }
}

#formMessage.visible.success {
  color: #00c896;
}

#formMessage.visible.error {
  color: #ff4d4d;
}

.section-divider {
  max-height: 300px;
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.divider-right {
  justify-content: flex-end;
}

.divider-right .container {
  margin-right: 101px;
}

.divider-left {
  justify-content: flex-start;
}

.divider-left .container {
  margin-left: 101px;
}

.section-divider .container {
  height: 250px;
  width: 250px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.arrow {
  position: absolute;
}

.arrow div {
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  background: black;
  transform-origin: left center;
}

.tail {
  width: 167.02px;
  transform: rotate(-45deg);
}

.head-v {
  width: 45.33px;
  transform: rotate(-90deg);
}

.head-h {
  width: 45.33px;
  transform: translateX(-2px);
}

.divider-right .arrow {
  left: 130px;
  top: 135px;
}

.divider-right .arrow.arrow-active {
  animation: arrowMoveRight 400ms ease forwards;
}

.divider-right .tail.arrow-active {
  animation: tailGrow 400ms ease forwards;
}

.divider-left .arrow {
  left: auto;
  right: 130px;
  top: 135px;
  transform: scaleX(-1);
}

.divider-left .arrow.arrow-active {
  animation: arrowMoveLeft 400ms ease forwards;
}

.divider-left .tail.arrow-active {
  animation: tailGrow 400ms ease forwards;
}

.skills-frame {
  position: relative;
}

.skills-frame::before {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  width: 4px;
  background: black;
}

.skills-frame::after {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 0;
  width: 4px;
  background: black;
}

.skills-inner {
  position: relative;
  padding-bottom: 40px;
}

.skills-inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: black;
}

.skills-title {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.skills-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: black;
}

.skills-title span {
  position: relative;
  padding: 0 20px;
  background: rgba(255, 252, 243, 1);
  font-size: 78px;
  font-weight: 600;
  z-index: 2;
  font-family: 'Syne', sans-serif;
}

.field {
  position: relative;
  background: #000;
  padding: 15px 25px 15px;
  margin-bottom: 6px;
  border-bottom: 4px solid rgba(255, 252, 243, 1);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid transparent;
  transition: border-color .2s ease;
  font-family: 'Overpass', sans-serif;
}

.field:focus-within {
  border-color: rgba(255, 252, 243, 1);
}

.field.filled,
.field.success {
  border-color: rgba(255, 252, 243, 1) !important;
}

.field input,
.field textarea {
  line-height: 50px;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255, 252, 243, 1);
  font-size: 28px;
  padding: 0;
}

#message {
  height: 202px;
  width: 100%;
  padding-right: 10%;
  box-sizing: border-box;
}

.field label {
  position: absolute;
  left: 18px;
  color: rgba(255, 252, 243, 1);
  font-size: 16px;
  pointer-events: none;
  transition: .2s ease;
  background: #000;
  padding: 0 6px;
}

.field label[for="name"],
.field label[for="email"] {
  top: 50%;
  transform: translateY(-50%);
}

.field label[for="message"] {
  top: 10px;
  transform: none;
}

.field:focus-within label,
.field.force-label label {
  top: 0;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(255, 252, 243, 1);
}

.field.filled label,
.field.success label {
  top: 0;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(255, 252, 243, 1);
}

.error-icon,
.success-icon {
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 7.5px;
  transform: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
    opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-icon {
  background: rgba(230, 28, 64, 1);
  color: rgba(255, 252, 243, 1);
  height: 25px;
  width: 25px;
}

.success-icon {
  background: #4caf50;
  color: rgba(255, 252, 243, 1);
  height: 25px;
  width: 25px;
}

.field.error .error-icon {
   z-index: 3;
    opacity: 1;
    visibility: visible;
}

.field.success .success-icon {
   z-index: 3;
  opacity: 1;
  visibility: visible;
}

.error-text {
   color: rgba(230, 28, 64, 1) !important;
  font-size: 16px;
  display: block;
  height: 16px;
  min-height: 16px;
  line-height: 16px;
  opacity: 0;
  visibility: hidden;
  margin-top: -8px;
  pointer-events: none;
}

.error-text.visible {
  opacity: 1;
  visibility: visible;
}

.contact-privacy {
  width: 100%;
  height: 52px;
  display: flex;
  gap: 10px;
  color: rgba(255, 252, 243, 1);
  margin: 10px 0;
  align-items: center;
}

.contact-form .contact-privacy label,
a {
  font-size: 16px;
  font-family: 'Overpass', sans-serif;
  font-weight: 400;
}

.footer-arrow-wrapper {
  position: absolute;
  right: max(40px, calc((100vw - 1240px) / 2)) !important;
  bottom: 150px;
  width: 30px;
  height: 60px;
  z-index: 10;
  pointer-events: none;
}

.arrow-up {
  position: relative;
  width: 40px;
  height: 60px;
  cursor: pointer;
  pointer-events: auto;
}

.arrow-up::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  width: 4px;
  height: 52px;
  background: rgba(255, 252, 243, 1);
  transform: translateX(-50%);
  transition: 0.2s ease;
}

.arrow-up::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 14px;
  border-left: 4px solid rgba(255, 252, 243, 1);
  border-top: 4px solid rgba(255, 252, 243, 1);
  transform: translateX(-50%) rotate(45deg);
  transition: 0.2s ease;
}

.arrow-up:hover::before {
  top: -13px;
  height: 67px;
}

.arrow-up:hover::after {
  top: -15px;
}

.references-controls,
.ref-dots {
  display: none;
}