body {
  height: auto;
  min-width: 1330px;
  background: #f3f9ff;
}

.home-wrap {
  overflow: hidden;
  background: #f3f9ff;
}

.home-wrap .container-wrap {
  width: 1300px;
}

.home-wrap .section-1 {
  position: relative;
}

.home-wrap .section-1 #carousel-home .carousel-indicators {
  font-size: 0;
  bottom: 85px;
  width: 100%;
  left: 0;
  text-align: center;
  margin-left: 0;
}

.home-wrap .section-1 #carousel-home .carousel-indicators li {
  background: #fff;
  margin: 0 7px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-wrap .section-1 #carousel-home .carousel-indicators .active {
  width: 50px;
  height: 10px;
  margin: 0 7px;
}

.home-wrap .section-1 #carousel-home .carousel-caption {
  width: 100%;
  padding: 0;
  text-shadow: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 200px;
}

.home-wrap .section-1 #carousel-home .carousel-control {
  background: none;
}

.home-wrap .section-1 #carousel-home .btn-sign-up {
  font-weight: 100;
  border-radius: 50px;
  font-size: 18px;
  padding: 20px 79px;
  text-decoration: none;
  border: 1px solid #f8e71c;
  color: #f8e71c;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.home-wrap .section-1 #carousel-home .btn-sign-up:hover {
  color: #555555;
  background: #fefbd6;
  border: 1px solid #fefbd6;
}

.home-wrap .section-1 #carousel-home .btn-sign-up:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.home-wrap .section-1 .mouse-wrap {
  cursor: pointer;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 36px;
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1.3);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1.3);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1.3);
  z-index: 19;
}

.home-wrap .section-1 .mouse-wrap.keep-scrolling {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.home-wrap .section-1 .mouse-wrap .mouse {
  width: 22px;
  height: 32px;
  border-radius: 50px;
  border: 2px solid rgba(85, 85, 85, 0.5);
  position: relative;
}

.home-wrap .section-1 .mouse-wrap .mouse:before {
  content: '';
  width: 3px;
  height: 5px;
  background: rgba(85, 85, 85, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-animation: scrollDown 2.9s ease infinite;
  animation: scrollDown 2.9s ease infinite;
}

.home-wrap .section-1 .mouse-wrap .scroll-title {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: rgba(85, 85, 85, 0.5);
  position: relative;
  top: 9px;
  left: 30px;
  font-weight: 100;
}

.home-wrap .section-1 .mouse-wrap .scroll-title:before {
  content: '';
  border: 5px solid transparent;
  border-left: 8px solid rgba(85, 85, 85, 0.5);
  top: 34px;
  left: 40px;
  position: absolute;
}

.home-wrap .section-1 .mouse-wrap .scroll-title:after {
  content: '';
  position: absolute;
  -webkit-animation: line 2.9s cubic-bezier(1, 0, 0, 1) infinite;
  animation: line 2.9s cubic-bezier(1, 0, 0, 1) infinite;
  width: 40px;
  height: 1px;
  background: #555;
  left: 0;
  bottom: -20px;
}

@-webkit-keyframes line {
  0% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}

@keyframes line {
  0% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}

@-webkit-keyframes scrollDown {
  0%,
  100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  70%,
  90% {
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
  }
}

@keyframes scrollDown {
  0%,
  100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  70%,
  90% {
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
  }
}

.home-wrap .section-2 {
  background: #f3f9ff url("../../images/home/bg_section_2.jpg") no-repeat center top;
  height: 1345px;
  overflow: hidden;
}

.home-wrap .section-2 .official {
  padding: 221px 0 53px;
  position: relative;
  z-index: 1;
}

.home-wrap .section-2 .official .gradient-bg {
  height: 261px;
  width: 1760px;
  background: -webkit-gradient(linear, left top, right top, from(#f8e71c), to(#ffffff));
  background: -webkit-linear-gradient(left, #f8e71c 0%, #ffffff);
  background: -o-linear-gradient(left, #f8e71c 0%, #ffffff);
  background: linear-gradient(to right, #f8e71c 0%, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8e71c', endColorstr='#ffffff', GradientType=1);
  -webkit-transform: skewX(-12deg);
  -ms-transform: skewX(-12deg);
  transform: skewX(-12deg);
  position: absolute;
  right: -332px;
  bottom: 0;
  z-index: -1;
}

.home-wrap .section-2 .official h1 {
  font-size: 54px;
  font-weight: 100;
  color: #1b6fa9;
  margin-bottom: 29px;
}

.home-wrap .section-2 .official p {
  font-size: 16px;
  color: #606972;
  line-height: 30px;
  margin-bottom: 140px;
}

.home-wrap .section-2 .official p span {
  color: #1b6fa9;
}

.home-wrap .section-2 .official small {
  font-size: 16px;
  color: #606972;
  display: block;
}

.home-wrap .section-2 .official .money {
  margin-top: -10px;
  display: block;
  font-size: 100px;
  color: #1b6fa9;
  font-family: sans-serif;
}

.home-wrap .section-2 .official .money:after {
  content: '+';
}

.home-wrap .section-2 .official .monitor {
  position: absolute;
  right: 60px;
  bottom: 0;
}

.home-wrap .section-2 .official .monitor .mask {
  background: url("../../images/home/monitor_bg.png") no-repeat center top;
  width: 566px;
  height: 411px;
  position: absolute;
  top: 27px;
  left: 25px;
}

.home-wrap .section-2 .asia-tour {
  padding-top: 70px;
}

.home-wrap .section-2 .asia-tour h1 {
  font-size: 54px;
  font-weight: 100;
  color: #1b6fa9;
  text-align: center;
  margin-bottom: 70px;
}

.home-wrap .section-2 .asia-tour ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0\9;
}

.home-wrap .section-2 .asia-tour ul li {
  display: list-item;
  display: inline-block\9;
  width: 25% \9;
  font-size: 28px;
  font-weight: 100;
  color: #606972;
  text-align: center;
}

.home-wrap .section-2 .asia-tour ul i {
  margin: 0 auto 28px;
  display: block;
  width: 120px;
  height: 120px;
}

.home-wrap .section-2 .asia-tour ul .icon-1 {
  background: url("../../images/home/icon_1.png") no-repeat center top;
}

.home-wrap .section-2 .asia-tour ul .icon-2 {
  background: url("../../images/home/icon_2.png") no-repeat center top;
}

.home-wrap .section-2 .asia-tour ul .icon-3 {
  background: url("../../images/home/icon_3.png") no-repeat center top;
}

.home-wrap .section-2 .asia-tour ul .icon-4 {
  background: url("../../images/home/icon_4.png") no-repeat center top;
}

.home-wrap .section-3 {
  background: #f3f9ff url("../../images/home/bg_section_3.jpg") no-repeat center 40px;
  position: relative;
  padding-bottom: 100px;
}

.home-wrap .section-3 .line-yellow {
  background: #f8e71c;
  width: 1316px;
  height: 74px;
  margin-left: -10px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
}

.home-wrap .section-3 .nav-tabs {
  height: 70px;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0\9;
  text-align: center\9;
  line-height: 80px\9;
  width: 615px;
  margin: 0 auto;
  z-index: 20;
}

.home-wrap .section-3 .nav-tabs li {
  display: inline-block\9;
  margin: 0 10px\9;
  float: none;
}

.home-wrap .section-3 .nav-tabs a {
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 4px 19px;
  color: #1b6fa9;
  font-size: 16px;
  border-radius: 50px;
  border: 1px solid #1b6fa9;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.home-wrap .section-3 .nav-tabs a:hover, .home-wrap .section-3 .nav-tabs a:focus {
  background: #1b6fa9;
  color: #fff;
}

.home-wrap .section-3 .nav-tabs li.active > a,
.home-wrap .section-3 .nav-tabs li.active > a:hover,
.home-wrap .section-3 .nav-tabs li.active > a:focus {
  border: 1px solid #1b6fa9;
  background: #1b6fa9;
  color: #fff;
}

.home-wrap .section-3 .activities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0\9;
  margin: 60px 0 0 -20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.home-wrap .section-3 .activities li {
  display: inline-block\9;
  margin: 0 0 20px 20px;
  width: calc(50% - 20px);
  display: none;
}

.home-wrap .section-3 .activities li:nth-child(1) {
  width: 768px;
}

.home-wrap .section-3 .activities li:nth-child(1) .img {
  width: 100%;
  height: 433px;
}

.home-wrap .section-3 .activities li:nth-child(1) strong {
  background: -webkit-linear-gradient(255deg, #008dc4 0%, #368fff);
  background: -o-linear-gradient(255deg, #008dc4 0%, #368fff);
  background: linear-gradient(195deg, #008dc4 0%, #368fff);
  color: #fff;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008dc4', endColorstr='#368fff', GradientType=1);
  display: block;
  position: absolute;
  left: 0;
  bottom: 100%;
  padding: 9px 20px;
  font-size: 22px;
  font-weight: 100;
  min-width: 250px;
}

.home-wrap .section-3 .activities li:nth-child(1) small {
  font-size: 18px;
  color: #606972;
}

.home-wrap .section-3 .activities li:nth-child(2) {
  width: 510px;
}

.home-wrap .section-3 .activities li:nth-child(2) .img {
  width: 100%;
  height: 288px;
}

.home-wrap .section-3 .activities li:nth-child(3), .home-wrap .section-3 .activities li:nth-child(4), .home-wrap .section-3 .activities li:nth-child(5) {
  width: 420px;
}

.home-wrap .section-3 .activities li:nth-child(3) .img, .home-wrap .section-3 .activities li:nth-child(4) .img, .home-wrap .section-3 .activities li:nth-child(5) .img {
  width: 100%;
  height: 238px;
}

.home-wrap .section-3 .activities li:nth-child(1) .title {
  height: 80px;
  width: calc(100% - 60px);
  margin: 0 auto;
  margin-top: -40px;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities li:nth-child(1) a {
  display: block;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.home-wrap .section-3 .activities li:nth-child(1) a:hover .img,
.home-wrap .section-3 .activities li:nth-child(1) a:hover .title {
  -webkit-box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
}

.home-wrap .section-3 .activities li:nth-child(1) .img {
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities li:nth-child(2) .title {
  height: 80px;
  width: calc(100% - 60px);
  margin: 0 auto;
  margin-top: -40px;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities li:nth-child(2) a {
  display: block;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.home-wrap .section-3 .activities li:nth-child(2) a:hover .img,
.home-wrap .section-3 .activities li:nth-child(2) a:hover .title {
  -webkit-box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
}

.home-wrap .section-3 .activities li:nth-child(2) .img {
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities li:nth-child(3) .title {
  height: 80px;
  width: calc(100% - 60px);
  margin: 0 auto;
  margin-top: -40px;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities li:nth-child(3) a {
  display: block;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.home-wrap .section-3 .activities li:nth-child(3) a:hover .img,
.home-wrap .section-3 .activities li:nth-child(3) a:hover .title {
  -webkit-box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
}

.home-wrap .section-3 .activities li:nth-child(3) .img {
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities li:nth-child(4) .title {
  height: 80px;
  width: calc(100% - 60px);
  margin: 0 auto;
  margin-top: -40px;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities li:nth-child(4) a {
  display: block;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.home-wrap .section-3 .activities li:nth-child(4) a:hover .img,
.home-wrap .section-3 .activities li:nth-child(4) a:hover .title {
  -webkit-box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
}

.home-wrap .section-3 .activities li:nth-child(4) .img {
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities li:nth-child(5) .title {
  height: 80px;
  width: calc(100% - 60px);
  margin: 0 auto;
  margin-top: -40px;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities li:nth-child(5) a {
  display: block;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.home-wrap .section-3 .activities li:nth-child(5) a:hover .img,
.home-wrap .section-3 .activities li:nth-child(5) a:hover .title {
  -webkit-box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
}

.home-wrap .section-3 .activities li:nth-child(5) .img {
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0\9;
  font-size: 0;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 2px 2px 2px 0px rgba(23, 31, 72, 0.3);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.home-wrap .section-3 .activities a:hover {
  -webkit-box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
  box-shadow: 6px 6px 6px 0px rgba(23, 31, 72, 0.3);
}

.home-wrap .section-3 .activities a:hover .img {
  background-size: 105% 105%;
}

.home-wrap .section-3 .activities a:hover .title:before {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.home-wrap .section-3 .activities .img {
  background-position: center center;
  background-size: 100% 100%;
  display: block;
  display: inline-block\9;
  width: 223px;
  height: 126px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-wrap .section-3 .activities .title {
  background: #fff;
  color: #606972;
  font-size: 18px;
  display: block;
  width: calc(100% - 223px);
  padding: 0 40px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  display: inline-block\9;
  vertical-align: top\9;
  padding-top: 10px\9;
  height: 126px\9;
}

.home-wrap .section-3 .activities .title:before {
  content: '';
  background: url("../../images/home/icon_arrow_right.png") no-repeat center top;
  width: 9px;
  height: 14px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-wrap .section-3 .activities strong {
  font-weight: normal;
}

.home-wrap .section-3 .activities small {
  display: block;
  font-size: 14px;
  color: #9b9b9b;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}

.home-wrap .section-3 .btn-more {
  text-align: center;
  margin: 30px auto 0;
  font-weight: 100;
  border-radius: 50px;
  font-size: 18px;
  padding: 20px 0;
  display: block;
  width: 198px;
  text-decoration: none;
  border: 1px solid #1b6fa9;
  color: #1b6fa9;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.home-wrap .section-3 .btn-more:hover {
  color: #ffffff;
  background: #1b6fa9;
  border: 1px solid #1b6fa9;
}

.home-wrap .section-3 .btn-more:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.home-wrap .section-3 .tab-pane {
  min-height: 890px;
}

.home-wrap .section-4 {
  padding-top: 100px;
  height: 713px;
}

.home-wrap .section-4 .img-wrap {
  position: relative;
}

.home-wrap .section-4 figure {
  width: 265px;
  height: 493px;
  position: absolute;
  left: 50%;
}

.home-wrap .section-4 .image-1 {
  background: url("../../images/home/image_1.png") no-repeat center top;
  top: 62px;
  margin-left: -900px;
}

.home-wrap .section-4 .image-2 {
  background: url("../../images/home/image_2.png") no-repeat center top;
  top: 110px;
  margin-left: -717px;
}

.home-wrap .section-4 .image-3 {
  background: url("../../images/home/image_3.png") no-repeat center top;
  top: 0;
  margin-left: -507px;
}

.home-wrap .section-4 .image-4 {
  background: url("../../images/home/image_4.png") no-repeat center top;
  top: 110px;
  margin-left: 240px;
}

.home-wrap .section-4 .image-5 {
  background: url("../../images/home/image_5.png") no-repeat center top;
  top: 0;
  margin-left: 453px;
}

.home-wrap .section-4 .image-6 {
  background: url("../../images/home/image_6.png") no-repeat center top;
  top: 62px;
  margin-left: 635px;
}

.home-wrap .section-4 .text {
  text-align: center;
  padding-top: 130px;
}

.home-wrap .section-4 .text .icon-ag {
  background: url("../../images/home/icon_ag.png") no-repeat center top;
  display: inline-block;
  width: 113px;
  height: 64px;
  vertical-align: middle;
  margin-right: 5px;
}

.home-wrap .section-4 .text h1 {
  font-size: 60px;
  font-weight: 100;
  color: #606972;
  line-height: 1.4em;
  margin-bottom: 80px;
}

.home-wrap .section-4 .text .btn-sign-up {
  font-weight: 100;
  border-radius: 50px;
  font-size: 18px;
  padding: 20px 79px;
  text-decoration: none;
  color: #606972;
  background-image: -webkit-gradient(linear, left top, right top, from(#edde5d), color-stop(51%, #f09819), to(#edde5d));
  background-image: -webkit-linear-gradient(left, #edde5d 0%, #f09819 51%, #edde5d 100%);
  background-image: -o-linear-gradient(left, #edde5d 0%, #f09819 51%, #edde5d 100%);
  background-image: linear-gradient(to right, #edde5d 0%, #f09819 51%, #edde5d 100%);
  background-size: 200% auto;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background: #edde5d\9;
}

.home-wrap .section-4 .text .btn-sign-up:hover {
  color: #303438;
  background-position: right center;
}

.home-wrap .section-4 .text .btn-sign-up:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

@media screen and (min-width: 3840px) {
  .home-wrap .section-2 .official {
    padding: 101px 0 53px;
  }
}
