* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html,
body {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  color: #52585D;
  font-size: 1rem;
  font-weight: 300;
}

a:hover {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a,
button {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
  outline: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  background-color: #0AA4B9;
}

::selection {
  background: #263E60;
  color: #fff;
}

.navbar-default {
  width: 403px;
  height: 100%;
  background-color: rgba(38, 62, 96, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
}

.logo {
  padding: 1em;
  border-bottom: 1px solid #fff;
}

.nav_box {
    display: block;
    unicode-bidi: bidi-override;
    direction: rtl;
}

    .nav_box ul {
        padding: 0 5em;
        margin: 6em auto;
    }

        .nav_box ul li {
            -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
            transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
            border-bottom: 1px solid #fff;
            color: #fff;
            margin-bottom: 20px;
            line-height: 40px;
        }

            .nav_box ul li a {
                display: block;
                color: #fff;
                font-size: 1.1rem;
                margin-right: -4.5em;
                padding-right: 5em;
                text-decoration: none;
                position: relative;
            }

                .nav_box ul li a:hover, .nav_box ul li a:focus {
                    color: #0BB99A;
                }

                .nav_box ul li a:before {
                    display: block;
                    content: "";
                    width: 245px;
                    height: 1px;
                    background-color: #0AA4B9;
                    position: absolute;
                    bottom: -1px;
                    left: 0;
                    margin: auto;
                    z-index: 1;
                }

            .nav_box ul li ul {
                -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
                transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
                position: absolute;
                top: 0;
                bottom: 0;
                left: 80%;
                z-index: 99999;
                margin: auto;
                background-color: rgba(10, 164, 185, 0.9);
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 0 1.5em;
                display: none;
                -webkit-animation: fade1 0.3s;
                animation: fade1 0.3s;
                width: 20%;
                list-style: none;
            }

                .nav_box ul li ul li {
                    display: block;
                    padding: 0.5em 0;
                    line-height: normal;
                    list-style: none;
                }

                    .nav_box ul li ul li a {
                        padding-left: 0;
                        width: 100%;
                        line-height: normal;
                    }

                        .nav_box ul li ul li a:after {
                            content: normal;
                        }

                        .nav_box ul li ul li a:before {
                            content: normal;
                        }

                        .nav_box ul li ul li a:hover, .nav_box ul li ul li a:focus {
                            color: #263E60;
                        }

            .nav_box ul li:hover ul, .nav_box ul li:focus ul {
                display: flex;
                text-align: left;
                width: 80%;
            }

.search_box .form-control {
  width: 256px;
  height: 45px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 1.08rem;
  background: transparent url(../image/icon/arrows.png) no-repeat;
  background-position: 94%;
  margin: 0 auto;
  color: #fff;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search_box .form-control option {
  background-color: #0AA4B9;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@-webkit-keyframes fade1 {
  from {
    transform: translateX(-10em);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.togglebar {
  display: none;
  width: 74px;
  height: 74px;
  background-color: #263E60;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.togglebar i {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 8px;
  background-color: #fff;
}

.togglebar i:last-child {
  margin-bottom: 0;
}

.togglebar.active i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.togglebar.active i:nth-child(1) {
  transform: rotate(45deg);
}

.togglebar.active i:nth-child(2) {
  opacity: 0;
}

.togglebar.active i:nth-child(3) {
  transform: rotate(-45deg);
}

.map_icon {
  display: none;
  width: 74px;
  height: 74px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff url(../image/icon/icon1.png) no-repeat center;
  cursor: pointer;
}

.map_icon.active {
  background: #fff url(../image/icon/icon1-2.png) no-repeat center;
}

.navbar-default.scrolled .nav_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  background-color: #0BB99A;
  width: 403px;
  height: 100%;
  overflow-y: auto;
}

.navbar-default.scrolled .nav_box ul {
  background-color: #0BB99A;
  padding: 0 1em 0 6.5em;
  margin: 1em auto;
  overflow-y: auto;
}

.navbar-default.scrolled .nav_box ul li {
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}

.navbar-default.scrolled .nav_box ul li a {
  margin-right: 0;
}

.navbar-default.scrolled .nav_box ul li a:before {
  content: initial;
}

.navbar-default.scrolled .nav_box ul li a:hover,
.navbar-default.scrolled .nav_box ul li a:focus {
  color: #263E60;
}

.navbar-default.scrolled .nav_box ul li ul {
  position: initial;
  display: block;
  -webkit-animation: none;
  animation: none;
  width: 100%;
  padding-left: 1.3em;
}

.navbar-default.scrolled .nav_box ul li ul li {
  border: 0;
  padding: 0;
}

.navbar-default.scrolled .nav_box.active {
  display: block;
}

.navbar-default.scrolled .togglebar {
  display: flex;
  position: fixed;
  left: 1em;
  top: 1em;
  z-index: 999;
}

.navbar-default.scrolled .map_icon {
  display: block;
  position: fixed;
  left: 1em;
  top: 5.6em;
  z-index: 9;
}

.navbar-default.scrolled .search_box {
  display: none;
  background-color: #0AA4B9;
  position: fixed;
  top: 10.5em;
  left: 1em;
  margin: auto;
  padding: 1em;
  width: 300px;
  height: 74px;
}

@media (max-width: 1560px) {
  .nav_box ul {
    margin: 3em auto;
  }
}

@media (max-width: 1480px) {
  .index_about_2 {
    padding: 0 6%;
  }
}

@media (max-width: 1300px) {
  .nav_box ul {
    margin: 1.5em auto;
  }
}

@media (max-width: 1199px) {
  .nav_box ul li {
    margin-bottom: 5px;
  }



}

@media (max-width: 1099px) {
  .nav_box ul li a {
    font-size: 1rem;
  }

}

@media (max-width: 991px) {
  .navbar-default {
    width: 220px;
  }

  .nav_box ul {
    padding: 0 1em;
    margin: .5em auto;
  }

  .nav_box ul li {
    margin-bottom: 0;
  }

  .nav_box ul li a {
    line-height: 26px;
    padding-top: .3em;
    padding-bottom: .3em;
    font-size: .92rem;
    padding-right: 3.5em;

  }

  .nav_box ul li:hover ul,
  .nav_box ul li:focus ul {
    width: 100%;
  }

  .nav_box ul li ul {
    padding: 0 1em;
  }

  .nav_box ul li ul li a {
    padding-right: 0;
  }

  .search_box .form-control {
    width: 138px;
  }

  .navbar-default.scrolled .search_box .form-control {
    width: 100%;
  }

  .navbar-default {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: #263E60;
    height: 74px;
  }

  .navbar-default .logo {
    width: auto;
    border: 0;
    padding: 0.5em;
    margin: 8px 0;
  }

  .navbar-default .logo img {
    width: 55%;
  }

  .navbar-default .nav_box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #0BB99A;
  }

  .navbar-default .nav_box ul {
    background-color: #0BB99A;
  }

  .navbar-default .nav_box ul li {
    border-bottom: 1px solid #fff;
  }

  .navbar-default .nav_box ul li a:before {
    content: initial;
  }

  .navbar-default .nav_box ul li a:hover,
  .navbar-default .nav_box ul li a:focus {
    color: #263E60;
  }

  .navbar-default .nav_box ul li ul {
    position: initial;
    display: block;
    -webkit-animation: none;
    animation: none;
    width: 100%;
  }

  .navbar-default .nav_box ul li ul li {
    border: 0;
    padding: 0;
  }

  .navbar-default .nav_box ul li ul li a {
    font-size: 0.92rem;
  }

  .navbar-default .nav_box.active {
    display: block;
  }

  .navbar-default.scrolled .nav_box {
    right: auto;
  }

  .togglebar {
    display: flex;
    position: absolute;
    right: 4.5em;
    top: 0;
    z-index: 999;
  }

  .map_icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }

  .search_box {
    display: none;
    background-color: #0AA4B9;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 1em;
  }

  .search_box .form-control {
    width: 100%;
  }

  .navbar-default.scrolled .search_box {
    right: auto;
  }
}

@media (max-width: 576px) {
  .navbar-default.scrolled .nav_box {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .navbar-default .logo {
    margin: 13px 0;
  }
}

.inside_nav .logo {
  display: inline-flex;
  border: 0;
}

.inside_nav .navbar-default {
  width: 100%;
  height: 138px;
  background-color: #263E60;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inside_nav .navbar-default .nav_box {
  display: inline-flex;
}

.inside_nav .navbar-default .nav_box ul {
  padding: 0;
  margin: 0 auto;
}

.inside_nav .navbar-default .nav_box ul li {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  margin-right: 20px;
  position: relative;
}

.inside_nav .navbar-default .nav_box ul li a {
  margin-right: 10px;
}

.inside_nav .navbar-default .nav_box ul li a:before {
  content: initial;
}

.inside_nav .navbar-default .nav_box ul li ul {
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1.5em;
  display: none;
  -webkit-animation: fade2 0.3s;
  animation: fade2 0.3s;
  width: 250px;
  padding: 1em;
  z-index: 9;
}

.inside_nav .navbar-default .nav_box ul li ul li {
  display: block;
  margin-right: 0;
}

.inside_nav .navbar-default .nav_box ul li ul li:last-child {
  border: 0;
}

.inside_nav .navbar-default .nav_box ul li ul li a:after {
  content: normal;
}

.inside_nav .navbar-default .nav_box ul li:hover,
.inside_nav .navbar-default .nav_box ul li:focus {
  border-color: #0AA4B9;
}

.inside_nav .navbar-default .nav_box ul li:hover ul,
.inside_nav .navbar-default .nav_box ul li:focus ul {
  display: block;
}

.inside_nav .navbar-default .nav_box ul li:hover ul li,
.inside_nav .navbar-default .nav_box ul li:focus ul li {
  border-color: #fff;
}

.inside_nav .navbar-default .nav_box ul li:hover ul li:hover,
.inside_nav .navbar-default .nav_box ul li:hover ul li:focus,
.inside_nav .navbar-default .nav_box ul li:focus ul li:hover,
.inside_nav .navbar-default .nav_box ul li:focus ul li:focus {
  border-color: #263E60;
}

.inside_nav .search_box {
  display: inline-flex;
  margin-right: 30px;
}

.inside_nav .search_box .form-control {
  width: 150px;
}

.inside_nav .inside_box {
  display: inline-flex;
}

@-webkit-keyframes fade2 {
  from {
    transform: translateY(-2em);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.inside_nav .navbar-default.scrolled .inside_box .nav_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  background-color: #0BB99A;
  width: 403px;
  height: 100%;
  overflow-y: auto;
}

.inside_nav .navbar-default.scrolled .inside_box .nav_box ul {
  background-color: #0BB99A;
  padding: 0 1em 0 6.5em;
  margin: 1em auto;
  overflow-y: auto;
}

.inside_nav .navbar-default.scrolled .inside_box .nav_box ul li {
  display: block;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}

.inside_nav .navbar-default.scrolled .inside_box .nav_box ul li a {
  margin-right: 0;
}

.inside_nav .navbar-default.scrolled .inside_box .nav_box ul li a:before {
  content: normal;
}

.inside_nav .navbar-default.scrolled .inside_box .nav_box ul li a:hover,
.inside_nav .navbar-default.scrolled .inside_box .nav_box ul li a:focus {
  color: #263E60;
}

.inside_nav .navbar-default.scrolled .inside_box .nav_box ul li ul {
  position: relative !important;
  display: block;
  -webkit-animation: none;
  animation: none;
  width: 100%;
  padding-left: 1.3em;
}

.inside_nav .navbar-default.scrolled .inside_box .nav_box ul li ul li {
  border: 0;
  padding: 0;
}

.inside_nav .navbar-default.scrolled .inside_box .nav_box ul li ul li a:after {
  content: normal;
}

.inside_nav .navbar-default.scrolled .search_box .form-control {
  width: 100%;
}

.inside_nav .navbar-default.scrolled .inside_box .nav_box.active {
  display: block;
}

@media (max-width: 1499px) {
  .search_box .form-control {
    width: 130px;
  }
}

@media (max-width: 1380px) {
  .inside_nav .navbar-default .nav_box ul li {
    margin-right: 5px;
  }
}

@media (max-width: 1280px) {
  .inside_nav .search_box {
    display: inline-flex;
    margin-right: 15px;
  }

  .inside_nav .navbar-default .nav_box ul li a {
    padding-left: 10px;
  }
}

@media (max-width: 1215px) {
  .inside_nav .logo {
    width: 25%;
  }
}

@media (max-width: 1099px) {
  .inside_nav .navbar-default {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: #263E60;
    height: 74px;
  }

  .inside_nav .navbar-default .logo {
    width: auto;
    border: 0;
    padding: 0.5em;
    margin: 8px 0;
  }

  .inside_nav .navbar-default .logo img {
    width: 55%;
  }

  .inside_nav .navbar-default .nav_box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #0BB99A;
  }

  .inside_nav .navbar-default .nav_box.active {
    display: block;
  }

  .inside_nav .navbar-default .nav_box ul {
    background-color: #0BB99A;
    padding: 0 2em;
    margin: 1.5em auto;
  }

  .inside_nav .navbar-default .nav_box ul li {
    display: block;
    border-bottom: 1px solid #fff;
  }

  .inside_nav .navbar-default .nav_box ul li a:before {
    content: initial;
  }

  .inside_nav .navbar-default .nav_box ul li a:hover,
  .inside_nav .navbar-default .nav_box ul li a:focus {
    color: #263E60;
  }

  .inside_nav .navbar-default .nav_box ul li ul {
    position: initial;
    display: block;
    -webkit-animation: none;
    animation: none;
    width: 100%;
    padding: 0;
    margin: auto;
    margin-bottom: 10px;
  }

  .inside_nav .navbar-default .nav_box ul li ul li {
    border: 0;
    padding: 0;
  }

  .inside_nav .navbar-default .nav_box ul li ul li a {
    font-size: 0.92rem;
  }

  .inside_nav .navbar-default.scrolled .nav_box {
    right: auto;
    top: 0;
    bottom: 0;
    left: 0;
    position: fixed;
  }

  .inside_nav .navbar-default.scrolled .nav_box ul {
    padding: 0 1em 0 6.5em;
  }

  .inside_nav .navbar-default.scrolled .nav_box ul li {
    margin-bottom: 10px;
  }

  .inside_nav .navbar-default.scrolled .nav_box ul li ul {
    padding: 0;
    margin: 1em auto;
  }

  .inside_nav .togglebar {
    display: flex;
    position: absolute;
    right: 4.5em;
    top: 0;
    z-index: 999;
  }

  .inside_nav .map_icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }

  .inside_nav .search_box {
    display: none;
    background-color: #0AA4B9;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 1em;
  }

  .inside_nav .search_box .form-control {
    width: 100%;
  }

  .inside_nav .navbar-default.scrolled .search_box {
    right: auto;
  }

  .inside_nav .navbar-default .inside_box .nav_box.active {
    display: block;
  }
}

header {
  position: relative;
}

.index_banner_slick a img {
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

.index_banner_slick a.slick-active img {
  -webkit-animation: zoom 55s;
  animation: zoom 55s;
}

.page {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
}

.page #aw_left {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: inline-block;
  vertical-align: middle;
  width: 92px;
  height: 92px;
  background: #263E60 url(../image/icon/arrows2.png) no-repeat center;
  transform: rotate(180deg);
}

.page #aw_left:hover,
.page #aw_left:focus {
  background: #0AA4B9 url(../image/icon/arrows2.png) no-repeat center;
}

.page #aw_right {
  display: inline-block;
  vertical-align: middle;
  width: 92px;
  height: 92px;
  background: #263E60 url(../image/icon/arrows2.png) no-repeat center;
}

.page #aw_right:hover,
.page #aw_right:focus {
  background: #0AA4B9 url(../image/icon/arrows2.png) no-repeat center;
}

.index_about_all {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.index_about_bg {
  display: inline-flex;
  background: no-repeat top center;
  background-size: cover;
  min-height: 966px;
  width: 40%;
}

.index_about {
  height: 825px;
  background: url(../image/map.png) no-repeat center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7%;
  width: 61%;
}

.index_about h3 {
  color: #0AA4B9;
  font-size: 3.1rem;
  font-weight: bold;
}

.index_about h4 {
  color: #0AA4B9;
  font-size: 1.9rem;
}

.index_about i {
  display: block;
  width: 124px;
  height: 3px;
  background-color: #999999;
  margin: 20px 0;
}

.index_about p {
  font-size: 1rem;
}

.index_about a {
  display: block;
  background-color: #0AA4B9;
  width: 210px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  margin: 30px 0;
  text-decoration: none;
}

.index_about a:hover,
.index_about a:focus {
  background-color: #263E60;
}

.index_about .nav-tabs {
  border: 0;
}

.index_about .nav-tabs li a {
  display: block;
  background-color: #0AA4B9;
  color: #fff;
  border-radius: 0;
  font-size: 1.25rem;
}

.index_about .nav-tabs li.active a {
  background-color: #263E60;
  color: #fff;
}

.index_about .tab-content span {
  display: block;
  margin: 10px auto;
  color: #263E60;
}

.index_about_bg2 {
  background: no-repeat top center;
  background-size: cover;
  min-height: 717px;
  margin-top: -6.1em;
}

.index_about_2 {
  height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20%;
  background-color: #F5F5F5;
}

.index_about_2 h3 {
  color: #666666;
  font-size: 1.58rem;
  margin-bottom: 0;
}

.index_about_2 span {
  display: block;
  color: #666666;
  font-size: 1rem;
  margin-bottom: 30px;
}

.index_about_2 h4 {
  color: #0AA4B9;
  font-size: 1rem;
}

.index_about_2 p {
  font-size: 1rem;
  color: #53585D;
}

.index_about_2 a {
  display: block;
  background-color: #0AA4B9;
  width: 210px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  margin: 30px 0;
  text-decoration: none;
}

.index_about_2 a:hover,
.index_about_2 a:focus {
  background-color: #263E60;
}

.page2 {
  display: block;
  position: absolute;
  top: -15.8%;
  right: 39.55%;
  margin: auto;
  z-index: 9;
}

.page2 #aw_left2 {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: inline-block;
  vertical-align: middle;
  width: 98px;
  height: 98px;
  background: #263E60 url(../image/icon/arrows2.png) no-repeat center;
  transform: rotate(180deg);
}

.page2 #aw_left2:hover,
.page2 #aw_left2:focus {
  background: #0AA4B9 url(../image/icon/arrows2.png) no-repeat center;
}

.page2 #aw_right2 {
  display: inline-block;
  vertical-align: middle;
  width: 98px;
  height: 98px;
  background: #263E60 url(../image/icon/arrows2.png) no-repeat center;
}

.page2 #aw_right2:hover,
.page2 #aw_right2:focus {
  background: #0AA4B9 url(../image/icon/arrows2.png) no-repeat center;
}

.index_about_slick .slick-list {
  overflow: inherit;
}

.parallax-window {
  min-height: 608px;
  background: transparent;
}

.index_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(38, 62, 96, 0.8);
  height: 608px;
  padding: 0 1em;
  width: 33%;
}

.index_box h3 {
  color: #fff;
  font-size: 3.1rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.index_box a {
  display: block;
  border: 1px solid #fff;
  width: 256px;
  line-height: 45px;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  text-decoration: none;
}

.index_box a:hover,
.index_box a:focus {
  background-color: #fff;
  color: #263E60;
}

.footer_ad {
  margin: 30px auto;
}

.footer_ad a {
  display: block;
}

.footer_ad a img {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  border: 1px solid #CCCCCC;
  margin: 0 auto;
}

.footer_ad a:hover img,
.footer_ad a:focus img {
  opacity: 0.5;
}

.footer_2 {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}

.footer_box img {
  margin: 20px auto;
}

.footer_box p {
  text-align: center;
  font-size: 1rem;
  color: #52585D;
  margin-bottom: 30px;
}

.footer_box ul {
  text-align: center;
  margin-bottom: 30px;
}

.footer_box ul li {
  display: inline-block;
  vertical-align: middle;
  border-left: 1px solid #D4D4D4;
}

.footer_box ul li a {
  display: block;
  font-size: 1rem;
  color: #53585D;
  padding: 0 3em;
  text-decoration: none;
}

.footer_box ul li a:hover,
.footer_box ul li a:focus {
  color: #0AA4B9;
}

.footer_box ul li:first-child {
  border: 0;
}

.footer_3 {
  padding: 1em 0;
}

.footer_3 dl {
  text-align: center;
}

.footer_3 dl dd {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  font-weight: normal;
  font-size: 1rem;
}

.footer_3 dl dd span {
  color: #0AA4B9;
}

.footer_3 p {
  text-align: center;
  font-size: 1rem;
  color: #52585D;
}

.footer_3 p a {
  color: #52585D;
}

@media (max-width: 1199px) {
  .index_box {
    width: 49%;
  }

  .footer_box ul li a {
    padding: 0 1em;
  }

  .index_about_bg2 {
    min-height: 543px;
    margin-top: -6.13em;
  }

  .index_about_2 {
    height: 445px;
    padding: 0px 10%;
  }

  .page2 {
    top: -22.1%;
  }

  .index_about {
    height: 100%;
    padding: 0 3%;
    max-height: 750px;

  }

  .index_about_bg {
    min-height: 700px;
  }
}

@media (max-width: 991px) {
  .index_box {
    width: 75%;
  }

  .index_about_bg2 {
    margin-top: 0;
  }

  .page2 {
    top: 45%;
    right: 0;
  }

  .parallax-window {
    min-height: 380px;
    background: transparent;
  }

  .index_box {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .index_box {
    width: 100%;
  }

  .index_box h3 {
    font-size: 2.5rem;
  }

  .footer_box ul {
    display: none;
  }

  .footer_box img {
    margin: 10px auto;
  }

  .footer_box p {
    margin-bottom: 20px;
  }

  .index_about_all {
    flex-direction: column;
  }

  .index_about {
    width: 100%;
    display: block;
  }

  .index_about h3 {
    font-size: 2rem;
  }

  .index_about h4 {
    font-size: 1.3rem;
  }

  .index_about_bg {
    width: 100%;
    display: none;
  }

  .nav-tabs>li {
    width: 49%;
  }

  .nav-tabs>li a {
    width: 100%;
  }
}

@media (max-width: 457px) {
  .page2 {
    top: 46.5%;
  }

  .page2 #aw_left2 {
    width: 60px;
    height: 60px;
  }

  .page2 #aw_right2 {
    width: 60px;
    height: 60px;
  }

  .page #aw_left {
    width: 60px;
    height: 60px;
  }

  .page #aw_right {
    width: 60px;
    height: 60px;
  }
}

.about_banner {
  background: no-repeat center;
  background-size: cover;
  height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_banner .about_title {
  width: 570px;
  height: 170px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about_banner .about_title h2 {
  font-size: 1.58rem;
  color: #0AA4B9;
  margin-top: 0;
}

.about_banner .about_title h1 {
  color: #0AA4B9;
  font-size: 1.58rem;
  margin: 0 auto;
}

.about_banner .about_title h1 b {
  font-size: 3.1rem;
  margin-right: 10px;
}

.about_bg {
  padding: 10em 0;
  position: relative;
  background: url(../image/map.png) no-repeat center right;
}

.about_bg .about_all {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.about_bg i {
  display: block;
  width: 40%;
  height: 100%;
  background-color: #0AA4B9;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.about_box {
  height: 527px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 3em;
}

.about_box h3 {
  width: 100%;
  color: #0AA4B9;
  font-size: 1.9rem;
  margin-bottom: 15px;
}

.about_box h4 {
  width: 100%;
  font-size: 1.1rem;
  color: #0BB99A;
}

.about_box p {
  width: 100%;
  font-size: 1rem;
  line-height: 1.83rem;
}

.parallax-window2 {
  min-height: 410px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1em;
}

.parallax-window2 i {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 62, 96, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.parallax-window2 h3 {
  color: #fff;
  font-size: 1.9rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.parallax-window2 p {
  color: #fff;
  font-size: 1.58rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.about_box2 {
  background-color: #F5F5F5;
  height: 561px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10em;
}

.about_box2 h3 {
  color: #0AA4B9;
  margin-bottom: 30px;
  font-size: 1.9rem;
}

.about_box2 h4 {
  font-size: 1.58rem;
}

.about_box2 p {
  font-size: 1rem;
}

.parallax-window3 {
  min-height: 561px;
  background: transparent;
}

.about_box3 {
  height: 464px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5em;
}

.about_box3 h3 {
  color: #fff;
  font-size: 1.58rem;
  margin-bottom: 20px;
}

.about_box3 p {
  width: 100%;
  color: #fff;
  font-size: 1rem;
}

.parallax-window4 {
  height: 778px;
  background: transparent;
}

.about_box4 {
  height: 778px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 3em;
}

.about_box4 h3 {
  color: #fff;
  font-size: 1.58rem;
  margin-bottom: 20px;
  text-align: center;
}

.about_box4 h3 span {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: normal;
}

.about_box4 p {
  width: 100%;
  color: #fff;
  font-size: 1rem;
}

.about_box4 ol {
  margin: 20px auto;
}

.about_box4 ol li {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  width: 46%;
  margin-bottom: 15px;
  margin-right: 10px;
}

.about_bg2 {
  background-color: #0AA4B9;
  padding: 4em 0;
}

.about_bg2 .about_box5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about_bg2 .about_box5 h3 {
  font-size: 1.58rem;
  color: #fff;
  width: 100%;
}

.about_bg2 .about_box5 p {
  width: 100%;
  font-size: 1rem;
  color: #fff;
  line-height: 1.75rem;
}

.parallax-window5 {
  height: 966px;
  background: transparent;
  position: relative;
}

.about_bg3 {
  display: flex;
  align-items: center;
}

.about_bg3 i {
  display: block;
  min-height: 966px;
  width: 765px;
  background-color: #0AA4B9;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.about_box6 {
  display: flex;
  align-items: center;
}

.about_box6 img {
  margin: 0 auto;
}

.about_box6 h3 {
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about_box6 ul {
  padding-left: 20px;
}

.about_box6 ul li {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
}

.about_box6 ul li span {
  display: block;
  font-size: 0.9rem;
}

@media (max-width: 1599px) {
  .about_box3 {
    padding: 0 3em;
  }
}

@media (max-width: 1463px) {
  .about_box4 {
    padding: 0 1em;
  }

  .about_box4 ol li {
    width: 45%;
  }

  .about_bg3 i {
    width: 550px;
  }

  .about_box {
    padding: 0 0em;
  }
}

@media (max-width: 1199px) {
  .about_box3 {
    padding: 0px 3em;
  }
}

@media (max-width: 1099px) {
  .about_banner {
    height: 350px;
  }

  .about_box2 {
    padding: 0 5em;
  }

  .about_bg3 i {
    width: 450px;
  }
}

@media (max-width: 998px) {
  .about_box4 ol li {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .about_banner {
    height: 220px;
  }

  .about_bg {
    padding: 0;
  }

  .about_box2 {
    height: 390px;
  }

  .parallax-window3 {
    min-height: 390px;
  }

  .about_bg2 .about_box5 {
    padding: 0 1em;
  }

  .about_box6 {
    display: block;
  }

  .about_box3 {
    padding: 0 0.5em;
  }

  .about_box {
    height: auto;
  }
}

@media (max-width: 767px) {
  .about_banner {
    height: 220px;
  }

  .about_banner .about_title {
    height: 150px;
    padding: 1em;
  }

  .about_bg {
    background: url(../image/map.png) no-repeat center bottom;
    padding: 2em;
  }

  .about_bg i {
    display: none;
  }

  .about_box {
    padding: 0;
  }

  .about_box2 {
    padding: 0 2em;
  }

  .about_box3 {
    height: 450px;
    padding: 1em 1em;
  }

  .about_box4 {
    height: auto;
    padding: 1em 1em;
  }

  .about_box4 ol li {
    width: 49%;
    display: inline-block;
    vertical-align: middle;
  }

  .about_bg2 {
    padding: 2em 0;
  }

  .about_bg2 h3 {
    margin-top: 0;
  }

  .about_bg3 i {
    width: 100%;
    min-height: 550px;
    top: auto;
  }

  .parallax-window5 {
    height: 870px;
  }

  .about_banner .about_title h1 b {
    display: block;
    font-size: 2rem;
  }

  .about_banner .about_title h2 {
    font-size: 1.03rem;
  }
}

@media (max-width: 576px) {
  .parallax-window5 {
    height: 750px;
  }

  .parallax-window4 {
    height: 967px;
  }
}

@media (max-width: 375px) {
  .about_banner .about_title h1 {
    font-size: 1rem;
  }

  .about_banner .about_title h1 b {
    font-size: 2.5rem;
  }

  .about_banner .about_title h2 {
    font-size: 1rem;
  }

  .parallax-window2 h3 {
    font-size: 1.2rem;
  }

  .parallax-window2 p {
    font-size: 1.2rem;
  }

  .about_box2 {
    padding: 0 1em;
  }
}

.contact_box {
  background-color: #F5F5F5;
  min-height: 966px;
  padding: 8em 8em;
}

.contact_box h3 {
  color: #0AA4B9;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.contact_box label {
  font-weight: normal;
  font-size: 1rem;
}

.contact_box .form-control {
  height: 43px;
  border-radius: 0;
  border: 0;
  margin-bottom: 30px;
}

.contact_box button {
  text-align: center;
  width: 180px;
  line-height: 45px;
  background-color: #0AA4B9;
  border: 0;
  color: #fff;
  font-size: 0.9rem;
  margin: 10px 10px;
}

.contact_box button:hover,
.contact_box button:focus {
  background-color: #263E60;
}

.contact_box #smtButton {
  text-align: center;
  width: 180px;
  line-height: 45px;
  background-color: #0BB99A;
  border: 0;
  color: #fff;
  font-size: 0.9rem;
  margin: 10px 10px;
}

.contact_box #smtButton:hover,
.contact_box #smtButton:focus {
  background-color: #263E60;
}

@media (max-width: 1199px) {
  .contact_box {
    padding: 8em 3em;
  }
}

@media (max-width: 991px) {
  .contact_box {
    padding: 2em 2em;
    min-height: 780px;
  }

  .contact_bg {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .contact_box {
    padding: 1em;
  }

  .contact_box button {
    margin: 10px 0px;
  }
}

@media (max-width: 480px) {
  .contact_box button {
    width: 120px;
  }
}

.parallax-window6 {
  min-height: 1737px;
  background: transparent;
}

.necessary_box {
  background-color: #F5F5F5;
  min-height: 1737px;
  padding: 8em 8em;
}

.necessary_box h3 {
  color: #0AA4B9;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.necessary_box label {
  font-weight: normal;
  font-size: 1rem;
}

.necessary_box .form-control {
  height: 43px;
  border-radius: 0;
  border: 0;
  margin-bottom: 30px;
}

.necessary_box button {
  text-align: center;
  width: 180px;
  line-height: 45px;
  background-color: #0AA4B9;
  border: 0;
  color: #fff;
  font-size: 0.9rem;
  margin: 10px 10px;
}

.necessary_box button:nth-child(2) {
  background-color: #0BB99A;
}

.necessary_box button:hover,
.necessary_box button:focus {
  background-color: #263E60;
}

.necessary_box #smtButton {
  text-align: center;
  width: 180px;
  line-height: 45px;
  background-color: #0BB99A;
  border: 0;
  color: #fff;
  font-size: 0.9rem;
  margin: 10px 10px;
}

.necessary_box #smtButton:hover,
.necessary_box #smtButton:focus {
  background-color: #263E60;
}

.necessary_box .radio {
  margin-left: 25px;
  font-size: 1rem;
  font-weight: normal;
}

.necessary_box .form-control2 {
  display: inline-block;
  vertical-align: middle;
  width: 115px;
  margin-bottom: 0;
  margin-left: 10px;
}

.necessary_box .form-control3 {
  display: inline-block;
  vertical-align: middle;
  margin: 10px auto;
  margin-left: 10px;
  width: 80%;
}

.necessary_box .checkbox {
  margin-left: 25px;
  margin-bottom: 0;
}

.parallax-window7 {
  height: 959px;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.necessary_box2 {
  background-color: rgba(38, 62, 96, 0.7);
  height: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 14em;
}

.necessary_box2 h3 {
  color: #fff;
  font-size: 1.9rem;
  font-weight: normal;
}

.necessary_box2 h3 span {
  font-size: 1rem;
  margin-left: 10px;
}

.necessary_box2 h4 {
  color: #fff;
  font-size: 1.25rem;
  width: 100%;
}

.necessary_box2 p {
  color: #fff;
  font-size: 1rem;
}

.necessary_box3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  padding: 1em;
}

.necessary_box3:nth-child(odd) {
  background-color: #F5F5F5;
}

.necessary_items {
  width: 480px;
  margin-left: 20px;
}

.necessary_items h3 {
  font-size: 1.58rem;
  color: #0AA4B9;
}

.necessary_items h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 15px auto;
}

.necessary_items p {
  font-size: 1rem;
}

.necessary_items ul {
  padding-left: 25px;
  font-size: 1rem;
}

.necessary_items ul li {
  margin-bottom: 10px;
}

.necessary_title {
  margin: 50px auto;
}

.necessary_title h3 {
  text-align: center;
  color: #0AA4B9;
  font-size: 1.9rem;
}

.necessary_bg2 {
  background-color: #F5F5F5;
  padding-bottom: 8em;
}

.necessary_bg2 .necessary_box4 {
  position: relative;
  background: no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 385px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1em;
}

.necessary_bg2 .necessary_box4 span {
  display: block;
  color: #fff;
  font-size: 2.17rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.necessary_bg2 .necessary_box4 h3 {
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.9rem;
}

.necessary_bg2 .necessary_box4 p {
  color: #fff;
  font-size: 1.1rem;
}

.necessary_bg2 .necessary_box4 a {
  display: block;
  width: 180px;
  line-height: 45px;
  text-align: center;
  color: #0AA4B9;
  font-size: 0.9rem;
  background-color: #fff;
}

.necessary_bg2 .necessary_box4 a:hover,
.necessary_bg2 .necessary_box4 a:focus {
  background-color: #263E60;
  color: #fff;
}

.necessary_bg2 .necessary_box5 {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 385px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1em;
}

.necessary_bg2 .necessary_box5 span {
  display: block;
  color: #0AA4B9;
  font-size: 2.17rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.necessary_bg2 .necessary_box5 h3 {
  color: #53585D;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.9rem;
}

.necessary_all {
  position: relative;
  background: url(../image/map2.png) no-repeat center;
}

.necessary_all img {
  margin: 0 auto;
}

.necessary_all .necessary_a {
  display: block;
  width: 16%;
  line-height: 38px;
  text-align: center;
  text-decoration: none;
  color: #0AA4B9;
  font-size: 0.9rem;
  background-color: #fff;
  position: absolute;
  right: 0;
  left: 22em;
  top: 9em;
  margin: auto;
}

.necessary_all .necessary_a:hover,
.necessary_all .necessary_a:focus {
  background-color: #263E60;
  color: #fff;
}

.necessary_all .col-sm-3:nth-child(1) .necessary_box4:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 20px;
  border-color: transparent transparent transparent rgba(10, 164, 185, 0.7);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.25em;
  margin: auto;
  z-index: 1;
}

.necessary_all .col-sm-3:nth-child(2) .necessary_box5:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 20px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.25em;
  margin: auto;
  z-index: 1;
}

.necessary_all .col-sm-3:nth-child(3) .necessary_box4:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 20px;
  border-color: transparent transparent transparent rgba(10, 164, 185, 0.7);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.2em;
  margin: auto;
  z-index: 1;
}

.necessary_all .col-sm-3:nth-child(4) .necessary_box5:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 16px 0 16px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: auto;
  bottom: -1.28em;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}

.necessary_all .col-sm-3:nth-child(6) .necessary_box4:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 20px 16px 0;
  border-color: transparent rgba(10, 164, 185, 0.7) transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: -1.25em;
  margin: auto;
  z-index: 1;
}

.necessary_all .col-sm-3:nth-child(7) .necessary_box5:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 20px 16px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: -1.28em;
  margin: auto;
  z-index: 1;
}

.necessary_all .col-sm-3:nth-child(8) .necessary_box4:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 20px 16px 0;
  border-color: transparent rgba(10, 164, 185, 0.7) transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: -1.2em;
  margin: auto;
  z-index: 1;
}

.parallax-window8 {
  min-height: 1440px;
  background: transparent;
}

.necessary_box6 {
  height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em 6em;
}

.necessary_box6:nth-child(2) {
  background-color: #F5F5F5;
}

.necessary_box6 h3 {
  color: #0AA4B9;
  font-size: 1.9rem;
  margin-bottom: 30px;
}

.necessary_box6 h4 {
  color: #52585D;
  font-size: 1.25rem;
  margin-top: 20px;
}

.necessary_box6 p {
  font-size: 1rem;
}

@media (max-width: 1499px) {
  .necessary_box2 {
    padding: 0 8em;
  }
}

@media (max-width: 1432px) {
  .necessary_box {
    padding: 6em 3em;
  }
}

@media (max-width: 1280px) {
  .necessary_all .necessary_a {
    width: 25%;
  }
}

@media (max-width: 1199px) {
  .necessary_box {
    padding: 3em 5em;
  }

  .parallax-window6 {
    display: none;
    background: #fff;
  }
}

@media (max-width: 1099px) {
  .necessary_box3 {
    padding: 3em;
  }

  .necessary_box2 {
    padding: 0 2em;
  }

  .necessary_box6 {
    padding: 1em 6em;
  }
}

@media (max-width: 991px) {
  .parallax-window7 {
    height: 320px;
  }

  .necessary_bg2 .necessary_box5 {
    height: 300px;
  }

  .necessary_bg2 .necessary_box4 {
    height: 300px;
  }

  .necessary_all .necessary_a {
    width: 40%;
    left: 22em;
    top: 18em;
  }

  .parallax-window8 {
    min-height: 400px;
  }

  .necessary_box6 {
    padding: 1em 2em;
    height: auto;
  }
}

@media (max-width: 767px) {
  .necessary_box {
    padding: 3em 2em;
  }

  .necessary_box button {
    margin: 10px 0px;
  }

  .necessary_box3 {
    height: 320px;
  }

  .necessary_all {
    display: flex;
    flex-direction: column;
  }

  .necessary_all .col-sm-3:nth-child(1) {
    order: 1;
  }

  .necessary_all .col-sm-3:nth-child(1) .necessary_box4:before {
    border-width: 20px 16px 0 16px;
    border-color: rgba(10, 164, 185, 0.7) transparent transparent transparent;
    top: auto;
    bottom: -1.2em;
    left: 0;
    right: 0;
  }

  .necessary_all .col-sm-3:nth-child(2) {
    order: 2;
  }

  .necessary_all .col-sm-3:nth-child(2) .necessary_box5:before {
    border-width: 20px 16px 0 16px;
    border-color: #fff transparent transparent transparent;
    top: auto;
    bottom: -1.2em;
    left: 0;
    right: 0;
  }

  .necessary_all .col-sm-3:nth-child(3) {
    order: 3;
  }

  .necessary_all .col-sm-3:nth-child(3) .necessary_box4:before {
    border-width: 20px 16px 0 16px;
    border-color: rgba(10, 164, 185, 0.7) transparent transparent transparent;
    top: auto;
    bottom: -1.2em;
    left: 0;
    right: 0;
  }

  .necessary_all .col-sm-3:nth-child(4) {
    order: 4;
  }

  .necessary_all .col-sm-3:nth-child(4) .necessary_box5:before {
    border-width: 20px 16px 0 16px;
    border-color: #fff transparent transparent transparent;
    top: auto;
    bottom: -1.2em;
    left: 0;
    right: 0;
  }

  .necessary_all .col-sm-3:nth-child(8) {
    order: 5;
  }

  .necessary_all .col-sm-3:nth-child(8) .necessary_box4:before {
    border-width: 20px 16px 0 16px;
    border-color: rgba(10, 164, 185, 0.7) transparent transparent transparent;
    top: auto;
    bottom: -1.2em;
    left: 0;
    right: 0;
  }

  .necessary_all .col-sm-3:nth-child(7) {
    order: 6;
  }

  .necessary_all .col-sm-3:nth-child(7) .necessary_box5:before {
    border-width: 20px 16px 0 16px;
    border-color: #fff transparent transparent transparent;
    top: auto;
    bottom: -1.2em;
    left: 0;
    right: 0;
  }

  .necessary_all .col-sm-3:nth-child(6) {
    order: 7;
  }

  .necessary_all .col-sm-3:nth-child(6) .necessary_box4:before {
    border-width: 20px 16px 0 16px;
    border-color: rgba(10, 164, 185, 0.7) transparent transparent transparent;
    top: auto;
    bottom: -1.2em;
    left: 0;
    right: 0;
  }

  .necessary_all .col-sm-3:nth-child(5) {
    order: 8;
  }

  .necessary_bg3 {
    display: none;
  }

  .necessary_box6 {
    height: auto;
    padding: 1em 2em;
  }

  .necessary_all .necessary_a {
    border: 1px solid #999;
    position: initial;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .necessary_all .necessary_a {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .necessary_box button {
    width: 120px;
  }

  .necessary_box3 {
    padding: 1em;
  }

  .necessary_bg2 {
    padding-bottom: 2em;
  }
}

.service_box {
  height: 746px;
  padding-left: 3em;
  padding-right: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service_box h3 {
  font-size: 1.9rem;
  color: #0AA4B9;
  margin-bottom: 30px;
}

.service_box h4 {
  font-size: 1.25rem;
  color: #52585D;
  border-left: 4px solid #0AA4B9;
  padding-left: 10px;
  margin: 20px auto;
  width: 100%;
}

.service_box p {
  font-size: 1rem;
}

.service_box a {
  display: block;
  width: 210px;
  line-height: 45px;
  background-color: #0AA4B9;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  margin: 30px 0;
}

.service_box a:hover,
.service_box a:focus {
  background-color: #263E60;
}

.service_box2 {
  background-color: #F5F5F5;
  height: 373px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em 4em 1em;
}

.service_box2 h4 {
  font-size: 1.25rem;
  color: #52585D;
  border-left: 4px solid #0AA4B9;
  padding-left: 10px;
  margin: 20px auto;
  width: 100%;
}

.service_box2 p {
  font-size: 1rem;
}

.service_box3 {
  background: no-repeat top center;
  background-size: cover;
  min-height: 373px;
}

.parallax-window9 {
  height: 480px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 5em;
}

.service_box4 {
  width: 720px;
}

.service_box4 h4 {
  font-size: 1.25rem;
  color: #52585D;
  border-left: 4px solid #0AA4B9;
  padding-left: 10px;
  margin: 20px auto;
  width: 100%;
}

.service_box4 p {
  font-size: 1rem;
}

.service_box4 a {
  display: block;
  width: 210px;
  line-height: 45px;
  background-color: #0AA4B9;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  margin: 30px 0;
}

.service_box4 a:hover,
.service_box4 a:focus {
  background-color: #263E60;
}

.service_box5 {
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em 2em;
}

.service_box5:nth-child(1) {
  background-color: #F5F5F5;
}

.service_box5 h3 {
  color: #0AA4B9;
  font-size: 1.9rem;
}

.service_box5 h4 {
  font-size: 1.25rem;
  border-left: 4px solid #0AA4B9;
  padding-left: 10px;
  margin: 20px 0;
}

.service_box5 p {
  font-size: 1rem;
}

.service_box5 a {
  display: block;
  width: 210px;
  line-height: 45px;
  background-color: #0AA4B9;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  margin: 20px 0;
  text-decoration: none;
}

.service_box5 a:hover,
.service_box5 a:focus {
  background-color: #263E60;
}

.service_box5 ul {
  padding-left: 20px;
}

.service_box5 ul li {
  margin-bottom: 15px;
}

.parallax-window10 {
  height: 1199px;
  background: transparent;
  position: relative;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.service_box6 {
  height: 285px;
  width: 100%;
  padding: 1em;
  background-color: rgba(10, 164, 185, 0.7);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10em;
}

.service_box6 p {
  width: 100%;
  color: #fff;
  font-size: 1rem;
}

.service_box6 a {
  display: block;
  width: 210px;
  line-height: 45px;
  background-color: #fff;
  color: #0AA4B9;
  text-align: center;
  margin: 30px auto;
  text-decoration: none;
}

.service_box6 a:hover,
.service_box6 a:focus {
  background-color: #263E60;
  color: #fff;
}

.service_bg {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.service_box7 {
  width: 100%;
  background-color: rgba(38, 62, 96, 0.7);
  padding: 3em 32em;
  color: #fff;
}

.service_box7 h3 {
  margin-bottom: 20px;
}

.service_box7 ul {
  padding-left: 20px;
}

.service_box7 ul li {
  margin-bottom: 10px;
}

.service_title {
  margin: 50px auto;
}

.service_title h3 {
  font-size: 1.25rem;
  color: #52585D;
  border-left: 4px solid #0AA4B9;
  padding-left: 10px;
}

.service_slick {
  margin: 3em auto;
}

.service_slick a {
  display: block;
  outline: none;
}

.service_slick a img {
  margin: 0 auto;
  padding: 1em;
}

.service_slick .slick-prev,
.service_slick .slick-next {
  width: 92px;
  height: 92px;
  background: #0AA4B9 url(../image/icon/arrows2.png) no-repeat center;
  z-index: 9;
  top: 36%;
}

.service_slick .slick-prev:hover,
.service_slick .slick-prev:focus,
.service_slick .slick-next:hover,
.service_slick .slick-next:focus {
  background: #263E60 url(../image/icon/arrows2.png) no-repeat center;
}

.service_slick .slick-prev {
  transform: rotate(180deg);
  left: -15px;
}

.service_slick .slick-next {
  right: -15px;
}

.service_box8 {
  padding: 4em 0;
}

.service_box8 h3 {
  color: #0AA4B9;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.service_box8 p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.service_box8 h4 {
  font-size: 1.25rem;
  color: #52585D;
  border-left: 4px solid #0AA4B9;
  padding-left: 10px;
}

.service_box8 img {
  margin: 20px auto;
}

.parallax-window11 {
  min-height: 480px;
}

.service_box9 {
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6em;
  height: 480px;
}

.service_box9 h3 {
  font-size: 1.25rem;
  color: #52585D;
  border-left: 4px solid #0AA4B9;
  padding-left: 10px;
  margin-bottom: 20px;
}

.service_box9 ul {
  padding-left: 20px;
}

.service_box9 ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.parallax-window12 {
  height: 746px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.parallax-window12 .service_box10 {
  background-color: rgba(38, 62, 96, 0.7);
  font-size: 1rem;
  color: #fff;
  padding: 0 3em;
  height: 300px;
  display: flex;
  align-items: center;
}

.service_box12 {
  background-color: #F5F5F5;
  padding: 5em 3em;
}

.service_box12 h3 {
  font-size: 1.25rem;
  color: #52585D;
  border-left: 4px solid #0AA4B9;
  padding-left: 10px;
  margin-bottom: 20px;
}

.service_box12 p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.service_box12 ul {
  margin-left: 20px;
}

.service_box12 ul li {
  float: left;
  width: 40%;
  margin-bottom: 10px;
  margin-right: 40px;
}

.service_box12 a {
  display: block;
  width: 210px;
  line-height: 45px;
  background-color: #0AA4B9;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  margin: 30px 0;
}

.service_box12 a:hover,
.service_box12 a:focus {
  background-color: #263E60;
}

.service_box13 {
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em 6em;
}

.service_box13 h3 {
  color: #0AA4B9;
  font-size: 1.9rem;
  margin-bottom: 30px;
}

.service_box13 p {
  font-size: 1rem;
}

.service_box14 {
  height: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em 6em;
  background-color: #F5F5F5;
}

.service_box14 h4 {
  font-size: 1.25rem;
  border-left: 4px solid #0AA4B9;
  padding-left: 10px;
  margin: 20px 0;
}

.service_box14 p {
  font-size: 1rem;
}

.service_box14 a {
  display: block;
  width: 210px;
  line-height: 45px;
  background-color: #0AA4B9;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  margin: 20px 0;
  text-decoration: none;
}

.service_box14 a:hover,
.service_box14 a:focus {
  background-color: #263E60;
  color: #fff;
}

@media (max-width: 1600px) {
  .service_box7 {
    padding: 3em 15em;
  }

  .service_box2 {
    padding: 1em;
  }
}

@media (max-width: 1450px) {
  .service_box12 ul li {
    margin-right: 15px;
  }

  .service_box {
    height: 850px;
    padding: 0 2em;
  }

  .parallax-window12 {
    height: 850px;
  }

  .parallax-window12 .service_box10 {
    padding: 0 2em;
  }
}

@media (max-width: 1410px) {
  .service_box13 {
    padding: 1em 3em;
  }

  .service_box5 {
    height: 800px;
  }

  .parallax-window10 {
    height: 1600px;
  }

  .service_box6 {
    padding: 0 2em;
  }

  .service_box7 {
    padding: 3em 2em;
  }
}

@media (max-width: 1300px) {
  .service_box6 {
    padding: 0 4em;
  }
}

@media (max-width: 1280px) {
  .service_box12 ul li {
    margin-right: 0;
    width: 100%;
    float: none;
  }

  .service_box {
    padding: 0 1em;
  }
}

@media (max-width: 1199px) {
  .parallax-window12 .service_box10 {
    padding: 0 2em;
  }

  .service_box14 {
    padding: 1em 5em;
  }

  .service_box13 {
    padding: 1em 1em;
  }

  .service_box14 {
    padding: 1em 2em;
  }

  .necessary_box2 {
    padding: 0 2em;
  }

  .service_box {
    height: auto;
  }

  .parallax-window12 {
    height: 600px;
  }

  .parallax-window12 .service_box10 {
    height: 380px;
  }

  .service_box3 {
    min-height: 465px;
  }

  .service_box2 {
    min-height: 465px;
  }
}

@media (max-width: 1099px) {
  .service_box {
    padding-left: 2em;
  }

  .service_box2 {
    padding: 1em 2em 1em;
  }

  .service_box7 {
    padding: 3em 5em;
  }

  .service_box13 {
    padding: 1em 0;
  }

  .service_box14 {
    padding: 1em 1em;
  }

  .service_box13 {
    height: 520px;
  }

  .parallax-window11 {
    min-height: 520px;
  }

  .service_box {
    height: auto;
  }
}

@media (max-width: 991px) {
  .service_box4 {
    width: 100%;
  }

  .parallax-window9 {
    padding: 2em;
  }

  .service_box {
    padding: 1em;
  }

  .service_box6 {
    padding: 0 1em;
  }

  .service_slick .slick-prev,
  .service_slick .slick-next {
    width: 60px;
    height: 60px;
  }

  .service_box14 {
    height: auto;
  }

  .service_box13 {
    height: 600px;
  }

  .parallax-window11 {
    min-height: 600px;
  }

  .service_box {
    height: auto;
  }

  .parallax-window12 .service_box10 {
    height: 500px;
  }

  .service_box9 {
    height: 600px;
  }

  .service_box5 {
    height: 850px;
  }

  .parallax-window10 {
    height: 1700px;
  }
}

@media (max-width: 767px) {
  .parallax-window10 {
    height: 500px;
  }

  .service_box7 {
    padding: 2em 2em;
  }

  .service_box8 {
    padding: 10px 0;
  }

  .parallax-window11 {
    min-height: 320px;
  }

  .service_box9 {
    height: auto;
  }

  .parallax-window12 {
    height: 500px;
  }

  .service_box14 {
    padding: 1em 2em;
  }

  .service_box {
    height: auto;
  }

  .service_box13 {
    padding: 2em 0;
    height: auto;
  }

  .service_box12 {
    padding: 1em 1em;
  }

  .service_box9 {
    padding: 0 1em;
  }

  .service_box5 {
    height: auto;
  }

  .parallax-window9 {
    height: 1000px;
    padding: 1em;
  }
}

@media (max-width: 480px) {
  .service_box9 {
    padding: 0 2em;
  }

  .parallax-window12 .service_box10 {
    height: auto;
    padding: 1em;
  }
}

@media (max-width: 320px) {
  .parallax-window12 {
    height: 548px;
  }
}

.parallax-window13 {
  min-height: 754px;
}

.travel_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3em 5em;
}

.travel_box h3 {
  color: #0AA4B9;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.travel_box p {
  font-size: 1rem;
}

.travel_box h4 {
  display: block;
  font-size: 1.25rem;
  margin: 20px 0;
}

.travel_box p {
  font-size: 1rem;
}

.travel_box2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3em 5em;
  background-color: #F5F5F5;
}

.travel_box2 h3 {
  color: #0AA4B9;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.travel_box2 p {
  font-size: 1rem;
}

.travel_box2 h4 {
  display: block;
  font-size: 1.25rem;
  margin: 20px 0;
}

.travel_box2 p {
  font-size: 1rem;
}

.travel_box2 dl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.travel_box2 dl dd {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 32%;
  height: 60px;
  background-color: #0AA4B9;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.travel_box2 dl dd a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.travel_box2 dl dd:nth-child(even) {
  background-color: #0BB99A;
}

.travel_box2 dl dd:hover,
.travel_box2 dl dd:focus {
  background-color: #263E60;
}

.travel_bg {
  background: no-repeat top center;
  background-size: cover;
  height: 600px;
  padding: 1em 5em;
  color: #fff;
}

.travel_bg h4 {
  font-size: 1.25rem;
  margin: 10px auto;
}

.travel_bg p {
  font-size: 1rem;
}

.travel_bg dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.travel_bg dl dd {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  width: 210px;
  height: 45px;
  text-align: center;
}

.travel_bg dl dd a {
  color: #0AA4B9;
}

.travel_bg dl dd:hover,
.travel_bg dl dd:focus {
  background-color: #263E60;
}

.travel_bg dl dd:hover a,
.travel_bg dl dd:focus a {
  color: #fff;
}

.travel_box3 {
  background-color: rgba(38, 62, 96, 0.7);
  font-size: 1rem;
  color: #fff;
  padding: 0 9em;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.travel_box3 h3 {
  font-size: 1.9rem;
  display: block;
}

.travel_box3 p {
  font-size: 1.25rem;
}

@media (max-width: 1584px) {
  .travel_bg dl dd {
    width: 180px;
  }
}

@media (max-width: 1527px) {
  .travel_box2 dl dd {
    width: 49%;
  }
}

@media (max-width: 1400px) {
  .travel_bg dl dd {
    width: 160px;
  }
}

@media (max-width: 1284px) {
  .travel_bg {
    padding: 1em 2em;
  }

  .travel_bg dl dd {
    width: 49%;
    margin: 10px 0;
  }
}

@media (max-width: 1199px) {
  .travel_box2 dl dd {
    width: 49%;
  }
}

@media (max-width: 1099px) {
  .travel_box2 dl dd {
    width: 100%;
  }

  .travel_bg {
    height: 800px;
  }

  .travel_box3 {
    padding: 0 3em;
  }
}

@media (max-width: 991px) {
  .travel_bg {
    height: auto;
  }
}

@media (max-width: 767px) {
  .parallax-window13 {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .travel_box {
    padding: 1em 2em;
  }

  .travel_box2 {
    padding: 1em 2em;
  }
}

@media (max-width: 375px) {
  .travel_bg dl dd {
    width: 100%;
  }
}

.news_box {
  margin: 20px auto;
}

.news_list {
  background-color: #0AA4B9;
  padding: 1em 0;
  margin-bottom: 2em;
}

.news_list ul {
  text-align: center;
  margin-bottom: 0;
}

.news_list ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

.news_list ul li a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
}

.news_list ul li a:hover,
.news_list ul li a:focus,
.news_list ul li a.active {
  color: #263E60;
}

.news_box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  overflow: hidden;
}

.news_box img {
  margin: 10px auto;
}

.news_box h3 {
  color: #0AA4B9;
  font-size: 1.25rem;
  margin-top: 10px;
}

.news_box span {
  display: block;
  margin: 10px auto;
  font-size: 0.9rem;
}

.news_box p {
  font-size: 1rem;
}

.back {
  display: block;
  background-color: #0AA4B9;
  width: 210px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  margin: 30px 0;
  text-decoration: none;
}

.back:hover,
.back:focus {
  background-color: #263E60;
}

.page_news {
  display: block;
  margin: 20px auto;
}

.page_news ul {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_news ul li {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  list-style: none;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #fff;
  border: 1px solid #0AA4B9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.page_news ul li a {
  display: block;
  color: #0AA4B9;
}

.page_news ul li img {
  margin: 0 auto;
}

.page_news ul li:first-child {
  background-color: #0AA4B9;
}

.page_news ul li:first-child a img {
  transform: rotate(180deg);
}

.page_news ul li:last-child {
  background-color: #0AA4B9;
}

.page_news ul li:hover,
.page_news ul li:focus {
  background-color: #0AA4B9;
}

.page_news ul li:hover a,
.page_news ul li:focus a {
  color: #fff;
}

.news_title {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.news_title h3 {
  color: #0AA4B9;
  font-size: 1.8rem;
}

.news_title span {
  display: inline-block;
  vertical-align: middle;
  margin: 10px auto;
  background-color: #263E60;
  color: #fff;
  padding: 0.5em 1em;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .news_box {
    text-align: center;
  }

  .news_box a {
    margin: 30px auto;
  }
}

/*# sourceMappingURL=style.css.map */