@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url(https://zlatanovbreg.rs/stanovi-img/ponuda-staniva-background.png);
  background-position: center;
  background-repeat: repeat-y;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Roboto", sans-serif;
}
.contact-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.get-in-touch-info {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media (max-width: 768px) {
  .get-in-touch-info {
    flex-direction: column;
    margin: 1rem;
  }
}

.get-in-touch-info div {
  margin-top: 3rem;
  display: flex;
  width: 15rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div i {
  color: #003049;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
p {
  color: #003049;
}
a {
  text-decoration: none;
  color: #3c6786;
  transition: color 0.1s ease;
}
a:hover {
  color: #80a8c4;
}
.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact .get-in-touch {
  max-width: 1200px;
  width: 100%;
  padding-top: 5rem;
}
.get-in-touch p {
  color: #003049;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin: 2rem;
  font-weight: 300;
}

.contact-form {
  width: 100%;
}
.contact-f {
  display: grid;
  place-items: center;
  gap: 1rem;
  margin: 7rem 0;
  position: relative;
}

.contact-f input {
  padding: 0.5rem 1rem;
  font-size: 16px;
}

.contact-f textarea {
  padding: 0.5rem 1rem;
  font-size: 16px;
}
.contact-f input,
.contact-f textarea {
  width: 30rem;
}
@media screen and (max-width: 992px) {
  .contact-f input,
  .contact-f textarea {
    width: 25rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-f input,
  .contact-f textarea {
    width: 20rem;
  }
}

.btn {
  color: white;
  width: fit-content;
  background-color: #003049;
  border: none;
  font-size: 16px;
  border-radius: 25px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}
.btn:hover {
  background-color: #6f9ab9;
}
.contact-f .btn {
  padding: 16px 0;
}
.google-map {
  width: 100%;
}
.google-map iframe {
  width: 100%;
}
