.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f0f0f0;
  padding: 55px 45px;
}

.form__warn {
  font-size: 15px;
  color: #413c3c;
  line-height: 1.6;
  width: 100%;
  margin: 50px 0;
  text-align: center;
}

.form__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form__item {
  margin: 10px;
  background: #fff;
  color: #737070;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.form__item input {
  color: #737070;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: calc(100% - 130px);
}

.form__item input.check__box {
  min-width: 50px;
}

.form__text {
  resize: none;
  min-height: 200px;
}

@media (max-width: 768px) {
  .form {
    padding: 25px 15px;
  }
  .form__item {
    padding: 10px;
  }
  .form label,
  .form select,
  .form input,
  .form textarea {
    font-size: 14px;
  }
}

@media (max-width: 541px) {
  .form {
    padding: 0;
  }
  .form__item {
    min-width: 220px;
  }
  .form label,
  .form select,
  .form input,
  .form textarea {
    font-size: 12px;
  }
}

.labeltext {
  min-width: 130px;
  text-align: left;
}

.labeltext:before {
  content: '*';
  color: red;
  font-size: 16px;
  padding-right: 3px;
}

@media (max-width: 541px) {
  .labeltext {
    min-width: 80px;
  }
}

@media (max-width: 1025px) {
  .labeltext-verify {
    min-width: 60px;
  }
}

@media (max-width: 541px) {
  .labeltext-verify {
    min-width: 80px;
  }
}

@media (max-width: 1025px) {
  .input-verify {
    width: 100px;
  }
}

@media (max-width: 541px) {
  .input-verify {
    max-width: none !important;
  }
}

.agreewrap {
  display: block;
  position: relative;
  background: transparent;
  color: #737070;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.agreewrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.emp {
  font-weight: bold;
  color: red;
}

.input {
  padding-left: 20px;
}

.check__box {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #fff;
  max-width: 50px;
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.check__box:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 20px;
  border: solid #eee;
  border-width: 0 3px 3px 0;
  -webkit-transform: translate(-40%, -75%) rotate(45deg);
      -ms-transform: translate(-40%, -75%) rotate(45deg);
          transform: translate(-40%, -75%) rotate(45deg);
  opacity: 0;
}

.check__box:hover {
  background: #f2ca8e;
}

.check__box:checked {
  background: #E79F33;
}

.check__box:checked:after {
  opacity: 1;
}

@media (max-width: 541px) {
  .check__box {
    max-width: 50px !important;
  }
}

.check__label {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 180px;
  position: relative;
  width: 100%;
  font-size: 15px;
  line-height: 1.5;
  padding-left: 20px;
  text-align: left;
}

.check__label:before {
  content: '*';
  color: red;
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 16px;
  z-index: 1;
}

@media (max-width: 541px) {
  .check__label:before {
    font-size: 14px;
  }
}

.nopadding {
  background: transparent;
  padding: 0;
}

.verify-img {
  min-height: 30px;
}

@media (max-width: 541px) {
  .verify-img {
    min-height: none !important;
    min-width: 60px;
  }
}

.notice {
  border: 1px solid #737070;
  padding: 30px;
  line-height: 1.6;
  font-size: 15px;
  color: #737070;
  width: 100%;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media (max-width: 768px) {
  .notice {
    padding: 20px;
  }
}

.btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  height: 50px;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 14px;
}

.btn-refresh {
  cursor: pointer;
  font-size: 18px;
  background: transparent;
  color: #737070;
}

.btn-refresh:hover {
  color: #302d2d;
}

@media (max-width: 541px) {
  .btn-refresh {
    font-size: 16px;
  }
}

.btn-submit {
  background: #E79F33;
  color: #eee;
}

.btn-submit:hover {
  background: #e4941c;
}

.btn-clear {
  background: #211e1e;
  color: #eee;
}

.btn-clear:hover {
  background: #141212;
}

.contact-option {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 20px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  color: #737070;
  background: url("../images/arrow-down.png") no-repeat scroll right center transparent;
  padding-right: 14px;
}

.contact-option:-ms-expand {
  display: none;
}

.contact-option option {
  background: #fff;
  color: #737070;
}

.btn-refresh img {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .btn-refresh img {
    width: 14px;
    height: 14px;
  }
}

select::-ms-expand {
  display: none;
}

.mobile-nav {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #8d8989;
  position: fixed;
  width: 100%;
  height: 45px;
  top: 45px;
  white-space: nowrap;
  background: #413c3c;
  -webkit-box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.3);
  z-index: 50;
}

.mobile-nav ul {
  width: 100%;
  text-align: center;
}

.mobile-nav li {
  display: inline-block;
  margin: 0 10px;
}

.mobile-nav .active {
  color: #eee;
}

@media (max-width: 1025px) {
  .mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 541px) {
  .mobile-nav {
    font-size: 14px;
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

.mobile-nav::-webkit-scrollbar {
  width: 0 !important;
  display: none !important;
}

.mobile-nav-shadow {
  position: fixed;
  width: 100%;
  height: 45px;
  top: 45px;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.mobile-nav-shadow:before, .mobile-nav-shadow:after {
  content: '';
  position: absolute;
  height: 45px;
  width: 15px;
  top: 0;
}

.mobile-nav-shadow:before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.4)), to(transparent));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.4), transparent);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.4), transparent);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
}

.mobile-nav-shadow:after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.4)), to(transparent));
  background: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.4), transparent);
  background: -o-linear-gradient(right, rgba(0, 0, 0, 0.4), transparent);
  background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
}

.shadow-hover {
  opacity: 1;
}

.form__warn {
  margin: 0;
  margin-bottom: 20px;
}

.case {
  margin-bottom: 50px;
}

.case__header {
  width: 100%;
  text-align: center;
  padding: 90px 0;
}

.case__wrapper {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.case__img {
  min-height: 525px;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

.case__img > img {
  width: 100%;
  height: 100%;
}

.case__wrapper:nth-child(odd) .content__subtitle {
  text-align: left;
}

@media (max-width: 1440px) {
  .case__img {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .case__header {
    padding: 60px 30px;
  }
}

@media (max-width: 541px) {
  .case {
    margin-bottom: 0;
  }
  .case__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  .case__img {
    min-height: 1px;
    height: 207px;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

.header__title {
  font-size: 28px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .header__title {
    font-size: 20px;
  }
}

.header__subtitle {
  color: #737070;
}

.text-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  margin: 50px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1281px) {
  .text-box {
    margin: 20px 50px;
  }
}

@media (max-width: 1025px) {
  .text-box {
    margin: 50px 20px;
  }
}

@media (max-width: 541px) {
  .text-box {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

.content__start {
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 16px;
}


.text-box tr {
  line-height: 35px;
}

.text-box td {
  color: #737070;
  vertical-align: baseline;
}

.text-box td:first-child {
  white-space: nowrap;
}

.text-box td:last-child {
  color: #4e4949;
}

.content__img-start {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.content__end {
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.content__end.tal {
  text-align: left;
}

.content__title {
  width: 100%;
  font-size: 24px;
  margin-bottom: 20px;
}

.content__subtitle {
  width: 80%;
  color: #737070;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: right;
}

.content__footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__footer i {
  font-size: 20px;
}

.content__footer a {
  color: #413c3c;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.content__footer a:hover {
  color: #908686;
}

@media (max-width: 541px) {
  .content__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content__footer .caselink {
    display: none;
  }

  .content__subtitle{
    text-align: center !important;
  }
}

.content__footer .showphone {
  display: none;
}

@media (max-width: 541px) {
  .content__footer .showphone {
    display: block;
    margin-bottom: 10px;
  }
}

.content__footer .js-share-toggle:before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 5px;
  width: 0;
  height: 0;
  opacity: 0;
  border-style: solid;
  border-width: 0 7.5px 10px 7.5px;
  border-color: transparent transparent #413c3c transparent;
}

.content__footer .js-share-toggle.active:before {
  opacity: 1;
}

.content__footer .share {
  width: 300px;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -30px;
  background: #413c3c;
  color: #fff;
  display: none;
  z-index: 50;
}

.content__footer .share.active {
  display: block;
}

.content__footer .share a {
  color: #fff;
}

.content__footer .share a:hover {
  color: #737070;
}

.content__footer .share p {
  width: 58px;
}

@media (max-width: 541px) {
  .content__footer .share p {
    font-size: 14px;
  }
}

.content__footer .share p, .content__footer .share ul, .content__footer .share li {
  display: inline-block;
  vertical-align: middle;
}

.content__footer .share li + li {
  margin-left: 8px;
}

@media (max-width: 541px) {
  .content__footer .share {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .content__title {
    font-size: 16px;
  }
  .content__subtitle {
    font-size: 14px;
    width: 90%;
  }
  .content__start {
    font-size: 14px;
  }
}

@media (max-width: 541px) {
  .content__img-start {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .content__end {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .content__start {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .content__subtitle {
    width: 90%;
    text-align: center;
  }
  .content__start {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .text-box tr {
    line-height: 25px;
  }
  .text-box td{
    font-size: 14px;
  }

  .case__wrapper:last-child .text-box{
    text-align: left;
  }
}

.social {
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #413c3c;
}

.social a {
  cursor: pointer;
}

.social > li + li {
  margin-left: 10px;
}

.social > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
}

@media (max-width: 541px) {
  .social {
    padding-right: 0;
  }
}

.caselink {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-left: 20px;
  color: #413c3c;
  font-weight: bold;
}

.caselink::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #a6a3a3;
}

.map-wrap {
  width: 100%;
  height: 600px;
  background: #737070;
}

@media (max-width: 541px) {
  .map-wrap {
    height: 300px;
  }
}

#map {
  width: 100%;
  height: 100%;
}

.container-full {
  width: 100%;
  padding: 65px 0;
  text-align: center;
}

@media (max-width: 541px) {
  .container-full {
    padding: 30px 0;
  }
}

.container-button {
  position: relative;
  margin: 0 auto;
  max-width: 1370px;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .container-button {
    max-width: 800px;
  }
}

@media (max-width: 541px) {
  .container-button {
    margin: 0;
    max-width: 100%;
    padding: 0;
  }
}

.hover-blocker {
  width: 100%;
  position: absolute;
  pointer-events: all;
  z-index: 5;
}

@media (max-width: 541px) {
  .hover-blocker {
    display: none;
    pointer-events: none;
  }
}

.hover-blocker.blocker-top {
  height: 90px;
  left: 0;
  top: 0;
}

@media (max-width: 1281px) {
  .hover-blocker.blocker-top {
    height: 110px;
  }
}

@media (max-width: 1025px) {
  .hover-blocker.blocker-top {
    height: 90px;
  }
}

@media (max-width: 768px) {
  .hover-blocker.blocker-top {
    height: 70px;
  }
}

.hover-blocker.blocker-bottom {
  height: 170px;
  left: 0;
  bottom: 0;
}

@media (max-width: 1281px) {
  .hover-blocker.blocker-bottom {
    height: 180px;
  }
}

@media (max-width: 1025px) {
  .hover-blocker.blocker-bottom {
    height: 155px;
  }
}

@media (max-width: 768px) {
  .hover-blocker.blocker-bottom {
    height: 110px;
  }
}

.mask {
  position: absolute;
  bottom: 0;
  width: 101%;
  height: 100%;
  background: url("../images/showcase-mask.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 541px) {
  .mask {
    display: none;
  }
}

@-webkit-keyframes stretch {
  0% {
    width: 190px;
    height: 80px;
  }
  50% {
    width: 190px;
    height: 155px;
  }
  100% {
    width: 425px;
    height: 155px;
  }
}

@keyframes stretch {
  0% {
    width: 190px;
    height: 80px;
  }
  50% {
    width: 190px;
    height: 155px;
  }
  100% {
    width: 425px;
    height: 155px;
  }
}

@-webkit-keyframes stretch-mobile {
  0% {
    width: 190px;
    height: 80px;
  }
  50% {
    width: 220px;
    height: 130px;
  }
  100% {
    width: 300px;
    height: 130px;
  }
}

@keyframes stretch-mobile {
  0% {
    width: 190px;
    height: 80px;
  }
  50% {
    width: 220px;
    height: 130px;
  }
  100% {
    width: 300px;
    height: 130px;
  }
}

.btn__reserver {
  padding: 15px 50px;
  color: #eee;
  background: #302d2d;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.btn__reserver:hover {
  background: #5c5454;
}

.btn__list {
  font-family: 'Open Sans', sans-serif;
  color: #737070;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 15px;
}

.btn__list:hover {
  color: #a6a3a3;
}

.btn__move {
  display: inline-block;
  position: relative;
  color: #a6a3a3;
  height: 80px;
  padding: 30px;
  background: rgba(60, 55, 55, 0.9);
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.btn__move p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

@media (min-width: 541px) {
  .btn__move:hover {
    background: #3c3737;
  }
}

@media (max-width: 541px) {
  .btn__move {
    background: rgba(60, 55, 55, 0.7);
  }
  .btn__move:hover {
    background: rgba(60, 55, 55, 0.9);
  }
}

.btn__move-inner {
  position: relative;
  width: auto;
}

.btn__move-inner span {
  white-space: nowrap;
}

@media (max-width: 541px) {
  .btn__move-inner span {
    color: #ccc;
  }
}

.btn__move-inner span i {
  padding-bottom: 5px;
}

.btn__move-inner span i:before {
  font-size: 70%;
}

.btn__prev {
  text-align: right;
}

.btn__prev p {
  margin-right: 30px;
  text-align: right;
  font-size: 14px;
}

.btn__next {
  text-align: left;
}

.btn__next p {
  margin-left: 30px;
  text-align: left;
  font-size: 14px;
}

@media (max-width: 541px) {
  .btn__move {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
  }
  .btn__move > i {
    display: none;
  }
  .btn__prev {
    text-align: left;
  }
  .btn__prev .btn__move-inner {
    right: initial;
  }
  .btn__move-inner i {
    display: none;
  }
}

.hr {
  width: 100%;
  height: 1px;
  background: #a6a3a3;
}

.move {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  position: relative;
  -webkit-transition: -webkit-box-flex 0.5s;
  transition: -webkit-box-flex 0.5s;
  -o-transition: flex 0.5s;
  transition: flex 0.5s;
  transition: flex 0.5s, -webkit-box-flex 0.5s, -ms-flex 0.5s;
  height: 100%;
}

@media (min-width: 541px) {
  .move:hover {
    -webkit-box-flex: 2.3;
        -ms-flex-positive: 2.3;
            flex-grow: 2.3;
  }
  .move:hover .btn__move {
    -webkit-animation: stretch 0.6s both;
            animation: stretch 0.6s both;
    background: #3c3737;
  }
  .move:hover .btn__move i {
    opacity: 0;
  }
  .move:hover .btn__move p {
    opacity: 1;
    -webkit-transition: opacity 0.5s 0.6s;
    -o-transition: opacity 0.5s 0.6s;
    transition: opacity 0.5s 0.6s;
  }
  .move:hover .btn__move-inner {
    -webkit-transform: translateY(35px);
        -ms-transform: translateY(35px);
            transform: translateY(35px);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .move:hover .imgLiquidFill {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@media (min-width: 541px) and (max-width: 768px) {
  .move:hover {
    -webkit-box-flex: 1.8;
        -ms-flex-positive: 1.8;
            flex-grow: 1.8;
  }
  .move:hover .btn__move {
    -webkit-animation: stretch-mobile 0.6s both;
            animation: stretch-mobile 0.6s both;
  }
  .move:hover .btn__move-inner {
    -webkit-transform: translateY(25px);
        -ms-transform: translateY(25px);
            transform: translateY(25px);
  }
  .move:hover .btn__next p {
    margin-left: 50px;
  }
  .move:hover .btn__prev p {
    margin-right: 50px;
  }
}

@media (min-width: 541px) and (max-width: 768px) {
  .move:hover .btn__move p {
    display: none;
  }
}

@media (min-width: 541px) {
  .move.active {
    -webkit-box-flex: 2.3;
        -ms-flex-positive: 2.3;
            flex-grow: 2.3;
  }
  .move.active .btn__move {
    -webkit-animation: stretch 0.6s both;
            animation: stretch 0.6s both;
    background: #3c3737;
  }
  .move.active .btn__move i {
    opacity: 0;
  }
  .move.active .btn__move p {
    opacity: 1;
    -webkit-transition: opacity 0.5s 0.6s;
    -o-transition: opacity 0.5s 0.6s;
    transition: opacity 0.5s 0.6s;
  }
  .move.active .btn__move-inner {
    -webkit-transform: translateY(35px);
        -ms-transform: translateY(35px);
            transform: translateY(35px);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  .move.active .imgLiquidFill {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@media (min-width: 541px) and (max-width: 768px) {
  .move.active {
    -webkit-box-flex: 1.8;
        -ms-flex-positive: 1.8;
            flex-grow: 1.8;
  }
  .move.active .btn__move {
    -webkit-animation: stretch-mobile 0.6s both;
            animation: stretch-mobile 0.6s both;
  }
  .move.active .btn__move-inner {
    -webkit-transform: translateY(25px);
        -ms-transform: translateY(25px);
            transform: translateY(25px);
  }
  .move.active .btn__next p {
    margin-left: 50px;
  }
  .move.active .btn__prev p {
    margin-right: 50px;
  }
}

@media (min-width: 541px) and (max-width: 768px) {
  .move.active .btn__move p {
    display: none;
  }
}

.move__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 600px;
  width: 100%;
}

@media (max-width: 1025px) {
  .move__wrap {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .move__wrap {
    height: 350px;
  }
}

@media (max-width: 541px) {
  .move__wrap {
    height: 200px;
  }
}

.move__prev .move__content {
  right: 0;
}

@media (min-width: 541px) {
  .move__prev .move__content-place {
    right: 0;
  }
}

.move__next .move__content {
  left: 0;
}

.move__next .move__content-place {
  left: 0;
}

@media (min-width: 541px) {
  .move__content-place {
    position: absolute;
    top: 47%;
  }
}

.move__content {
  z-index: 10;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.move__content i {
  pointer-events: none;
}

.move__title {
  padding-top: 30px;
  color: #eee;
  letter-spacing: 2px;
}

.move__img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.move__img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}

.move__imginner {
  width: 100%;
  height: 100px;
  position: relative;
}

@media (max-width: 541px) {
  .move__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .move__content {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .move__title {
    padding: 0;
  }
  .move__img {
    height: 100px;
  }
}

.pic-full {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.pic-full::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.move__img-hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.reserv-list {
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

.reserv-list.section-container {
  padding-bottom: 0;
}

.reserv-list form {
  padding-bottom: 0;
}

.container-back {
  padding: 50px 0;
}

.reserv-wrap {
  padding: 0;
  background: #f0f0f0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 1s, padding 0.5s;
  -o-transition: max-height 1s, padding 0.5s;
  transition: max-height 1s, padding 0.5s;
}

.reserv-wrap-active {
  padding-bottom: 65px;
  max-height: 2500px;
}

.reserv-wrap-active .reserv-list {
  opacity: 1;
}

@media (max-width: 541px) {
  .hide-phone {
    display: none;
  }
}

.show-phone {
  display: none;
  color: #eee;
  position: absolute;
  right: 25px;
}

.show-phone:before {
  font-size: 20px;
}

@media (max-width: 541px) {
  .show-phone {
    display: block;
  }
}

.text-align-left {
  text-align: left;
}

.imgLiquidFill {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.new-case .banner{
  background-color: #302D2D;
  padding-top: 40px;
}

@media (max-width: 1025px) {
  .new-case .banner {
    padding-top: 0;
  }
}

.banner__video {
  position: relative;
  width: 100%;
  padding-bottom: 42.16%;
  background-color: #302D2D;
}

.screen {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.screen iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.screen .vp-player-layout {
  width: 100% !important;
  height: 100%;
}

.screen.active {
  opacity: 1;
}
