@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap");
html {
  font-size: 100%;
  box-sizing: border-box;
  height: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  line-height: 1.3;
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 18px;
  width: 100%;
}

body {
  font-family: "Rubik";
}
body header {
  height: 300px;
  text-align: center;
  background-image: url("../images/pattern-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
body header .header-container {
  padding-top: 30px;
}
body header .header-container h3 {
  font-size: 30px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}
body header .header-container .search-container {
  margin: 20px 10%;
  display: flex;
}
body header .header-container .search-container input {
  width: 100%;
  padding: 18px;
  border: 1px solid #000;
  border-radius: 10px 0 0 10px;
  font-family: "Rubik";
  font-weight: 500;
  font-size: 18px;
}
body header .header-container .search-container input:focus {
  outline: none;
}
body header .header-container .search-container button {
  cursor: pointer;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #000;
  border-radius: 0 20px 20px 0;
}
body .modal .container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body .modal .container .header-modal {
  z-index: 666;
  border-radius: 10px;
  position: absolute;
  bottom: -150px;
  text-align: center;
  padding: 20px;
  list-style: none;
  background-color: #fff;
  width: 85%;
}
body .modal .container .header-modal p {
  font-size: 14px;
  margin: 0;
  font-weight: 700;
  color: #969696;
}
body .modal .container .header-modal h3 {
  margin: 10px 0 5px 0;
  font-size: 20px;
  color: #000;
  font-weight: 500;
}
body .modal .container .header-modal .isp {
  font-size: 16px;
}
body section {
  height: 100%;
  width: 100%;
}
body section #mapid {
  position: relative;
  height: 100%;
}

@media all and (min-width: 640px) {
  body header {
    height: 230px;
  }
  body header .header-container .search-container {
    margin: 15px 25%;
  }
  body .modal .container .header-modal {
    bottom: -90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  body .modal .container .header-modal h3 {
    margin: 0;
    padding: 10px;
    font-size: 15px;
  }
  body .modal .container .header-modal .ipAddress {
    border-right: 2px solid #969696;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  body .modal .container .header-modal .location {
    border-right: 2px solid #969696;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  body .modal .container .header-modal .timeZone {
    border-right: 2px solid #969696;
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  body .modal .container .header-modal .isp {
    font-size: 17px;
  }
}