* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.attribution {
  position: absolute;
  bottom: 0;
  background-color: rgb(191, 191, 191);
  padding: 4px;
  width: 100%;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
}

body {
  font-family: "Rubik", sans-serif;
}
body .blue-background {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 40%;
  background-image: url(../../images/pattern-bg-desktop.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
body main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
body main h1 {
  color: white;
  font-weight: 500;
  font-size: 34px;
}
body main form {
  display: flex;
  width: 600px;
}
body main form input {
  padding: 20px 25px;
  width: 95%;
  font-family: "Rubik", sans-serif;
  outline: none;
  border: none;
  border-radius: 10px 0 0 10px;
  font-weight: 400;
  font-size: 18px;
  color: rgb(43, 43, 43);
}
body main form input::placeholder {
  font-family: "Rubik", sans-serif;
  color: rgb(148, 148, 148);
}
body main form button {
  width: 10%;
  border-radius: 0 10px 10px 0;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: black;
  transition: 0.3s all;
}
body main form button:hover {
  background-color: rgb(43, 43, 43);
}
body main #ip-data {
  display: flex;
  justify-content: space-between;
  width: 75%;
  max-width: 1200px;
  background-color: white;
  padding: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  margin-top: 20px;
  position: relative;
}
body main #ip-data.loading article {
  display: none;
}
body main #ip-data.loading .loading {
  display: block;
}
body main #ip-data .loading {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #111827;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.8s linear infinite;
  display: none;
}
body main #ip-data article {
  width: 25%;
  position: relative;
}
body main #ip-data article:nth-child(1) {
  padding-right: 50px;
}
body main #ip-data article:nth-child(2) {
  padding-left: 30px;
  padding-right: 50px;
}
body main #ip-data article:nth-child(3) {
  padding-left: 30px;
  padding-right: 50px;
}
body main #ip-data article:nth-child(4) {
  padding-left: 30px;
  padding-right: 50px;
}
body main #ip-data article h2 {
  text-transform: uppercase;
  font-size: 12px;
  color: rgb(148, 148, 148);
  font-weight: 600;
  letter-spacing: 2px;
}
body main #ip-data article p {
  font-size: 28px;
  margin: 20px 0;
  font-weight: 500;
  color: rgb(43, 43, 43);
}
body main #ip-data article:not(:nth-child(4))::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 70%;
  background-color: #dbdbdb;
  top: 12px;
  right: 0;
}
body #map {
  position: absolute;
  content: "";
  width: 100%;
  height: 60vh;
  z-index: -1;
  top: 40%;
  left: 0;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 600px) {
  body .blue-background {
    background-image: url(../../images/pattern-bg-mobile.png);
  }
  body main {
    width: 90%;
    margin: 20px auto 0 auto;
  }
  body main h1 {
    font-size: 26px;
  }
  body main form {
    width: 100%;
  }
  body main form input {
    padding: 20px;
    width: 85%;
  }
  body main form button {
    width: 15%;
  }
}
@media (max-width: 1280px) {
  body main #ip-data article p {
    font-size: 22px;
  }
  body main #ip-data article:nth-child(1), body main #ip-data article:nth-child(2), body main #ip-data article:nth-child(3), body main #ip-data article:nth-child(4) {
    padding-left: 10px;
    padding-right: 30px;
  }
}
@media (max-width: 1000px) {
  body main #ip-data {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 20px 10px;
  }
  body main #ip-data article {
    text-align: center;
    width: 100%;
  }
  body main #ip-data article::after {
    display: none;
  }
  body main #ip-data article h2 {
    font-size: 11px;
  }
  body main #ip-data article p {
    font-size: 18px;
    margin: 10px;
  }
  body main #ip-data article:nth-child(1), body main #ip-data article:nth-child(2), body main #ip-data article:nth-child(3), body main #ip-data article:nth-child(4) {
    padding-left: 10px;
    padding-right: 30px;
  }
}

/*# sourceMappingURL=main.css.map */
