@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  scroll-behavior: smooth;
}

body, html, p, button {
  margin: 0;
  padding: 0;
  font-family: "Kanit", sans-serif;
}

h2 {
  font-weight: 600;
}

p, a, i {
  font-weight: 300;
}

* {
  box-sizing: border-box;
}

content {
  display: block;
}

body .slider {
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  display: inline-table;
}
body .slider .image-container {
  border-radius: 10px;
  display: flex;
  flex-flow: row;
  justify-content: center;
  margin: auto;
  position: relative;
  display: -webkit-box;
  height: 428px;
  width: 100%;
}
body .slider .image-container .image-entry {
  display: flex;
  flex-flow: row;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 428px;
  overflow: hidden;
}
body .slider .image-container .image-entry img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(75%) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a' x='0' y='0' width='1' height='1' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='4' result='b'/%3E%3CfeMorphology operator='dilate' radius='4'/%3E %3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='b'/%3E%3C/feMerge%3E%3C/filter%3E %3C/svg%3E#a");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1000px) {
  body .slider .image-container .image-entry img {
    filter: blur(5px) brightness(75%);
    scale: 1.1;
  }
}
body .slider .image-container .image-entry .text-container {
  position: absolute;
  margin-left: 50px;
  width: 50%;
}
body .slider .image-container .image-entry .text-container h2, body .slider .image-container .image-entry .text-container p {
  color: #fff;
  text-shadow: 0 1px 0 #ccc;
}
body .slider .image-container .image-entry .text-container h2 {
  font-size: 30px;
}
body .slider .image-container .image-entry .text-container p {
  font-size: 20px;
  margin-top: 10px;
}
body .slider .image-jumper {
  margin-top: -25px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
}
body .slider .image-jumper .jumper {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  transform: scale(0.7);
  opacity: 0.8;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.082), 0 6px 20px 0 rgba(0, 0, 0, 0.13);
}
body .slider .image-jumper .jumper.active {
  transform: scale(1);
  opacity: 1;
  transition: 0.4s;
}
body main {
  padding: 30px;
}
body main p {
  font-size: 18px;
}
body main .reviews {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 20px;
}
body main .reviews .review {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  overflow-wrap: anywhere;
  max-width: 300px;
  min-height: 200px;
  padding: 15px;
}
body main .reviews .review h2 {
  margin: 0;
}
body main .reviews .review .stars {
  font-size: 18px;
  color: goldenrod;
  margin-bottom: 12px;
}
@media screen and (max-width: 1000px) {
  body main .reviews {
    flex-direction: column;
    gap: 30px;
  }
}