header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 2.5vh 5vw 1.5vh;
  color: white;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}
header > * {
  flex: 1;
}
header .logo img {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 768px) and (orientation: landscape) {
  header .logo img {
    width: 25%;
  }
}
header nav {
  font-size: 1.5rem;
  text-align: right;
  padding-right: 5vw;
}
header nav ul {
  list-style: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  height: 100vh;
  width: 80%;
  background-color: rgba(255, 106, 0, 0.7098039216);
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
}
header nav ul li {
  margin-left: 2rem;
  border-bottom: 1px solid white;
  width: 80%;
  text-align: left;
}
header nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1.2rem;
}
header nav ul li a i {
  font-size: 1rem;
  float: right;
}
@media (min-width: 768px) and (orientation: landscape) {
  header nav {
    font-size: 1rem;
  }
  header nav ul {
    transform: none;
    position: static;
    flex-direction: row;
    align-items: flex-end;
    height: initial;
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    float: right;
  }
  header nav ul li {
    border: none;
    text-align: center;
  }
  header nav ul li a {
    position: relative;
    color: #ff6a00;
    font-weight: 600;
    font-size: 1.4rem;
    transition: 0.3s;
  }
  header nav ul li a .fa-angles-right {
    display: none;
  }
  header nav ul li a:hover {
    color: white;
  }
  header nav ul li a::after {
    position: absolute;
    content: "";
    bottom: -10%;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s;
  }
  header nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  header nav .fa-bars {
    display: none;
  }
}

@media (min-width: 768px) and (orientation: landscape) {
  .header-preturi nav ul li a, .header-contact nav ul li a {
    color: white !important;
  }
}

.haipleosc {
  transform: translateX(0%);
}

.laterale {
  position: fixed;
  z-index: 1;
  right: 0;
  top: 50vh;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
}
.laterale a {
  background-color: rgba(255, 106, 0, 0.6509803922);
  color: black;
  padding: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 5px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
@media (min-width: 768px) {
  .laterale {
    display: none;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  height: 100%;
  font-family: "Sarabun", sans-serif;
}

.poza {
  background-image: url("./assets/hero-contact.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 40vh;
}
@media (min-width: 768px) {
  .poza {
    height: 60vh;
    background-position: center 20%;
  }
}

header {
  background-color: #FF6A00;
}

main {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
main .call > *:not(:last-child) {
  margin-bottom: 1rem;
  border-bottom: 1px solid #FF6A00;
  padding-bottom: 0.5rem;
}
main .call a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #FF6A00;
  font-size: 4vw;
}
@media (min-width: 768px) {
  main .call a {
    font-size: 1.2rem;
  }
}
main form {
  background-color: transparent;
}
main form div input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #FF6A00;
}
main form div input::-moz-placeholder {
  font-size: 0.9rem;
  font-family: "Kanit", sans-serif;
}
main form div input::placeholder {
  font-size: 0.9rem;
  font-family: "Kanit", sans-serif;
}
main form textarea,
main form input {
  width: 100%;
  padding: 0.5rem 0;
}
main form textarea {
  height: 7.5rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #FF6A00;
}
main form textarea::-moz-placeholder {
  font-size: 0.9rem;
  font-family: "Kanit", sans-serif;
}
main form textarea::placeholder {
  font-size: 0.9rem;
  font-family: "Kanit", sans-serif;
}
main form #trimite {
  width: 30%;
  padding: 0.25rem 0;
  background-color: #FF6A00;
  border: none;
}
main form #trimite:hover {
  transform: translate(-5px, -5px);
  box-shadow: 5px 5px 5px grey;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  main {
    flex-direction: row;
    padding: 5rem;
  }
  main > * {
    flex: 1;
    width: 50%;
    padding: 2.5vw;
  }
  main form {
    border-left: 1px solid #FF6A00;
  }
}

footer {
  width: 100%;
  background-image: url(./assets/bgfooter.webp);
  padding: 2rem 1rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-family: Cambay, sans-serif;
  font-size: 1.2rem;
}
footer .logo {
  text-align: center;
}
footer ul {
  list-style: none;
  line-height: 1.5;
}
footer .socmed {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  border-bottom: 1px solid #FF6A00;
}
footer .socmed a {
  color: #FF6A00;
}
footer .socmed a:not(:first-child) {
  margin-left: 2.5rem;
}
footer .harta {
  width: 100%;
}
footer .harta iframe {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
footer .link {
  display: flex;
  gap: 1.5rem;
}
footer .link li a {
  color: #FF6A00;
  font-style: italic;
}
@media (min-width: 768px) {
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10vh 10vw;
    align-content: flex-start;
  }
  footer .logo {
    text-align: left;
  }
  footer .footer-unu {
    align-self: flex-start;
  }
  footer .footer-doi > *:not(:last-child) {
    margin-bottom: 2rem;
  }
  footer .footer-doi .socmed {
    text-align: left;
  }
  footer .footer-doi .harta {
    width: 100%;
  }
  footer .footer-doi .harta iframe {
    width: 100%;
    height: 250px;
  }
}

.creat {
  background-color: #b5b5b5;
  text-align: center;
  font-family: Cambay, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1.5rem;
  color: black;
}
.creat > :last-child {
  font-size: 0.8rem;
}
.creat > :last-child i a {
  color: black;
}
@media (min-width: 768px) {
  .creat {
    display: flex;
    align-items: center;
    gap: 50vw;
    justify-content: space-around;
  }
}/*# sourceMappingURL=contact.css.map */