* {
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  /* overflow: hidden; */
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: #000;
}
.navbar {
  height: 113px;
  width: 100%;

  position: relative;
}
.container_wrap {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 3;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 50px;
}
.navbar-brand img {
  height: 52px;
  width: 52px;
  margin-right: 20px;
}
.navbar-brand span {
  font-weight: 700;
  font-size: 28px;
  color: rgba(33, 84, 118, 1);
  font-style: normal;
  letter-spacing: 0px;
  line-height: 18px;
  text-decoration: none;
}
.container {
  display: flex;
  align-items: center;
  width: 1200px;
  justify-content: space-between;
}
.nav {
  display: flex;

}
ul {
  display: flex;
}
ul li {
  list-style: none;
  margin: 0 30px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 400;
}

.selete {
  color: rgb(72, 167, 122);
  border-bottom: 5px solid rgb(72, 167, 122);
  font-weight: 700;
}
ul li:hover {
  color: rgb(72, 167, 122);
  border-bottom: 5px solid rgb(72, 167, 122);
}

.button_wrap {
    display: flex;
}
.button_1 {
    width: 130px;
    height: 40px;
    color: rgb(255, 255, 255);
    border-radius: 2px;
    font-weight: normal;
    background: rgb(72, 167, 122);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.button_2 {
    width: 130px;
    height: 40px;
    color: rgb(72, 167, 122);
    border-radius: 2px;
    font-weight: normal;
    border: 1px solid  rgb(72, 167, 122);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}