* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.contact {
  min-height: 100vh;
  width: 100%;
}
a {
  text-decoration: none;
}
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px;
}
nav a {
  z-index: 2;
}
.logo {
  height: 40px;
  margin: 10px;
}
.ham-menu {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0px;
  right: 10px;
  margin: 20px;
  cursor: pointer;
  z-index: 2;
  visibility: hidden;
}
.ham-menu span {
  height: 4px;
  width: 100%;
  position: absolute;
  background-color: #222;
  border-radius: 25px;
  top: 50%;
  transition: 0.3s ease;
}
.ham-menu span:nth-child(1) {
  top: 25%;
}
.ham-menu span:nth-child(3) {
  top: 75%;
}
.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
  opacity: 0;
}
.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}
.off-screen-menu {
  background-color: #009fe3;
  height: 100vh;
  width: 110%;
  position: fixed;
  transform: translate(100%, 75px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 32px;
  transition: 0.3s ease;
  z-index: 1;
  visibility: hidden;
}
.off-screen-menu.active {
  transform: translate(-10%, 75px);
}
.off-screen-menu ul {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 20px;
}
.off-screen-menu ul li {
  display: flex;
  margin: 20px;
  font-size: 48px;
}
.off-screen-menu ul li a {
  color: #ffffff;
}
.navbar ul {
  position: absolute;
  top: 0;
  right: 0;
  margin: 16px;
}
.navbar ul li {
  display: inline-block;
  font-weight: bold;
  margin: 20px;
  position: relative;
}
.navbar ul li a {
  color: #222;
}
.navbar ul li a:hover {
  color: #009fe3;
}
.navbar ul li:not(:last-child)::after {
  content: "";
  border: solid #000;
  border-width: 2px 2px 0 0;
  position: absolute;
  right: -25px;
  top: -2px;
  height: 100%;
}
@media screen and (max-width: 919px) {
  .ham-menu,
  .off-screen-menu {
    visibility: visible;
  }
  .navbar {
    visibility: hidden;
  }
}
.contact-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: linear-gradient(#eceffe, #ced6fb);
}
@media screen and (min-width: 1610px) {
  .contact {
    min-height: 87vh;
    height: 87vh;
  }
  .contact-container {
    height: 70vh;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.contact-form textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
  resize: none;
}
.contact-form button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(180deg, #009fe3, #002de3);
  cursor: pointer;
}
.contact-title h2 {
  font-weight: 600;
  color: #009fe3;
  font-size: 40px;
  margin-bottom: 5px;
}
.contact-title hr {
  border: none;
  width: 120px;
  height: 5px;
  background-color: #009fe3;
  border-radius: 10px;
  margin-bottom: 20px;
}
.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}
.contact-inputs:focus {
  border: 2px solid #009fe3;
}
.contact-inputs::placeholder {
  color: #a9a9a9;
}
@media (max-width: 600px) {
  .contact-inputs {
    width: 80vw;
  }
}
.social {
  background-color: #009fe3;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: right;
}
.social a {
  color: #ffffff;
  font-size: 24px;
  margin: 20px;
}
footer {
  margin: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.links {
  text-decoration: none;
  list-style: none;
  text-align: left;
}
.links ul {
  list-style: none;
}
.links ul li {
  margin-bottom: 10px;
}
.links ul li a {
  color: #009fe3;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 20px;
}
