.scrolldown {
  bottom: 300px;
}

.concept-in {
  line-height: 1.5em;
}

.bg {
  position: relative;
  width: 100%;
  height: calc(100vh - 200px);
  overflow: hidden;
}
.bg .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-position: left;
  -moz-transform: scale(1.1) perspective(500px) translateZ(0px);
  -ms-transform: scale(1.1) perspective(500px) translateZ(0px);
  -webkit-transform: scale(1.1) perspective(500px) translateZ(0px);
  transform: scale(1.1) perspective(500px) translateZ(0px);
  -moz-transition: -moz-transform 0s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: -o-transform 0s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: transform 0s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.bg .pic.move-img {
  -moz-transform: scale(1.1) perspective(500px) translateZ(-50px);
  -ms-transform: scale(1.1) perspective(500px) translateZ(-50px);
  -webkit-transform: scale(1.1) perspective(500px) translateZ(-50px);
  transform: scale(1.1) perspective(500px) translateZ(-50px);
  -moz-transition-duration: 5s;
  -o-transition-duration: 5s;
  -webkit-transition-duration: 5s;
  transition-duration: 5s;
}
.bg .top-mask {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
}

.top-title {
  position: absolute;
  left: 20%;
  top: 40%;
  color: #fff;
  z-index: 10;
}
.top-title-big, .top-title-big2 {
  font-size: 40px;
}

.level1 {
  padding: 100px 0;
  overflow: hidden;
}
.level1 .box {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.level1 .map-box {
  height: 650px;
  width: 70%;
  position: relative;
}
.level1 #map {
  height: 650px;
  width: 100%;
}
.level1 .contact {
  min-width: fit-content;
  padding: 80px 150px 80px 100px;
  background: #212121;
  position: relative;
  left: 5%;
}
.level1 .title {
  margin-bottom: 50px;
}
.level1 .title-big {
  margin-left: 50px;
}
.level1 .contact-in {
  margin-left: 50px;
  color: #bdbdbd;
}
.level1 .contact-line {
  height: 1px;
  width: 30px;
  background: #8c8c8c;
  margin: 30px 0;
}
.level1 p {
  line-height: 2em;
}
.level1 .contact-email {
  margin-top: 30px;
}
.level1 a {
  color: #bdbdbd;
}

.level2 {
  padding: 100px 0;
}
.level2 .box2 {
  display: flex;
  margin: auto;
  width: 80%;
  max-width: 1200px;
  align-items: center;
}
.level2 .consult-img {
  width: 50%;
}
.level2 .consult-img img {
  width: 100%;
}
.level2 .consult {
  width: 50%;
}
.level2 .consult-text {
  margin: auto;
  padding: 0 0 0 20%;
  box-sizing: border-box;
}
.level2 .title-small:before {
  display: none;
}
.level2 .consult-line {
  width: 30px;
  height: 1px;
  background: #8c8c8c;
  margin: 30px 0;
}

form input {
  border: none;
  background: #191919;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  color: #fff;
  padding: 5px;
  margin: 5px 5px 5px 0;
}
form textarea {
  border: none;
  background: #191919;
  resize: none;
  height: 80px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-family: Arial;
  box-sizing: border-box;
  padding: 5px;
  margin: 5px 5px 5px 0;
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: #bdbdbd;
}
form input:-moz-placeholder, form textarea:-moz-placeholder {
  color: #bdbdbd;
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: #bdbdbd;
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: #bdbdbd;
}
form .error::-webkit-input-placeholder {
  color: #bd4646;
}
form .error:-moz-placeholder {
  color: #bd4646;
}
form .error::-moz-placeholder {
  color: #bd4646;
}
form .error:-ms-input-placeholder {
  color: #bd4646;
}
form .code {
  width: 45%;
  display: inline-block;
}
form .changecode {
  width: 50%;
  display: inline-block;
  margin: 5px 0px 5px 5px;
  position: relative;
  top: -2px;
}
form .changecode img {
  display: inline-block;
}
form .changecode a {
  vertical-align: middle;
}
form .send {
  width: 100%;
  background: #000;
  padding: 5px;
  margin: 5px 5px 5px 0;
  box-sizing: border-box;
  text-align: center;
}

.map-box {
  opacity: 0;
}
.map-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #404040;
  z-index: 1;
}
.map-box.show {
  opacity: 1;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.map-box.show:before {
  width: 0;
  -moz-transition: width 1s;
  -o-transition: width 1s;
  -webkit-transition: width 1s;
  transition: width 1s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.contact {
  opacity: 0;
  -moz-transform: translateX(-80px);
  -ms-transform: translateX(-80px);
  -webkit-transform: translateX(-80px);
  transform: translateX(-80px);
}

.contact {
  -moz-transition: opacity 1.2s, -moz-transform 1s;
  -o-transition: opacity 1.2s, -o-transform 1s;
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.contact.show {
  opacity: 1;
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.consult-img {
  opacity: 0;
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.consult-img {
  -moz-transition: opacity 1.2s, -moz-transform 1s;
  -o-transition: opacity 1.2s, -o-transform 1s;
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
}
.consult-img.show {
  opacity: 1;
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.consult {
  opacity: 0;
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.consult {
  -moz-transition: opacity 1.2s, -moz-transform 1s;
  -o-transition: opacity 1.2s, -o-transform 1s;
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.consult.show {
  opacity: 1;
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

@media screen and (max-width: 1100px) {
  .level1 .contact {
    padding: 50px 50px 50px 30px;
    left: 3%;
  }

  .level2 {
    padding: 0px 0 100px;
  }
  .level2 .box2 {
    width: 90%;
    align-items: flex-end;
  }
  .level2 .consult-text {
    padding: 0 0 0 8%;
  }
}
@media screen and (max-width: 720px) {
  .level1 {
    padding: 100px 0 50px;
  }
  .level1 .box {
    display: block;
  }
  .level1 .map-box {
    height: 500px;
    width: 90%;
    margin: auto;
  }
  .level1 #map {
    height: 500px;
  }
  .level1 .contact {
    left: unset;
    margin: auto;
    width: 70%;
    top: -50px;
  }
  .level1 .contact-text {
    width: fit-content;
    margin: auto;
  }

  .level2 .box2 {
    display: block;
  }
  .level2 .consult-img {
    margin: auto;
    width: 100%;
  }
  .level2 .consult {
    width: 90%;
    margin: auto;
  }
  .level2 .consult-text {
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 460px) {
  .level1 {
    padding: 100px 0 50px;
  }
  .level1 .map-box {
    width: 95%;
  }
  .level1 .contact {
    padding: 30px 30px 30px 10px;
  }

  form .code {
    width: 100%;
  }
  form .changecode {
    width: 100%;
    margin: 5px 0;
  }

  .top-title {
    left: 10%;
  }
}
@media screen and (max-height: 650px) {
  .bg {
    height: calc(100vh - 50px);
  }

  .scrolldown {
    bottom: 150px;
  }
}
