:root {
  --columnCountMax: 4;
  --layoutWidth: 1080px;
  --guideSolidColor: rgba(66,71,112,0.3);
  --guideDashedColor: rgba(66,71,112,0.3);
}

body {
  min-height: 100vh;
  min-width: 100vw;
  background-image: url(../img/bg_mobile.png);
  background-position: bottom;
  background-size: cover;
  color: #fff;
  background-color: #000e21;
}
@media only screen and (min-width: 1200px) {
  body {
    background-image: url(../img/bg_vt.png);
    min-height: 100vh;
    background-position: center;
  }
}

a {
  color: #fff;
}

.main-content {
  font-family: "DM Sans", sans-serif;
  max-width: var(--layoutWidth);
  margin: 20px 20px 0;
  position: relative;
  z-index: 10;
}
@media only screen and (min-width: 1200px) {
  .main-content {
    margin: 40px auto 0;
  }
}

.logo-brand {
  background: linear-gradient(87deg, #b018de 0%, rgba(224, 26, 148, 0.6) 65%, rgba(252, 10, 191, 0.644) 100%);
  clip-path: polygon(20% 14%, 95% 0, 75% 90%, 0% 95%);
  padding: 20px 40px;
  transition: all 0.3s cubic-bezier(0.67, 0, 0.285, 1);
}
.logo-brand:hover {
  background: linear-gradient(87deg, #de6218 0%, rgba(148, 224, 26, 0.6) 65%, rgba(88, 211, 6, 0.596) 100%);
  clip-path: polygon(14% 14%, 95% 0, 80% 90%, 0% 95%);
}

.logo {
  height: 32px;
}
@media only screen and (min-width: 1200px) {
  .logo {
    height: 48px;
  }
}

.menu > a {
  margin-left: 2rem;
}

.section-info {
  margin-top: 100px;
  max-width: 640px;
}
@media only screen and (min-width: 1200px) {
  .section-info {
    margin-top: 80px;
  }
}
.section-info .title-site {
  font-size: 40px;
}
@media only screen and (min-width: 1200px) {
  .section-info .title-site {
    font-size: 64px;
  }
}
.section-info .sub-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 20px;
  font-weight: 100;
}

.mask-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.mask-bg .guides-container {
  display: grid;
  grid: 1fr/repeat(var(--columnCountMax), 1fr);
  position: relative;
  grid-auto-flow: column;
  max-width: var(--layoutWidth);
  height: 100%;
  margin: 0 auto;
}
.mask-bg .guides-container > .guides-guide {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--guideDashedColor), var(--guideDashedColor) 50%, transparent 0, transparent);
  background-size: 1px 8px;
}
.mask-bg .guides-container > .guides-guide:first-of-type, .mask-bg .guides-container > .guides-guide:last-of-type {
  background: var(--guideSolidColor);
}
.mask-bg .guides-container > .guides-guide:last-of-type {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.wrap-scroll-product {
  display: grid !important;
  grid-auto-flow: column;
  overflow-x: auto;
  overflow-y: hidden;
  overflow: auto hidden;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  grid-gap: 18px;
  gap: 18px;
  margin: 0;
  padding: 20px;
  scroll-padding: 0 18px;
  width: 100%;
  grid-template-columns: none;
  margin: 40px auto 0;
}
@media only screen and (min-width: 1200px) {
  .wrap-scroll-product {
    grid-auto-flow: row;
    max-width: var(--layoutWidth);
    margin: 48px auto 0;
    padding: 20px 0 0;
    grid-template-columns: 1fr 1fr;
  }
}

.section-product {
  width: 320px;
  scroll-snap-align: start;
  height: 280px;
  border-radius: 16px;
  background-position: 100% 50%;
  background-image: url(../img/runex.co.jpg);
  background-color: #BF40A2;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.67, 0, 0.285, 1);
}
@media only screen and (min-width: 1200px) {
  .section-product {
    width: 100%;
    min-height: 240px;
    height: auto;
  }
}
.section-product.type-codex {
  background-image: url(../img/codex.jpg);
}
.section-product.type-codex::after {
  background: linear-gradient(87deg, #270c66 0%, rgba(42, 2, 223, 0.6) 65%, rgba(2, 82, 114, 0.644) 100%);
}
.section-product.type-alguard {
  background-image: url(../img/alguard.jpg);
}
.section-product.type-alguard::after {
  background: linear-gradient(87deg, #111111 0%, rgba(12, 15, 68, 0.6) 65%, rgba(189, 87, 19, 0.644) 100%);
}
.section-product.type-buy-ecommerce {
  background-image: url(../img/buy.co.th.jpg);
}
.section-product.type-buy-ecommerce::after {
  background: linear-gradient(87deg, rgba(112, 8, 8, 0.8) 0%, rgba(112, 8, 8, 0.9) 65%, #440303 100%);
}
.section-product:hover img {
  box-shadow: 0 16px 64px -16px rgba(0, 0, 0, 0.32);
}
.section-product::after {
  background: #de6218;
  background: linear-gradient(87deg, #de6218 0%, rgba(224, 101, 26, 0.6) 65%, rgba(255, 255, 255, 0.1) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  display: block;
}
.section-product .inner {
  position: relative;
  z-index: 12;
  padding: 1.8rem;
  font-size: 17px;
  letter-spacing: 0.5px;
  font-weight: 300;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .section-product .inner {
    padding: 2.2rem;
    text-align: left;
  }
}
.section-product .logo-product {
  max-width: 80px;
  border-radius: 16px;
}
@media only screen and (min-width: 1200px) {
  .section-product .logo-product {
    max-width: 100%;
  }
}

.contact {
  display: inline-block;
  border-radius: 5px;
  border: 2px solid;
  border-image-slice: 1;
  border-width: 2px;
  padding: 8px 16px;
  border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
  transition: 0.18s ease all;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.contact:hover {
  clip-path: polygon(5% 10%, 95% 0, 95% 90%, 5% 95%);
  background-image: linear-gradient(to left, #743ad5, #d53a9d);
  text-decoration: none;
  color: #fff;
}

.footer-info {
  opacity: 0.6;
}

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