.introduce {
  display: flex;
  background-color: #fff;
  padding: 50px 15%;
}

.introduce .left {
  flex: 0 0 50%;
  transform: translate(-50%, 0%);
  opacity: 0;
}

.introduce .left .title {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  color: #2968a5;
}

.introduce .left p {
  font-size: 20px;
  line-height: 50px;
}

.introduce .right {
  position: relative;
  flex: 1;
  transform: translate(50%, 0%);
  opacity: 0;
}

.introduce .right .background {
  margin: 30px 0px 0px auto;
  display: flex;
  align-items: end;
  width: 340px;
  height: 227px;
  background: url(/assets/img/drillon_180730_40_1200x800.jpg) no-repeat center;
  background-size: 100%;
  transition: all 0.5s cubic-bezier(0.25, 1.75, 0.5, 1);
  border-radius: 10px;
}

.introduce .right .background:hover {
  background-size: 110%;
}

.introduce .right .background .subBackground {
  width: 280px;
  height: 158px;
  background: url(/assets/img/1542233719906.jpg) no-repeat center;
  transition: all 0.5s cubic-bezier(0.25, 1.75, 0.5, 1);
  background-size: 100%;
  border-radius: 10px;
  transform: translate(-50%, 50%);
}

.introduce .right .background .subBackground:hover {
  background-size: 110%;
}

.customersSays {
  padding: 50px 15%;
  text-align: center;
  background-color: #fff;
}

.customersSays-title,
.choice-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  transform: translate(0%, 50%);
  opacity: 0;
}

.customersSays-subtitle,
.choice-subtitle {
  margin: auto;
  font-size: 18px;
  color: #7a7b7b;
  width: 80%;
  transform: translate(0%, 50%);
  opacity: 0;
}

.customersSays .hide {
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.customersSays .hide .content {
  margin-top: 50px;
  display: flex;
  grid-gap: 20px;
}

.customersSays .hide .content .content-item {
  flex: 0 0 429px;
  height: 204px;
  border: 2px solid #2968a5;
  border-radius: 20px;
  padding: 10px;
  pointer-events: none;
  transform: translate(0%, 50%);
  opacity: 0;
}
.customersSays .hide .content .content-item .top {
  position: relative;
  display: flex;
  align-items: center;
  text-align: start;
  grid-gap: 10px;
  padding-bottom: 5px !important;
  border-bottom: 2px solid;
  border-image: linear-gradient(
      90deg,
      rgba(41, 104, 165, 0) 0%,
      rgba(41, 104, 165, 1) 50%,
      rgba(41, 104, 165, 0) 100%
    )
    1;
}

.customersSays .hide .content .content-item .top .left {
  width: 86.79px;
  height: 86.79px;
  overflow: hidden;
  border-radius: 100%;
}

.customersSays .hide .content .content-item .top .left img {
  width: 180%;
  object-fit: cover;
  transform: translate(-45px, -25px);
}

.customersSays .hide .content .content-item .top .right .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.customersSays .hide .content .content-item .top .right .subtitle {
  font-size: 12px;
  color: #757677;
}

.customersSays .hide .content .content-item .top span {
  position: absolute;
  font-size: 80px;
  right: -30px;
  color: #2968a5;
  opacity: 0.5;
}

.customersSays .hide .content .content-item .bottom {
  font-size: 12px;
  text-align: start;
  margin-top: 10px;
}

.choice {
  text-align: center;
  padding: 50px 15%;
  padding-bottom: 100px !important;
  background-color: #fff;
}

.choice-content {
  display: flex;
  justify-content: center;
  text-align: start;
  grid-gap: 20px;
  margin-top: 50px;
}

.choice-content .choice-item {
  flex: 1;
  padding: 15px;
  border: 2px solid #000;
  border-radius: 10px;
}

.choice-content .choice-item:first-child {
  transform: translate(-50%, 0%);
  opacity: 0;
}
.choice-content .choice-item:last-child {
  transform: translate(50%, 0%);
  opacity: 0;
}

.choice-content .choice-item .top img {
  width: 100px;
  height: 100px;
}

.choice-content .choice-item .top .title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}

.choice-content .choice-item .top p {
  font-size: 14px;
  padding: 20px 0px;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
  color: #656565;
}

.choice-content .choice-item .bottom .title {
  font-size: 40px;
  font-weight: 700;
}

.choice-content .choice-item .bottom .subtitle {
  font-size: 20px;
  color: #656565;
}

.choice-content .background {
  position: relative;
  flex: 1;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.choice-content .background img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.25, 1.75, 0.5, 1);
  transform: scale(1.1);
}

.choice-content .background:hover img {
  transform: scale(1.2);
}

.reservation {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 100px 15%;
  padding-bottom: 150px !important;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100dvw;
  height: 100dvh;
}

.footer {
  margin-top: -50px;
}

.reservation form {
  width: 578px;
  border: 2px solid #fff;
  padding: 30px;
  color: #fff;
  border-radius: 10px;
  transform: translate(80%, 0);
  opacity: 0;
}

.reservation form .title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 35px;
}

.reservation form label {
  display: block;
  width: 100%;
}

.reservation form label input {
  width: 100%;
  padding: 10px 5px;
  background: transparent;
  border: 1px solid #fff;
  font-size: 18px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.reservation form label input::placeholder {
  color: #fff;
}

.reservation form .text {
  font-size: 12px;
}

.reservation form button {
  display: block;
  margin: 19px 0 0 auto;
  padding: 8px 40px;
  background: #2968a5;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  color: #fff;
  border: none;
}

.window-backgorund {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .choice-content {
    flex-wrap: wrap;
  }
  .choice-content .choice-item:last-child {
    flex: 0 0 100%;
  }

  .reservation form {
    width: 100%;
  }

  .introduce {
    flex-direction: column;
  }

  .introduce .right .background {
    margin: 50px auto;
  }

  .introduce,
  .customersSays,
  .choice,
  .reservation {
    padding: 50px 10%;
  }

  .header-background p {
    width: 40%;
  }
}

@media (max-width: 780px) {
  .choice-content .choice-item {
    flex: 0 0 100%;
  }
  .introduce .right .background {
    justify-content: center;
  }

  .introduce .right .subBackground {
    transform: translate(0%, 50%) !important;
  }

  .content-item {
    flex: 0 0 300px !important;
  }

  .introduce,
  .customersSays,
  .choice,
  .reservation {
    padding: 50px 5%;
  }
  .header-background p {
    width: 50%;
  }
}

@media (max-width: 380px) {
  .introduce,
  .customersSays,
  .choice,
  .reservation {
    padding: 50px 0%;
  }
  .header-background p {
    width: 90%;
  }
}
