@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300;500&display=swap");
:root {
  --header-color: #090f1e;
  --input-color: #0e0e0e;
  --body-color: #0e0e1f;
  --body-color-light: #0f0f33;
  --footer-color: #1a1a1a;
  --primary-color: #e4c36e;
  --secondary-color: #0095ff;
  --third-color: #22ba4e;
  --text-color: #ffffff;
  --text-highlight-color: #e4c36e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  font-family: "Kanit", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

input,
button.select,
textarea,
label {
  font-family: "Kanit", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  color: var(--text-color);
}

#root,
#__next {
  isolation: isolate;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container {
  max-width: 990px;
  margin: 0 auto;
}

.form-group label {
  font-size: 12px;
  color: #ffffff;
}
.form-group input {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 6px;
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  padding: 0 10px;
  height: 30px;
  color: #ffffff;
}
.form-group input:focus {
  outline: none;
}

.flex {
  display: flex;
}

.show-mobile {
  display: none;
}

.form-button-group {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin-top: 23px;
}

#line-button,
.btn-light,
.btn-dark,
.btn-red,
.btn-outline {
  display: block;
  border: none;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
  background: linear-gradient(180deg, #0095ff 0%, #0855c4 100%);
  border-radius: 8px;
  background-blend-mode: overlay, multiply, normal;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3),
    inset 0px -1px 0px rgba(0, 0, 0, 0.6),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6);
  height: 28px;
  padding: 0 15px;
  line-height: 28px;
  margin: 0 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #fff;
  font-weight: 400;
}
#line-button.lg,
.btn-light.lg,
.btn-dark.lg,
.btn-red.lg,
.btn-outline.lg {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  padding: 0 30px;
}
#line-button:hover,
.btn-light:hover,
.btn-dark:hover,
.btn-red:hover,
.btn-outline:hover {
  filter: contrast(1.5);
}

.btn-outline {
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 20px;
}

.btn-red {
  background: radial-gradient(
      56.27% 87.5% at 50% 0%,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #850b24;
  background-blend-mode: overlay, multiply, normal;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3),
    inset 0px -1px 0px rgba(0, 0, 0, 0.6),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6);
  border-radius: 24px;
}

.btn-dark {
  color: #fff;
  background: linear-gradient(180deg, #31bc69 0%, #089e4e 100%);
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3),
    inset 0px -1px 0px rgba(0, 0, 0, 0.6),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6);
}

#line-button {
  background: #22ba4f;
  border-radius: 8px;
  display: flex;
  padding: 0 7px;
  color: #fff;
}
#line-button img {
  width: 18px;
  margin-right: 5px;
}

header {
  height: 105px;
  border-bottom: 1px solid var(--primary-color);
  background: var(--header-color);
}
header #header {
  display: flex;
  justify-content: space-between;
  height: 110px;
}
header #logo {
  display: block;
  margin-top: -5px;
  margin-left: 10px;
  width: 150px;
  align-self: center;
}
header #logo img {
  width: 95px;
  height: 64px;
}
header #login-form {
  width: calc(100% - 250px);
}
header #login-form form {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin-top: 5px;
  max-width: 195px;
  margin-left: auto;
}
header #login-form form .form-group {
  padding: 0 5px;
  width: 150px;
}
header nav {
  margin: 11px 10px 0 10px;
  height: 35px;
}
header nav ul.main-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
header nav ul.main-nav li {
  list-style: none;
  width: 100%;
  display: block;
  position: relative;
}
header nav ul.main-nav li a {
  width: 100%;
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  height: 35px;
  line-height: 35px;
  border-right: 1px solid var(--body-color-light);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header nav ul.main-nav li a:hover,
header nav ul.main-nav li a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(231, 193, 85, 0.1) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(231, 193, 85, 0.1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(231, 193, 85, 0.1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#e7c155", GradientType=0);
}
header nav ul.main-nav li:last-child a {
  border-right: 0;
}
header nav ul.main-nav li:hover .sub-menu {
  display: block;
}
header nav ul.sub-menu {
  display: none;
  position: absolute;
  z-index: 2;
  background: var(--header-color);
  margin-left: 0;
  padding: 0;
  width: 200%;
  max-width: 200px;
  border-left: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
header nav ul.sub-menu li {
  list-style: none;
}
/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;

  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"),
    url("./fonts/slick.woff") format("woff"),
    url("./fonts/slick.ttf") format("truetype"),
    url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;

  position: absolute;
  top: 50%;

  display: block;

  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  cursor: pointer;

  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;

  opacity: 0.75;
  color: white;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}
.slick-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  opacity: 0.25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  position: relative;
}

.slick-slide div {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  padding: 10px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  font-size: 16px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  position: relative;
  bottom: 0;
  padding-top: 1rem;
}

.slick-dots li {
  width: 10px;
  height: 10px;
}

.slick-dots li.slick-active {
  width: 38px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
}

.slick-dots li button::before {
  color: #fff;
  opacity: 1;
  font-size: 10px;
  line-height: 11px;
}

.slick-dots li.slick-active button {
  width: 30px;
  height: 10px;
}

.slick-dots li.slick-active button::before {
  color: var(--primary-color);
  background-color: var(--primary-color);
  width: 38px;
  height: 10px;
  border-radius: 10px;
  left: 5px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  position: relative;
}

.slick-slide div {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  padding: 10px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  font-size: 16px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  position: relative;
  bottom: 0;
  padding-top: 1rem;
}

.slick-dots li {
  width: 10px;
  height: 10px;
}

.slick-dots li.slick-active {
  width: 38px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
}

.slick-dots li button::before {
  color: #fff;
  opacity: 1;
  font-size: 10px;
  line-height: 11px;
}

.slick-dots li.slick-active button {
  width: 30px;
  height: 10px;
}

.slick-dots li.slick-active button::before {
  color: var(--primary-color);
  background-color: var(--primary-color);
  width: 38px;
  height: 10px;
  border-radius: 10px;
  left: 5px;
}

.slick-arrow.slick-hidden {
  display: none;
}

#hero {
  margin: 0 auto;
  text-align: center;
  background: #0f0f33;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
  max-width: 100vw;
}
#hero p {
  margin-top: 15px;
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}
#hero #slider {
  max-width: 1000px;
  margin: 0 auto;
}
#hero #slider img {
  width: calc(100% - 20px);
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3),
    inset 0px -1px 0px rgba(0, 0, 0, 0.6),
    inset 0px 1px 0px rgba(255, 255, 255, 0.6);
}
#hero #slider .carousel-container .slick-next {
  right: calc((100vw - 630px) / 2);
}
#hero #slider .carousel-container .slick-prev {
  left: calc((100vw - 630px) / 2);
}

.main-head {
  text-align: center;
  color: var(--primary-color);
  font-size: 30px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0;
  position: relative;
  font-weight: bold;
  max-width: 420px;
}
.main-head::before {
  content: "";
  max-width: 100px;
  height: 1px;
  background: #ffffff;
  float: left;
  margin-top: 25px;
  width: 100%;
}
.main-head::after {
  content: "";
  max-width: 100px;
  height: 1px;
  background: #ffffff;
  float: right;
  margin-top: 25px;
  width: 100%;
}

section {
  text-align: center;
  color: #ffffff;
  padding: 10px 10px 50px 10px;
  position: relative;
}
section.section-dark {
  background: var(--body-color);
}
section.section-gray {
  background: var(--body-color-light);
}
section p {
  font-weight: 300;
  color: #fff;
  margin: 0 auto;
  margin-top: 5px;
}
section p.mx {
  max-width: 700px;
}
section .head-red {
  color: var(--primary-color);
  font-size: 20px;
  position: relative;
  height: 70px;
  line-height: 70px;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
section .head-red span {
  position: relative;
  display: block;
  font-weight: bold;
  z-index: 2;
}
section .head-red div {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section .head-red div img {
  width: 100%;
  height: auto;
}

.list-icon {
  max-width: 550px;
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
}
.list-icon img {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 150px;
}

.list-hero {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin: 20px auto;
}
.list-hero div {
  text-align: center;
  padding: 20px;
}
.list-hero div img {
  display: block;
  height: 100px;
  margin: 0 auto;
}
.list-hero p {
  margin-top: 10px;
  font-size: 14px;
}

.mt-3 {
  margin-top: 30px;
}

.text-center {
  text-align: center;
}
.text-center img {
  margin: 0 auto;
}

.text-left {
  text-align: left;
}

.no-pb {
  padding-bottom: 0;
  margin-bottom: 0;
}

.list-blog {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.list-blog .item-blog {
  background: #333333;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.45);
  border-radius: 12px;
  margin: 7px;
  overflow: hidden;
  width: calc(25% - 15px);
}
.list-blog .item-blog a:first-child {
  height: 140px;
}
.list-blog .item-blog a:first-child img {
  height: 140px;
  object-fit: cover;
  width: 100%;
}
.list-blog .item-blog a:last-child {
  display: block;
  padding: 10px;
}
.list-blog .item-blog a div {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin-top: 5px;
}
.list-blog .item-blog div {
  font-size: 12px;
  font-weight: 300;
  padding: 10px;
  text-align: left;
}

.head-line {
  color: var(--primary-color);
  text-align: left;
  font-size: 20px;
  margin-top: 20px;
  border-left: 2px solid var(--primary-color);
  padding-left: 10px;
}

.pb-30 {
  padding-bottom: 30px;
}

footer {
  background: #0b1325;
  color: #ffffff;
  font-weight: 300;
  padding-top: 30px;
}
footer a {
  color: #fff;
}
footer h5 {
  color: var(--primary-color);
  font-size: 20px;
  text-align: center;
  font-weight: 400;
}
article {
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 300;
  text-align: left;
}
article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
  font-weight: 600;
  color: var(--primary-color) !important;
  margin-bottom: 5px;
  margin-top: 10px;
}
article h1 strong,
article h2 strong,
article h3 strong,
article h4 strong,
article h5 strong,
article h6 strong {
  font-weight: 600;
  color: var(--primary-color) !important;
}
article p,
article p span,
article p strong {
  font-family: Tahoma, sans-serif;
  color: #ffffff !important;
  font-weight: 600;
}
article a {
  color: var(--primary-color) !important;
  font-weight: 600;
  text-decoration: underline;
}
article a strong,
article a span {
  color: var(--primary-color) !important;
  font-weight: 600;
  text-decoration: underline;
}
article img {
  max-width: 100%;
}

#relation-news {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  padding-bottom: 20px;
}
#relation-news ul li {
  color: var(--secondary-color);
}
#relation-news ul li a {
  color: var(--secondary-color);
}

#tags {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  padding-bottom: 20px;
}
#tags h4 {
  color: #bdbdbd;
  font-size: 12px;
}
#tags div {
  display: flex;
  flex-wrap: wrap;
}
#tags a {
  color: #ffffff;
  display: block;
  margin: 5px;
  padding: 0 10px;
  height: 30px;
  background: #535353;
  border-radius: 30px;
  font-size: 14px;
  line-height: 30px;
}
#tags a:hover {
  background: #434343;
}

#footer-sponsor {
  padding-bottom: 30px;
}

#footer-menu {
  background: #0b1325;
}
#footer-menu .container {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 20px 10px;
}
#footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin-top: 40px;
}
#footer-menu ul li {
  padding: 0 10px;
  border-right: 1px solid var(--text-color);
  height: 12px;
  line-height: 0.5;
}
#footer-menu ul li a {
  display: block;
}
#footer-menu ul li:last-child {
  border-right: 0;
}

#footer-bank {
  background: #0b1325;
}
#footer-bank .container {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 10px 0;
}
#footer-bank .bank-icon {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
#footer-bank .bank-icon img {
  margin: 0 5px;
}

#sponsor {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
#sponsor div {
  width: 25%;
  text-align: center;
}
#sponsor div img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.cat-title {
  font-weight: 400;
  color: var(--primary-color);
}

#footer-credit {
  text-align: center;
  background: linear-gradient(180deg, #03031b 0%, #0d174a 100%);
  font-size: 14px;
  height: 32px;
  line-height: 32px;
}

#hamburger,
#bottom-nav {
  display: none;
}

#overLayMobile {
  display: none;
}

#service-menu {
  display: none;
}

#center-register-blog {
  margin-top: 20px;
  background: var(--body-color);
  padding: 20px 0;
}

#share {
  display: flex;
  font-weight: 300;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin-top: 0;
  width: 160px;
  padding-bottom: 20px;
}
#share a {
  margin: 3px;
}

#single-share {
  display: flex;
  float: none;
  font-weight: 500;
  margin-top: 0;
  padding-bottom: 2em;
}
#single-share a {
  margin: 3px;
}

.more-button {
  float: right;
  color: #ffffff;
  display: block;
  padding: 0 10px;
  height: 30px;
  background: #535353;
  border-radius: 30px;
  font-size: 14px;
  line-height: 30px;
  margin: -29px -120px 0 0;
}
.more-button:hover {
  background: #434343;
}

.clear {
  clear: both;
}

#home-mobile-menu {
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .slick-list {
    padding: 0 0 !important;
  }

  #share {
    display: none;
  }

  .more-button {
    margin-right: 0;
  }

  #single-share {
    display: flex;
    float: none;
    font-weight: 500;
    margin-top: 0;
  }

  .show-mobile {
    display: flex;
    align-content: center;
    align-items: center;
    text-align: center;
  }
  .show-mobile a {
    width: 50%;
  }

  #overLayMobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
  }
  #overLayMobile.active {
    display: block;
  }

  #bottom-nav {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    border-radius: 20px 20px 0 0;
    background: #000000;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 10px;
    z-index: 8;
  }
  #bottom-nav a {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
  }
  #bottom-nav a img {
    margin: 0 auto;
  }
  #bottom-nav #lobby-button {
    border-radius: 50%;
    background: #b00c13;
    width: 50px;
    height: 50px;
    padding-top: 12px;
    transform: translateY(-3px);
    -webkit-box-shadow: 0 0 10px 0 #b00c13;
    box-shadow: 0 0 10px 0 #b00c13;
  }

  #service-menu {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 10px;
    background: var(--body-color);
  }
  #service-menu a {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
  }
  #service-menu a div {
    width: 50px;
    height: 50px;
    background: var(--input-color);
    margin: 0 auto;
    border-radius: 50%;
    padding: 10px;
  }
  #service-menu a img {
    width: 100%;
  }
  #service-menu a span {
    display: block;
    margin-top: 5px;
  }

  header {
    height: 55px;
  }
  header #login-form form {
    display: none;
  }
  header #login-form nav {
    position: fixed;
    display: block;
    width: 200px;
    height: 100vh;
    z-index: 9999;
    right: -100vw;
    background: var(--input-color);
    top: 0;
    padding: 0;
    margin: 0;
    padding-top: 30px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  header #login-form nav.active {
    right: 0;
  }
  header #login-form nav ul {
    display: block;
  }
  header #login-form nav ul.sub-menu {
    padding-left: 10px;
    background: none;
    border: none;
  }
  header #login-form nav ul a {
    font-size: 16px;
    border-right: none;
    text-align: left;
    padding-left: 20px;
  }
  header #login-form nav a:hover,
  header #login-form nav a.active {
    color: var(--secondary-color);
    background: none;
    border: none;
  }
  header #logo {
    width: 55px;
  }
  header #header {
    height: 55px;
  }
  header #logo img {
    width: 55px;
    height: 37px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  footer {
    background: var(--input-color);
    padding-bottom: 80px;
  }
  footer h5 {
    text-align: left;
    font-size: 20px;
    padding-left: 10px;
    margin-bottom: 0;
  }

  #sponsor {
    margin-top: 10px;
  }
  #sponsor div {
    width: 50%;
    text-align: center;
  }
  #sponsor div img {
    max-width: 100%;
    display: block;
    margin: 5px auto;
  }

  .list-blog {
    display: block;
  }
  .list-blog .item-blog {
    margin-bottom: 20px;
    width: 100%;
  }
  .list-blog .item-blog a:first-child {
    height: auto;
  }
  .list-blog .item-blog a:first-child img {
    height: auto;
    object-fit: cover;
  }
  .list-blog .item-blog a:last-child {
    padding: 10px;
  }

  .list-icon div img {
    min-width: 50px;
  }

  .list-hero {
    flex-wrap: wrap;
  }
  .list-hero div {
    width: 50%;
  }

  #footer-menu {
    border-top: 1px solid var(--body-color-light);
  }
  #footer-menu .container {
    padding: 20px 0 0 0;
    display: block;
  }
  #footer-menu .container #footer-logo {
    margin-left: auto;
    margin-right: auto;
    width: 80px;
  }
  #footer-menu .container ul {
    display: none;
  }

  #footer-bank .container {
    display: block;
    border-top: none;
  }
  #footer-bank .container .bank-icon {
    max-width: 300px;
    margin: 10px auto;
  }
  #footer-bank .container .bank-icon:first-child img {
    height: 20px;
  }
  #footer-bank .container .bank-icon:last-child {
    display: block;
  }
  #footer-bank .container .bank-icon:last-child img {
    margin: 5px auto;
  }

  #hamburger {
    display: block;
    cursor: pointer;
    padding-top: 13px;
  }
  #hamburger img {
    display: block;
  }

  section {
    padding-bottom: 20px;
  }
}
.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 0;
  --bs-breadcrumb-divider-color: #6c757d;
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}

@media screen and (max-width: 440px) {
  .main-head {
    font-size: 24px;
  }
  .main-head::after,
  .main-head::before {
    margin-top: 20px;
    max-width: 21%;
  }

  section .head-red {
    line-height: 65px;
    width: 270px;
  }
}
.table {
  padding-top: 20px;
  margin-bottom: 20px;
}
.table h3 {
  background: #b00c13;
  color: #ffffff;
  padding: 5px 0;
  border-radius: 10px 10px 0 0;
}
.table table {
  border: 0;
  width: 100%;
  border-spacing: 0;
  background: #1a1a1a;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.table table th {
  background: #000000;
  font-size: 12px;
  padding: 5px 0;
  border: 0;
}
.table table tr td {
  padding: 5px 0;
  border-bottom: 1px solid #000;
}
.table table tr td small {
  color: #969696;
}
.table table tr td:first-child {
  padding-left: 5px;
}
.table table tr td img {
  height: 50px;
  width: auto;
  display: inline-block;
}
.table table tr:last-child td {
  border-bottom: 0;
}

#player {
  margin: 20px auto;
  max-width: 960px;
  width: 100%;
  padding-top: 37.7%;
  position: relative;
  max-height: 540px;
}

.s-m {
  display: none;
}

@media screen and (max-width: 767px) {
  .s-d {
    display: none;
  }

  .s-m {
    display: table-row;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #bfbfbf;
  padding: 3px 5px;
  margin: 2px;
  width: 32px;
  display: inline-block !important;
  border-radius: 50%;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border-color: #808080;
  background: #464646;
}

#content img {
  max-width: 100%;
  height: auto;
  margin: 5px auto;
  display: block;
}

#content .wp-caption {
  margin: 10px auto;
  text-align: center;
}

#content div {
  width: 100% !important;
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 0;
  --bs-breadcrumb-divider-color: #6c757d;
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}

/*# sourceMappingURL=style.css.map */
article iframe {
  width: 100%;
  height: 460px;
  max-width: 720px;
  margin: 10px auto;
  display: block;
}

h1.main-head,
strong,
mark {
  color: var(--text-highlight-color);
}

@media screen and (max-width: 500px) {
  article iframe {
    height: 260px;
  }
}
