/* ===============================
   CONTACT / NAV BUTTONS
================================ */

.contact-btn {
  background: none;
  border: 1px solid color(srgb 1 1 1 / 0.15);
  padding: 14px 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  font-weight: 500;
}

.black-btn {
  background: transparent;
  border: 1px solid var(--purple);
  padding: 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  backdrop-filter: blur(20px);
  font-weight: 500;
  color: #000;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

.black-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: width 0.3s ease;
  right: 0;
  background: #f0ede8;
}

.black-btn:hover {
  color: #000;
  background: transparent;
}

.black-btn:hover::after {
  width: 100%;
  left: auto;
  right: 0;
}

.black-btn:active {
  top: 2px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid color(srgb 0.176 0.212 0.212 / 0.2);
  background-color: transparent;
  color: #000;
  padding: 20px 36px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "AF-serif-Medium", "Helvetica Neue", Arial, sans-serif;
  transition: all 0.2s ease-in-out;
}

.btn:focus,
.btn:active:focus {
  outline: none;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none;
  background: transparent;
}

.btn:active {
  background-image: none;
  outline: 0;
  box-shadow: none;
}

.btn41-43 {
  padding: 24px 30px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1.2px;
  background: transparent;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.btn-41 {
  border: 1px solid var(--purple);
  z-index: 1;
  color: #000;
}

.btn-41::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  direction: rtl;
  z-index: -1;
  background: #f0ede8;
  transition: all 0.3s ease;
}

.btn-41:hover {
  color: #000;
}

.btn-41:hover::after {
  left: auto;
  right: 0;
  width: 100%;
}

.btn-41:active {
  top: 2px;
}

.btn.btn-send {
  padding: 24px 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.2px;
  background: transparent;
  border: 1px solid var(--purple);
  color: #000;
  cursor: pointer;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

.btn.btn-send::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: width 0.3s ease;
  right: 0;
}

#project-form .btn.btn-send::after,
#contacts .btn.btn-send::after {
  background: #f0ede8;
}

.btn.btn-send:hover {
  color: #000;
  background: transparent;
}

.btn.btn-send:hover::after {
  width: 100%;
  left: auto;
  right: 0;
}

.btn.btn-send:active {
  top: 2px;
}

.btn.btn-send .spinner {
  position: relative;
  z-index: 2;
}
