@font-face {
  font-family: "Sukhumvit Set";
  src: url("../assets/SukhumvitSet-Text.woff2") format("woff2"),
    url("../assets/SukhumvitSet-Text.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html,
body {
  margin: 0;
  /* background-color: #b1e3ef; */
  background-color: #f98150;
  position: relative;
  overflow-x: hidden;
}

body {
  background: url("../assets/desktop-background.jpg") top center no-repeat;
  height: 100vh;
  padding-bottom: 30px;
  background-size: cover;
  background-attachment: fixed;
  display: table-cell;
  vertical-align: middle;
  width: 100vw;
  overflow: hidden;
}
.btn-home {
  max-width: 150px;
}
.desktop-button-container {
  margin-top: 14px;
  padding-right: 6.5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-button-container {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button {
  text-decoration: none;
  font-size: 14px;
  font-family: "Sukhumvit Set", sans-serif;
  color: #853d03;
  padding: 4px 22px;
  /* border: #976925 solid 1px; */
  border: #853d03 solid 1px;
  position: relative;
  overflow: hidden;
  /* background-color: #fbf1c1; */
  background-color: #fbeb9c;
  border-radius: 40px;
  opacity: 1;
  transition: background-color 0.5s ease 0.1s, border-radius 0.6s ease 0.1s,
    opacity 0.5s ease 0.1s;
}
.button::before {
  position: absolute;
  content: "";
  bottom: -100px;
  left: 0;
  width: 60px;
  height: 1000px;
  transition: all 0.6s ease-in-out;
  transform-origin: bottom;
  transform: rotateZ(-40deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 0.4),
    transparent
  );
  transition: 0.7s;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.button:hover::before {
  left: 200%;
}
.button:hover {
  opacity: 1;
  /* background-color: #5bbfd9; */
  background-color: #f2d26d50;
  color: #853d03;
  /* color: #0f3c73; */
}
@media (max-width: 775.98px) {
  .mobile-logo-container {
    position: relative;
    width: 100%;
    text-align: center;
  }
  img.mobile-logo {
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  body {
    background: url("../assets/mobile-background.jpg") top center no-repeat;
    height: 100vh;
    padding-bottom: 30px;
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    overflow: auto;
    overflow-x: hidden;
    vertical-align: top;
  }
  .mobile-logo-container {
    max-width: 16vw;
    position: absolute;
    top: 41px;
    right: 30px;
    z-index: 999;
  }
  img.mobile-logo {
    width: 100%;
  }
  img.btn-home {
    max-width: 150px;
  }
  img.mobile-image {
    max-height: 34vh;
  }
  img.mobile-content-image {
    max-height: 43vh;
  }
  img.mobile-banner-image {
    max-width: 50%;
  }
  .mobile-footer {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    height: 30px;
    width: 100vw;
    background-color: #f98150;
    /* background: #b1e3ef; */
  }
  .button {
    color: #853d03;
    border: #853d03 solid 1px;
    opacity: 1;
    /* background-color: #5bbfd9; */
    background-color: #fbeb9c;
    font-size: 12px;
  }
}
