@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
::-webkit-scrollbar {
  display: none;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(228, 228, 228);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(190, 190, 190);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #949494;
}
* {
  font-family: 'Inter', serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #f5f5f5;
}
a {
  text-decoration: none;
  cursor: pointer;
}
header {
  position: fixed;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  z-index: 1;
}
header > div {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 250px;
  height: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header > div .link {
  flex: 1;
}
header > div .link a {
  font-size: 12px;
  cursor: pointer;
  color: #000000;
}
header > div .link .btnLg {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 10px;
  background-color: #4169e1;
  color: #ffffff;
  font-size: 12px;
}
.jumbotron {
  width: 100%;
  height: 400px;
  position: relative;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(65, 105, 225, 0.5)
    ),
    url(../img/jumbotron.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.jumbotron > div {
  position: absolute;
  width: 520px;
  height: 250px;
  top: 80px;
  left: 60px;
  color: #ffffff;
  padding: 10px;
}
.jumbotron > div span {
  display: inline-block;
  font-size: 11px;
  margin-top: 10px;
}
.jumbotron > div .btn-lm {
  display: inline-block;
  padding: 10px 30px;
  background-color: #f5f5f5;
  margin-top: 30px;
  border-radius: 20px;
  color: #000000;
}
.panel-top {
  position: absolute;
  background-color: #ffffff;
  width: 90%;
  height: 200px;
  top: 40%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px;
  padding: 10px;
}
.panel-top > div {
  flex: 1;
  height: 90%;
  border: 1px solid #ededed;
  border-radius: 10px;
  transition: 0.5s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-top > div .icon {
  width: 35%;
  height: 100%;
  display: flex;
  align-items: center;
}
.panel-top > div .icon > img {
  width: 80%;
  padding-left: 10px;
}
.panel-top > div .information {
  width: 65%;
  height: 100%;
  padding: 8px;
}
.panel-top > div .information > h5 {
  margin: 10px 0px;
  padding-left: 5px;
  color: #515151;
}
.panel-top > div .information > span {
  display: block;
  font-size: 48px;
  color: #515151;
  padding-left: 5px;
  margin-bottom: 10px;
}
.panel-top > div .information .btn-detail {
  display: block;
  width: 80px;
  padding: 8px;
  text-align: center;
  color: #ffffff;
  font-size: 11px;
  background-color: #515151;
  border-radius: 8px;
}
.panel-top > div:hover {
  transform: translateY(-5px);
}
.container {
  width: 100%;
  min-height: 100vh;
  margin: 110px 0px 60px;
  padding: 10px;
}
.container .content-center {
  width: 60%;
  height: 300px;
  margin: 25px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.container .content-center > div {
  flex: 1;
  height: 100%;
  padding: 10px;
}
.container .content-center > div > h2 {
  color: #4169e1;
  margin-bottom: 5px;
}
.container .content-center > div > h5 {
  margin-bottom: 10px;
}
.container .content-center > div > p {
  text-align: justify;
  font-size: 13px;
}
.container .content-center > div > img {
  width: 80%;
  border-radius: 10px;
}
.container .content-center > div > .btn-rm {
  display: block;
  width: 150px;
  padding: 10px;
  background-color: #4169e1;
  color: #ffffff;
  text-align: center;
  border-radius: 10px;
  margin-top: 30px;
  font-size: 13px;
}
.map {
  width: 100%;
  height: 100%;
  border: 0px;
  outline: none;
}
footer {
  position: fixed;
  bottom: 0;
  background-color: #000000;
  width: 100%;
  height: 50px;
  color: #ffffff;
  text-align: center;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer > a {
  color: #ffffff;
}
