* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
/* Header */
.navbar {
  background-color: #219ebc;
  width: 100%;
  height: 60px;
  top: 0;
  position: fixed;
  z-index: 1;
}
.navbar button {
  padding: 10px;
  border-radius: 10px;
  border: none;
  background-color: white;
  color: black;
  cursor: pointer;
}
.navbar button a {
  color: black;
  font-size: 14px;
}
.navbar button:hover {
  background-color: aqua;
}
.nav-item {
  padding-top: 8px;
}
.name {
  font-size: 22px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  position: absolute;
  top: 15px;
  left: 30px;
}
.list {
  display: flex;
  justify-content: space-between;
  width: 50%;
  position: absolute;
  right: 90px;
  padding-top: 15px;
  list-style: none;
}
.list a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}
.link {
  position: relative;
  transition: color 0.5s ease;
  padding: 8px 0;
}
.link:hover {
  color: #023047;
}
.link::after {
  position: absolute;
  width: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background-color: #023047;
  transition: width 0.5s ease;
}
.nav-item:nth-child(4) .link::after {
  width: 100%;
}
.nav-item:not(:nth-child(4)) .link:hover::after {
  width: 100%;
}
/* Header finish */
/* Main */
.wel-box {
  width: 99%;
  height: 450px;
  margin-left: 10px;
  /* border: 1px solid black; */
  position: relative;
  margin-top: 130px;
}
.para {
  margin-top: 30px;
  text-align: justify;
  font-size: 18px;
  text-shadow: 10px;
  line-height: 30px;
  width: 800px;
}
.wel {
  text-align: left;
  margin-top: 60px;
}
.wel-img {
  background-image: url("wel-img1.jpg");
  width: 270px;
  height: 270px;
  background-size: cover;
  position: absolute;
  right: 90px;
  top: 40px;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in;
}
.wel-img:hover {
  transform: scale(1.1);
}
.wel-box button {
  padding: 10px;
  border-radius: 10px;
  border: none;
  background-color: #219ebc;
  color: white;
  margin-top: 10px;
  text-align: center;
  cursor: pointer;
}
.wel-box button:hover {
  background-color: #67b0c2;
}
.feedback {
  width: 99%;
  margin-left: 10px;
  height: 500px;
  /* border: 1px solid black; */
}
.feedback button {
  border: none;
  outline: none;
  background-color: #219ebc;
  padding: 10px;
  border-radius: 10px;
  color: white;
}
.feedback button:hover {
  background-color: #67b0c2;
}
/* main finish */
/* footer */
.top {
  width: 100%;
  height: 50px;
  background-color: #219ebc;
  text-align: center;
  padding-top: 18px;
}
.top a {
  text-decoration: none;
  color: white;
}
.top:hover {
  background-color: #67b0c2;
}
.last-panel {
  width: 100%;
  height: 50px;
  position: relative;
}
.links {
  width: 60%;
  height: 50px;
  display: flex;
  justify-content: right;
}
.links a {
  text-decoration: none;
  color: black;
  margin-left: 50px;
  margin-top: 18px;
}
.contact {
  width: 40%;
  position: absolute;
  right: 0px;
  top: 0;
  padding-left: 50px;
  padding-top: 10px;
}
.contact a {
  margin-left: 20px;
}
