@import url("https://fonts.googleapis.com/css2?family=Stardos+Stencil:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
@font-face {
  font-family: "headingFont";
  src: url("../src/Cutoutsflf-owxo.ttf") format("truetype");
}

nav {
  width: 90%;
  height: 7vh;
  padding: 0 5%;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

nav .logo {
  height: 100%;
}

nav .logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .logo a img {
  height: 70%;
}

nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav > ul li {
  list-style: none;
}

nav > ul li > a {
  margin: auto 7px;
  color: black;
  text-decoration: none;
  font-size: 1em;
  padding: 5px 2px;
}

nav > ul li > a:hover {
  color: #fbb22e;
}

nav > ul li a.selected {
  border-bottom: 4px solid #fbb22e;
}

nav > ul .langSwitch a.active {
  color: #fbb22e;
}

nav > ul .langSwitch a:first-of-type {
  padding-right: 0px;
}

nav > ul .langSwitch a:last-of-type {
  padding-left: 0px;
}

nav > ul .dropdown {
  float: left;
  overflow: hidden;
  font-family: "Stardos Stencil", cursive;
  margin: 0;
  padding: 0;
  margin: auto 10px;
  color: black;
  text-decoration: none;
}

nav > ul .dropdown .dropbtn {
  font-size: 1em;
  border: none;
  outline: none;
  color: black;
  background-color: inherit;
  margin: 0;
  padding: 0;
  font-weight: bold !important;
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 1px;
}

nav > ul .dropdown .dropdown-content {
  display: none;
  position: absolute;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
  background-color: #f9f9f9;
  min-width: 100px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

nav > ul .dropdown .dropdown-content a {
  float: none;
  color: black;
  padding: 8px 10px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  display: block;
  text-align: left;
}

nav > ul .dropdown .dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #fbb22e;
}

nav > ul .navbar a:hover,
nav > ul .dropdown:hover .dropbtn {
  color: #fbb22e;
}

nav > ul .dropdown:hover .dropdown-content {
  display: block;
}

nav > ul i {
  color: #fbb22e;
}

nav .hamburger-button {
  display: none;
}

.overlay {
  display: none;
}

@media only screen and (max-width: 992px) {
  nav {
    width: 94%;
    height: 7vh;
    padding: 0 3%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 199;
    position: relative;
  }
  nav > ul {
    display: none;
  }
  nav .hamburger-button {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 5vh;
    height: 4vh;
    width: 45px;
    height: 34px;
    display: block;
    z-index: 104;
    position: relative;
  }
  nav .hamburger-button:active, nav .hamburger-button:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  nav .hamburger-button span {
    position: absolute;
    height: 8px;
    border-radius: 4px;
    width: 100%;
    background-color: #000;
    top: 0;
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  nav .hamburger-button span:nth-child(1) {
    top: 0px;
  }
  nav .hamburger-button span:nth-child(2),
  nav .hamburger-button span:nth-child(3) {
    top: 13px;
  }
  nav .hamburger-button span:nth-child(4) {
    top: 26px;
  }
  nav .hamburger-button.active span {
    background-color: #000;
  }
  nav .hamburger-button.active span:nth-child(1),
  nav .hamburger-button.active span:nth-child(4) {
    opacity: 0;
  }
  nav .hamburger-button.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  nav .hamburger-button.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  /*overlay*/
  @-webkit-keyframes fadeInLeft {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-25%, 0, 0);
              transform: translate3d(-25%, 0, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-25%, 0, 0);
              transform: translate3d(-25%, 0, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  .overlay {
    position: fixed;
    background: #fff;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .overlay .menu {
    font-size: 2rem;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .overlay .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .overlay .menu ul li {
    opacity: 0;
    margin: 1rem 0;
  }
  .overlay .menu ul li a {
    margin: auto 10px;
    color: black;
    text-decoration: none;
    font-family: "Stardos Stencil", cursive;
    font-size: 1em;
    padding: 5px 2px;
  }
  .overlay .menu ul li a:hover {
    color: #fbb22e;
    background: none;
    outline: none;
  }
  .overlay .menu ul li a:active, .overlay .menu ul li a:focus {
    color: #fbb22e;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .overlay .menu ul .langSwitch a.active {
    color: #fbb22e;
  }
  .overlay .menu ul .langSwitch a:first-of-type {
    padding-right: 0px;
  }
  .overlay .menu ul .langSwitch a:last-of-type {
    padding-left: 0px;
  }
  .overlay .menu ul .dropdown {
    float: left;
    overflow: hidden;
    font-family: "Stardos Stencil", cursive;
    margin: 0;
    padding: 0;
    margin: auto 10px;
    color: black;
    text-decoration: none;
  }
  .overlay .menu ul .dropdown .dropbtn {
    font-size: 1em;
    border: none;
    outline: none;
    color: black;
    background-color: inherit;
    margin: 0;
    padding: 0;
    padding-left: 27px;
    font-weight: bold !important;
    font-family: "Roboto", sans-serif !important;
    letter-spacing: 1px;
  }
  .overlay .menu ul .dropdown .dropdown-content {
    display: none;
    position: absolute;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
    background-color: #f9f9f9;
    min-width: 100px;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .overlay .menu ul .dropdown .dropdown-content a {
    float: none;
    color: black;
    padding: 8px 10px;
    font-family: "Stardos Stencil", cursive;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  .overlay .menu ul .dropdown .dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #fbb22e;
  }
  .overlay .menu ul .navbar a:hover,
  .overlay .menu ul .dropdown:hover .dropbtn {
    color: #fbb22e;
  }
  .overlay .menu ul .dropdown:hover .dropdown-content {
    display: block;
  }
  .overlay .menu ul i {
    color: #fbb22e;
  }
  /* 3. Style the visible overlay. */
  .overlay.visible {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }
  .overlay.visible li {
    -webkit-animation: fadeInLeft 0.3s ease forwards;
            animation: fadeInLeft 0.3s ease forwards;
  }
  .overlay.visible li:nth-of-type(1) {
    -webkit-animation-delay: 0.23s;
            animation-delay: 0.23s;
  }
  .overlay.visible li:nth-of-type(2) {
    -webkit-animation-delay: 0.26s;
            animation-delay: 0.26s;
  }
  .overlay.visible li:nth-of-type(3) {
    -webkit-animation-delay: 0.29s;
            animation-delay: 0.29s;
  }
  .overlay.visible li:nth-of-type(4) {
    -webkit-animation-delay: 0.32s;
            animation-delay: 0.32s;
  }
  .overlay.visible li:nth-of-type(5) {
    -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
  }
}

a {
  font-weight: bold !important;
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 1px;
}

* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.continer {
  position: relative;
  height: 93vh;
  width: 100%;
}

.continer #map {
  background-image: url(../src/newMapBg.jpg);
  background-size: cover;
  height: 100%;
  width: 100%;
}

.continer form {
  position: absolute;
  height: 80%;
  width: 25%;
  background: white;
  right: 3%;
  top: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  -webkit-box-shadow: 1.5px 1.5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 1.5px 1.5px 5px rgba(0, 0, 0, 0.4);
}

.continer form input,
.continer form textarea {
  width: 75%;
  padding: 11px 8px;
  margin-bottom: 20px;
  border: none;
  -webkit-box-shadow: 1.5px 1.5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 1.5px 1.5px 5px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.continer form input:focus,
.continer form textarea:focus {
  outline: none;
  -webkit-transform: translate3d(-2px, -2px, 0);
          transform: translate3d(-2px, -2px, 0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-shadow: 3.5px 3.5px 15px rgba(0, 0, 0, 0.4);
          box-shadow: 3.5px 3.5px 15px rgba(0, 0, 0, 0.4);
}

.continer form textarea {
  margin-bottom: 20px;
}

.continer form button {
  width: 79%;
  padding: 12px 8px;
  margin-bottom: 20px;
  border: none;
  -webkit-box-shadow: 1.5px 1.5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 1.5px 1.5px 5px rgba(0, 0, 0, 0.4);
  background-color: white;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.continer form button:focus {
  outline: none;
}

.continer form button:hover {
  cursor: pointer;
  -webkit-transform: translate3d(-2px, -2px, 0);
          transform: translate3d(-2px, -2px, 0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-shadow: 3.5px 3.5px 15px rgba(0, 0, 0, 0.4);
          box-shadow: 3.5px 3.5px 15px rgba(0, 0, 0, 0.4);
}

.continer form .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
}

.continer form .details p {
  margin: 0;
  margin-top: 4px;
}

.continer form .details a {
  font-family: Arial, Helvetica, sans-serif !important;
  margin: 0;
  margin-top: 4px;
  color: #000000;
  text-decoration: none;
  font-weight: 300 !important;
}

@media only screen and (max-width: 992px) {
  .continer form {
    height: 65%;
    width: 90%;
    background: white;
    right: 50%;
    top: 5%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .continer form textarea {
    height: 15%;
  }
}
/*# sourceMappingURL=contact.css.map */