@font-face {
  font-family: Karantina;
  src: url(../fonts/Karantina.ttf) format("truetype");
}

:root {
  /*colors */
  --color-black: #000;
  --color-white: #f6f6f6;
  --color-green-light: #a0c720;
  --color-green-dark: #7a9325;
  --color-green-darker: #546619;

  /*font-sizes*/
  --font-xxs: 0.85rem;
  --font-xs: 1rem;
  --font-s: 1.25rem;
  --font-sm: 1.5rem;
  --font-sl: 1.75rem;
  --font-ms: 2rem;
  --font-m: 2.5rem;
  --font-ml: 3rem;
  --font-l: 4rem;
  --font-l2: 5rem;
  --font-xl: 6rem;
  --font-xxl: 8rem;
  --font-3xl: 10rem;

  overflow-x: hidden;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  color: var(--color-white);
  font-family: "Noto Sans Hebrew", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: var(--color-black);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.kar {
  font-family: "Karantina";
  letter-spacing: 0.2rem;
  font-weight: 500;
}

.contact-modal {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.contact-modal-main {
  display: grid;
  place-items: center;
}
input,
textarea {
  width: 100%;
}
.contact-img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 66%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.7;
}
.contact-form {
  display: flex;
  flex-direction: column;
  margin-top: 2em;
  padding: 0 2em;
  max-width: 100%;

  .contact-terms-ckbx {
    width: 1rem;
    accent-color: var(--color-green-light);
  }
  .faccept-text {
    font-size: var(--font-xxs);
  }
  h1 {
    font-size: var(--font-m);
    text-align: center;
    color: var(--color-green-light);
  }
  p {
    text-align: center;
  }
  input {
    width: 80%;
  }
}

#fSubmit {
  width: fit-content;
  align-self: center;
  margin: 1em 0;
  background-color: #f6f6f6;
  color: #000;
  border-radius: 33px;
  padding: 0.5em 2em;
  cursor: pointer;
}
.contact-form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.formResponse {
  visibility: hidden;
  opacity: 0;
}

#fsubmit-error {
  color: red;
  font-size: 0.8em;
  display: block;
  margin-top: 5px;
  height: 2em;
}

footer {
  padding: 2em;
  border-top: #fff 1px solid;
}
.f-row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0 4em;
}

.f-logo {
  flex: 2;
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;
}
.m-logo-img {
  max-width: 25svw;
}
.f-content-container {
  flex: 2;
  display: flex;
  flex-direction: column;
  text-decoration: underline;
  font-size: 0.75rem;
  justify-content: center;
}
.footer-t {
  font-size: 1rem;
}
.f-contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.5em;
  justify-content: center;
}
