/* Multilingual */
.dropdown.translate {
  padding: 10px 0;
}

.dropdown.translate li {
  text-align: center;
  font-size: 18px;
  padding: 10px;
  cursor: pointer;
}

.dropdown.translate li:hover {
  background: rgba(0, 0, 0, 0.05);
}

.dropdownTrigger[data-dropdown-id=language] {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  text-transform: uppercase;
}

[data-current-lang=en] .dropdown.translate li[data-switch-lang=en],
[data-current-lang=th] .dropdown.translate li[data-switch-lang=th] {
  color: rgb(73, 148, 236);
  background: transparent;
  cursor: default;
  opacity: 1;
}

/* Logo */
.textLogo {
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: 600;
}
.textLogo a {
  position: relative;

}
.textLogo a::before {
  content: 'app';
  position: absolute;
  right: -2px;
  top: 0;
  height: 18px;
  width: 24px;
  border-radius: 10%;
  font-size: 10px;
  background-color: #2196f3;
  transform: translate(100%, 0);
  display: flex;
  align-items: center;
  padding: 1px 4px 0;
}

/* Example Fake parallax transition */
.components h3 {
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 10px;
}

.components p.small {
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.1px;
  font-weight: 400;
  opacity: 0.8;
}

.components-flex .fix {
  padding-left: 40px;
}

@media screen and (min-width: 768px) {
  .components-flex .material-icons {
    position: absolute;
    top: 2px;
  }
}
@media screen and (min-width: 1024px) {
  .components .container {
    min-height: 1200px;
  }
}

/* image parallax effect */
@media screen and (min-width: 1024px) {
  .components-pics {
    max-width: none;
    position: absolute;
    top: -340px;
    -webkit-transform: translateZ(0);
    -webkit-transition: 10s cubic-bezier(0.23, 1.5, 0.36, 0.86);
    transition: 10s cubic-bezier(0.23, 1.5, 0.36, 0.86);
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
  }

  .components-pics.layer-2 {
    top: -505px;
    left: 70px;
  }

  .hidden {
    display: none;
  }

  .components-pics.layer-3 {
    top: -400px;
    left: 163px;
  }

  /* before */
  .slide.components.before .components-pics.layer-2 {
    -webkit-transform: translateY(95px);
    transform: translateY(95px);
  }

  .slide.components.before .components-pics.layer-3 {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  /* selected */
  .slide.components.selected .components-pics.layer-2,
.slide.components.selected .components-pics.layer-3 {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }

  /* after */
  .slide.components.after .components-pics.layer-2 {
    -webkit-transform: translateY(-95px);
    transform: translateY(-95px);
  }

  .slide.components.after .components-pics.layer-3 {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}

  /* background */
.background_img {
  background-image: url('https://res.cloudinary.com/dmv7iwlmq/image/upload/w_auto,f_auto,fl_awebp/v1729172295/bangkok-city-night-water.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}