.home {
  width: 100%;
}
.home .banner {
  width: 100%;
}
.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main {
  width: 100%;
  background: url("../images/obg.png") no-repeat;
  background-size: cover;
  padding-bottom: 200px;
}
.home .main .nav {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  border-radius: 10px;
  transform: translateY(-40px);
}
.home .main .nav a {
  width: 20%;
  text-align: center;
  padding: 30px 0;
  color: #666666;
  transition: all 600ms;
  background: white;
  border-right: 1px solid #F0F0F0;
}
.home .main .nav a:hover {
  background: #0B9F27;
  color: white;
  border-color: #0B9F27;
}
.home .main .nav .active {
  background: #0B9F27;
  color: white;
  border-color: #0B9F27;
}
.home .main .nav a:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.home .main .nav a:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.home .main .nr {
  width: 85%;
  margin: 80px auto 0 auto;
  text-align: center;
}
.home .main .nr img {
  max-width: 100%;
  display: inline-block;
  object-fit: contain;
}
@media screen and (max-width: 1300px) {
  .home .banner img {
    height: 300px;
  }
  .home .main {
    padding-bottom: 60px;
  }
  .home .main .nav {
    width: 90%;
    transform: translateY(-30px);
    flex-wrap: wrap;
  }
  .home .main .nav a {
    padding: 20px 0;
    width: 50%;
    border-right: none;
  }
  .home .main .nr {
    width: 90%;
    margin-top: 30px;
  }
}

/*# sourceMappingURL=organization.css.map */
