@keyframes point_pin {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes point_circle {
  0% {
    width: 15px;
    height: 9px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 48px;
    height: 30px;
    opacity: 0;
  }
}
/* ---------------contact-section START--------------- */
.contact-section {
  overflow: hidden;
}
.contact-section .contact-wrap .map-box {
  width: 100%;
  height: 500px;
  box-sizing: border-box;
  border: 1px solid #EEE;
  opacity: 0;
  transition: opacity 1.5s;
}
.contact-section .contact-wrap .map-box svg {
  display: none;
}
.contact-section .contact-wrap .map-box > div {
  width: 100% !important;
  height: 100% !important;
}
.contact-section .contact-wrap .map-box > div .wrap_map {
  width: 100% !important;
  height: 100% !important;
}
.contact-section .contact-wrap .map-box > div .wrap_controllers {
  display: none;
}
.contact-section .contact-wrap .map-box > div > div:nth-of-type(1) > div > div:nth-last-of-type(1) > div.point-pin {
  display: block;
  width: 45px;
  transition-timing-function: ease;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-name: point_pin;
}
.contact-section .contact-wrap .map-box > div > div:nth-of-type(1) > div > div:nth-last-of-type(1) > div.point-pin .point-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 27px;
  display: block;
  box-sizing: border-box;
  border: 1px solid rgba(29, 32, 136, 0.7);
  width: 15px;
  height: 9px;
  border-radius: 100%;
  background-color: rgba(29, 32, 136, 0.3);
  transition-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-name: point_circle;
}
.contact-section .contact-wrap .map-box > div > div:nth-of-type(1) > div > div:nth-last-of-type(1) > div img {
  z-index: 1;
  width: 100% !important;
  height: auto !important;
  pointer-events: visible;
}
.contact-section .contact-wrap .map-box > div > div:nth-last-of-type(1) {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.contact-section .contact-wrap .map-box > div > div:nth-last-of-type(1) > div {
  pointer-events: visible;
  left: unset !important;
  right: 5px;
  top: 50% !important;
  transform: translateY(-50%);
}
.contact-section .contact-wrap .contact-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 30px;
}
.contact-section .contact-wrap .contact-box > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 50px 25px;
  text-align: center;
  opacity: 0;
  transition: opacity 1.5s;
}
.contact-section .contact-wrap .contact-box > div:nth-of-type(1) {
  transition-delay: 0.2s;
}
.contact-section .contact-wrap .contact-box > div:nth-of-type(2) {
  transition-delay: 0.4s;
}
.contact-section .contact-wrap .contact-box > div .tit {
  margin-bottom: 25px;
}
.contact-section .contact-wrap .contact-box > div .desc {
  line-height: 150%;
}
.contact-section .contact-wrap .contact-box > div .desc + .tit {
  margin-top: 50px;
}
.contact-section .contact-wrap .contact-box > div .btn-list + .tit {
  margin-top: 50px;
}
.contact-section .contact-wrap .contact-box > div .inner + .inner {
  margin-top: 50px;
}
.contact-section .contact-wrap .contact-box > div .btn-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-section .contact-wrap .contact-box > div .btn-list li {
  display: flex;
  justify-content: center;
  width: 34%;
}
.contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(2n+1) {
  justify-content: flex-end;
}
.contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(2n+2) {
  justify-content: flex-start;
  margin-left: 20px;
}
.contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(3), .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(4) {
  margin-top: 20px;
}
.contact-section .contact-wrap .contact-box > div .btn-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 45px;
  box-sizing: border-box;
  padding: 0 27px;
  border: 1px solid #FFF;
  overflow: hidden;
  white-space: nowrap;
}
.contact-section .contact-wrap .contact-box > div .btn-download::before {
  content: "";
  position: absolute;
  left: -125%;
  top: 0;
  display: block;
  width: 110%;
  height: 100%;
  background-color: #FFF;
  transform: skew(20deg) scaleX(1.1);
  transition: left 0.5s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.contact-section .contact-wrap .contact-box > div .btn-download .text {
  position: relative;
  transition: color 0.5s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.contact-section .contact-wrap .contact-box > div .btn-download .text i {
  font-size: 0.9em;
}
.contact-section .contact-wrap .contact-box .left {
  width: calc(33.3333333333% - 10px);
  border-radius: 35px 0 35px 35px;
}
.contact-section .contact-wrap .contact-box .right {
  width: calc(66.6666666667% - 10px);
  border-radius: 35px 0 35px 0;
}
.contact-section.active .contact-wrap .map-box {
  opacity: 1;
}
.contact-section.active .contact-wrap .contact-box > div {
  opacity: 1;
}

/* ---------------contact-section END--------------- */
/* 

*/
/* ---------------media query START--------------- */
@media screen and (min-width: 991.9px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .contact-box > div .btn-download:hover::before {
    left: 0;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 1600px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .map-box {
    height: 475px;
  }
  .contact-section .contact-wrap .contact-box {
    margin-top: 28px;
  }
  .contact-section .contact-wrap .contact-box > div {
    padding: 47px 23.5px;
  }
  .contact-section .contact-wrap .contact-box > div .tit {
    margin-bottom: 23.5px;
  }
  .contact-section .contact-wrap .contact-box > div .desc + .tit {
    margin-top: 47px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list + .tit {
    margin-top: 47px;
  }
  .contact-section .contact-wrap .contact-box > div .inner + .inner {
    margin-top: 47px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(2n+2) {
    margin-left: 17px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(3), .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(4) {
    margin-top: 17px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-download {
    height: 43px;
    padding: 0 23px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 1350px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .map-box {
    height: 450px;
  }
  .contact-section .contact-wrap .contact-box {
    margin-top: 26px;
  }
  .contact-section .contact-wrap .contact-box > div {
    padding: 45px 22.5px;
  }
  .contact-section .contact-wrap .contact-box > div .tit {
    margin-bottom: 22.5px;
  }
  .contact-section .contact-wrap .contact-box > div .desc {
    line-height: 150%;
  }
  .contact-section .contact-wrap .contact-box > div .desc + .tit {
    margin-top: 45px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list + .tit {
    margin-top: 45px;
  }
  .contact-section .contact-wrap .contact-box > div .inner + .inner {
    margin-top: 45px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(2n+2) {
    justify-content: flex-start;
    margin-left: 15px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(3), .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(4) {
    margin-top: 15px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-download {
    height: 40px;
    padding: 0 20px;
  }
  .contact-section .contact-wrap .contact-box .left {
    width: calc(33.3333333333% - 9px);
    border-radius: 33px 0 33px 33px;
  }
  .contact-section .contact-wrap .contact-box .right {
    width: calc(66.6666666667% - 9px);
    border-radius: 33px 0 33px 0;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .map-box {
    height: 425px;
  }
  .contact-section .contact-wrap .contact-box {
    margin-top: 23px;
  }
  .contact-section .contact-wrap .contact-box > div {
    padding: 43px 21.5px;
  }
  .contact-section .contact-wrap .contact-box > div .tit {
    margin-bottom: 21.5px;
  }
  .contact-section .contact-wrap .contact-box > div .desc + .tit {
    margin-top: 43px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list + .tit {
    margin-top: 43px;
  }
  .contact-section .contact-wrap .contact-box > div .inner + .inner {
    margin-top: 43px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li {
    width: calc(50% - 6.5px);
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(2n+2) {
    margin-left: 13px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(3), .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(4) {
    margin-top: 13px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-download {
    height: 37px;
    padding: 0 17px;
  }
  .contact-section .contact-wrap .contact-box .left {
    width: calc(33.3333333333% - 8px);
    border-radius: 30px 0 30px 30px;
  }
  .contact-section .contact-wrap .contact-box .right {
    width: calc(66.6666666667% - 8px);
    border-radius: 30px 0 30px 0;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .map-box {
    height: 400px;
  }
  .contact-section .contact-wrap .contact-box {
    margin-top: 21px;
  }
  .contact-section .contact-wrap .contact-box > div {
    padding: 40px 20px;
  }
  .contact-section .contact-wrap .contact-box > div .tit {
    margin-bottom: 20px;
  }
  .contact-section .contact-wrap .contact-box > div .desc + .tit {
    margin-top: 40px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list + .tit {
    margin-top: 40px;
  }
  .contact-section .contact-wrap .contact-box > div .inner + .inner {
    margin-top: 40px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-download {
    color: #1d2088 !important;
    background-color: #FFF;
  }
  .contact-section .contact-wrap .contact-box > div .btn-download::before {
    display: none;
  }
  .contact-section .contact-wrap .contact-box .left {
    width: calc(33.3333333333% - 7px);
    border-radius: 27px 0 27px 27px;
  }
  .contact-section .contact-wrap .contact-box .right {
    width: calc(66.6666666667% - 7px);
    border-radius: 27px 0 27px 0;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 850px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .map-box {
    height: 350px;
  }
  .contact-section .contact-wrap .contact-box {
    margin-top: 19px;
  }
  .contact-section .contact-wrap .contact-box > div {
    padding: 35px 17.5px;
  }
  .contact-section .contact-wrap .contact-box > div .tit {
    margin-bottom: 17.5px;
  }
  .contact-section .contact-wrap .contact-box > div .desc + .tit {
    margin-top: 35px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list + .tit {
    margin-top: 35px;
  }
  .contact-section .contact-wrap .contact-box > div .inner + .inner {
    margin-top: 35px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-download {
    height: 35px;
    padding: 0 15px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 750px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .contact-box {
    flex-direction: column;
  }
  .contact-section .contact-wrap .contact-box .left, .contact-section .contact-wrap .contact-box .right {
    width: 100%;
  }
  .contact-section .contact-wrap .contact-box .left .desc .brs {
    display: none;
  }
  .contact-section .contact-wrap .contact-box .right {
    margin-top: 19px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 600px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .map-box {
    height: 300px;
  }
  .contact-section .contact-wrap .contact-box {
    margin-top: 17px;
  }
  .contact-section .contact-wrap .contact-box > div {
    padding: 30px 15px;
  }
  .contact-section .contact-wrap .contact-box > div .tit {
    margin-bottom: 15px;
  }
  .contact-section .contact-wrap .contact-box > div .desc + .tit {
    margin-top: 30px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list + .tit {
    margin-top: 30px;
  }
  .contact-section .contact-wrap .contact-box > div .inner + .inner {
    margin-top: 30px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li {
    width: calc(50% - 5px);
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(2n+2) {
    margin-left: 10px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(3), .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(4) {
    margin-top: 10px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-download {
    height: 33px;
    padding: 0 13px;
  }
  .contact-section .contact-wrap .contact-box .left {
    border-radius: 25px 0 25px 25px;
  }
  .contact-section .contact-wrap .contact-box .right {
    border-radius: 25px 0 25px 0;
    margin-top: 17px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .map-box {
    height: 250px;
  }
  .contact-section .contact-wrap .contact-box {
    margin-top: 15px;
  }
  .contact-section .contact-wrap .contact-box > div {
    padding: 25px 12.5px;
  }
  .contact-section .contact-wrap .contact-box > div .tit {
    margin-bottom: 12.5px;
  }
  .contact-section .contact-wrap .contact-box > div .desc + .tit {
    margin-top: 25px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list + .tit {
    margin-top: 25px;
  }
  .contact-section .contact-wrap .contact-box > div .inner + .inner {
    margin-top: 25px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-download {
    height: 30px;
    padding: 0 11px;
  }
  .contact-section .contact-wrap .contact-box .left {
    border-radius: 23px 0 23px 23px;
  }
  .contact-section .contact-wrap .contact-box .right {
    border-radius: 23px 0 23px 0;
    margin-top: 15px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 350px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .map-box {
    height: 230px;
  }
  .contact-section .contact-wrap .contact-box {
    margin-top: 13px;
  }
  .contact-section .contact-wrap .contact-box > div {
    padding: 20px 10px;
  }
  .contact-section .contact-wrap .contact-box > div .tit {
    margin-bottom: 10px;
  }
  .contact-section .contact-wrap .contact-box > div .desc + .tit {
    margin-top: 20px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list + .tit {
    margin-top: 20px;
  }
  .contact-section .contact-wrap .contact-box > div .inner + .inner {
    margin-top: 20px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li {
    width: calc(50% - 3.5px);
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(2n+2) {
    margin-left: 7px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(3), .contact-section .contact-wrap .contact-box > div .btn-list li:nth-of-type(4) {
    margin-top: 7px;
  }
  .contact-section .contact-wrap .contact-box > div .btn-download {
    padding: 0 10px;
  }
  .contact-section .contact-wrap .contact-box .left {
    border-radius: 20px 0 20px 20px;
  }
  .contact-section .contact-wrap .contact-box .right {
    border-radius: 20px 0 20px 0;
    margin-top: 13px;
  }
  /* ---------------contact-section END--------------- */
}
/* ---------------media query END--------------- */