:root {
  --phone: 640px;
  --tablet: 768px;
  --desktop: 1024px;
}

.contact-us {
  padding: 10px;
  @media(min-width: 768px) {
    padding: 150px 100px;
  }
}

.contact-us .contact-us-title {
  padding: 40px 0;

  @media(min-width: 640px) {
    text-align: center;
    padding-bottom: 50px;
  }
}

.contact-us .contact-us-title img {
  width: 100%;
  @media(min-width: 640px) {
    width: unset;
  }

  @media(-webkit-min-device-pixel-ratio: 3) {
    width: 100px;
  }
}

.form-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-direction: column;

  @media(min-width: 640px) {
    flex-direction: row;
  }
}

.form-wrapper > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;

  @media(max-width: 640px) {
    width: initial;
  }
}

.form-wrapper .contact-input {
  position: relative;
}

.form-wrapper .contact-input input {
  position: relative;
  width: 90%;
  margin: 10px;
  line-height: 6ex;
  border-radius: 8px;
  border: 1px solid #161C24;
  box-shadow: 5px 5px 0px 0px #424242;
  padding: 0 10px;
}

.form-wrapper .contact-input label {
  position: absolute;
  z-index: 1;
  left: 2em;
  background-color: white;
  padding: 0 5px;
}

.form-wrapper .contact-input textarea {
  position: relative;
  padding: 20px;
  width: 90%;
  margin: 10px;
  border-radius: 8px;
  border: 1px solid #161C24;
  box-shadow: 5px 5px 0px 0px #424242;

  @media(max-width: 640px) {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
}

.form-wrapper .btn {
  font-size: 20px;
  padding: 10px 40px;
  margin-left: 10px;
}

.footer-wrapper {
  padding: 10px;
  margin-top: 20px;
  flex-direction: column;
  align-items: center;
  background: url('/assets/footer.svg');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  position: relative;
  border-bottom: 3px black solid;
  justify-content: space-between;

  @media(min-width: 640px) {
    padding: 100px 100px 40px 100px;
    margin-top: unset;
    flex-direction: row;
    align-items: end;
  }

  @media(max-width: 768px) {
    margin-top: 50px;
  }
}

.footer-wrapper .egg-wrapper {
  right: 20%;
  top: -50px;
  position: initial;

  @media(min-width: 640px) {
    position: absolute;
  }
}

.footer-wrapper .egg-wrapper img {
  width: 200px;
}

.footer-wrapper .footer-links-wrapper {

  margin-top: 10px;
  margin-bottom: 10px;

  @media(min-width: 640px) {
    display: flex;
  }
}

.footer-links-wrapper-top {

  margin-top: -40px;
  margin-bottom: 10px;

  @media(min-width: 640px) {
    display: flex;
  }
}

.footer-wrapper .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  margin-right: 30px;
}

.footer-wrapper .footer-links a {
  text-decoration: none;
  color: #303031;
}

.footer-wrapper .footer-links a:visited {
  color: #303031;
}

.footer-wrapper .social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ajs-commands {
  display: none;
}

.ajs-button {
  position: relative;
  border-radius: 5px;
  border: 1px solid var(--gray-gray-900, #161C24);
  background: #F6E790;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.77);
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  font-size: 24px;
  display: block;
  width: fit-content;
}

.ajs-body {
  font-size: 24px;
  text-align: center;
}

.ajs-button:hover {
  box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.77);
  top: 4px;
  left: 3px;
}

.alertify .ajs-footer .ajs-buttons.ajs-primary .ajs-button {
  margin: auto!important;
  margin-bottom: 30px!important;
}

.ajs-dialog {
  border-radius: 5px;
}

.ajs-header {
  border-radius: 5px;
}

.ajs-footer {
  border-radius: 5px;
}

.ajs-button.ajs-ok:focus{
  outline: none;
}

button {
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

.fab-wrapper {

  position: fixed;
  bottom: 28rem;
  z-index: 1;
  width: 40%;
  display: flex;
  justify-content: center;
  margin-left: 30vw;
  margin-right: 30vw;

  @media(min-width: 640px) {


    position: fixed;
    bottom: 7rem;
    z-index: 1;
    width: 40%;
    display: flex;
    justify-content: center;
    margin-left: 30vw;
    margin-right: 30vw;
    //just a test
  }

}

.fab-checkbox {
  display: none;
}
.fab {
  position: relative;
  bottom: -20rem;
  border-radius: 5px;
  border: 1px solid var(--gray-gray-900, #161C24);
  background: #F6E790;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.77);
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: black;
  padding: 5px 10px;
  display: block;
  width: fit-content;
  font-size: 0.9rem;

  @media(min-width: 1024px) {
    font-size: 24px;
    padding: 10px 20px;
    bottom: -4rem;
  }
}

.hidden {
  display: none;
}