@import url(/savecss/variables.css);
@import url("https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  cursor: url("/images/cursor.svg"), default;
}

body {
  overflow-x: hidden;
  background-color: var(--background-color);
  transition: background-color 0.3s, color 0.3s;
}

#preloader {
  background: #000 url("/images/loader-black.gif") no-repeat center center;
  background-size: 15%;
  z-index: 1;
  position: fixed;
  height: 100vh;
  width: 100%;
}

header {
  min-height: 25.1vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 4vh;
  background: var(--background-color);
}

.top-bar h1 {
  margin-top: 5vh;
  font-size: 2.4rem;
  position: absolute;
  color: var(--text-color);
  left: 0;
  right: 0;
}

#icon {
  color: var(--text-color);
  cursor: url("/images/click.svg"), pointer;
  font-size: 2rem;
  position: absolute;
  top: 2vh;
  right: 3vh;
}

#icon:hover {
  color: #f6b01a;
}

/*Navbar*/
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 999;
  top: 15%;
  right: 0;
  background-color: var(--header-background);
  width: 100%;
  height: 7vh;
}

.current {
  color: #f6b01a;
  font-size: 1.1rem;
}

.circle {
  position: absolute;
  z-index: -999;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-image);
  height: 110px;
  width: 220px;
  border-radius: 150px 150px 0 0;
}

.navbar .links {
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding-right: 9%;
  color: var(--text-color);
}

li {
  list-style: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  cursor: url("/images/click.svg"), pointer;
}

a:hover {
  color: #f6b01a;
}

.navbar .toggle_btn {
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.action_btn {
  background-color: var(--background-color);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: url("/images/click.svg"), pointer;
  margin-right: 3rem;
  color: #f6b01a;
  transform: scale(1.02);
}

/* Logo */
.logo {
  margin-left: 1.5rem;
}
.logo img {
  height: 50%;
  width: 50%;
}

/*Mobile Menu*/
.dropdown_menu {
  display: none;
  position: absolute;
  right: 1rem;
  width: 100%;
  height: 0;
  background: var(--mobile-menu-color);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown_menu.open {
  margin: 0 0 0 0;
  height: auto;
}

.dropdown_menu li {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown_menu a {
  font-size: 1rem;
  margin-top: 1vh;
}

.dropdown_menu .action_btn {
  color: #f6b01a;
  font-size: 1.1rem;
}

.dropdown_menu .action_btn {
  gap: 0.5rem;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Responsive Design*/
@media screen and (min-width: 1800px) {
  header {
    min-height: 21.8vh;
  }
  .navbar {
    top: 13%;
    height: 6vh;
  }
}
@media screen and (max-width: 1300px) {
  header {
    min-height: 27vh;
  }
}
@media screen and (max-width: 992px) {
  .navbar {
    top: 16%;
  }
  .logo {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toggle_btn i {
    margin-right: 0.5rem;
  }
  .navbar .links,
  .navbar .action_btn {
    display: none;
  }
  .navbar .toggle_btn {
    display: block;
  }
  .dropdown_menu.open {
    left: 0;
    right: 0;
    z-index: 100;
    display: block;
    top: 26%;
  }
  .dropdown_menu a {
    color: var(--text-color);
    font-weight: 400;
  }
  .dropdown_menu a:hover {
    color: var(--hover-color);
  }
  .dropdown_menu .action_btn:hover {
    color: var(--text-color);
  }
  .action_btn {
    margin-right: 0;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  header {
    min-height: 27.2vh;
  }
  .navbar {
    width: 100%;
    top: 15%;
  }
  .logo {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toggle_btn i {
    margin-right: 0.5rem;
  }
  .dropdown_menu.open {
    top: 26.5%;
  }
}
@media screen and (max-width: 480px) {
  header {
    min-height: 29.3vh;
  }
  header {
    height: 27vh;
  }
  .top-bar h1 {
    font-size: 2rem;
  }
  .navbar {
    top: 17vh;
    height: 6vh;
  }
  .circle {
    top: 12vh;
  }
  #icon {
    top: 10%;
  }
  .dropdown_menu.open {
    top: 28%;
  }
  .dropdown_menu .action_btn {
    width: 40%;
  }
}
/*Icon Bar*/
.icon-bar {
  position: fixed;
  left: 2vh;
  top: 50%;
  transform: rotate(270deg);
  transform-origin: left center;
}

.icon-bar p {
  background-color: var(--icon-bar);
  border: 1px solid black;
  display: block;
  text-align: center;
  padding: 2vh;
  transition: all 0.2s ease;
  color: white;
  font-size: 1.2rem;
}

.icon-bar p:hover {
  transform: scale(1.3);
  background-color: #2C2B2B;
}

.headcontainer {
  background-image: url(/images/imageedit_11_2121274814.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 12vh;
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

h4 {
  font-size: 1.5rem;
}

/*Main*/
.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  place-items: center;
  min-height: 100vh;
  width: 100%;
}

.textcontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.textcontainer h1 {
  color: var(--caption-color);
  font-size: 6rem;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

em {
  position: relative;
  left: -5vw;
}

strong {
  color: #f6b01a;
  position: relative;
  left: 10vw;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.link a {
  gap: 0.75rem;
  position: relative;
  font-size: 1.3rem;
  color: var(--caption-color);
  display: flex;
  flex-direction: column;
}

.link .emaillink {
  margin-left: 0;
  margin-top: 9vh;
  margin-bottom: 3vh;
  cursor: pointer;
}

.link .phonelink {
  margin-left: 0;
  cursor: pointer;
}

/*Contact Form*/
.formcontainer {
  width: 100%;
  margin-left: 25%;
  margin-top: 10%;
}

h2 {
  margin-bottom: 10%;
  margin-left: 10%;
  color: var(--caption-color);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.4rem;
  min-width: 250px;
  box-sizing: border-box;
}

.input-wrap {
  position: relative;
}

.input-wrap.w-100 {
  grid-column: span 2;
}

.contact-input {
  width: 100%;
  background-color: var(--input-color);
  padding: 1.5rem 1.35rem calc(0.75rem - 2px) 2rem;
  margin-bottom: 0.5rem;
  border: none;
  outline: none;
  border-radius: 10px;
  color: var(--caption-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
}

.contact-input:hover {
  background-color: var(--hover-input);
}

.input-wrap label {
  position: absolute;
  top: 30%;
  left: 2%;
  transition: 0.2s ease;
  pointer-events: none;
}

.input-wrap i {
  position: absolute;
  font-size: 1.3rem;
  right: calc(1.35rem + 2px);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
  color: var(--caption-color);
}

.input-wrap.focus label {
  color: var(--caption-color);
  top: -23px;
  left: 5px;
}

.input-wrap.focus i {
  color: var(--contactform-icons);
}

/*Some labels settings*/
textarea {
  position: relative;
}

input, textarea {
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
}

textarea + .formlabel {
  position: absolute;
  top: 10px;
  transition: 0.2s ease;
  color: var(--caption-color);
}

.formlabel {
  position: absolute;
  top: 10px;
  transition: 0.2s ease;
  color: var(--caption-color);
}

.formlabel.active {
  top: -25px;
  left: 5px;
  font-size: 0.9rem;
  color: var(--caption-color);
}

textarea + .formlabel.active {
  top: -25px;
  left: 5px;
  font-size: 0.9rem;
  color: var(--caption-color);
}

/*Buttons settings*/
.contact-buttons {
  display: block;
  justify-content: space-between;
  align-items: center;
  margin-top: 3vh;
}

.button,
.button-upload {
  width: auto;
  padding: 0.8rem 1.5rem;
  background-color: var(--background-links-color);
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.2);
  color: var(--caption-color);
  border: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.3s;
}

.button:hover,
.button-upload:hover {
  background-color: var(--hover-color);
}

.button-upload {
  margin-right: 2vw;
  text-align: center;
  cursor: url("/images/pointer.svg"), pointer;
}

.button {
  cursor: url("/images/click.svg"), pointer;
}

/*File Names*/
.file-names {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--caption-color);
}

.file-names ul {
  color: var(--caption-color);
  padding: 0;
  list-style-type: none;
}

.file-names li {
  display: flex;
  gap: 2vh;
  align-items: center;
}

.delete-btn {
  background: none;
  border: none;
  color: var(--caption-color);
  font-size: 0.8rem;
  cursor: url("/images/click_1_.svg"), pointer;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

button {
  padding: 10px 20px;
  background-color: #f6b01a;
  margin-top: 2vh;
}

#thankYouModal {
  background: var(--background-color);
  padding: 20px;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 9999;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  display: none;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  color: var(--caption-color);
}

#thankYouModal.fadeIn {
  opacity: 1;
}

form {
  transition: all 0.2s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  /* Adjust the modal width for smaller screens (phones) */
  #thankYouModal {
    width: 80%; /* Make it 80% of the viewport width */
    padding: 15px; /* Reduced padding for mobile */
  }
  /* Adjust the button size on mobile */
  button {
    padding: 8px 16px; /* Slightly smaller padding */
    font-size: 14px; /* Adjust font size */
  }
}
/* For very small mobile screens (e.g., under 400px wide) */
@media (max-width: 400px) {
  #thankYouModal {
    width: 90%; /* Even more width on very small screens */
    padding: 10px; /* Reduce padding more */
  }
  button {
    padding: 6px 14px; /* Further reduce button size */
    font-size: 13px; /* Adjust font size for very small screens */
  }
}
@media screen and (min-width: 1800px) {
  .formcontainer {
    margin-top: -5vh;
  }
}
@media screen and (max-width: 1024px) {
  .headcontainer {
    text-align: center;
  }
  .container {
    border: none;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .textcontainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4vh;
  }
  .textcontainer h1 {
    font-size: 4.2rem;
    margin-left: 3vw;
  }
  .textcontainer .link a {
    margin-left: 15vw;
    font-size: 1.2rem;
  }
  .icon-bar {
    font-size: smaller;
    top: 60%;
  }
  .formcontainer {
    width: 100%;
    height: 100%;
  }
  .formcontainer h2 {
    margin-top: -5%;
    margin-left: 0;
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 768px) {
  .icon-bar {
    display: none;
  }
  .textcontainer {
    display: flex;
    flex-direction: column;
  }
  .textcontainer h1 {
    margin-top: 1vh;
    font-size: 6rem;
  }
  .textcontainer em {
    left: 0;
  }
  .textcontainer strong {
    left: 0;
  }
  .link {
    display: block;
    margin-left: -35vw;
  }
  .contact-form {
    width: 95%;
    max-height: 50vh;
    margin-top: 8vh;
    margin-left: -10vw;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }
  .formcontainer h2 {
    margin-left: -10vw;
  }
  .input-wrap:first-child {
    grid-column: span 2;
  }
  .input-wrap {
    flex: 1;
    display: block;
    flex-direction: column;
    grid-column: span 2;
  }
  .contact-buttons {
    margin-top: 8vh;
    margin-left: -10vw;
  }
  .file-names {
    margin-left: -10vw;
    margin-bottom: 4vh;
  }
}
@media screen and (max-width: 480px) {
  .headcontainer h4 {
    font-size: 1.2rem;
  }
  .textcontainer h1 {
    font-size: 4rem;
  }
  .textcontainer h1 em {
    left: 0;
  }
  .textcontainer h1 strong {
    left: 0;
  }
  .link {
    display: block;
    margin-left: -35vw;
  }
  .formcontainer {
    width: 100%;
  }
  .formcontainer h2 {
    margin-top: 4vh;
    margin-left: -6%;
  }
  .contact-buttons {
    margin-top: 4vh;
  }
  .file-names {
    margin-left: -10vw;
    margin-bottom: 4vh;
  }
}
/* Footer*/
.linkscontainer {
  background-color: var(--background-color);
  padding: 70px 30px 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.row {
  display: flex;
  padding-bottom: 3rem;
}

.social-links {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: var(--background-links-color);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--text-icons-color);
  transition: all 0.5s ease;
  cursor: url("/images/click_1_.svg"), pointer;
}

.social-links a:hover {
  color: var(--icons-color);
  background-color: var(--hover-color2);
}

.footer__container p {
  left: 0;
  right: 0;
  font-size: 1rem;
  color: var(--text-color);
}

.designer {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  margin: 0px 5px;
}

@media screen and (max-width: 480px) {
  .footer__container p {
    font-size: 0.8rem;
  }
}
/*Back-to-top button*/
.back-to-top {
  position: fixed;
  text-align: center;
  font-size: 1.5rem;
  bottom: 20px;
  right: 20px;
  color: var(--text-color);
  padding: 10px;
  text-decoration: none;
  display: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.back-to-top:hover {
  background-color: var(--hover-color2);
  color: var(--text-icons-color);
}

@media screen and (max-width: 480px) {
  .back-to-top {
    box-shadow: none;
    right: 5px;
    bottom: 10px;
  }
}/*# sourceMappingURL=contact.css.map */