.head-container {
  background-image: url("../img/arka-bg.png");
  height: 28.5vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5vh;
}
.head-container > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.head-container div h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.5rem;
  color: white;
}
.head-container div div {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: white;
}
/* ------------------------------------ HEADER END  ------------------------------------------------ */

.contact-content {
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-inside {
  width: 65%;
  height: 22.5vh;
}
.contact-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  width: 100%;
}
.information-box {
  width: 33%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.25s all linear, 0.25s all;
}
.information-box:hover {
  border: 1px solid var(--generalColor);
  transition: 0.25s all linear, 0.25s all;
}
.information-box:hover i {
  color: var(--generalColor);
  transition: 0.5s all linear, 0.5s all;
}
.information-index {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.information-index h3 {
  margin-top: 1.5rem;
}
.box-icon i {
  font-size: 50px;
  color: #000000;
  transition: 0.5s all linear, 0.5s all;
}
.box-text {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
/* ------------------------------------ INFORMATION END  ------------------------------------------------ */

.map-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-contact {
  width: 65%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.map {
  height: 100%;
  width: 50%;
}
.map iframe {
  width: 100%;
  height: 100%;
}
.contact {
  width: 50%;
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.contact h1 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact form input {
  width: 100%;
  height: 4vh;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 0.5rem;
  transition: 0.2s al linear;
}
.contact form input::placeholder {
  color: gray;

  font-size: 1rem;
}
.contact form input:focus {
  outline: 2px solid var(--generalColor);
  transition: 0.2s al linear;
}
.contact form textarea {
  border: 1px solid rgba(0, 0, 0, 0.2);
  min-height: 15vh;
  resize: vertical;
  overflow: auto;
  vertical-align: auto;
  padding-left: 0.5rem;
  font-size: 1rem;
  padding-top: 0.5rem;
  font-weight: 400;
  transition: 0.2s al linear;
}
.contact form textarea::placeholder {
  color: gray;
}
.contact form textarea:focus {
  outline: 2px solid var(--generalColor);
  transition: 0.2s al linear;
}
.contact button {
  max-width: 200px;
  border: none;
  background-color: var(--generalColor);
  height: 3rem;
  margin-top: 2rem;
  color: white;
  font-size: 1.2rem;
  transition: 0.25s all linear;
}
.contact button:hover {
  background-color: black;
  color: white;

  transition: 0.25s all linear;
  cursor: pointer;
}
/* ------------------------------------ MAP FORM END  ------------------------------------------------ */

/* ------------------------------------ RESPONSIVE START   ------------------------------------------------ */
@media screen and (min-width: 900px) {
  .map {
    height: 60vh !important;
  }
}
@media screen and (max-width: 1400px) and (max-height: 850px) {
  .head-container {
    height: 36vh !important;
  }
  .contact-content {
    height: 40vh !important;
    margin-bottom: 5rem;
  }
  .content-inside {
    height: 29vh !important;
    width: 75% !important;
  }
  .map-container {
    height: 100% !important;
  }
  .map-contact {
    width: 75% !important;
  }
  .contact form input {
    height: 5vh !important;
  }
  .map {
    height: 80vh !important;
  }
}

@media screen and (max-width: 900px) and (max-height: 1100px) {
  .contact-container {
    flex-wrap: wrap !important;
  }
  .information-box {
    width: 45% !important;
  }
  .contact-content {
    height: 50vh;
    align-items: flex-start;
  }
  .contact-container {
    justify-content: center;
  }
  .map-contact {
    flex-direction: column;
  }
  .map-contact > div {
    width: 100% !important;
  }
  .map,
  iframe {
    height: 56vh !important;
  }
  .map-container {
    height: 100% !important;
  }
  .contact {
    justify-content: flex-start;
  }
  .up-inside {
    width: 80% !important;
  }
}

@media screen and (max-width: 900px) and (max-height: 900px) {
  .contact-container {
    flex-wrap: wrap !important;
  }
  .information-box {
    width: 45% !important;
  }
  .contact-content {
    height: 70vh !important;
    align-items: flex-start;
  }
  .contact-container {
    justify-content: center;
  }
  .map-contact {
    flex-direction: column;
  }
  .map-contact > div {
    width: 100% !important;
  }
  .map,
  iframe {
    height: 56vh !important;
  }
  .map-container {
    height: 100% !important;
  }
  .contact {
    justify-content: flex-start;
  }
  .up-inside {
    width: 80% !important;
  }
  .socials {
    margin-top: 0px !important;
  }
}
@media screen and (max-width: 1100px) and (max-height: 1100px) {
  header,
  .navbar {
    height: 12vh !important;
  }
  .content-inside,
  .map-contact {
    width: 90% !important;
  }
  .contact h1 {
    font-size: 2.2rem;
  }
  .contact form input {
    height: 5vh !important;
  }
}
@media screen and (max-width: 576px) {
  .contact-content {
    height: 100vh !important;
  }
  .head-container {
    height: 23vh !important;
  }
  .contact h1 {
    font-size: 1.6rem;
  }
  .information-box {
    width: 100% !important;
  }
}
