* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #f5f5f5;
}
a {
  text-decoration: none;
}
body {
  max-width: 100vw;
}
div.con {
  min-height: 100vh;
  max-width: 100vw;
  background-color: #0958a6;
  padding: 0 30px;
  position: relative;
}
div.con div.header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #fff;
  padding: 10px 0px;
}
div.con div.header h1 {
  color: #f5f5f5;
}
div.con div.header a {
  background-color: #fff;
  height: 50px;
  width: 150px;
  border-radius: 25px;
  text-align: center;
  font-size: 18px;
  color: #005ca7;
  position: relative;
  transition: all 0.5s;
  border: 3px solid #fff;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
div.con div.header a span {
  font-size: 10px;
  color: #005ca7;
}
div.con img.right_img {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 600px;
  transition: all 0.8s;
}
div.con img.right_img:hover {
  top: 38%;
  right: 4%;
  width: 650px;
}
div.con .left_pos {
  position: absolute;
  top: 35%;
  left: 5%;
  width: 500px;
}
div.con .left_pos img.left_img {
  display: block;
  width: 150px;
}
div.con .left_pos p.content1 {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 550;
}
div.con .left_pos p.content2 {
  text-indent: 36px;
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
  line-height: 30px;
}
div.con .left_pos .left_button {
  margin-top: 30px;
  width: 200px;
  height: 60px;
  border: 3px solid #fff;
  border-radius: 5px;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
div.con .left_pos .left_button span {
  font-size: 12px;
}
div.con .left_pos .left_button:hover {
  box-shadow: 0 0 20px #fff;
  cursor: pointer;
}
footer {
  height: 140px;
  background-color: #232323;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer p {
  font-size: 14px;
  margin-bottom: 10px;
}
.top {
  transform: translate(0, -10px);
}
.buttom {
  transform: translate(0, 0px);
}
