@charset "utf-8";

@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css);

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

@font-face {
  font-family: "Lato-Regular";
  src: url(./../assets/font/Lato-Regular.ttf);
}
@font-face {
  font-family: "Lato-Thin";
  src: url(./../assets/font/Lato-Thin.ttf);
}

* {
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  color: #555;
  text-decoration: none;
}

button {
  border: none;
}

:root {
  font-size: 10px;
}

body {
  font: 1.5rem/1.6 "Lato-Regular", sans-serif;
}

h2 {
  font-weight: 400;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 1rem;
  text-transform: uppercase;
}

header a {
  color: #f3f3f3;
}

footer a,
footer p {
  color: #fff;
}

footer .top-btn a {
  color: #333;
}

footer .top-btn:hover a {
  color: #ddd;
}

footer .sns {
  margin: 24px;
}

footer .sns i {
  font-size: 2.4rem;
  margin: 0 -3px;
}

::placeholder {
  color: #ccc;
  font: 1.5rem/1.6 "Lato-Regular", sans-serif;
}

h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

header {
  position: fixed;
  z-index: 99999;
}

header .gnb ul {
  display: flex;
}

header .gnb li a {
  display: inline-block;
  padding: 8px 16px;
}

header .gnb li a:hover {
  background-color: #333;
}

header .gnb li i {
  margin-right: 8px;
}

footer {
  padding: 100px 0;
  text-align: center;
  background-color: #555;
}

footer:hover {
  background-color: #111;
}

footer .top-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #ddd;
}

footer .top-btn:hover {
  background-color: #aaa;
}

footer .top-btn i {
  margin-right: 8px;
}

#home {
  height: 100vh;
  background: url(./../assets/img/marita-kavelashvili-ugnrXk1129g-unsplash.jpg)
    no-repeat 50% 50% / cover fixed;
}

#home h2 {
  padding: 12px 24px;
  background: #555;
}

#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #777;
  margin-bottom: 160px;
}

#contact a {
  color: #777;
}

#contact .parallax-bg {
  position: relative;
  width: 100%;
  height: 400px;
  background: url(./../assets/img/parallax3.jpg) no-repeat 50% 50% / cover fixed;
}

#contact h3 {
  font-size: 2.4rem;
  margin-top: 60px;
}

#contact h3 + p {
  margin-bottom: 60px;
}

#contact .container {
  display: flex;
  justify-content: space-between;
  width: 900px;
}

#contact .map iframe {
  width: 280px;
  height: 160px;
  border-radius: 8px;
}

#contact .contact {
  width: 600px;
}

#contact .addr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* gap: 12px; */
  margin: 16px 0;
  font-size: 1.8rem;
}
#contact .addr i {
  margin-right: 16px;
}

#contact p {
  margin: 16px 0;
  font-size: 1.5rem;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#contact form .field-group {
  display: flex;
  gap: 12px;
}

#contact form .field-group:last-of-type {
  justify-content: flex-end;
}

#contact form input,
#contact form textarea {
  width: 100%;
  height: 46px;
  border: 1px solid #ccc;
  padding: 8px 16px;
  font: 1.5rem/1.6 "Lato-Regular", sans-serif;
}
#contact form textarea {
  height: 150px;
  resize: none;
  padding: 16px;
}

#contact form button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 8px 16px;
  background: #111;
  color: #f3f3f3;
}
