.page-banner {
  position: relative;
  margin-top: 100px;
  height: 55vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-banner__scroll {
  cursor: pointer;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translate(-50%, 0);
  border: 2px solid #BD9C69;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-banner__scroll svg {
  animation: downUp 3s linear infinite;
}
@keyframes downUp {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(6px);
  }
  70% {
    transform: translateY(6px);
  }
  80% {
    transform: translateY(6px);
  }
  90% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .page-banner {
    margin-top: 75px;
  }
}
@media (max-width: 575px) {
  .page-banner {
    height: 27vh;
  }
  .page-banner__scroll {
    transform: translate(-50%, 0) scale(0.6);
    bottom: 16px;
  }
}

.intro {
  padding-bottom: 5.2083333333vw;
}
.intro h1, .intro h2, .intro h3 {
  font-size: 2.2916666667vw;
  color: #BD9C69;
  letter-spacing: 6px;
  margin-bottom: 40px;
}
.intro p {
  color: #3F3E3E;
  font-size: 0.9375vw;
  letter-spacing: 0.09375vw;
  line-height: 2.3;
}
@media (max-width: 991px) {
  .intro::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(63, 62, 62, 0.15);
  }
  .intro h1, .intro h2, .intro h3 {
    font-size: 32px;
    letter-spacing: 5px;
  }
  .intro p {
    font-size: 16px;
    letter-spacing: 1.28px;
    line-height: 2.5;
  }
}

.quote {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 9.6354166667vw 40px;
  background-color: #5C5E7C;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}
.quote::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  height: 1px;
  width: 45%;
  background-color: #BD9C69;
}
.quote::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 0;
  height: 1px;
  width: 45%;
  background-color: #BD9C69;
}
.quote__icon {
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .quote {
    padding: 150px 30px;
  }
  .quote__title {
    font-size: 26px;
  }
  .quote__icon {
    margin-bottom: 25px;
  }
}

.cards__title {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cards:last-child {
    padding-bottom: 50px;
  }
  .cards__text {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cards:last-child {
    padding-bottom: 30px;
  }
}

.our {
  overflow: hidden;
}
.our__title {
  margin-bottom: 40px;
}
.our__description p {
  margin-bottom: 10px;
}
.our__right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.our__right-container {
  border-top: 1px solid #BD9C69;
  background-color: #FFFFFF;
  padding: 60px 45px 60px 72px;
}
@media (max-width: 991px) {
  .our {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .our__right {
    position: unset;
    transform: unset;
    border-top: 0;
  }
  .our__right-container {
    border-top: unset;
    padding: unset;
  }
}
@media (max-width: 575px) {
  .our__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }
}

.how__icon-container {
  position: relative;
  width: 100%;
  display: inline-block;
  max-width: 100px;
}
.how__icon-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.how__icon-container:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.how__title {
  margin-bottom: 4.1666666667vw;
}
.how__step {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.how__step-wrapper {
  position: relative;
  flex: 0 0 17%;
  text-align: center;
}
.how__step-wrapper::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../images/icon/icon-arrow-right.png);
  width: 49px;
  height: 19px;
}
.how__step-wrapper:last-child::before {
  content: unset;
}
.how__subtitle {
  font-size: 1.25vw;
  text-transform: uppercase;
  color: #BD9C69;
  letter-spacing: 2.16px;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .how__icon-container {
    position: relative;
    width: 100%;
    display: inline-block;
    max-width: 160px;
  }
  .how__icon-container > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .how__icon-container:before {
    content: "";
    display: block;
    padding-top: 87.5%;
  }
  .how__step {
    flex-wrap: wrap;
  }
  .how__step-wrapper {
    flex: 0 0 100%;
    margin-bottom: 100px;
  }
  .how__step-wrapper::before {
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../../images/icon/icon-arrow-down.png);
    height: 49px;
    width: 19px;
  }
  .how__step-wrapper:last-child {
    margin-bottom: 0;
  }
  .how__subtitle {
    font-size: 18px;
  }
}

.advantages__icon-container {
  position: relative;
  width: 100%;
  display: inline-block;
  max-width: 100px;
}
.advantages__icon-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.advantages__icon-container:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.advantages__card {
  padding: 0 50px;
  text-align: center;
}
.advantages__col {
  margin-bottom: 10.4166666667vw;
}
.advantages__col:nth-last-child(-n+2) {
  margin-bottom: 0;
}
.advantages__title {
  margin-bottom: 40px;
  letter-spacing: 0.15vw;
}
@media (max-width: 991px) {
  .advantages__card {
    padding: 0;
  }
  .advantages__col {
    margin-bottom: 100px;
  }
  .advantages__col:nth-last-child(2) {
    margin-bottom: 100px;
  }
  .advantages__title {
    margin-bottom: 30px;
    font-size: 26px;
    letter-spacing: 2.34px;
  }
}

/*# sourceMappingURL=services.css.map */
