html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.nav-link {
  position: relative;
  padding: 10px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
}

.nav-link:hover::after,
.nav-link.active::after {
  background: #111111;
}

.field {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #ffffff;
  padding: 14px 15px;
  color: #111111;
  font-size: 15px;
  outline: none;
}

.field:focus {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  height: 48px;
  width: 48px;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 30px;
  line-height: 1;
}

.contact-icon {
  display: flex;
  height: 36px;
  width: 36px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}

svg {
  display: block;
}

@media (max-width: 767px) {
  .carousel-arrow {
    height: 42px;
    width: 42px;
  }
}
