@charset "UTF-8";

/* -----------------------------------------------------------------------------------

 COLOR NOTE:
 PINK: #de5c8e;
 PINK-DARK: #b43b6b;
 PINK-LIGHT: #f6d9e1;
 GREY: #58595b;
 TEXT: #555;
 TEXT-ALT #808080;
 TEXT-ALT (LIGHT) #7f7f7f;
 TEXT-MUTED: #aaa
 TEXT-MUTED (LIGHT): #555;
 TEXT-LIGHT: #aaa;

 TRANSITION NOTE:
 -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
   transition: all 0.3s;

 
----------------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------------

0. RESET

----------------------------------------------------------------------------------- */

/*----------------------------------------------
 Fonts
----------------------------------------------*/

/*----------------------------------------------
 Clear focus eleement
----------------------------------------------*/
*:focus,
*:hover,
*:active,
a,
input,
select,
textarea,
button,
button:focus,
img,
.btn,
.btn:focus {
  outline: none !important;
  outline-style: none;
  /* -webkit-box-shadow: none; */
  /* box-shadow: none; */
}

body #bg_content .webtitle-bar-en .bar-logo-pc img {
  vertical-align: middle;
}

/* Disable hover pointers on scrolling (class set by js) */
.is-scrolling,
.is-scrolling * {
  pointer-events: none;
}

/*----------------------------------------------
 Selection
----------------------------------------------*/
::-webkit-selection {
  background-color: #00000070;
  color: #fff;
}

::-moz-selection {
  background-color: #00000070;
  color: #fff;
}

::selection {
  background-color: #00000070;
  color: #fff;
}

/*----------------------------------------------
 Placeholder
----------------------------------------------*/
::-webkit-input-placeholder {
  color: #58595b;
  opacity: 0.5;
  transition: all 0.3s ease;
}

::-moz-placeholder {
  color: #58595b;
  opacity: 0.5;
  transition: all 0.3s ease;
}

:-moz-placeholder {
  color: #58595b;
  opacity: 0.5;
  transition: all 0.3s ease;
}

:-ms-input-placeholder {
  color: #58595b;
  opacity: 0.5;
  transition: all 0.3s ease;
}

/*----------------------------------------------
 Scrollbar
----------------------------------------------*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0);
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
  outline: none;
}

/* width */

/* Track */
::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #acacac;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(79, 79, 79)cac;
}

/*----------------------------------------------
 Embed
----------------------------------------------*/
object,
canvas,
video,
audio,
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 0;
  vertical-align: top;
}

/* -----------------------------------------------------------------------------------

1. BASICS

----------------------------------------------------------------------------------- */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  position: relative;
  max-width: 100%;
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100%;
}

/*----------------------------------------------
 Text Color
----------------------------------------------*/
.text-dark {
  color: #555;
}

.text-muted {
  color: #aaa;
}

.text-light {
  /*color: #aaa !important;*/
}

.text-light .text-muted {
  color: #555;
}

.text-pink,
.font-pink,
.color-pink {
  color: #de5c8e !important;
}

.text-pink-dark,
.font-pink-dark,
.color-pink-dark {
  color: #b43b6b !important;
}

.text-light .text-pink,
.text-light .font-pink,
.text-light .color-pink {
  color: #f6d9e1 !important;
}

.text-black,
.font-black,
.color-black {
  color: #000 !important;
}

.text-white,
.font-white,
.color-white {
  color: #fff !important;
}

/*----------------------------------------------
 Headings
----------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  position: relative;
  font-weight: 700;
  color: #000;
}

h1,
.h1 {
  font-size: 1.75em;
  line-height: 1.5;
  margin-bottom: 1em;
}

h2,
.h2 {
  font-size: 1.5em;
  line-height: 1.5;
  margin-bottom: 0.75em;
}

h3,
.h3 {
  font-size: 0.375em;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

h4,
.h4 {
  font-size: 1.25em;
  line-height: 1.625;
  margin-bottom: 0.25em;
}

h5,
.h5 {
  font-size: 1.125em;
  line-height: 1.625;
  margin-bottom: 0.125em;
}

h6,
.h6 {
  font-size: 1em;
  line-height: 1.625;
  margin-bottom: 0.25em;
}

.text-hero h1,
.text-hero .h1,
h1.text-hero,
.h1.text-hero {
  font-size: 2.125em;
  line-height: 1.375em;
}

.text-hero h2,
.text-hero .h2,
h2.text-hero,
.h2.text-hero {
  font-size: 1.875em;
  line-height: 1.5em;
}

.text-hero h3,
.text-hero .h3,
h3.text-hero,
.h3.text-hero {
  font-size: 1.75em;
  line-height: 1.5em;
}

.text-hero h4,
.text-hero .h4,
h4.text-hero,
.h4.text-hero {
  font-size: 1.625em;
  line-height: 1.625em;
}

.text-hero h5,
.text-hero .h5,
h5.text-hero,
.h5.text-hero {
  font-size: 1.5em;
  line-height: 1.625em;
}

.text-hero h6,
.text-hero .h6,
h6.text-hero,
.h6.text-hero {
  font-size: 1.375em;
  line-height: 1.625em;
}

.text-hero {
  font-size: 1.25em;
  line-height: 1.75;
}

.text-smallest {
  font-size: 0.625em;
  line-height: 1.75;
}

.text-smaller {
  font-size: 0.75em;
  line-height: 1.75;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.75;
}

.text {
  font-size: 1em;
  line-height: 1.75;
}

.text-big {
  font-size: 1.125em;
  line-height: 1.875;
}

.text-bigger {
  font-size: 1.25em;
  line-height: 1.875;
}

.text-biggest {
  font-size: 1.375em;
  line-height: 1.875;
}

.text-large {
  font-size: 1.5em;
  line-height: 1.875;
}

.text-larger {
  font-size: 1.625em;
  line-height: 1.875;
}

.text-largest {
  font-size: 1.75em;
  line-height: 1.875;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong,
.h1 strong,
.h2 strong,
.h3 strong,
.h4 strong,
.h5 strong,
.h6 strong {
  font-family: 'quark', sans-serif;
  font-weight: normal;
  font-size: 105%;
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light .h1,
.text-light .h2,
.text-light .h3,
.text-light .h4,
.text-light .h5,
.text-light .h6,
h1.text-light,
h2.text-light,
h3.text-light,
h4.text-light,
h5.text-light,
h6.text-light,
.h1.text-light,
.h2.text-light,
.h3.text-light,
.h4.text-light,
.h5.text-light,
.h6.text-light {
  color: #fff !important;
}

/*------------------------------------------------
 Alt Text & Headings
------------------------------------------------*/
.text-alt {
  color: #808080;
}

.text-light .text-alt {
  color: #7f7f7f;
}

h1.text-alt,
h2.text-alt,
h3.text-alt,
h4.text-alt,
h5.text-alt,
h6.text-alt,
.h1.text-alt,
.h2.text-alt,
.h3.text-alt,
.h4.text-alt,
.h5.text-alt,
.h6.text-alt,
h1 .text-alt,
h2 .text-alt,
h3 .text-alt,
h4 .text-alt,
h5 .text-alt,
h6 .text-alt,
.h1 .text-alt,
.h2 .text-alt,
.h3 .text-alt,
.h4 .text-alt,
.h5 .text-alt,
.h6 .text-alt {
  color: #404040;
}

.text-light h1.text-alt,
.text-light h2.text-alt,
.text-light h3.text-alt,
.text-light h4.text-alt,
.text-light h5.text-alt,
.text-light h6.text-alt,
.text-light .h1.text-alt,
.text-light .h2.text-alt,
.text-light .h3.text-alt,
.text-light .h4.text-alt,
.text-light .h5.text-alt,
.text-light .h6.text-alt,
.text-light h1 .text-alt,
.text-light h2 .text-alt,
.text-light h3 .text-alt,
.text-light h4 .text-alt,
.text-light h5 .text-alt,
.text-light h6 .text-alt,
.text-light .h1 .text-alt,
.text-light .h2 .text-alt,
.text-light .h3 .text-alt,
.text-light .h4 .text-alt,
.text-light .h5 .text-alt,
.text-light .h6 .text-alt,
h1.text-light.text-alt,
h2.text-light.text-alt,
h3.text-light.text-alt,
h4.text-light.text-alt,
h5.text-light.text-alt,
h6.text-light.text-alt,
.h1.text-light.text-alt,
.h2.text-light.text-alt,
.h3.text-light.text-alt,
.h4.text-light.text-alt,
.h5.text-light.text-alt,
.h6.text-light.text-alt {
  color: #bfbfbf;
}

/*------------------------------------------------
 Links
------------------------------------------------*/
a {
  /*color: #555;*/
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
   transition: all 0.3s;*/
}

/*h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, 
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a,
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited, 
.h1 a:visited, .h2 a:visited, .h3 a:visited, .h4 a:visited, .h5 a:visited, .h6 a:visited {
 color: #000; bodycontent
}*/

.text-light a,
a.text-light {
  /*color: #706b6b;*/
}

/*.text-light a:hover { 
 color: #dd0440;
}
/*.text-light h1 a, .text-light h2 a, .text-light h3 a, .text-light h4 a, .text-light h5 a, .text-light h6 a, 
.text-light .h1 a, .text-light .h2 a, .text-light .h3 a, .text-light .h4 a, .text-light .h5 a, .text-light .h6 a,
.text-light h1 a:visited, .text-light h2 a:visited, .text-light h3 a:visited, .text-light h4 a:visited, .text-light h5 a:visited, .text-light h6 a:visited, 
.text-light .h1 a:visited, .text-light .h2 a:visited, .text-light .h3 a:visited, .text-light .h4 a:visited, .text-light .h5 a:visited, .text-light .h6 a:visited {
 color: #fff;
}*/

/* Link with underline
------------------------------------------------*/
.is-link a,
a.is-link {
  background-image: linear-gradient(120deg, #de5c8e 0%, #b43b6b 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.1em;
  background-position: 0 88%;
  transition: background-size 0 ease-in;
  color: #de5c8e;
}

.text-light .is-link a,
.text-light a.is-link {
  color: #000;
  background-image: linear-gradient(120deg, #e2bdbb 0%, #f6d9e1 100%);
}

@media (min-width: 992px) {

  .is-link a:hover,
  a.is-link:hover {
    color: #be5877;
  }

  .text-light .is-link a:hover,
  .text-light a.is-link:hover {
    color: #febeca;
  }
}

/*----------------------------------------------
 Image and Video
----------------------------------------------*/
img {
  display: block;
}

video {
  max-width: inherit;
}

.img-bound {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.bg-image,
.bg-video {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: 50% 50%;
  background-size: cover;
}

.bg-image>div,
.bg-video>div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: 50% 50%;
  background-size: cover;
}

.bg-image img,
.bg-video img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
  object-fit: cover;
}

/*----------------------------------------------
 Form
----------------------------------------------*/
/*
 *
 *
 *
 *
 */

/*----------------------------------------------
 HTML
----------------------------------------------*/

/* Paragraph
----------------------------------------------*/
p {
  margin-bottom: 1.5rem;
}

p.text-hero {
  margin-bottom: 1.75rem;
}

/* Lists
----------------------------------------------*/
ul {
  margin-top: 15px;
  margin-bottom: 1.5em;
  margin-left: 15px;
  list-style: disc;
}

@media (min-width: 768px) {
  ul {
    margin-left: 30px;
  }
}

ul.nolist {
  list-style: none;
  margin-left: 0px;
}

div ul:first-child,
li ul:first-child {
  margin-top: 0px;
}

ol {
  margin-top: 15px;
  margin-bottom: 1.5em;
  margin-left: 0;
  padding-left: 0;
  list-style: decimal inside;
}

div ol:first-child,
li ol:first-child {
  margin-top: 0px;
}

ul li,
ol li {
  margin-top: 8px;
}

ul li:first-child,
ol li:first-child {
  margin-top: 0;
}

/* Blockquote
----------------------------------------------*/
blockquote {
  position: relative;
  font-size: 1.25em;
  line-height: 1.75em;
  color: #000;
  margin: 0 auto 2em auto;
}

@media (min-width: 768px) {
  blockquote {
    font-size: 1.375em;
  }
}

blockquote p {
  margin: 0;
}

blockquote p+p,
blockquote p+cite {
  margin-top: 1rem;
}

blockquote cite {
  display: block;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5rem;
  letter-spacing: 0;
  color: #808080;
}

.text-light blockquote,
blockquote.text-light {
  color: #fff;
}

.text-light blockquote cite,
blockquote.text-light cite {
  color: #7f7f7f;
}

.blockquote-primary,
.wp-block-quote {
  padding-left: 15px;
  border-left: 5px solid #b43b6b;
}

@media (min-width: 768px) {

  .blockquote-primary,
  .wp-block-quote {
    padding-left: 30px;
  }
}

/* Blockquote with quote sign
----------------------------------------------*/
.blockquote-quote>p:first-of-type::before,
.blockquote-quote>p:first-of-type::after {
  content: "“";
  font-family: Georgia, serif;
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.1em;
  margin-right: 0.2em;
}

.blockquote-quote>p:first-of-type::after {
  content: "”";
}

.blockquote-quote>p:first-of-type::after {
  margin-right: 0;
  margin-left: 0.2em;
}

.blockquote-quote cite {
  color: #000;
}

.blockquote-quote cite .text-alt {
  color: #404040;
}

.text-light .blockquote-quote cite,
.blockquote-quote.text-light cite {
  color: #fff;
}

.text-light .blockquote-quote cite .text-alt,
.blockquote-quote.text-light cite .text-alt {
  color: #bfbfbf;
}

/* Blockquote with horizontal line
----------------------------------------------*/
.blockquote-line-hor {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.blockquote-line-hor::before,
.blockquote-line-hor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 50px;
  height: 2px;
  margin-left: -25px;
  background-color: #000;
}

.blockquote-line-hor::after {
  top: auto;
  bottom: 0;
}

.blockquote-line-hor.text-light::before,
.blockquote-line-hor.text-light::after .text-light .blockquote-line-hor::before,
.text-light .blockquote-line-hor::after {
  background-color: #fff;
}

/* Blockquote with vertical line
----------------------------------------------*/
.blockquote-line-ver {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.blockquote-line-ver::before,
.blockquote-line-ver::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 50px;
  margin-left: -1px;
  background-color: #000;
}

.blockquote-line-ver::after {
  top: auto;
  bottom: 0;
}

.blockquote-line-ver.text-light::before,
.blockquote-line-ver.text-light::after .text-light .blockquote-line-ver::before,
.text-light .blockquote-line-ver::after {
  background-color: #fff;
}

/* Blockquote with slash line
----------------------------------------------*/
.blockquote-line-slash {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.blockquote-line-slash::before,
.blockquote-line-slash::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 50px;
  margin-left: -1px;
  background-color: #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.blockquote-line-slash::after {
  top: auto;
  bottom: 0;
}

.blockquote-line-slash.text-light::before,
.blockquote-line-slash.text-light::after .text-light .blockquote-slash::before,
.text-light .blockquote-slash::after {
  background-color: #fff;
}

/*----------------------------------------------
 Button
----------------------------------------------*/
button,
.btn {
  cursor: pointer;
}

/* Standard Button
----------------------------------------------*/
/* .btn {
  z-index: 1;
  position: relative;
  display: inline-block;
  width: auto;
  height: 48px;
  line-height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 0;
  font-size: 1em;
  font-weight: 700;
  color: #000;
  text-align: center;
  overflow: hidden;
} */
.btn i {
  font-size: 1.25em;
  margin-right: 5px;
}

/*.btn:hover {
 border: 1px solid rgba(0,0,0,0);
 background-color: transparent;
 color: #de5c8e;
}*/
/* @media (min-width: 992px) {
  .btn {
    height: 54px;
    line-height: 52px;
  }
} */

/* All stlyed buttons
----------------------------------------------*/
.btn-primary,
.btn-bold {
  min-width: 200px;
  padding: 0 20px;
}

@media (min-width: 992px) {

  .btn-primary,
  .btn-bold {
    padding: 0 30px;
  }
}

/* Primary
----------------------------------------------*/
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

/* .text-light .btn-primary {
  border-color: #fff;
  background-color: #fff;
  color: #000 !important;
}
.text-light .btn-primary:hover {
  border-color: #fff;
  background-color: #fff;
  color: #de5c8e !important;
} */

/* Bold
----------------------------------------------*/
.btn-bold {
  border-color: #de5c8e;
  background-color: #de5c8e;
  color: #fff !important;
}

.btn-bold:hover {
  border-color: #b43b6b;
  background-color: #b43b6b;
}

.text-light .btn-bold,
.btn-bold.text-light {
  border-color: #de5c8e;
  background-color: #de5c8e;
}

.text-light .btn-bold:hover,
.btn-bold.text-light:hover {
  border-color: #b43b6b;
  background-color: #b43b6b;
}

.btn-bold.bold-alt {
  border-color: #555;
  background-color: #555;
}

.btn-bold.bold-alt:hover {
  border-color: #de5c8e;
  background-color: #de5c8e;
}

/* Subscribe
----------------------------------------------*/
.btn-subscribe {
  min-width: 200px;
  height: 54px;
  line-height: 50px;
  padding: 0 30px;
  border: 2px solid #000;
  background-color: #fff;
  color: #000 !important;
}

.btn-subscribe:hover {
  border: 2px solid #de5c8e;
  background-color: #fff;
  color: #de5c8e !important;
}

@media (min-width: 992px) {
  .btn-subscribe {
    min-width: 240px;
    height: 64px;
    line-height: 60px;
    padding: 0 50px;
    font-size: 1.125em;
  }
}

/* Close
----------------------------------------------*/
.btn-close {
  position: absolute;
  top: 0px;
  right: 0;
  border: none;
  border-radius: 0;
  background-color: #fe5e2c;
  width: 60px;
  height: 60px;
  cursor: pointer;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.btn-close:hover {
  background-color: #de5c8e;
}

.btn-close:after,
.btn-close:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.6, 0.36, 1);
  transition: all 400ms cubic-bezier(0.25, 0.6, 0.36, 1);
}

.btn-close:before {
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  -webkit-transition-delay: 65ms;
  transition-delay: 65ms;
}

.btn-close:hover:after {
  background-color: #fff;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(225deg);
  transform: translate3d(-50%, -50%, 0) rotate(225deg);
}

.btn-close:hover:before {
  background-color: #fff;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(135deg);
  transform: translate3d(-50%, -50%, 0) rotate(135deg);
}

.btn-close:active {
  -webkit-transition: none;
  transition: none;
}

/* Hero
--------------------------------------------------------------*/
.btn-hero {
  display: inline-block;
  height: 42px;
  line-height: 40px;
  padding: 0 30px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff !important;
  font-family: 'quark', sans-serif;
  font-size: 1em;
  overflow: hidden;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
}

.btn-hero:hover {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 1);
  color: #000 !important;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
  .btn-hero {
    height: 52px;
    line-height: 50px;
    padding: 0 40px;
    font-size: 1.125em;
  }
}

/* Arrow
--------------------------------------------------------------*/
.btn-arrow {
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}

.btn-arrow span {
  display: inline-block;
  position: relative;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}

.btn-arrow:hover span {
  -webkit-transform: translate3d(-0.8rem, 0, 0);
  transform: translate3d(-0.8rem, 0, 0);
}

.btn-arrow svg {
  position: absolute;
  width: 1em;
  right: 0;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}

.btn-arrow svg * {
  stroke-width: 3;
  stroke-color: transparent;
}

.btn-arrow:hover svg {
  opacity: 1;
  right: -1.6rem;
}

@media (min-width: 992px) {
  .btn-arrow {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Icon
--------------------------------------------------------------*/
.btn-icon {
  z-index: 1;
  position: relative;
  display: inline-block;
  min-width: 200px;
  height: 50px;
  line-height: 48px;
  padding: 0 71px 0 20px;
  border: 1px solid #000;
  border-radius: 0;
  background-color: #fff;
  font-family: "chulalongkornbold", sans-serif;
  font-size: 1em;
  color: #000 !important;
  text-align: left;
  overflow: hidden;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.btn-icon span {
  z-index: 1;
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-left: 1px solid #000;
  background-color: transparent;
  font-size: 1em;
  color: #000;
  text-align: center;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.btn-icon span i {
  margin: 0;
}

.btn-icon span:after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #f8cccc;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-icon:hover {
  border: 1px solid #000;
}

@media (min-width: 992px) {
  .btn-icon {
    padding: 0 75px 0 20px;
    min-width: 240px;
    height: 54px;
    line-height: 52px;
    border: 1px solid #000;
  }

  .btn-icon span {
    width: 54px;
    height: 54px;
    line-height: 54px;
  }

  .no-touchevents .btn-icon:hover span:after,
  .no-touchevents .btn-icon:active span:after {
    width: 100%;
  }
}

/* Call to action button
-------------------------------------------------*/
.btn-cta {
  display: inline-block;
  height: 42px;
  line-height: 40px;
  margin: 15px 0 0 0;
  padding: 0 30px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background-color: #fff;
  color: #be5877 !important;

  font-size: 1em;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
}

.btn-cta:hover {
  border: 1px solid #dedede;
  background-color: #fff;
  color: #be5877 !important;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {

  .btn-cta,
  .btn-cta:hover {
    border: 1px solid #000;
  }
}

@media (min-width: 992px) {
  .btn-cta {
    height: 52px;
    line-height: 50px;
  }
}

/* Giving บริจาคให้จุฬาฯ
--------------------------------------------------------------*/
.btn-giving {
  z-index: 1;
  position: relative;
  display: block;
  width: auto;
  height: 60px;
  line-height: 60px;
  margin: 0 0 30px 0;
  padding: 0 30px;
  border: none;
  border-radius: 0;
  background-color: #de5c8e;
  font-family: "chulalongkornbold", sans-serif;
  font-size: 1.25em;
  color: #fff !important;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-giving:hover {
  border: none;
  background-color: #b43b6b;
  color: #fff !important;
}

/* Button Width
------------------------------------------------*/
.btn-width-200 {
  width: auto;
  min-width: 200px;
}

.btn-width-220 {
  width: auto;
  min-width: 220px;
}

.btn-width-240 {
  width: auto;
  min-width: 240px;
}

.btn-width-250 {
  width: auto;
  min-width: 250px;
}

.btn-width-260 {
  width: auto;
  min-width: 260px;
}

.btn-width-280 {
  width: auto;
  min-width: 260px;
}

.btn-width-300 {
  width: auto;
  min-width: 260px;
}

/* Social Media Button (icon color)
------------------------------------------------*/
li.facebook a:hover i {
  color: #446ebf;
}

li.twitter a:hover i {
  color: #39aadc;
}

li.youtube a:hover i {
  color: #ee423d;
}

li.instagram a:hover i {
  color: #95604b;
}

li.line a:hover i {
  color: #00b900;
}

/*----------------------------------------------
 Background
----------------------------------------------*/
.bg-gray-light,
.bg-grey-light {
  background-color: #e5e5e5 !important;
}

.bg-gradient-pb {
  background-image: -webkit-linear-gradient(90deg,
      rgba(30, 30, 30, 0.66) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(219, 95, 142, 0.33) 100%);
  background-image: -o-linear-gradient(90deg,
      rgba(30, 30, 30, 0.66) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(219, 95, 142, 0.33) 100%);
  background-image: linear-gradient(0deg,
      rgba(30, 30, 30, 0.66) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(219, 95, 142, 0.33) 100%);
}

.bg-black {
  background-color: #000 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-grey-dark {
  background-color: #101010 !important;
}

.bg-pink {
  background-color: #f2abb6 !important;
}

.bg-pink-light {
  background-color: #f6d9e1 !important;
}

.bg-gradient {
  background-image: linear-gradient(120deg,
      #fdfbfb 0%,
      #ebedee 100%) !important;
}

.bg-gradient-content {
  background-image: -webkit-linear-gradient(91deg,
      rgba(0, 0, 0, 0.75) 6%,
      rgba(0, 0, 0, 0) 80%,
      rgba(0, 0, 0, 0.4) 100%) !important;
  background-image: -o-linear-gradient(91deg,
      rgba(0, 0, 0, 0.75) 6%,
      rgba(0, 0, 0, 0) 80%,
      rgba(0, 0, 0, 0.4) 100%) !important;
}

.bg-warmflame {
  background-image: linear-gradient(to bottom,
      #ff9a9e 0%,
      #fad0c4 99%,
      #fad0c4 100%);
}

.bg-heavyrain {
  background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
}

.bg-nega {
  background-image: linear-gradient(to top, #ee9ca7 0%, #ffdde1 100%);
}

.bg-slickcarbon {
  background: linear-gradient(to bottom, #323232 0%, #3f3f3f 40%, #1c1c1c 150%),
    linear-gradient(to top,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(0, 0, 0, 0.25) 200%);
  background-blend-mode: multiply;
}

.bg-grownearly {
  background-image: linear-gradient(to top, #0ba360 0%, #3cba92 100%);
}

.bg-nightsky {
  background-image: linear-gradient(to top,
      #1e3c72 0%,
      #1e3c72 1%,
      #2a5298 100%);
}

.bg-wideapple {
  background-image: linear-gradient(to top, #d299c2 0%, #fef9d7 100%);
}

.bg-plumplate {
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-passionatebed {
  background-image: linear-gradient(to right, #ff758c 0%, #ff7eb3 100%);
}

.bg-midnightbloom {
  background-image: linear-gradient(-20deg, #2b5876 0%, #4e4376 100%);
}

.bg-aquaguidance {
  background-image: linear-gradient(135deg, #007adf 0%, #00ecbc 100%);
}

.bg-viciousstance {
  background-image: linear-gradient(135deg, #29323c 0%, #485563 100%);
}

.bg-cloudyknoxville {
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

/*----------------------------------------------
 Shadow
----------------------------------------------*/
.shadow-inset {
  -webkit-box-shadow: inset 0px 0px 100px -50px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 100px -50px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 0px 100px -50px rgba(0, 0, 0, 0.5);
}

.shadow-box {
  -webkit-box-shadow: 0 15px 30px -25px black !important;
  -moz-box-shadow: 0 15px 30px -25px black !important;
  box-shadow: 0 15px 30px -25px black !important;
}

/* -----------------------------------------------------------------------------------

2. GENERAL ELEMENTS

----------------------------------------------------------------------------------- */

#page-content {
  overflow: hidden;
  margin: 0;
  min-width: inherit;
  max-width: 100%;
  min-height: 101vh;
}

.loading-end #page-content {
  min-height: auto;
}

/*----------------------------------------------
 Display
----------------------------------------------*/
.d-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

@media (min-width: 992px) {
  .d-lg-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
  }

  .pr-lg-30px {
    padding-right: 30px !important;
  }
}

@media (min-width: 1440px) {
  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-none {
    display: none !important;
  }
}

/*----------------------------------------------
 Bootstrap Container
----------------------------------------------*/
.container.container-nogutter,
.container-fluid.container-nogutter,
.container.container-nogutter>.row>[class*="col-"],
.container-fluid.container-nogutter>.row>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.container.container-nogutter>.row,
.container-fluid.container-nogutter>.row {
  margin-right: 0;
  margin-left: 0;
}

@media (max-width: 767px) {
  .container.container-sm-fluid {
    width: 100% !important;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .container.container-sm-nogutter,
  .container-fluid.container-sm-nogutter,
  .container.container-nogutter,
  .container-fluid.container-nogutter,
  .container.container-sm-nogutter>.row>[class*="col-"],
  .container-fluid.container-sm-nogutter>.row>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }

  .container.container-sm-nogutter>.row,
  .container-fluid.container-sm-nogutter>.row {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .container.container-md-fluid {
    width: 100% !important;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .container.container-md-nogutter,
  .container-fluid.container-md-nogutter,
  .container.container-nogutter,
  .container-fluid.container-nogutter,
  .container.container-md-nogutter>.row>[class*="col-"],
  .container-fluid.container-md-nogutter>.row>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }

  .container.container-md-nogutter>.row,
  .container-fluid.container-md-nogutter>.row {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 1199px) {
  .container.container-lg-fluid {
    width: 100% !important;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .container.container-lg-nogutter,
  .container-fluid.container-lg-nogutter,
  .container.container-nogutter,
  .container-fluid.container-nogutter,
  .container.container-lg-nogutter>.row>[class*="col-"],
  .container-fluid.container-lg-nogutter>.row>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }

  .container.container-lg-nogutter>.row,
  .container-fluid.container-lg-nogutter>.row {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 1441px) {
  .container {
    max-width: 1440px;
  }

}

@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }

}

@media (min-width: 576px) {
  .container-outer .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container-outer .container.container-nogutter {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1199px) {
  .container-outer .container.container-lg-nogutter {
    padding-left: 0;
    padding-right: 0;
  }
}

/*----------------------------------------------
 Fullwidth Section & Fullwidth Content
----------------------------------------------*/
.fullwidth-section {
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.fullwidth-section .fullwidth-content-small {
  padding: 30px 0;
}

.fullwidth-section .fullwidth-content {
  padding: 50px 0;
}

.fullwidth-section .fullwidth-content-big {
  padding: 70px 0;
}

@media (min-width: 768px) {
  .fullwidth-section .fullwidth-content-small {
    padding: 50px 0;
  }

  .fullwidth-section .fullwidth-content {
    padding: 60px 0;
  }

  .fullwidth-section .fullwidth-content-big {
    padding: 80px 0;
  }
}

@media (min-width: 1440px) {
  .fullwidth-section .fullwidth-content-small {
    padding: 60px 0;
  }

  .fullwidth-section .fullwidth-content {
    padding: 80px 0;
  }

  .fullwidth-section .fullwidth-content-big {
    padding: 100px 0;
  }
}

@media (min-width: 1920px) {
  .fullwidth-section .fullwidth-content-small {
    padding: 80px 0;
  }

  .fullwidth-section .fullwidth-content {
    padding: 100px 0;
  }

  .fullwidth-section .fullwidth-content-big {
    padding: 120px 0;
  }
}

.fullwidth-section.nopadding .fullwidth-content,
.fullwidth-section.nopadding .fullwidth-content-big,
.fullwidth-section.nopadding .fullwidth-content-small,
.fullwidth-section .fullwidth-content.nopadding,
.fullwidth-section .fullwidth-content-big.nopadding,
.fullwidth-section .fullwidth-content-small.nopadding {
  padding: 0;
}

/*----------------------------------------------
 Fullwidth Section & Fullwidth Template
----------------------------------------------*/
.fullwidth-template {}

@media (min-width: 992px) {
  .fullwidth-template {
    padding-top: 120px;
  }
}

@media (min-width: 1920px) {
  .fullwidth-template {
    padding-top: 30px;
  }
}

/*----------------------------------------------
 Fullwidth Section & Fullwidth Template
----------------------------------------------*/
.fullwidth-single {
  position: relative;
  background-color: #fff;
}

@media (min-width: 1200px) {
  .fullwidth-single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: #f5f5f5;
  }
}

/*----------------------------------------------
 Wrapper
----------------------------------------------*/
.wrapper,
.wrapper-mini,
.wrapper-small,
.wrapper-smallplus,
.wrapper-plus,
.wrapper-big,
.wrapper-full {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.wrapper::after,
.wrapper-mini::after,
.wrapper-small::after,
.wrapper-smallplus::after,
.wrapper-plus::after,
.wrapper-big::after,
.wrapper-full::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  font-size: 0;
}

.wrapper {
  max-width: 1200px;
}

.wrapper-mini {
  max-width: 480px;
}

.wrapper-small {
  max-width: 720px;
}

.wrapper-smallplus {
  max-width: 960px;
}

.wrapper-plus {
  max-width: 1440px;
}

.wrapper-big {
  max-width: 1680px;
}

.wrapper,
.wrapper-mini,
.wrapper-small,
.wrapper-smallplus,
.wrapper-plus,
.wrapper-big,
.wrapper-full {
  width: calc(100% - 30px);
  margin: 0 auto;
}

@media (min-width: 576px) {

  .wrapper,
  .wrapper-mini,
  .wrapper-small,
  .wrapper-smallplus,
  .wrapper-plus,
  .wrapper-big,
  .wrapper-full {
    width: calc(100% - 60px);
  }
}

@media (min-width: 992px) {

  .wrapper,
  .wrapper-mini,
  .wrapper-small,
  .wrapper-smallplus,
  .wrapper-plus,
  .wrapper-big,
  .wrapper-full {
    width: calc(100% - 80px);
  }
}

@media (max-width: 767px) {

  .wrapper-full.nogutter .wrapper-full,
  .wrapper-full.nogutter .wrapper-big,
  .wrapper-full.nogutter .wrapper,
  .wrapper-full.nogutter .wrapper-plus,
  .wrapper-full.nogutter .wrapper-smallplus,
  .wrapper-full.nogutter .wrapper-small,
  .wrapper-full.nogutter .wrapper-mini,
  .wrapper-big.nogutter .wrapper-big,
  .wrapper-big.nogutter .wrapper,
  .wrapper-big.nogutter .wrapper-plus,
  .wrapper-big.nogutter .wrapper-mini,
  .wrapper-big.nogutter .wrapper-small,
  .wrapper-big.nogutter .wrapper-smallplus,
  .wrapper-plus.nogutter .wrapper-plus,
  .wrapper-plus.nogutter .wrapper,
  .wrapper-plus.nogutter .wrapper-mini,
  .wrapper-plus.nogutter .wrapper-small,
  .wrapper-plus.nogutter .wrapper-smallplus,
  .wrapper.nogutter .wrapper,
  .wrapper.nogutter .wrapper-small,
  .wrapper.nogutter .wrapper-smallplus,
  .wrapper.nogutter .wrapper-mini {
    max-width: calc(100% - 60px);
  }

  .wrapper-full.nogutter .wrapper-full.nogutter,
  .wrapper-full.nogutter .wrapper-big.nogutter,
  .wrapper-full.nogutter .wrapper.nogutter,
  .wrapper-full.nogutter .wrapper-plus.nogutter,
  .wrapper-full.nogutter .wrapper-smallplus.nogutter,
  .wrapper-full.nogutter .wrapper-small.nogutter,
  .wrapper-full.nogutter .wrapper-mini.nogutter,
  .wrapper-big.nogutter .wrapper-big.nogutter,
  .wrapper-big.nogutter .wrapper.nogutter,
  .wrapper-big.nogutter .wrapper-plus.nogutter,
  .wrapper-big.nogutter .wrapper-small.nogutter,
  .wrapper-big.nogutter .wrapper-smallplus.nogutter,
  .wrapper-big.nogutter .wrapper-mini.nogutter,
  .wrapper-plus.nogutter .wrapper-plus.nogutter,
  .wrapper-plus.nogutter .wrapper-small.nogutter,
  .wrapper-plus.nogutter .wrapper-smallplus.nogutter,
  .wrapper-plus.nogutter .wrapper-mini.nogutter,
  .wrapper-plus.nogutter .wrapper.nogutter,
  .wrapper.nogutter .wrapper.nogutter,
  .wrapper.nogutter .wrapper-small.nogutter,
  .wrapper.nogutter .wrapper-smallplus.nogutter,
  .wrapper.nogutter .wrapper-mini.nogutter {
    max-width: 100%;
  }
}

@media (max-width: 575px) {

  .wrapper-full.nogutter .wrapper-big,
  .wrapper-full.nogutter .wrapper,
  .wrapper-full.nogutter .wrapper-plus,
  .wrapper-full.nogutter .wrapper-smallplus,
  .wrapper-full.nogutter .wrapper-small,
  .wrapper-full.nogutter .wrapper-mini,
  .wrapper-big.nogutter .wrapper,
  .wrapper-big.nogutter .wrapper-plus,
  .wrapper-big.nogutter .wrapper-mini,
  .wrapper-big.nogutter .wrapper-small,
  .wrapper-big.nogutter .wrapper-smallplus,
  .wrapper-plus.nogutter .wrapper,
  .wrapper-plus.nogutter .wrapper-mini,
  .wrapper-plus.nogutter .wrapper-small,
  .wrapper-plus.nogutter .wrapper-smallplus,
  .wrapper.nogutter .wrapper-small,
  .wrapper.nogutter .wrapper-smallplus,
  .wrapper.nogutter .wrapper-mini {
    max-width: calc(100% - 30px);
  }
}

[class*="wrapper"]:not(.nogutter) [class*="wrapper"] {
  width: 100%;
}

@media (max-width: 1199px) {
  .wrapper.wrapper-lg-fluid {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .wrapper.wrapper-md-fluid {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .wrapper.wrapper-sm-fluid {
    width: 100%;
  }
}

.wrapper.nogutter,
.wrapper-mini.nogutter,
.wrapper-small.nogutter,
.wrapper-smallplus.nogutter,
.wrapper-plus.nogutter,
.wrapper-big.nogutter,
.wrapper-full.nogutter {
  width: 100%;
}

.template-block {
  display: block;
  background-color: #fff;
  box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.1);
}

.template-block .block-inner {
  overflow: hidden;
}

.template-block .block-cover {
  z-index: 1;
  position: relative;
}

.template-block .block-cover .block-entry .content-entry .text-title {
  margin-bottom: 0;
}

/* cover + breadcrumb */
.template-block .block-cover .block-breadcrumb {
  position: absolute;
  top: 0;
  padding: 5px 15px;
  background-color: rgba(255, 255, 255, 0.75);
  font-size: 0.625em;
}

.template-block.single .block-cover .block-breadcrumb {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  border-bottom-right-radius: 2px;
  background-color: #000;
  color: #fff;
}

.template-block.single .block-cover .block-breadcrumb a {
  color: #fff;
}

/* cover entry */
.template-block .block-cover .block-entry {
  z-index: 1;
  position: relative;
}

.template-block .block-cover .block-entry .block-entry-inner {
  position: relative;
}

.template-block .block-cover .block-entry .block-entry-inner .content-entry {
  width: 100%;
  padding: 30px 15px 0 15px;
  background-color: rgba(255, 255, 255, 0.875);
}

.template-block .block-cover .block-entry .block-entry-inner .content-entry.text-light {
  background-color: rgba(0, 0, 0, 0.875);
}

@media (max-width: 767px) {
  .template-block .block-cover .block-entry .block-entry-inner .content-entry.text-light {
    padding-bottom: 30px;
  }
}

.template-block .block-title .text-parent,
.template-block .block-title .text-title,
.template-block .block-title .text-meta,
.template-block .block-title .link-external {
  margin-bottom: 0;
}

.template-block .block-title .link-external {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 2px;
  background-color: #b43b6b;
  color: #fff;
}

.template-block .block-title .link-external:hover {
  background-color: #000;
}

.template-block .block-title .link-external i {
  margin-right: 10px;
}

.template-block .block-title .text-parent {
  display: inline-block;
  position: relative;
  font-size: 1em;
  font-weight: 400;
  line-height: 28px;
  color: #000;
  padding-right: 40px;
}

.template-block .block-title .text-parent::after {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  width: 30px;
  height: 1px;
  background-color: #000;
}

.template-block .block-title .text-parent+.text-title {
  margin-top: 10px;
}

.template-block .block-title .text-title {
  color: #de5c8e;
  font-weight: 700;
}

.template-block .block-title .text-title+.text-meta {
  margin-top: 15px;
}

.template-block .block-title .text-meta {
  font-size: 0.875em;
  font-weight: 400;
  color: #808080;
}

.template-block .block-title .post-meta {
  position: relative;
  width: 100%;
  margin-top: 15px;
  font-size: 0.875em;
  line-height: 1.875;
}

.template-block .block-title .post-type a {}

.template-block .block-title .post-type a:hover {}

.template-block .block-title .post-meta i {
  width: 24px;
}

.template-block .block-title .post-date,
.template-block .block-title .post-type {
  position: relative;
  float: left;
  margin-right: 30px;
}

.template-block .block-content,
.template-block .block-sidebar {
  padding: 50px 15px;
}

.template-block.single .block-content,
.template-block.single .block-sidebar {
  padding-top: 30px;
  padding-bottom: 30px;
}

.template-block .block-title+.block-featured-media {
  margin-top: 30px;
}

.template-block .block-title+.block-entry,
.template-block .block-featured-media+.block-entry {
  padding-top: 30px;
}

.template-block .block-entry+.block-tag {
  padding-top: 30px;
}

.template-block .block-share {
  padding-top: 30px;
  text-align: center;
}

.template-block .block-button {
  padding: 30px 0;
  text-align: center;
}

/* sidebar */
.template-block .col-sidebar {
  background-color: #f5f5f5;
}

.template-block .block-sidebar {
  border-top: 5px solid #e5e5e5;
}

.template-block .content-entry.text-light .block-title .text-parent,
.template-block .content-entry.text-light .block-title .text-title {
  color: #fff;
}

.template-block .content-entry.text-light .block-title .text-parent::after {
  background-color: #fff;
}

.template-block .content-entry.text-light .block-title .text-meta {
  color: #7f7f7f;
}

.template-block .content-entry.text-light .block-title .link-external:hover {
  background-color: #de5c8e;
}

.template-block.single {
  border: none;
}

.template-block.single .block-sidebar {
  border: none;
}

/* nomedia */
.template-block.nomedia {
  box-shadow: none;
}

.template-block.nomedia .block-cover .block-breadcrumb {
  position: relative;
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #e5e5e5;
}

.template-block.nomedia .block-cover .block-breadcrumb,
.template-block.nomedia .block-cover .block-breadcrumb a {
  color: #000;
}

.template-block.nomedia .block-cover .block-breadcrumb a:hover {
  color: #de5c8e;
}

.template-block.nomedia .block-cover .block-entry {
  position: relative;
}

.template-block.nomedia .block-cover .block-entry .block-entry-inner {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}

.template-block.nomedia .block-cover .block-entry .block-entry-inner .content-entry:not(.text-light) {
  padding-bottom: 0;
}

.template-block.nomedia .block-cover .block-entry .block-entry-inner .content-entry.text-light {
  width: calc(100% - 15px);
}

.template-block.single .block-title .text-title {
  font-size: 1.5em;
}

@media (min-width: 576px) {
  .template-block .block-cover .block-entry {
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
  }

  .template-block .block-cover .block-entry .block-entry-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
  }

  .template-block .block-cover .block-entry .block-entry-inner .content-entry {
    max-width: 75%;
    padding: 50px 30px;
  }

  .template-block .block-content,
  .template-block .block-sidebar {
    padding: 50px 30px;
  }

  .template-block .block-entry+.block-tag {
    padding-top: 40px;
  }

  .template-block .block-share {
    padding-top: 40px;
  }

  .template-block.single .block-cover .block-breadcrumb {
    padding-left: 30px;
  }

  .template-block .block-button {
    padding: 40px 0;
  }

  .template-block.single .block-title .text-title {
    font-size: 1.625em;
  }
}

@media (min-width: 768px) {
  .template-block .block-cover .block-entry .block-entry-inner .content-entry {
    padding: 50px;
  }

  .template-block .block-content,
  .template-block .block-sidebar {
    padding: 80px 50px;
  }

  .template-block .block-button {
    padding: 50px 0;
  }

  .template-block.single .block-title .text-title {
    font-size: 1.75em;
  }
}

@media (min-width: 992px) {
  .template-block .block-cover .block-entry .block-entry-inner .content-entry {
    padding: 50px 50px 50px 80px;
  }

  .template-block .block-content,
  .template-block .block-sidebar {
    padding: 80px;
  }

  .template-block.single .block-content {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .template-block.single.has-hero .block-content,
  .template-block.single.has-hero .block-sidebar {
    padding-top: 50px;
  }

  .template-block .block-button {
    padding: 50px 0;
  }

  .template-block.single .block-title .text-title {
    font-size: 2em;
  }
}

@media (min-width: 1200px) {
  .template-block .block-cover .block-entry .block-entry-inner .content-entry {
    padding: 50px 50px 50px 120px;
  }

  .template-block.has-sidebar .block-cover .block-entry .block-entry-inner .content-entry {
    padding-left: 80px;
  }

  .template-block .block-content {
    padding: 100px 120px;
  }

  .template-block.has-sidebar .block-content {
    padding-left: 80px;
    padding-right: 80px;
  }

  .template-block .block-sidebar {
    padding: 100px 30px;
    border-top: none;
  }

  .template-block.single {
    border-bottom: none;
  }

  .template-block.single .block-cover .block-breadcrumb {
    position: absolute;
    padding-left: 15px;
  }

  .template-block.single .block-title .text-title {
    font-size: 2.25em;
    font-weight: 700;
  }

  .template-block.single .block-content {
    padding-top: 120px;
    padding-bottom: 80px;
    padding-left: 40px;
  }

  .template-block .block-button {
    padding: 0 40px 80px 0;
  }

  .template-block.single .block-sidebar {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .template-block.has-sidebar.nomedia .col-sidebar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 100%;
    background-color: #e5e5e5;
  }
}

/*-------------------------------------------------------------------

 Wordpress Style

-------------------------------------------------------------------*/
.post,
.page {
  margin: 0;
}

.widget-area .widget {
  margin: 0 0 30px 0;
}

.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget-area .search-form {
  position: relative;
  width: 100%;
}

.widget-area .search-form label {
  width: 100%;
  margin: 0;
  padding: 0;
}

.widget-area .search-form input[type="search"] {
  width: 100%;
  line-height: 48px;
  margin: 0;
  padding: 0 70px 0 10px;
  border-radius: 2px;
  font-size: 0.875em;
}

.widget-area .search-form .search-submit {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 44px;
  padding: 0;
  border-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  background: url(../info-img/search.html) 50% 50% no-repeat;
  background-size: 22px 22px;
  font-size: 0.875em;
  text-align: center;
  text-indent: -9999px;
  cursor: pointer;
}

.widget-title {
  font-size: 1.25em;
  color: #b43b6b;
  margin-bottom: 0.375em;
}

.widget_recent_entries ul li,
.widget_archive ul li,
.widget_categories ul li,
.widget_meta ul li {
  list-style: none;
}

@media (min-width: 576px) {
  .the-content .wp-block-column:not(:first-child) {
    margin-left: 30px;
  }
}

@media screen and (max-width: 991px) {
  #bg-col-5-4 {
    box-shadow: unset !important;
  }

  body .menu-is-open {
    background: white !important;
  }
}

.wp-block-column:nth-child(even) {
  margin-left: 0;
}

@media (min-width: 768px) {
  .wp-block-column:nth-child(even) {
    margin-left: 30px;
  }
}

.widget-area .search-form input[type="search"] {
  width: 100%;
  line-height: 48px;
  margin: 0;
  padding: 0 70px 0 10px;
  border-radius: 2px;
  border: 1px solid #000;
  font-size: 0.875em;
}

.widget-area .search-form .search-submit {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border: 1px solid #000;
  font-size: 0.875em;
  text-align: center;
  cursor: pointer;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/*----------------------------------------------
 spacer
----------------------------------------------*/
.spacer,
div[class*="spacer-"] {
  display: block;
}

.spacer-mini {
  height: 20px;
}

.spacer-small {
  height: 30px;
}

.spacer,
.spacer-medium {
  height: 40px;
}

.spacer-big {
  height: 50px;
}

.spacer-large {
  height: 60px;
}

@media (min-width: 768px) {
  .spacer-mini {
    height: 30px;
  }

  .spacer-small {
    height: 40px;
  }

  .spacer,
  .spacer-medium {
    height: 50px;
  }

  .spacer-big {
    height: 80px;
  }

  .spacer-large {
    height: 100px;
  }
}

/*----------------------------------------------
 Box
----------------------------------------------*/
.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-evenly;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0 auto;
}

.box-cell {
  position: relative;
  box-sizing: border-box;
}

/*----------------------------------------------
 Arrow
----------------------------------------------*/
.arrow {
  width: 22px;
  height: 22px;
  margin-top: 19px;
  display: inline-block;
  position: relative;
  fill: #000;
}

.text-light .arrow {
  fill: #fff;
}

.arrow.arrow-top {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.arrow.arrow-bottom {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.arrow.arrow-right {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Image caption
------------------------------------------------*/
.wp-caption .wp-caption-text {
  margin: 0;
  font-size: 0.875em;
  color: #808080;
}

/*----------------------------------------------
 Thumb Overlay Effect
----------------------------------------------*/
.thumb-hover {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  /* workaround for inline-block margin */
  overflow: hidden;
}

/* caption */
.thumb-hover .overlay-caption {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 7%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.x2 .thumb-hover .overlay-caption,
.x3 .thumb-hover .overlay-caption,
.x4 .thumb-hover .overlay-caption,
.x5 .thumb-hover .overlay-caption {
  padding: 3.5%;
}

.thumb-hover .overlay-caption:not(.align-left):not(.align-right):not(.text-left):not(.text-right) {
  text-align: center;
}

.thumb-hover .overlay-caption.bottom {
  top: inherit;
  bottom: 0;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.thumb-hover .overlay-caption.top {
  top: 0;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.thumb-hover .overlay-caption.hidden {
  opacity: 0;
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: opacity 0.5s ease;
}

.thumb-hover:hover .overlay-caption.hidden {
  opacity: 1;
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.thumb-hover .overlay-caption.hidden:not(.fade) .caption-sub,
.thumb-hover .overlay-caption.hidden:not(.fade) .caption-name {
  display: block;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: all 0.6s ease 0s;
}

.thumb-hover .overlay-caption.top.hidden:not(.fade) .caption-sub,
.thumb-hover .overlay-caption.top.hidden:not(.fade) .caption-name {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
}

.thumb-hover:hover .overlay-caption.hidden:not(.fade) .caption-name {
  transition-delay: 0.15s;
}

.thumb-hover:hover .overlay-caption.hidden:not(.fade) .caption-sub,
.thumb-hover:hover .overlay-caption.hidden:not(.fade) .caption-name {
  -webkit-transform: translateX(0px) translateY(0px);
  -moz-transform: translateX(0px) translateY(0px);
  -ms-transform: translateX(0px) translateY(0px);
  -o-transform: translateX(0px) translateY(0px);
  transform: translateX(0px) translateY(0px);
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.thumb-hover .overlay-caption .caption-sub,
.thumb-hover .overlay-caption .caption-name {
  line-height: 1.3em !important;
}

.caption-sub+.caption-name,
.caption-name+.caption-sub {
  margin-top: 15px;
}

.caption-dark .caption-sub,
.caption-sub .caption-dark .caption-name,
.caption-name {
  color: #000;
  transition: color 0.41s ease;
}

.caption-light .caption-sub,
.text-light .caption-sub,
.caption-light .caption-name,
.text-light .caption-name {
  color: #fff;
  transition: color 0.41s ease;
}

/* img effect */
.thumb-hover img {
  transition: all 0.5s ease 0s;
}

.thumb-hover.scale img {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}

.thumb-hover.scale:hover img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.thumb-hover.scale-in img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.thumb-hover.scale-in:hover img {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}

/* overlay effect */
.thumb-hover.overlay-color::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: opacity 0.4s ease;
}

.thumb-hover.overlay-color.text-light::before {
  background: rgba(0, 0, 0, 0.5);
}

.thumb-hover.overlay-color:hover::before {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.thumb-hover.overlay-color:hover .caption-sub,
.thumb-hover.overlay-color:hover .caption-name {
  color: #000;
}

.thumb-hover.text-light.overlay-color:hover .caption-sub,
.thumb-hover.text-light.overlay-color:hover .caption-name {
  color: #fff;
}

/* 2nd hover image */
.thumb-hover .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.4s ease;
}

.thumb-hover .hover-image>img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.thumb-hover.image:hover img:not(.hover) {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.hover {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
}

.hover::after {
  content: "";
  display: block;
  background-color: inherit;
  -webkit-transition: 3s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: 3s transform cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.9;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(2) translateX(-100%) translateY(-100%) translateZ(0px) rotate(-45deg);
  transform: scale(2) translateX(-100%) translateY(-100%) translateZ(0px) rotate(-45deg);
}

.hover-out {
  -webkit-transition: 0.75s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.75s transform cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0px);
  transform: translateZ(0px);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  margin: -1px 0px;
}

.hover-in {
  opacity: 0;
  -webkit-transform: translateY(-40px) translateZ(0px);
  transform: translateY(-40px) translateZ(0px);
  -webkit-transition: 0.5s opacity cubic-bezier(0.23, 1, 0.32, 1),
    0.5s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.5s opacity cubic-bezier(0.23, 1, 0.32, 1),
    0.5s transform cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

@media (min-width: 992px) {
  .hover:hover::after {
    -webkit-transform: scale(2) rotate(-45deg) translateZ(0px);
    transform: scale(2) rotate(-45deg) translateZ(0px);
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
  }

  .hover:hover .hover-out {
    -webkit-transform: scale(1.2) translateZ(0px);
    transform: scale(1.2) translateZ(0px);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .hover:hover .hover-in {
    opacity: 1;
    -webkit-transform: translateY(0px) translateZ(0px);
    transform: translateY(0px) translateZ(0px);
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
    -webkit-transition-duration: 0.75s;
    transition-duration: 0.75s;
  }
}

/*----------------------------------------------
 Overlay
----------------------------------------------*/
.overlay-wrapper {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0.25;
}

.overlay-pattern {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  background: url(../images/bg-overlay-pattern.html);
  opacity: 0.5;
  overflow: hidden;
}

/*----------------------------------------------
 Parallax
----------------------------------------------*/
.paralaxbg {
  background-size: cover;
  background-position: 50% 50%;
}

@media (min-width: 992px) {
  .no-touchevents .paralaxbg {
    background-position: calc(50% + 40px) 0;
    background-attachment: fixed;
    will-change: transform;
  }
}

/*----------------------------------------------
 Text Decoration
----------------------------------------------*/

/* Text Underline
------------------------------------------------*/
.text-underline,
.text-underline a {
  text-decoration: underline !important;
}

/* Text Slash
----------------------------------------------*/
.text-line-slash {
  position: relative;
  padding: 15px 0 20px 45px;
}

.text-line-slash::before {
  content: "";
  position: absolute;
  display: block;
  top: 50px;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.text-line-slash-no1,
.text-line-slash-no2 {
  position: absolute;
  font-family: "chulalongkornbold", sans-serif;
  font-size: 0.875em;
  color: #000;
}

.text-line-slash-no1 {
  top: 5px;
  left: -10px;
}

.text-line-slash-no2 {
  top: 28px;
  left: 15px;
}

/* Text Line
----------------------------------------------*/
.text-line-left,
.text-line-right,
.text-line-top,
.text-line-bottom {
  position: relative;
  line-height: 1.5em;
}

.text-line-left::before,
.text-line-right::after,
.text-line-top::before,
.text-line-bottom::after {
  content: "";
  position: absolute;
  background-color: #000;
}

.text-light .text-line-left::before,
.text-light .text-line-right::after,
.text-light .text-line-top::before,
.text-light .text-line-bottom::after,
.text-line-left.text-light::before,
.text-line-right.text-light::after,
.text-line-top.text-light::before,
.text-line-bottom.text-light::after {
  background-color: #fff;
}

/* Line Left
----------------------------------------------*/
.text-line-left {
  padding-left: 65px;
  text-align: left;
}

.text-line-left.line-small {
  padding-left: 45px;
}

.text-line-left::before {
  top: 0.75em;
  left: 0;
  width: 50px;
  height: 1px;
}

.text-line-left.line-small::before {
  width: 30px;
}

/* Line Right
----------------------------------------------*/
.text-line-right {
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
}

.text-line-right::after {
  top: 0.75em;
  width: 100px;
  height: 1px;
  margin-left: 10px;
  box-sizing: border-box;
}

/* Line Top
----------------------------------------------*/
.text-line-top {
  margin-top: 1.5rem !important;
  padding-top: 1rem !important;
}

.text-line-top::before {
  top: 0;
  left: 0;
  width: 30px;
  height: 1px;
}

.text-line-top.text-center::before {
  left: 50%;
  margin-left: -15px;
}

.text-line-top.line-small::before {
  width: 30px;
  height: 1px;
}

.text-line-top.line-small.text-center::before,
.text-center .text-line-top.line-small::before {
  left: 50%;
  margin-left: -15px;
}

/* Line Bottom
----------------------------------------------*/
.text-line-bottom {
  margin: 0 0 1.5rem 0 !important;
  padding: 0 0 1rem 0 !important;
}

.text-line-bottom::after {
  top: 100%;
  left: 0;
  width: 30px;
  height: 1px;
}

.text-line-bottom.text-center,
.text-center .text-line-bottom {
  text-align: center;
}

.text-line-bottom.text-center::after,
.text-center .text-line-bottom::after {
  left: 50%;
  margin-left: -15px;
}

.text-line-bottom.line-small::after {
  width: 30px;
  height: 1px;
}

.text-line-bottom.line-small.text-center::before,
.text-center .text-line-bottom.line-small::before {
  left: 50%;
  margin-left: -15px;
}

/* -----------------------------------------------------------------------------------

3. PAGE LOADER

----------------------------------------------------------------------------------- */
/*----------------------------------------------
 Page Loader
----------------------------------------------*/
#page-loader {
  z-index: 1500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  transition-delay: 0.9s;
}

.loaded #page-loader {
  opacity: 0;
  transition-delay: 0.9s;
}

.loading-end #page-loader {
  display: none;
}

#page-loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  transition: opacity 0.5s ease 0.3s;
}

.loaded #page-loader .loader-icon {
  opacity: 0;
}

#page-loader+#page-content #logo {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

body.loading-end #page-loader+#page-content #logo {
  opacity: 1;
  visibility: visible;
}

#page-loader+#page-content header {
  left: 0;
  transition-duration: 0.7s;
}

@media (min-width: 992px) {
  #page-loader+#page-content header {
    left: -81px;
  }
}

.loaded #page-loader+#page-content header {
  left: 0;
}

/*----------------------------------------------
 Loader Icon
----------------------------------------------*/
.loader-icon[class*="bullets"] {
  display: inline-block;
  position: relative;
  width: 6px;
  height: 6px;
}

.loader-icon[class*="bullets"] span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #fe5e2c;
}

.loader-icon[class*="bullets"] span:nth-of-type(1) {
  left: 12px;
}

.loader-icon[class*="bullets"] span:nth-of-type(3) {
  left: -12px;
}

/* bullets fade */
.loader-icon.bullets-fade span {
  -webkit-animation: loader-bullets-fade 1.6s infinite ease;
  -moz-animation: loader-bullets-fade 1.6s infinite ease;
  animation: loader-bullets-fade 1.6s infinite ease;
  animation-delay: 0.4s;
}

.loader-icon.bullets-fade span:nth-of-type(1) {
  animation-delay: 0.8s;
}

.loader-icon.bullets-fade span:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes loader-bullets-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.3;
  }

  80% {
    opacity: 1;
  }
}

@-moz-keyframes loader-bullets-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.3;
  }

  80% {
    opacity: 1;
  }
}

@keyframes loader-bullets-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.3;
  }

  80% {
    opacity: 1;
  }
}

/* bullets jump */
.loader-icon.bullets-jump span {
  -webkit-animation: loader-bullets-jump 1.2s infinite ease;
  -moz-animation: loader-bullets-jump 1.2s infinite ease;
  animation: loader-bullets-jump 1.2s infinite ease;
  animation-delay: 0.2s;
}

.loader-icon.bullets-jump span:nth-of-type(1) {
  animation-delay: 0.4s;
}

.loader-icon.bullets-jump span:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes loader-bullets-jump {
  0% {
    top: 0;
  }

  40% {
    top: -4px;
  }

  80% {
    top: 0;
  }
}

@-moz-keyframes loader-bullets-jump {
  0% {
    top: 0;
  }

  40% {
    top: -4px;
  }

  80% {
    top: 0;
  }
}

@keyframes loader-bullets-jump {
  0% {
    top: 0;
  }

  40% {
    top: -4px;
  }

  80% {
    top: 0;
  }
}

/* bullets pulse */
.loader-icon.bullets-pulse span {
  -webkit-animation: loader-bullets-pulse 1.2s infinite ease;
  -moz-animation: loader-bullets-pulse 1.2s infinite ease;
  animation: loader-bullets-pulse 1.2s infinite ease;
  animation-delay: 0.2s;
}

.loader-icon.bullets-pulse span:nth-of-type(1) {
  animation-delay: 0.4s;
}

.loader-icon.bullets-pulse span:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes loader-bullets-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes loader-bullets-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes loader-bullets-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* -----------------------------------------------------------------------------------

4. HEADER, MENU TOGGLE (Hamburger), MAIN MENU, HEADER ACTION, HEADER WIDGET

----------------------------------------------------------------------------------- */

/*----------------------------------------------
 Movable Header
----------------------------------------------*/
#header-move {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 992px) {
  #header-move {
    z-index: 1500;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  body.loading-end #header-move {
    opacity: 1;
    visibility: visible;
  }

  #logo-move {
    display: block;
    position: absolute;
    top: 30px;
    left: 120px;
    width: 181px;
    height: 60px;
    background: url(../images/logo-chula-desktop.html) 0 0 no-repeat;
    background-size: cover;
  }

  #logo-move.logo-light {
    background: url(../images/logo-chula-desktop-light.html) 0 0 no-repeat;
    background-size: cover;
  }

  #logo-move a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .home #logo-move {
    display: none !important;
  }
}

/*----------------------------------------------
 Fixed Header
----------------------------------------------*/
header {
  z-index: 1501;
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 500ms cubic-bezier(0.74, 0.215, 0.125, 1);
  -webkit-transition: all 500ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
  -moz-transition: all 500ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
  -o-transition: all 500ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
  transition: all 500ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
  -webkit-transition-timing-function: cubic-bezier(0.74, 0.215, 0.125, 1);
  -webkit-transition-timing-function: cubic-bezier(0.74, 0.215, 0.125, 1.02);
  -moz-transition-timing-function: cubic-bezier(0.74, 0.215, 0.125, 1.02);
  -o-transition-timing-function: cubic-bezier(0.74, 0.215, 0.125, 1.02);
  transition-timing-function: cubic-bezier(0.74, 0.215, 0.125, 1.02);
  transition-delay: 0.05s;
}

header::after {
  content: "";
  z-index: 1501;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-co: rgba(0, 0, 0, 0.1);
}

#page-loader+#page-content header {
  top: -60px;
}

.loaded #page-content header {
  top: 0 !important;
}

header.menu-is-open {
  width: 100%;
  transition-delay: 0s;
}

@media (min-width: 992px) {
  header {
    width: 80px;
    height: 100%;
    background-color: rgba(255, 255, 255);
    box-shadow: none;
  }

  header::after {
    top: 0;
    bottom: auto;
    left: 79px;
    width: 1px;
    height: 100%;
  }

  #page-loader+#page-content header {
    top: 0;
    left: -80px;
    z-index: 99999999;
  }

  .loaded #page-content header {
    top: 0 !important;
    left: 0;
  }

  header.menu-is-open {
    width: 480px;
  }
}

header .pseudo-close {
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  cursor: url(../images/cursor-close-x.html), auto;
  transition: all 0.7s ease;
  transition-delay: 0;
  opacity: 0;
  visibility: hidden;
}

header.menu-is-open .pseudo-close {
  z-index: 1001;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 992px) {
  header .pseudo-close {
    background-color: rgba(0, 0, 0, 0.25);
  }

  header.menu-is-open .pseudo-close {
    z-index: 1001;
    left: 480px;
    right: auto;
    height: 100%;
    opacity: 1;
    visibility: visible;
  }
}

/*----------------------------------------------
 Logo
----------------------------------------------*/
#logo {
  z-index: 1502;
  position: fixed;
  top: 0;
  left: 0;
  width: 157px;
  height: 60px;
  background: url(../images/logo-chula-mobile-color.html) 0 0 no-repeat;
  background-size: 127px 30px;
  background-position: 15px 15px;
  transition: all 0.3s ease;
}

#logo a {
  display: block;
  width: 100%;
  height: 100%;
}

#page-loader+#page-content #logo,
#page-loader+#page-content #logo-movable {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

body.loading-end #page-loader+#page-content #logo,
body.loading-end #page-loader+#page-content #logo-movable {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 576px) {
  #logo {
    width: 187px;
    background-position: 30px 15px;
  }
}

@media (min-width: 992px) {
  #logo {
    top: 30px;
    left: 120px;
    width: 335px;
    height: 60px;
    background-size: cover;
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    transform: translateX(-50px);
    transition: all 0.9s ease;
  }

  body.loading-end #page-loader+#page-content #logo {
    opacity: 0;
    visibility: hidden;
  }

  body.loading-end #page-loader+#page-content header.menu-is-open #logo {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 0.3s;
  }
}

/*----------------------------------------------
 Menu
----------------------------------------------*/
header #menu {
  float: right;
  height: 60px;
}

@media (min-width: 992px) {
  header #menu {
    float: none;
    height: 50px;
  }
}

/*----------------------------------------------
 Menu Action
----------------------------------------------*/
.menu-actions {
  z-index: 1503;
  position: relative;
  float: right;
  width: 60px;
  height: 60px;
}

@media (min-width: 992px) {
  .menu-actions {
    float: none;
    width: 80px;
    height: 80px;
  }
}

/*----------------------------------------------
 Menu Toggle
----------------------------------------------*/
.menu-toggle {
  z-index: 10;
  position: relative;
  display: block;
  width: 80px;
  max-width: 100%;
  height: 30px;
  cursor: pointer;
  overflow: visible;
  transition: height 0.3s ease, transform 0.3s ease;
}

@media (min-width: 992px) {
  .menu-toggle {
    width: 80px;
    height: 80px;
    margin-top: 29px;
  }
}

/*----------------------------------------------
 Hamburger Button
----------------------------------------------*/
.menu-toggle span.hamburger,
.menu-toggle span.hamburger:after,
.menu-toggle span.hamburger:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  margin-top: -1px;
  margin-left: -13px;
  background-color: #000;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s cubic-bezier(0.6, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.6, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.6, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.6, 0, 0.2, 1);
  -webkit-transition-timing-function: cubic-bezier(0.6, 0, 0.2, 1);
  -moz-transition-timing-function: cubic-bezier(0.6, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0.6, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.6, 0, 0.2, 1);
  transition-delay: 0s;
}

.menu-toggle span.hamburger:before {
  margin-top: -7px;
  top: 0;
}

.menu-toggle span.hamburger:after {
  margin-top: 7px;
  top: 0;
}

@media (min-width: 992px) {

  .menu-toggle span.hamburger:after,
  .menu-toggle span.hamburger:before {
    background-color: #888888;
  }

  .menu-toggle span.hamburger {
    background-color: #544e4e;
  }
}

header:not(.menu-is-open) .menu-toggle:hover span.hamburger {
  width: 18px;
  margin-left: -9px;
}

header.menu-is-open .menu-toggle span.hamburger {
  background: transparent !important;
  transition-delay: 0.1s;
  transition-duration: 0.2s;
}

header.menu-is-open .menu-toggle span.hamburger:before {
  background-color: #ffffff;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: 0px;
}

header.menu-is-open .menu-toggle span.hamburger:after {
  background-color: #ffffff;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: 0px;
}

/*----------------------------------------------
 Main Menu
----------------------------------------------*/
#menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin-top: 0px;
  padding: 10px 0px;
  /*background-color: #FFFFFF;*/
  transition: all 0.3s ease 0.3s;
  opacity: 0;
  visibility: hidden;
  /*overflow-x: hidden;*/
}

#menu-inner::after {
  content: "";
  z-index: 1501;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

header.menu-is-open #menu-inner {
  opacity: 1;
  transition-delay: 0.2s;
  visibility: visible;
  overflow-y: scroll;
  width: calc(100% - 80px);
  background: rgb(191 87 87 / 70%);
}

@media (max-width: 991px) {
  #menu-inner {
    z-index: 1502;
    position: fixed;
    width: 320px;
    height: 100%;
    margin-top: 0px;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }

  #menu-inner {
    -webkit-transition: all 799ms cubic-bezier(0.74, 0.215, 0.125, 1);
    -webkit-transition: all 799ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
    -moz-transition: all 799ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
    -o-transition: all 799ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
    transition: all 799ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
    -webkit-transition-timing-function: cubic-bezier(0.74, 0.215, 0.125, 1);
    -webkit-transition-timing-function: cubic-bezier(0.74, 0.215, 0.125, 1.02);
    -moz-transition-timing-function: cubic-bezier(0.74, 0.215, 0.125, 1.02);
    -o-transition-timing-function: cubic-bezier(0.74, 0.215, 0.125, 1.02);
    transition-timing-function: cubic-bezier(0.74, 0.215, 0.125, 1.02);
    right: -320px;
    transition-delay: 0.05s;
  }

  header.menu-is-open #menu-inner {
    right: 0;
    transition-delay: 0s;
  }
}

#main-nav {
  /*overflow-y: scroll; */
  height: calc(100vh - 60px - 40px);
  margin-top: 90px;
}

@media (min-width: 992px) {
  #main-nav {
    height: calc(100vh - 110px - 40px);
    margin-top: 0;
  }
}

#main-nav ul {
  overflow: visible;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  #main-nav ul {
    margin-left: 5px;
    margin-right: 25px;
    margin-top: 39px;
  }
}

#main-nav>ul>li {
  display: block;
  position: relative;
  left: 0;
  margin: 0;
  padding: 0;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
  transition: all 0.5s ease;
  transition-delay: 0s;
  opacity: 0;
  visibility: hidden;
}

header.menu-is-open #main-nav>ul>li {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  #main-nav>ul>li {
    -webkit-transform: translateX(0) !important;
    -moz-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    -o-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }
}

header.menu-is-open #main-nav>ul>li {
  transition-delay: 0.3s;
}

header.menu-is-open #main-nav>ul>li:nth-child(2) {
  transition-delay: 0.35s;
}

header.menu-is-open #main-nav>ul>li:nth-child(3) {
  transition-delay: 0.4s;
}

header.menu-is-open #main-nav>ul>li:nth-child(4) {
  transition-delay: 0.45s;
}

header.menu-is-open #main-nav>ul>li:nth-child(5) {
  transition-delay: 0.5s;
}

header.menu-is-open #main-nav>ul>li:nth-child(6) {
  transition-delay: 0.55s;
}

header.menu-is-open #main-nav>ul>li:nth-child(7) {
  transition-delay: 0.6s;
}

header.menu-is-open #main-nav>ul>li:nth-child(8) {
  transition-delay: 0.65s;
}

header.menu-is-open #main-nav>ul>li:nth-child(9) {
  transition-delay: 0.7s;
}

header.menu-is-open #main-nav>ul>li:nth-child(10) {
  transition-delay: 0.75s;
}

header.menu-is-open #main-nav>ul>li:nth-child(11) {
  transition-delay: 0.8s;
}

header.menu-is-open #main-nav>ul>li:nth-child(12) {
  transition-delay: 0.85s;
}

body #main-nav ul>li>a {
  display: block;
  position: relative;
  width: 100%;
  line-height: 28px;
  font-family: 'quark', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #fff;
  vertical-align: bottom;
  padding: 15px 20px;
}

ul.sub-menu {
  opacity: 1;
  transition-delay: 0.2s;
  visibility: visible;
  width: calc(100% - 0px);
  background: rgb(255 151 151 / 45%);
}

@media (min-width: 992px) {
  #main-nav ul>li>a {
    padding-left: 0;
    padding-right: 31px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  body #main-nav ul>li>a {
    padding: 15px 20px;
  }
}

#main-nav ul>li>a:hover,
#main-nav ul>li.current_page_item>a,
#main-nav ul>li.current-menu-item>a,
#main-nav ul>li.current-menu-ancestor>a,
#main-nav ul>li.current-menu-parent>a {
  color: #8a1b00;
}

#main-nav>ul>li ul.sub-menu {
  margin: 0;
  padding: 6px 0;
  display: none;
  width: auto;
}

#main-nav ul.sub-menu ul.sub-menu {
  display: none;
}

header:not(.menu-is-open) #main-nav ul.sub-menu li:last-child>ul.sub-menu {
  padding-bottom: 0;
}

#main-nav ul.sub-menu li {
  margin: 0;
}

#main-nav ul.sub-menu li:last-child {
  margin-bottom: 0;
}

#main-nav ul.sub-menu>li>a {
  font-family: 'quark', sans-serif;
  font-weight: 300;
  font-size: 18px;
  height: auto;
  line-height: 25px;
}

.menu-item-has-children {
  z-index: 1;
  position: relative;
}

.menu-item-has-children:after {
  content: "\f054";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  z-index: -1;
  position: absolute;
  top: 29px;
  right: 65px;
  width: 16px;
  height: 0px;
  line-height: 0px;
  font-size: 0.875rem;
  color: #ffffff;
  text-align: center;
  transition: all 0.3s ease;
}

#main-nav ul>li.menu-item-has-children-open a:after {
  border-bottom: 3px solid #ffffff;
}

#main-nav ul>li.menu-item-has-children-open>a {
  color: #ffffff;
}

.menu-item-has-children-open:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(270deg);
  color: #ffffff;
}

@media (min-width: 992px) {
  .menu-item-has-children:after {
    right: 0;
  }

  .sub-menu .menu-item-has-children:after {
    top: 9px;
  }
}

#main-nav>#server_menu2 ul>li ul.sub-menu {
  display: none;
}

#main-nav>#server_menu2 ul>li ul.sub-menu {
  margin-left: 30px;
  padding-left: 15px;
  margin-top: 0px;
  border-left: 0px solid #0072be;
}

#main-nav>#server_menu2 ul>li ul.sub-menu ul.sub-menu {
  margin-left: 0;
}

#main-nav ul.sub-menu>li>a {
  padding-left: 0;
}

@media (min-width: 992px) {
  #main-nav>#server_menu2 ul>li ul.sub-menu {
    margin-left: 0;
  }
}

/*----------------------------------------------
 Header action container (Search & Language)
----------------------------------------------*/
#header-actions {
  z-index: -1;
  position: relative;
  left: auto;
  right: 0;
  width: 89%;
  height: 2px;
  padding-top: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

header.menu-is-open #header-actions::after {
  content: "";
  z-index: 1501;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

header.menu-is-open #header-actions {
  z-index: 1502;
  /*box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);*/
  transition: all 0.3s ease 0.5s;
}

@media (min-width: 992px) {
  #header-actions {
    z-index: 1503;
    left: 0;
    width: 80px;
    height: auto;
    padding-top: 0px;
  }

  #header-actions::before {
    display: none;
  }

  header.menu-is-open #header-actions::after {
    height: 0;
  }

  header.menu-is-open #header-actions {
    box-shadow: none;
  }

}

/*----------------------------------------------
 Header search
----------------------------------------------*/
.header-search {
  width: 80px;
  height: 60px;
  text-align: center;
}

.header-search button {
  display: inline-block;
  /* width: 80px;
  height: 80px; */
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  background-size: 80px 80px;
  color: #000;
  text-align: center;
  transition: all 0.3s ease;
  background-image: url(../../../../portals/1/images/icon_theme/search-new.png) no-repeat;
  ;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .header-search {
    margin-top: 30px;
  }

  .header-search button {
    display: block;
    background-size: 26px 26px;
  }
}

@media (max-width: 991px) {
  .header-search {
    position: fixed;
    top: 0;
    right: 190px;
    margin: 0 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease !important;
  }

  header.menu-is-open .header-search {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease 0.5s !important;
  }
}

/*----------------------------------------------
 Header search popup container
----------------------------------------------*/
.searchsite-container {
  z-index: 9999999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 245, 0.85);
  color: #fff;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media (min-width: 992px) {
  .searchsite-container {
    left: 80px;
    width: calc(100% - 80px);
  }
}

.searchsite-container.searchsite-is-open {
  pointer-events: auto;
  opacity: 1;
}

.searchsite-container .btn-close {
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12);
}

.searchsite-inner {
  position: absolute;
  top: 25%;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 30px;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.searchsite-container .btn-close {
  z-index: 10;
}

.searchsite-container .searchsite-form {
  z-index: 1;
  opacity: 0;
  position: relative;
  transform: scale3d(0.8, 0.8, 1);
  transition: opacity 0.5s, transform 0.5s;
}

.searchsite-container.searchsite-is-open .searchsite-form {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.searchsite-container .searchsite-input {
  float: left;
  width: 100%;
  height: 60px;
  line-height: 58px;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 1.25em;
  color: #000;
  border: 1px solid #fe5e2c;
  border-radius: 4px;
  background-color: #fff;
  text-align: left;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12);
}

.searchsite-container .searchsite-input::-webkit-input-placeholder {
  opacity: 0.25;
  color: #000;
}

.searchsite-container .searchsite-input::-moz-placeholder {
  opacity: 0.25;
  color: #000;
}

.searchsite-container .searchsite-input:-ms-input-placeholder {
  opacity: 0.25;
  color: #000;
}

.searchsite-container .searchsite-input::-webkit-search-cancel-button,
.searchsite-container .searchsite-input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.searchsite-container .searchsite-input::-ms-clear {
  display: none;
}

.searchsite-container .searchsite-button {
  position: absolute;
  right: 0;
  width: 60px;
  height: 60px;
  line-height: 58px;
  padding: 0;
  border: 1px solid #fe5e2c;
  text-align: center;
  color: #de5c8e;
  border-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #fff url(../../../Main_theme/files/images/search-new.html) 50% 50% no-repeat;
  background-size: 24px 24px;
  cursor: pointer;
}

@media (min-width: 576px) {
  .searchsite-inner {
    padding: 0 60px;
  }
}

@media (min-width: 992px) {
  .searchsite-inner {
    top: 50%;
    width: 80%;
    max-width: 720px;
    padding: 0;
  }

  .searchsite-container .searchsite-input {
    height: 80px;
    line-height: 78px;
    padding: 0 30px;
    font-size: 2em;
  }

  .searchsite-container .searchsite-button {
    width: 80px;
    height: 80px;
    line-height: 78px;
  }
}

/*----------------------------------------------
 Header language
----------------------------------------------*/
.header-language {
  position: relative;
  cursor: pointer;
  font-family: "chulalongkornbold", sans-serif;
  font-size: 1.125em;
  letter-spacing: 0.125em;
}

.header-language,
.header-language .language-current {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

header.menu-is-open .header-language {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease 0.5s;
}

.language-content {
  position: fixed;
  top: 0;
  left: auto;
  right: 80px;
  width: auto;
  height: auto;
  transition: all 0.3s ease;
}

.language-content .language-menu {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.language-content .language-menu::before {
  display: none;
  content: "";
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 1px;
  line-height: 60px;
  margin-top: -1px;
  margin-left: -17px;
  background-color: #a5a5a5;
}

.language-content .language-menu li {
  margin: 0px !important;
  opacity: 1;
  display: block;
  float: left;
  width: auto;
}

.language-content .language-menu li a {
  display: block;
  width: auto;
  height: 33px;
  line-height: 30px;
  padding: 0;
  color: #000;
  font-family: quark-bold;
  font-weight: 700;
  border-bottom: 1px solid #a5a5a5;
}

.language-content .language-menu li a:hover {
  color: #d12d00;
}

@media (min-width: 992px) {
  .header-language {
    height: 120px;
  }

  .header-language,
  .header-language .language-current {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease !important;
    margin-top: 30px;
  }

  .header-language~div {
    transition: all 0.3s ease 0.1s;
  }

  .header-language:hover~div {
    margin-left: 80px;
  }

  .header-language:hover .language-current {
    margin-left: 80px;
    transition-delay: 0s;
  }

  .language-current {
    position: relative;
    display: block;
    width: 80px;
    margin-left: 0;
    text-align: center;
    transition: all 0.3s ease;
  }

  .language-current .language-icon {
    display: none;
    width: 80px;
    height: 60px;
    line-height: 60px;
    font-family: quark-bold;
    font-weight: 700;
  }

  .language-current .language-icon:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    line-height: 60px;
    color: #0072bc;
    text-align: center;
  }

  .language-current .language-icon.language-icon-th:before {
    content: "TH";
  }

  .language-current .language-icon.language-icon-en:before {
    content: "EN";
  }

  .language-content {
    position: absolute;
    top: 0;
    left: 0px;
    right: auto;
    width: 100%;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
  }

  .header-language:hover .language-content {
    left: 0;
  }

  .language-content .language-menu {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .language-content .language-menu li {
    z-index: 1;
    display: block;
    position: relative;
    float: none;
    margin: 0;
    opacity: 1;
    transition: all 0.3s ease;
    padding: 0px 23px;
    width: 100%;
    max-width: 100%;
    padding-top: 5px;
  }

  .language-content .language-menu li a {
    text-align: center;
    color: #a4a4a4;
    font-size: 19px;
  }

  .header-language:hover .language-content .language-menu li {
    margin-left: 0;
    opacity: 1;
  }

  .language-content .language-menu li:nth-last-child(1) a {
    border: 0px;
  }
}

/*----------------------------------------------
 Header widget (Social media)
----------------------------------------------*/
#header-widget {
  z-index: 1502;
  position: fixed;
  bottom: 50px;
  width: 80px;
  overflow: hidden;
  text-align: center;
}

.header-socialmedia {
  list-style: none;
  margin: 0;
  padding: 30px 0;
}

.header-socialmedia li {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
}

.header-socialmedia li a {
  display: block;
  width: 100%;
  padding: 0;
  line-height: 50px;
  color: #000;
  text-align: center;
}

/* -----------------------------------------------------------------------------------

5. FOOTER

----------------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------------

6. HERO

----------------------------------------------------------------------------------- */
/*----------------------------------------------
 Hero and Body Wrapper
----------------------------------------------*/
#hero-and-body {
  position: relative;
  width: 100%;
  margin-top: 60px;
  margin-left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  color: #000;
}

body .menu-is-open {
  background: transparent;
}

@media (min-width: 992px) {
  #hero-and-body {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-left: 80px;
  }

}

body.loading-end #hero-and-body {
  opacity: 1;
  visibility: visible;
}

#hero {
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  #hero.hero-big {
    min-height: 75vh;
  }
}

@media (min-width: 992px) {
  .no-touchevents .hero-content-media.paralaxbg {
    background-position: calc(50% + 40px) 0;
    background-attachment: fixed;
    will-change: transform;
  }
}

/*----------------------------------------------
 Hero Style: Full Height
----------------------------------------------*/
.hero-full {
  position: relative;
  height: calc(100vh - 60px);
  min-height: 420px;
  text-align: center;
}

.hero-full .hero-media {
  z-index: 1;
  position: relative;
  height: 100%;
}

.hero-full .hero-overlay {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-full .hero-entry {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

@media (min-width: 576px) {
  .hero-full .text-title {
    font-size: 200%;
  }

  .hero-full .text-meta {
    font-size: 125%;
  }
}

@media (min-width: 768px) {
  .hero-full .text-title {
    font-size: 225%;
  }

  .hero-full .text-meta {
    font-size: 130%;
  }
}

@media (min-width: 992px) {
  .hero-full {
    height: 100vh;
    min-height: 600px;
  }

  .hero-full .text-title {
    font-size: 250%;
  }

  .hero-full .text-meta {
    font-size: 135%;
  }
}

/*----------------------------------------------
 Hero Style: Featured (Home)
----------------------------------------------*/
.hero-featured {
  height: auto;
}

.hero-featured-top {
  position: relative;
}

.hero-featured-top::after {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-featured-media {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-featured-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.hero-featured-overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  background: url(../images/overlay-featured-top.html) 50% 50% no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-featured-bottom .hero-featured-overlay {
  background: url(../images/overlay-featured-bottom.html) 50% 50% no-repeat;
  background-size: cover;
}

.hero-featured-bottom .hero-featured-overlay a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-featured-entry {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-featured-entry .entry-inner {
  position: absolute;
  bottom: 7%;
  width: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-featured-top .text-title-1 {
  font-size: 1.5em;
  line-height: 1.5;
  margin-bottom: 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-featured-top .text-title-2 {
  font-size: 1.125em;
  line-height: 1.625;
  margin-bottom: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-featured-top .text-title-3 {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 0;
}

.hero-featured-top .text-title-1+.text-title-2 {
  margin-top: 5px;
}

.hero-featured-top .text-title-1+.text-title-3,
.hero-featured-top .text-title-2+.text-title-3 {
  margin-top: 15px;
}

.hero-featured-bottom {
  margin-top: 1px;
}

.hero-featured-bottom .hero-featured-entry .entry-inner {
  bottom: 10%;
  padding: 0 15px;
}

.hero-featured-bottom .text-title-1 {
  font-size: 1em;
  line-height: 1.375;
  margin-bottom: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-featured-cta {
  margin-top: 5px;
}

.hero-featured-cta a {
  display: inline-block;
  height: 40px;
  line-height: 36px;
  margin: 10px 5px 0 0;
  padding: 0 20px;
  border: 2px solid #fff;
  border-radius: 20px;
  background-color: #b43b6b;

  font-weight: 400;
  font-size: 0.875em;
  color: #fff !important;
}

.hero-featured-cta a:hover {
  border: 2px solid #fff;
  background-color: #de5c8e;
  text-decoration: none;
}

.hero-featured-cta a.cta-secondary {
  background-color: #202020;
}

.hero-featured-cta a.cta-secondary:hover {
  background-color: #000;
}

.hero-featured-cta a i {
  margin-right: 10px;
}

@media (min-width: 576px) {
  .hero-featured-cta {
    margin-top: 20px;
  }

  .hero-featured-cta a {
    font-size: 1em;
  }

  .hero-featured-bottom .hero-featured-entry .entry-inner {
    padding: 0 30px;
  }
}

@media (min-width: 992px) {
  .hero-featured-top .text-title-1 {
    font-size: 1.75em;
  }

  .hero-featured-top .text-title-2 {
    font-size: 1.375em;
  }

  .hero-featured-top .text-title-3 {
    font-size: 1.125em;
  }

  .hero-featured-bottom .hero-featured-entry .entry-inner {
    bottom: 10%;
    padding: 0 20px;
  }
}

@media (min-width: 1200px) {
  .hero-featured-bottom .text-title-1 {
    font-size: 1.125em;
  }
}

@media (min-width: 1440px) {
  .hero-featured-top .text-title-1 {
    font-size: 2em;
  }

  .hero-featured-top .text-title-1+.text-title-3,
  .hero-featured-top .text-title-2+.text-title-3 {
    margin-top: 30px;
  }

  .hero-featured-cta {
    margin-top: 30px;
  }

  .hero-featured-cta a {
    height: 44px;
    line-height: 40px;
    padding: 0 30px;
    border-radius: 22px;
  }

  .hero-featured-bottom .hero-featured-entry .entry-inner {
    bottom: 10%;
    padding: 0 40px;
  }

  .hero-featured-bottom .text-title-1 {
    font-size: 1.25em;
  }
}

/*----------------------------------------------
 Hero Style: Mood
----------------------------------------------*/
#hero.hero-mood {
  position: absolute;
}

.hero-mood {
  z-index: 1;
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  min-height: 480px;
  overflow: hidden;
}

.hero-mood .hero-bg {
  /* scale8 */
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* Add the blur effect */
  -webkit-filter: blur(50px) brightness(0.5);
  -ms-filter: blur(50px) brightness(0.5);
  filter: blur(50px) brightness(0.5);
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-mood .hero-bg.paralaxbg {
  background-position: calc(50% + 40px) 0;
  background-attachment: fixed;
}

.hero-mood .bg-image {
  width: 150%;
}

.hero-mood .bg-image img {
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 200%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-filter: blur(50px) brightness(0.9);
  -ms-filter: blur(50px) brightness(0.9);
  filter: blur(50px) brightness(0.9);
}

#hero.hero-mood+#page-body {
  z-index: 2;
}

/* Hero Style: Classic
--------------------------------------------------------------*/
.hero-classic {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.hero-classic.text-light {
  color: #555 !important;
}

.hero-classic.text-light.has-bg {
  color: #555 !important;
}

.hero-classic.text-light.nomedia.has-bg {
  background-color: #b43b6b;
}

.hero-classic .hero-media {
  z-index: 1;
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-classic.nomedia .hero-media {
  display: none;
}

.hero-classic .hero-overlay {
  display: none;
}

/* Page Title */
.hero-classic #page-title {
  padding-top: 30px;
}

.hero-classic.has-bg #page-title {
  padding-bottom: 40px;
}

.hero-classic #page-title .breadcrumb-entry {
  display: inline-block;
  width: auto;
  margin-bottom: 20px;
}

.hero-classic.has-bg #page-title .breadcrumb-entry {
  color: #555;
}

.hero-classic.has-bg #page-title .breadcrumb-entry a {
  color: #555;
}

.hero-classic.text-light.has-bg #page-title .breadcrumb-entry {
  color: #fff;
}

.hero-classic.text-light.has-bg #page-title .breadcrumb-entry a {
  color: #fff;
}

.hero-classic #page-title .text-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 0;
}

.hero-classic #page-title .text-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-left: -15px;
  background-color: #000;
}

.hero-classic.text-light.has-bg #page-title .text-title::after {
  background-color: #fff;
}

.hero-classic #page-title .text-title+.text-subtitle,
.hero-classic #page-title .text-title+.text-meta,
.hero-classic #page-title .text-title+.wpcf-field-wysiwyg,
.hero-classic #page-title .text-subtitle+.wpcf-field-wysiwyg {
  margin-top: 15px;
}

.hero-classic .hero-link {
  margin-top: 30px;
}

.hero-classic .hero-link a {
  display: inline-block;
  padding: 10px 30px;

  font-size: 1.125em;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
  background-color: #de5c8e;
}

.hero-classic .hero-link a:hover {
  background-color: #b43b6b;
  color: #fff;
}

@media (min-width: 576px) {
  .hero-classic.has-bg #page-title {
    padding-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .hero-classic.has-bg #page-title {
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .hero-classic.text-light {
    color: #fff !important;
  }

  .hero-classic.paralaxbg:not(.nomedia) .hero-media .bg-image {
    display: none;
  }

  .hero-classic:not(.nomedia) .hero-overlay {
    display: block;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    opacity: 0.25;
  }

  .hero-classic:not(.nomedia) .hero-entry {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
  }

  /* Page Title */
  .hero-classic:not(.nomedia) #page-title {
    padding-top: 0;
  }

  .hero-classic.nomedia #page-title {
    padding-top: 120px;
  }

  .hero-classic.nomedia.has-bg #page-title {
    padding-top: 120px;
  }

  .hero-classic #page-title .breadcrumb-entry {
    margin-bottom: 30px;
    color: #555;
  }

  .hero-classic #page-title .breadcrumb-entry a {
    color: #555;
  }

  .hero-classic.text-light #page-title .breadcrumb-entry {
    color: #fff;
  }

  .hero-classic.text-light #page-title .breadcrumb-entry a {
    color: #fff;
  }

  .hero-classic #page-title .text-title {
    padding-bottom: 20px;
    font-size: 2em;
  }

  .hero-classic.text-light #page-title .text-title::after {
    background-color: #fff;
  }

  .hero-classic #page-title .text-title+.text-subtitle,
  .hero-classic #page-title .text-title+.text-meta,
  .hero-classic #page-title .text-title+.wpcf-field-wysiwyg,
  .hero-classic #page-title .text-subtitle+.wpcf-field-wysiwyg {
    margin-top: 20px;
  }

  .hero-classic .hero-link {
    margin-top: 30px;
  }

  .hero-classic .hero-link a {
    padding: 12px 30px;
  }

  .hero-classic:not(.nomedia) .hero-link a {
    background-color: rgba(255, 255, 255, 0.5);
    color: #000;
  }

  .hero-classic:not(.nomedia) .hero-link a:hover {
    background-color: rgba(255, 255, 255, 0.75);
    color: #000;
  }

  .hero-classic.text-light:not(.nomedia) .hero-link a {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
  }

  .hero-classic.text-light:not(.nomedia) .hero-link a:hover {
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
  }
}

@media (min-width: 1200px) {
  .hero-classic #page-title .text-title {
    font-size: 2.25em;
  }
}

@media (min-width: 1440px) {
  .hero-classic.nomedia #page-title {
    padding-top: 120px;
  }

  .hero-classic #page-title .text-title {
    font-size: 2.5em;
  }
}

@media (min-width: 1680px) {
  .hero-classic .hero-link {
    margin-top: 40px;
  }
}

@media (min-width: 1920px) {}

@media (max-width: 991px) {
  .hero-classic.text-light:not(.has-bg) {
    color: #555 !important;
  }

  .hero-classic.text-light:not(.has-bg) .text-title,
  .hero-classic.text-light:not(.has-bg) .text-subtitle,
  .hero-classic.text-light:not(.has-bg) h1,
  .hero-classic.text-light:not(.has-bg) h2,
  .hero-classic.text-light:not(.has-bg) h3,
  .hero-classic.text-light:not(.has-bg) h4,
  .hero-classic.text-light:not(.has-bg) h5,
  .hero-classic.text-light:not(.has-bg) h6 {
    color: #000 !important;
  }
}

/* Hero Banner
--------------------------------------------------------------*/
.hero-banner {
  position: relative;
}

.hero-banner::before,
.hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
}

.hero-banner::after {
  top: 50%;
  background-color: #e5e5e5;
}

.hero-banner .hero-media {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Hero Video
--------------------------------------------------------------*/
.hero-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video-outer {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.video-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

/* Hero Brand
--------------------------------------------------------------*/
.hero-brand {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: url(../images/logo-chula-hero-mobile-light-then.html) 50% 50% no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .hero-brand {
    background: url(../images/logo-chula-hero-desktop-light-then.html) 50% 50% no-repeat;
    background-size: contain;
  }
}

/*----------------------------------------------
 Scroll Down
----------------------------------------------*/
#scrolldown {
  z-index: 100;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 12px);
  padding-left: 18px;
}

#scrolldown {
  color: #000;
}

.text-light #scrolldown {
  color: #fff;
}

#scrolldown.left {
  left: 15px;
}

#scrolldown.right {
  left: auto;
  right: 15px;
}

@media (min-width: 576px) {
  #scrolldown.left {
    left: 30px;
  }

  #scrolldown.right {
    right: 30px;
  }
}

@media (min-width: 992px) {
  #scrolldown {
    bottom: 40px;
  }

  #scrolldown.left {
    left: 48px;
  }

  #scrolldown.right {
    right: 48px;
  }
}

#scrolldown span.text {
  font-size: 0.875rem;
  line-height: 20px;
}

#scrolldown .arrow {
  position: absolute;
  top: calc(50% - 9px);
  left: -7px;
  -webkit-animation: scrolldown-anim 3.4s infinite ease;
  -moz-animation: scrolldown-anim 3.4s infinite ease;
  -o-animation: scrolldown-anim 3.4s infinite ease;
  animation: scrolldown-anim 3.4s infinite ease;
}

#hero.hero-full #scrolldown {
  display: block;
}

@-webkit-keyframes scrolldown-anim {
  70% {
    margin-top: 0px;
  }

  85% {
    margin-top: 4px;
  }

  100% {
    margin-top: 0px;
  }
}

@-moz-keyframes scrolldown-anim {
  70% {
    margin-top: 0px;
  }

  85% {
    margin-top: 4px;
  }

  100% {
    margin-top: 0px;
  }
}

@-o-keyframes scrolldown-anim {
  70% {
    margin-top: 0px;
  }

  85% {
    margin-top: 4px;
  }

  100% {
    margin-top: 0px;
  }
}

@-ms-keyframes scrolldown-anim {
  70% {
    margin-top: 0px;
  }

  85% {
    margin-top: 4px;
  }

  100% {
    margin-top: 0px;
  }
}

@keyframes scrolldown-anim {
  70% {
    margin-top: 0px;
  }

  85% {
    margin-top: 4px;
  }

  100% {
    margin-top: 0px;
  }
}

/* -----------------------------------------------------------------------------------

X. PAGE BODY

----------------------------------------------------------------------------------- */
#page-body {
  position: relative;
}

/* -----------------------------------------------------------------------------------

X. OTHER MENU AND NAVIGATION BAR

----------------------------------------------------------------------------------- */
/*----------------------------------------------
 Anchor, In-page Navigation Bar (Old)
----------------------------------------------*/
nav.cf {
  z-index: 11;
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-bottom: 0;
  background-color: #fff;
  font-family: "chulacharasnewbold", sans-serif;
  font-size: 1em;
}

nav.cf::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.13);
  z-index: 21;
}

nav.cf.cf-pinned {
  z-index: 20;
  position: fixed;
  top: 60px;
  left: 0;
  width: calc(100%);
  -webkit-transition: left 849ms cubic-bezier(0.74, 0.215, 0.125, 1.02),
    right 849ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
  -moz-transition: left 849ms cubic-bezier(0.74, 0.215, 0.125, 1.02),
    right 849ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
  -o-transition: left 849ms cubic-bezier(0.74, 0.215, 0.125, 1.02),
    right 849ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
  transition: left 849ms cubic-bezier(0.74, 0.215, 0.125, 1.02),
    right 849ms cubic-bezier(0.74, 0.215, 0.125, 1.02);
  transition-delay: 0.06s;
}

@media screen and (max-width: 767px) {

  nav.cf .wrapper,
  nav.cf .wrapper-small,
  nav.cf .wrapper-big {
    width: 100%;
    max-width: 100%;
  }
}

nav.cf ul.cf {
  display: none;
  height: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

nav.cf li {
  position: relative;
  width: 100%;
  margin: 0;
}

nav.cf p {
  position: relative;
  width: 100%;
  margin: 0;
  line-height: 40px;
}

nav.cf a {
  float: none;
  display: block;
  width: 100%;
  padding: 0 30px;
  background-color: #fff;
  color: #000;
  line-height: 40px;
  text-align: left;
}

nav.cf a.active {
  color: #bf6281;
}

nav.cf a:hover {
  background-color: #fff;
  color: #bf6281;
}

nav.cf a#openup:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  background: url("../images/icon-arrow-menu-down-black.html") no-repeat center center;
  background-size: 16px 16px;
}

nav.cf a#openup {
  z-index: 20;
  position: relative;
  display: block;
  background-color: #fff;
  width: 100%;
}

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

@media screen and (min-width: 768px) {
  nav.cf {
    position: absolute;
    height: 80px;
    width: 100%;
    background-color: #fff;
  }

  nav.cf.cf-pinned {
    z-index: 1510;
    position: fixed;
    top: 0;
    left: 80px;
    width: calc(100% - 80px);
  }

  nav.cf ul.cf {
    display: block;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  nav.cf li {
    display: inline;
  }

  nav.cf a {
    float: left;
    position: relative;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: auto;
    margin: 0 30px 0 0;
    padding: 0;
    line-height: 80px;
    color: #000;
  }

  nav.cf li a:hover {
    background-color: transparent;
    color: #bf6281;
  }

  nav.cf p,
  nav.cf a#openup {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  nav.cf {
    font-size: 1.125em;
  }
}

@media screen and (min-width: 1200px) {
  nav.cf a {
    margin: 0 50px 0 0;
  }
}

/*----------------------------------------------
 Anchor navigation bar
----------------------------------------------*/
.nav-anchor {
  z-index: 10;
  position: absolute;
  width: 100%;
  padding: 0;
  background-color: #fff;

  font-size: 0.875em;
  line-height: 30px;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.05), inset 0 0 0 0 #f5f5f5;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.05), inset 0 0 0 0 #f5f5f5;
}

.nav-anchor.pinned {
  z-index: 1500;
  position: fixed;
  top: 60px;
  left: 0;
  margin-top: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 0 #f5f5f5;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 0 #f5f5f5;
}

.nav-anchor .container-inner {
  max-width: 100%;
  overflow: hidden;
}

.menu-anchor {
  height: 50px;
  margin: 0;
  padding: 0;
  overflow-x: scroll;
  overflow-y: hide;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.menu-anchor::-webkit-scrollbar {
  display: none;
}

.menu-anchor li {
  list-style: none;
  display: inline-block;
  margin-top: 0;
  margin-right: 15px;
}

.menu-anchor.text-center li {
  margin-left: 5px;
  margin-right: 5px;
}

.menu-anchor li:last-child {
  margin-right: 0;
}

.menu-anchor li a {
  position: relative;
  display: block;
  line-height: 50px;
  color: #000;
}

.menu-anchor li a:hover {
  color: #de5c8e;
}

.menu-anchor li a:focus,
.menu-anchor li a:active {
  color: #000;
}

.menu-anchor li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #de5c8e;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-anchor li a.active {
  color: #de5c8e;
}

.menu-anchor li a.active::after {
  width: 100%;
}

.menu-anchor li.link-external a {
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 0 15px;
  line-height: 40px;
  border-radius: 2px;
  color: #fff;
  background-color: #de5c8e;
}

.menu-anchor li.link-external a:hover {
  color: #fff;
  background-color: #b43b6b;
}

.menu-anchor li.link-external a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  color: #fff;
}

.menu-anchor li.link-external a i {
  margin-right: 5px;
}

.menu-anchor li.link-external.nobg a,
.menu-anchor li.link-external.nobg a:hover {
  background-color: transparent;
  color: #000;
}

.menu-anchor li.link-external.nobg a:hover {
  color: #de5c8e;
}

.menu-anchor li.link-external.nobg a::after {
  display: none;
}

.spacer-nav-anchor {
  z-index: -1;
  position: relative;
  height: 50px;
}

@media (min-width: 576px) {
  .menu-anchor li {
    margin-right: 30px;
  }
}

@media (min-width: 992px) {
  .nav-anchor.pinned {
    top: 0;
    left: 80px;
    width: calc(100% - 80px);
    margin-top: 0;
  }

  .menu-anchor {
    height: 60px;
    padding: 0;
  }

  .menu-anchor li a {
    line-height: 60px;
  }

  .menu-anchor li.link-external a {
    line-height: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .spacer-nav-anchor {
    height: 60px;
  }
}

@media (min-width: 1200px) {
  .nav-anchor {
    font-size: 1em;
  }

  .nav-anchor.pinned {
    margin-top: 0;
  }

  .nav-anchor.text-xl-center {
    text-align: center;
  }

  .menu-anchor {
    height: 80px;
  }

  .menu-anchor li {
    margin-right: 40px;
  }

  .menu-anchor.text-center li {
    margin-left: 10px;
    margin-right: 10px;
  }

  .menu-anchor li a {
    line-height: 80px;
  }

  .menu-anchor li.link-external a {
    line-height: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0 25px;
  }

  .spacer-nav-anchor {
    height: 80px;
  }
}

@media (min-width: 1440px) {
  .nav-anchor {
    font-size: 1.125em;
  }

  .menu-anchor li.link-external a {
    padding: 0 30px;
  }
}

@media (min-width: 1680px) {
  .nav-anchor.text-xxxl-center {
    text-align: center;
  }
}

/* */
.template-block .nav-anchor,
.template-block .nav-anchor.pinned .wrapper {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.template-block .nav-anchor .wrapper,
.template-block .nav-anchor.pinned {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 0 #f5f5f5;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 0 #f5f5f5;
}

.template-block .menu-anchor {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .template-block .menu-anchor {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*----------------------------------------------
 Menu Vertical
----------------------------------------------*/
.menu-vertical {
  position: relative;
  margin: 0;
  padding: 0;
}

.menu-vertical li {
  list-style: none;
  position: relative;
  margin: 0;
  line-height: 1.5em;
}

.menu-vertical li a {
  display: block;
  position: relative;
  margin: 0;
  padding: 9px 24px 9px 0;
  background-color: transparent;

  font-size: 1.125rem;
  color: #000;
  line-height: 22px;
}

.menu-vertical a:hover {
  background-color: transparent;
  color: #de5c8e;
}

.menu-vertical li.active>a,
.menu-vertical li>a.active,
.menu-vertical li.current-menu-item>a {
  color: #de5c8e;
}

.menu-vertical li i {
  margin-right: 5px;
}

.menu-vertical .menu-item-has-children:after {
  right: 0;
}

.menu-vertical .current-menu-item>a,
.menu-vertical .current-page-parent>a {
  color: #de5c8e;
}

.menu-vertical .sub-menu {
  position: relative;
  display: none;
  float: none;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 5px 0;
  background-color: transparent;
  padding-left: 15px;
  border-left: 1px solid #de5c8e;
}

.menu-vertical .sub-menu li {
  margin: 0;
}

.menu-vertical .sub-menu li a {
  margin-left: 0;
  padding: 5px 24px 5px 0;
  font-family: "chulacharasnewregular", sans-serif;
  font-size: 1rem;
  line-height: 24px;
}

.menu-vertical .sub-menu li a::before {
  left: 25px;
}

/* -----------------------------------------------------------------------------------

X. PLUGINS: Breadcrumb

----------------------------------------------------------------------------------- */
.breadcrumb-entry {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  font-size: 0.75em;
  line-height: 24px;
  color: #666;
}

.breadcrumb-entry a {
  padding: 0 10px;
  background-color: transparent;
  color: #666;
}

.breadcrumb-entry a:hover {
  color: #de5c8e;
}

.breadcrumb-entry:not(.text-center) span:first-child a {
  padding-left: 0;
}

@media (min-width: 992px) {
  .breadcrumb-entry a {
    padding: 0 15px;
  }

  .breadcrumb-entry:not(.text-center) span:first-child a {
    padding-left: 0;
  }
}

/* -----------------------------------------------------------------------------------

X. PLUGINS: OWL Carousel

----------------------------------------------------------------------------------- */

/*----------------------------------------------
 OWL Carousel
----------------------------------------------*/
/* owl style */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.html) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* owl theme */
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* owl custom */
.owl-carousel {
  position: relative;
  width: 100%;
  height: 680px;
  margin: 0 auto;
  padding: 0px;
  max-width: 1000px;
  touch-action: manipulation;
}

.owl-carousel.owl-drag .owl-item {
  max-height: -119px;
}

body #tab2272 {
  background: #ffffff;
  padding-top: 20px;
  border-radius: 5px;
}

body #tab2273 {
  background: #ffffff;
  padding-top: 20px;
  border-radius: 5px;
}

body #tab2274 {
  background: #ffffff;
  padding-top: 20px;
  border-radius: 5px;
}

.owl-item {
  margin-right: 20px;
  border: 0px solid #ccc;
}

.owl-item .item {
  max-height: 147px;
}

.owl-item .item img {
  height: 147px !important;
  object-fit: contain;
}

.owl-carousel .owl-carousel-cell {
  position: relative;
  margin: 0 auto;
}

/* Next & Previous Button
------------------------------------------------*/
.owl-carousel .owl-nav {
  display: block !important;
}

.owl-carousel .owl-nav [class*="owl-"] {
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  margin-top: -20px !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1) !important;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-carousel .owl-nav [class*="owl-"]:hover {
  background-color: rgba(255, 255, 255, 1) !important;
}

.owl-carousel .owl-nav i[class*="ion-"],
.owl-carousel .owl-nav i[class*="fa-"] {
  color: #000;
  line-height: 40px;
}

.owl-carousel .owl-nav i[class*="ion-"]:hover,
.owl-carousel .owl-nav i[class*="fa-"]:hover {
  color: #de5c8e;
}

.owl-carousel .owl-nav i {
  font-size: 1.5em;
  margin: 0;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  position: absolute;
  top: 50%;
  margin: auto !important;
}

.owl-carousel .owl-prev {
  left: 15px;
}

.owl-carousel .owl-next {
  right: 15px;
}

@media (min-width: 768px) {
  .owl-carousel .owl-prev {
    left: 40px;
  }

  .owl-carousel .owl-next {
    right: 40px;
  }
}

/* Dot Navigation
------------------------------------------------*/
.owl-carousel .owl-dots {
  z-index: 10;
  display: block !important;
  position: absolute;
  top: auto;
  bottom: 15px;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 20px;
  line-height: 16px;
  text-align: center;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  /* box-shadow: 0 0 0 2px #000; */
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  text-indent: -999em;
  /* make the text accessible to screen readers */
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot span:hover,
.owl-carousel .owl-dots .owl-dot span:focus,
.owl-carousel .owl-dots .owl-dot.active span {
  background-color: #000;
}

.owl-carousel .owl-dots .owl-dot.active span {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.owl-carousel .owl-dots .owl-dot.active {
  /*box-shadow: 0 0 0 2px #000;*/
}

/* Stage and item
------------------------------------------------*/
.owl-carousel .owl-stage,
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: auto;
  touch-action: auto;
}

/* Carousel Hero
------------------------------------------------*/
.carousel-hero .owl-dots,
.carousel-features .owl-dots {
  display: none;
}

/* Carousel Banner
------------------------------------------------*/
.carousel-banner {}

.carousel-banner .post-media {
  position: relative;
}

.carousel-banner .post-media img {
  width: 100%;
  max-width: 100%;
}

.carousel-banner .post-entry {
  padding: 10px 0;
  text-align: center;
}

.carousel-banner .post-entry .text-title {
  font-family: "chulacharasnewregular", sans-serif;
  font-weight: 400;
  font-size: 0.75em;
  color: #808080;
}

.carousel-banner .post-entry .text-title a {
  color: #808080;
}

@media (min-width: 576px) {
  .carousel-banner .post-entry {
    padding: 10px 15px;
  }
}

/* Carousel Feartured
------------------------------------------------*/
.carousel-featured {
  position: relative;
}

.carousel-featured .post-media {
  background-position: 50% 50%;
  background-size: cover;
}

.carousel-featured .post-media img {
  width: 100%;
  max-width: 100%;
}

.carousel-featured .post-entry {
  padding: 15px 0;
}

.carousel-featured .post-entry .text-title {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 0.125em;
}

.carousel-featured.carousel-impact .post-entry .text-title {
  font-size: 1em;
  line-height: 1.75;
}

.carousel-featured .post-entry p {
  font-size: 0.875em;
}

@media (min-width: 576px) {
  .carousel-featured .post-entry {
    padding: 15px 30px 20px 0;
  }

  .carousel-featured.carousel-impact .post-entry {
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .carousel-featured .post-entry {
    padding: 15px 30px 20px 0;
  }
}

@media (min-width: 1200px) {
  .carousel-featured .post-entry {
    padding: 15px 30px 20px 0;
  }
}

/* -----------------------------------------------------------------------------------

X. PLUGINS: Masonry - Isotope / Lazy

----------------------------------------------------------------------------------- */

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope-grid {
  -webkit-transition-duration: 0.6s;
  -moz-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

.isotope-grid .isotope-item {
  /* -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;*/
}

.isotope,
.isotope-grid {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item,
.isotope-grid .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -o-transition-property: top, left, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/* End: Recommended Isotope styles */

/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Load More ****/
.load-isotope {
  position: relative;
  height: 50px;
  transition: all 0.4s ease;
  margin-top: 50px;
}

.load-isotope.disabled {
  transition-delay: 3.2s;
  height: 0px;
  margin: 0;
  opacity: 0;
  overflow: hidden;
}

.load-isotope>a {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.load-isotope>a[data-method="infiniteload"] {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
}

.load-isotope.loading>a,
.load-isotope.disabled>a {
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.load-isotope>.load-message {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 260px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s 0.3s ease;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
}

.load-isotope.disabled>.load-message {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.load-isotope:after {
  content: "";
  position: absolute;
  z-index: 2001;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 10px;

  margin-top: -3px;
  margin-left: -3px;

  background: #000000;

  -webkit-animation: isotope-loading 0.7s infinite ease;
  -moz-animation: isotope-loading 0.7s infinite ease;
  -o-animation: isotope-loading 0.7s infinite ease;
  animation: isotope-loading 0.7s infinite ease;

  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  transition: all 0.3s ease;
}

.text-light .load-isotope:after {
  background: #ffffff;
}

.load-isotope.loading:not(.disabled):after {
  visibility: visible;
  transition-delay: 0.1s;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

@-webkit-keyframes isotope-loading {
  0% {
    margin-top: 2px;
  }

  50% {
    margin-top: -8px;
  }

  100% {
    margin-top: 2px;
  }
}

@-moz-keyframes isotope-loading {
  0% {
    margin-top: 2px;
  }

  50% {
    margin-top: -8px;
  }

  100% {
    margin-top: 2px;
  }
}

@keyframes isotope-loading {
  0% {
    margin-top: 2px;
  }

  50% {
    margin-top: -8px;
  }

  100% {
    margin-top: 2px;
  }
}

/* Masonry - Isotope
----------------------------------------------*/
.isotope-grid {
  width: 100%;
  margin-bottom: -1px;
  /* workaround for hiding minipixels */
}

.isotope-grid::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  font-size: 0;
  height: 0;
}

.isotope-grid {
  *display: inline-block;
  /*height: 1%;*/
}

.isotope-grid[class*="isotope-spaced"] {
  left: 0;
  width: 100%;
  margin-bottom: -15px;
}

@media (min-width: 576px) {
  .isotope-grid[class*="isotope-spaced"] {
    width: calc(100% + 15px);
  }
}

.isotope-grid[class*="isotope-spaced-big"] {
  width: calc(100% - 30px);
  left: 15px;
  margin-bottom: -30px;
}

@media (min-width: 576px) {
  .isotope-grid[class*="isotope-spaced-big"] {
    width: 100%;
  }
}

.isotope-grid[class*="isotope-spaced-huge"] {
  width: calc(100% - 65px);
  left: 35px;
  margin-bottom: -50px;
}

@media (min-width: 576px) {
  .isotope-grid[class*="isotope-spaced-huge"] {
    width: calc(100% - 20px);
  }
}

.isotope-grid .isotope-item {
  float: left;
  position: relative;
  margin-bottom: -0.5px;
  /* workaround for hiding minipixels */
}

.isotope-grid[class*="isotope-spaced"] .isotope-item {
  width: 100%;
  margin-bottom: 15px;
  margin-right: 15px;
}

.isotope-grid[class*="isotope-spaced-big"] .isotope-item {
  width: 100%;
  margin-bottom: 30px;
  margin-right: 30px;
}

.isotope-grid[class*="isotope-spaced-huge"] .isotope-item {
  width: 100%;
  margin-bottom: 50px;
  margin-right: 50px;
}

.isotope-grid.style-column-1 {
  width: 100%;
  left: 0;
  text-align: center;
}

.isotope-grid.style-column-1 .isotope-item {
  width: 100%;
  margin-right: 0px;
}

.isotope-grid.style-column-1 .lazy-wrapper {
  margin: 0 auto;
}

.isotope-grid.style-column-5 .isotope-item {
  width: 50%;
}

.isotope-grid.style-column-5 .isotope-item.x2 {
  width: 100%;
}

.isotope-grid.style-column-5 .isotope-item.x3 {
  width: 100%;
}

.isotope-grid.style-column-5 .isotope-item.x4 {
  width: 100%;
}

.isotope-grid.style-column-5 .isotope-item.x5 {
  width: 100%;
}

.isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item {
  width: calc(50% - 15px);
}

.isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x2 {
  width: calc(100% - 15px);
}

.isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x3 {
  width: calc(100% - 15px);
}

.isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x4 {
  width: calc(100% - 15px);
}

.isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x5 {
  width: calc(100% - 15px);
}

.isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item {
  width: calc(50% - 30px);
}

.isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x2 {
  width: calc(100% - 30px);
}

.isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x3 {
  width: calc(100% - 30px);
}

.isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x4 {
  width: calc(100% - 30px);
}

.isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x5 {
  width: calc(100% - 30px);
}

.isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item {
  width: calc(50% - 50px);
}

.isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x2 {
  width: calc(100% - 50px);
}

.isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x3 {
  width: calc(100% - 50px);
}

.isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x4 {
  width: calc(100% - 50px);
}

.isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x5 {
  width: calc(100% - 50px);
}

@media (min-width: 576px) {
  .isotope-grid.style-column-2 .isotope-item {
    width: 50%;
  }

  .isotope-grid.style-column-2 .isotope-item.x2 {
    width: 100%;
  }

  .isotope-grid.style-column-2[class*="isotope-spaced"] .isotope-item {
    width: calc(50% - 15px);
  }

  .isotope-grid.style-column-2[class*="isotope-spaced"] .isotope-item.x2 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-2[class*="isotope-spaced-big"] .isotope-item {
    width: calc(50% - 30px);
  }

  .isotope-grid.style-column-2[class*="isotope-spaced-big"] .isotope-item.x2 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-2[class*="isotope-spaced-huge"] .isotope-item {
    width: calc(50% - 50px);
  }

  .isotope-grid.style-column-2[class*="isotope-spaced-huge"] .isotope-item.x2 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-3 .isotope-item {
    width: 50%;
  }

  .isotope-grid.style-column-3 .isotope-item.x2 {
    width: 100%;
  }

  .isotope-grid.style-column-3 .isotope-item.x3 {
    width: 100%;
  }

  .isotope-grid.style-column-3[class*="isotope-spaced"] .isotope-item {
    width: calc(50% - 15px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced"] .isotope-item.x2 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced"] .isotope-item.x3 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-big"] .isotope-item {
    width: calc(50% - 30px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-big"] .isotope-item.x2 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-big"] .isotope-item.x3 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-huge"] .isotope-item {
    width: calc(50% - 50px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-huge"] .isotope-item.x2 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-huge"] .isotope-item.x3 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-4 .isotope-item {
    width: 50%;
  }

  .isotope-grid.style-column-4 .isotope-item.x2 {
    width: 100%;
  }

  .isotope-grid.style-column-4 .isotope-item.x3 {
    width: 100%;
  }

  .isotope-grid.style-column-4 .isotope-item.x4 {
    width: 100%;
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item {
    width: calc(50% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item.x2 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item.x3 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item.x4 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item {
    width: calc(50% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item.x1 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item.x2 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item.x3 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item {
    width: calc(50% - 50px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item.x2 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item.x3 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item.x4 {
    width: calc(100% - 50px);
  }
}

@media (min-width: 768px) {
  .isotope-grid.style-column-4 .isotope-item {
    width: 33.33%;
  }

  .isotope-grid.style-column-4 .isotope-item.x2 {
    width: 66.66%;
  }

  .isotope-grid.style-column-4 .isotope-item.x3 {
    width: 100%;
  }

  .isotope-grid.style-column-4 .isotope-item.x4 {
    width: 100%;
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item {
    width: calc(33.33% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item.x2 {
    width: calc(66.66% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item.x3 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item.x4 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item {
    width: calc(33.33% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item.x1 {
    width: calc(66.66% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item.x2 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item.x3 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item {
    width: calc(33.33% - 50px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item.x2 {
    width: calc(66.66% - 50px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item.x3 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item.x4 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-5 .isotope-item {
    width: 33.33%;
  }

  .isotope-grid.style-column-5 .isotope-item.x2 {
    width: 66.66%;
  }

  .isotope-grid.style-column-5 .isotope-item.x3 {
    width: 100%;
  }

  .isotope-grid.style-column-5 .isotope-item.x4 {
    width: 100%;
  }

  .isotope-grid.style-column-5 .isotope-item.x5 {
    width: 100%;
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item {
    width: calc(33.33% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x2 {
    width: calc(66.66% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x3 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x4 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x5 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item {
    width: calc(33.33% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x2 {
    width: calc(66.66% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x3 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x4 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x5 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item {
    width: calc(33.33% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x2 {
    width: calc(66.66% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x3 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x4 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x5 {
    width: calc(100% - 50px);
  }
}

@media (min-width: 992px) {
  .isotope-grid.style-column-3 .isotope-item {
    width: 33.33%;
  }

  .isotope-grid.style-column-3 .isotope-item.x2 {
    width: 66.66%;
  }

  .isotope-grid.style-column-3 .isotope-item.x3 {
    width: 100%;
  }

  .isotope-grid.style-column-3[class*="isotope-spaced"] .isotope-item {
    width: calc(33.33% - 15px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced"] .isotope-item.x2 {
    width: calc(66.66% - 15px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced"] .isotope-item.x3 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-big"] .isotope-item {
    width: calc(33.33% - 30px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-big"] .isotope-item.x2 {
    width: calc(66.66% - 30px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-big"] .isotope-item.x3 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-huge"] .isotope-item {
    width: calc(33.33% - 50px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-huge"] .isotope-item.x2 {
    width: calc(66.66% - 50px);
  }

  .isotope-grid.style-column-3[class*="isotope-spaced-huge"] .isotope-item.x3 {
    width: calc(100% - 50px);
  }
}

@media (min-width: 1200px) {
  .isotope-grid.style-column-4 .isotope-item {
    width: 25%;
  }

  .isotope-grid.style-column-4 .isotope-item.x2 {
    width: 50%;
  }

  .isotope-grid.style-column-4 .isotope-item.x3 {
    width: 75%;
  }

  .isotope-grid.style-column-4 .isotope-item.x4 {
    width: 100%;
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item {
    width: calc(25% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item.x2 {
    width: calc(50% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item.x3 {
    width: calc(75% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced"] .isotope-item.x4 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item {
    width: calc(25% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item.x1 {
    width: calc(50% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item.x2 {
    width: calc(75% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-big"] .isotope-item.x3 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item {
    width: calc(25% - 50px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item.x2 {
    width: calc(50% - 50px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item.x3 {
    width: calc(75% - 50px);
  }

  .isotope-grid.style-column-4[class*="isotope-spaced-huge"] .isotope-item.x4 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-5 .isotope-item {
    width: 25%;
  }

  .isotope-grid.style-column-5 .isotope-item.x2 {
    width: 50%;
  }

  .isotope-grid.style-column-5 .isotope-item.x3 {
    width: 75%;
  }

  .isotope-grid.style-column-5 .isotope-item.x4 {
    width: 100%;
  }

  .isotope-grid.style-column-5 .isotope-item.x5 {
    width: 100%;
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item {
    width: calc(25% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x2 {
    width: calc(50% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x3 {
    width: calc(75% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x4 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x5 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item {
    width: calc(25% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x2 {
    width: calc(50% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x3 {
    width: calc(75% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x4 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x5 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item {
    width: calc(25% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x2 {
    width: calc(50% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x3 {
    width: calc(75% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x4 {
    width: calc(100% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x5 {
    width: calc(100% - 50px);
  }
}

@media (min-width: 1920px) {
  .isotope-grid.style-column-5 .isotope-item {
    width: 20%;
  }

  .isotope-grid.style-column-5 .isotope-item.x2 {
    width: 40%;
  }

  .isotope-grid.style-column-5 .isotope-item.x3 {
    width: 60%;
  }

  .isotope-grid.style-column-5 .isotope-item.x4 {
    width: 80%;
  }

  .isotope-grid.style-column-5 .isotope-item.x5 {
    width: 100%;
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item {
    width: calc(20% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x2 {
    width: calc(40% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x3 {
    width: calc(60% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x4 {
    width: calc(80% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced"] .isotope-item.x5 {
    width: calc(100% - 15px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item {
    width: calc(20% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x2 {
    width: calc(40% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x3 {
    width: calc(60% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x4 {
    width: calc(80% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-big"] .isotope-item.x5 {
    width: calc(100% - 30px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item {
    width: calc(20% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x2 {
    width: calc(40% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x3 {
    width: calc(60% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x4 {
    width: calc(80% - 50px);
  }

  .isotope-grid.style-column-5[class*="isotope-spaced-huge"] .isotope-item.x5 {
    width: calc(100% - 50px);
  }
}

/*----------------------------------------------
 News and updates
----------------------------------------------*/
.isotope-grid.isotope-news {
  width: calc(100% + 15px);
  left: 0;
}

.isotope-grid.isotope-news .isotope-item {
  float: left;
  position: relative;
  width: calc(50% - 15px);
  margin-right: 15px;
  margin-bottom: 15px;
}

.isotope-grid.isotope-news .isotope-item.x2 {
  width: calc(100% - 15px);
}

@media (min-width: 576px) {
  .isotope-grid.isotope-news .isotope-item {
    width: calc(50% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .isotope-grid.isotope-news .isotope-item {
    width: calc(33.3333333% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .isotope-grid.isotope-news {
    width: calc(100% + 15px);
  }

  .isotope-grid.isotope-news .isotope-item {
    width: calc(33.3333333% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .isotope-grid.isotope-news {
    width: calc(100% + 30px);
  }

  .isotope-grid.isotope-news .isotope-item {
    width: calc(33.3333333% - 30px);
    margin-right: 30px;
    margin-bottom: 30px;
  }
}

@media (min-width: 1440px) {
  .isotope-grid.isotope-news {
    width: calc(100% + 30px);
  }

  .isotope-grid.isotope-news .isotope-item {
    width: calc(25% - 30px);
    margin-right: 30px;
    margin-bottom: 30px;
  }
}

.isotope-grid .isotope-item img {
  width: 100%;
}

/* take fullwidth for large screen */
.isotope-grid .isotope-item .ratio-wrapper>img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100% !important;
}

/* lazy load */
.lazy-wrapper {
  width: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.03);
  transition: background 1s ease;
}

.isotope-grid[data-ratio] .lazy-wrapper {
  min-height: 100% !important;
  /* prevent upsizing the items calc by ratios */
}

.lazy-wrapper.loaded,
.isotope-grid[data-ratio] .lazy-wrapper.loaded {
  width: auto !important;
  max-width: inherit !important;
  height: auto !important;
  min-height: auto !important;
  display: initial !important;
  background: transparent;
}

.lazy-wrapper .lazy-img {
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
}

.lazy-wrapper.loaded .lazy-img {
  opacity: 1;
}

.lazy-wrapper .lazy-img img {
  height: 0;
}

.lazy-wrapper.loaded .lazy-img img {
  height: auto;
}

/*----------------------------------------------
 Animation
----------------------------------------------*/
[class*="do-anim"] {
  transition: all 0.7s ease;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.animated[class*="do-anim"] {
  -webkit-transform: translate(0) !important;
  -moz-transform: translate(0) !important;
  -ms-transform: translate(0) !important;
  -o-transform: translate(0) !important;
  transform: translate(0) !important;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.do-anim-modern {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  overflow: hidden;
}

.do-anim-modern>* {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translateY(30%);
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -o-transform: translateY(30%);
  transform: translateY(30%);
  transition: opacity 0.05s ease 0.95s,
    transform 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.95s;
}

.do-anim-modern.animated>* {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.do-anim-modern::after {
  transition: all 0.7s ease 0.1s, height 0.7s ease 0.8s;
  -webkit-transition: all 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.1s,
    height 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.95s;
  -webkit-transition: all 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.1s,
    height 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.95s;
  -moz-transition: all 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.1s,
    height 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.95s;
  -o-transition: all 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.1s,
    height 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.95s;
  transition: all 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.1s,
    height 0.85s cubic-bezier(0.59, 0.26, 0.25, 1) 0.95s;
  -webkit-transition-timing-function: cubic-bezier(0.59, 0.26, 0.25, 1);
  -webkit-transition-timing-function: cubic-bezier(0.59, 0.26, 0.25, 1);
  -moz-transition-timing-function: cubic-bezier(0.59, 0.26, 0.25, 1);
  -o-transition-timing-function: cubic-bezier(0.59, 0.26, 0.25, 1);
  transition-timing-function: cubic-bezier(0.59, 0.26, 0.25, 1);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 101%;
  left: 0;
  background: #f5f5f5;
  z-index: 3;
}

.text-light .do-anim-modern::after {
  background: #272727;
}

.do-anim-modern.animated::after {
  top: 0;
  height: 0;
}

/* -----------------------------------------------------------------------------------

X. PLUGIN: Breadcrumb

----------------------------------------------------------------------------------- */
/*
.breadcrumb-entry {
 margin: 0 0 20px 0;
 font-size: 0.75rem;
 color: #666;
}
@media (min-width: 1680px) {
 .breadcrumb-entry {
  margin: 0 0 30px 0;
 }
}
.breadcrumb-entry a {
 position: relative;
 margin: 0 10px;
 color: #555;
}
.breadcrumb-entry a:hover {
 color: #de5c8e;
}
.breadcrumb-entry a::after {
 content: '';
 z-index: 0;
 position: absolute;
 top: 100%;
 left: 50%;
 width: 0;
 height: 1px;
 background-color: #de5c8e;
 transition: all 0.3s ease;
}
.breadcrumb-entry a:hover::after {
 width: 20px;
 margin-left: -10px;
}
.text-light .breadcrumb-entry,
.text-light .breadcrumb-entry a {
 color: #aaa;
}
.text-light .breadcrumb-entry a:hover { 
 color: #f6d9e1;
}
.text-light .breadcrumb-entry a::after {
 background-color: #f6d9e1;
}
*/

/* -----------------------------------------------------------------------------------

X. Section: Cover

----------------------------------------------------------------------------------- */
.section-cover {
  background-position: 50% 50%;
  background-size: cover;
}

.section-cover .text-title {
  font-size: 200%;
  margin-bottom: 0;
}

.section-cover .overlay,
.section-cover .overlay-pattern {
  z-index: 1;
}

.section-cover .d-middle {
  z-index: 10;
}

@media (min-width: 768px) {
  .section-cover .text-title {
    font-size: 225%;
  }
}

@media (min-width: 992px) {
  .section-cover .text-title {
    font-size: 250%;
  }
}

@media (min-width: 1200px) {
  .section-cover .text-title {
    font-size: 275%;
  }
}

@media (min-width: 1440px) {
  .section-cover .text-title {
    font-size: 300%;
  }
}

/*------------------------------------------------

 # PAGE: SCENIC

------------------------------------------------*/
.section-pageentry {
  padding: 50px 0;
  background-color: #f1e2e3;
  color: #000;
}

@media (min-width: 992px) {
  .section-pageentry {
    padding: 160px 0 80px 0;
  }
}

/* -----------------------------------------------------------------------------------

X. Section: Inspire Quote

----------------------------------------------------------------------------------- */
.section-inspire {
  position: relative;
  padding: 0 0 30px 0;
}

.section-inspire::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
}

.section-inspire blockquote {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 0;
}

.section-inspire-thumb img {
  z-index: 1;
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  margin-top: -45px;
  margin-bottom: 15px;
  border: 5px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  -webkit-box-shadow: 0 15px 30px -20px black !important;
  -moz-box-shadow: 0 15px 30px -20px black !important;
  box-shadow: 0 15px 30px -20px black !important;
}

@media (min-width: 576px) {
  .section-inspire-thumb img {
    width: 110px;
    height: 110px;
    margin-top: -55px;
  }

  .section-inspire blockquote {
    font-size: 1.75em;
  }
}

@media (min-width: 992px) {
  .section-inspire {
    padding: 0 0 50px 0;
  }
}

@media (min-width: 1200px) {
  .section-inspire-thumb img {
    width: 130px;
    height: 130px;
    margin-top: -65px;
    margin-bottom: 0;
  }
}

/* -----------------------------------------------------------------------------------

X. Section: Inspire Follow

----------------------------------------------------------------------------------- */
.section-follow {
  position: relative;
  padding: 30px 0;
  text-align: center;
}

.section-follow h3,
.section-follow h4,
.section-follow h6 {
  line-height: 50px;
  margin-bottom: 0;
  color: #de5c8e;
}

.section-follow h6 a {
  color: #000;
}

.section-follow h6 a:hover {
  color: #de5c8e;
}

.section-follow h6 a::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 1px;
  margin-left: -10px;
  background-color: #de5c8e;
  transition: all 0.3s ease;
}

.section-follow h6 a:hover::after {
  width: 40px;
  margin-left: -20px;
}

.menu-socialmedia {
  margin: 0;
  padding: 0;
}

.menu-socialmedia li {
  float: none;
  display: inline-block;
  list-style: none;
  margin: 0;
}

.menu-socialmedia li a {
  display: block;
  width: 50px;
  padding: 0;
  line-height: 50px;
  border-radius: 100%;
  background-color: transparent;
  color: #000;
}

.menu-socialmedia li a:hover {
  color: #de5c8e;
}

@media (min-width: 768px) {
  .section-follow {
    padding: 40px 0;
  }

  .section-follow::after {
    z-index: 1;
    content: "";
    position: absolute;
    width: 1px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    background-color: #000;
  }
}

@media (min-width: 992px) {

  .section-follow h3,
  .section-follow h4,
  .section-follow h6 {
    line-height: 50px;
  }

  .menu-socialmedia li a {
    width: 50px;
    line-height: 50px;
  }
}

@media (min-width: 1440px) {
  .section-follow {
    padding: 50px 0;
  }
}

/* -----------------------------------------------------------------------------------

X. Section: Preface

----------------------------------------------------------------------------------- */
.section-preface {
  color: #000;
}

.section-preface.text-light {
  color: #fff;
}

.section-preface p:last-child {
  margin-bottom: 0;
}

.section-preface:not(.bg-custom) {
  background-image: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
}

.section-preface.text-light:not(.bg-custom) {
  background-image: linear-gradient(to right, #868f96 0%, #596164 100%);
}

/* -----------------------------------------------------------------------------------

X. Section: Contact

----------------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------------

X. Section: Share

----------------------------------------------------------------------------------- */
.section-share {
  text-align: center;
}

.section-share::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0);
}

.section-share .share-icon {
  float: none;
  display: inline-block;
  position: relative;
  margin-right: 15px;
  padding-right: 80px;
}

.section-share .share-icon i {
  width: 22px;
  line-height: 40px !important;
  border-radius: 50%;
  color: #000;
  text-align: center;
}

.section-share .share-icon::after {
  content: "";
  position: absolute;
  bottom: 50%;
  left: auto;
  right: 0;
  width: 80px;
  height: 1px;
  background-color: #000;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (min-width: 1440px) {
  .section-share .share-icon {
    margin-right: 35px;
    padding-right: 110px;
  }
}

.seed-social {
  text-align: center;
}

@media (min-width: 768px) {
  .seed-social a {
    padding: 8px 15px 6px 15px;
  }
}

.share-wrapper .seed-social {
  margin: 0;
  text-align: center;
}

.share-wrapper .seed-social a {
  background-image: none;
}

.share-wrapper .seed-social * {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  transition: all 0s;
}

.share-wrapper .seed-social,
.share-wrapper .seed-social>div {
  text-align: center;
}

.share-wrapper .seed-social>div {
  display: inline-block;
  margin: 0 10px 0 0;
}

.share-wrapper.center .seed-social,
.share-wrapper.center .seed-social>div {
  text-align: center;
}

@media (max-width: 991px) {

  .share-wrapper .seed-social,
  .share-wrapper .seed-social>div {
    text-align: center;
  }

  .share-wrapper .seed-social a {
    float: none;
    width: 40px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    padding: 0;
    border-radius: 100%;
    text-align: center;
  }

  .share-wrapper .seed-social i {
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    vertical-align: middle;
  }

  .share-wrapper .seed-social .text {
    display: none;
  }

  .share-wrapper .seed-social .count {
    display: none;
  }

  .share-wrapper [class^="ss-"]:before,
  .share-wrapper [class*=" ss-"]:before {
    line-height: 40px;
  }
}

/*---------------------------------------------- 

2X. Table

------------------------------------------------*/

/* Degree
------------------------------------------------*/
.table-degree {
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
}

.table-degree thead {
  font-family: "chulalongkornbold", sans-serif;
}

.table-degree thead tr th {
  text-align: center;
  vertical-align: middle;
}

.table-degree.table-bordered td,
.table-degree.table-bordered th {
  border: 1px solid #e0cac6;
}

.table-degree.table-hover tbody tr:hover {
  background-color: #f7f2f1;
}

.table-degree .thead-inverse th {
  background-color: #f0e5e3;
  color: #000;
}

.table-degree td,
.table-degree th {
  padding: 0.25rem 0.75rem;
}

/* Fee
------------------------------------------------*/
.table-fee {
  margin-bottom: 50px;
  background-color: #fff;
  text-align: center;
}

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

.table-fee thead th {
  vertical-align: middle;
}

.table-fee td,
.table-fee th {
  padding: 0.5rem 1rem;
}

.table-custom {}

.table-custom td,
.table-custom th {
  padding: 0.5rem 0.75rem;
}

.table-custom .thead-dark th {
  color: #fff;
  background-color: #b43b6b;
  border-color: #872c50;
}

@media (min-width: 768px) {

  .table-custom td,
  .table-custom th {
    padding: 0.75rem 1.5rem;
  }
}

/*---------------------------------------------- 

 Page: Search

------------------------------------------------*/
.search-form-wrapper {
  z-index: 10;
  position: relative;
  margin-bottom: 15px;
  padding: 30px 15px;
  background-color: #f5f5f5;
}

.search-form-wrapper .form-control {
  height: 48px;
  line-height: 46px;
  padding: 0 15px;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: 1px solid #000;
  border-right: none;
  background-color: #fff;
}

.search-form-wrapper .btn-primary {
  min-width: 100px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

@media (min-width: 576px) {
  .search-form-wrapper {
    padding: 30px;
  }

  .search-form-wrapper .btn-primary {
    min-width: 160px;
  }
}

@media (min-width: 992px) {
  .search-form-wrapper {
    margin-top: -77px;
    margin-bottom: 30px;
    padding: 50px;
  }

  .search-form-wrapper .form-control {
    height: 54px;
    line-height: 52px;
  }

  .search-form-wrapper .btn-primary {
    min-width: 200px;
  }
}

/*---------------------------------------------- 

 Page: CU100

------------------------------------------------*/
.cu100-img {
  position: relative;
  margin: 0 auto 50px auto;
}

.cu100-img img {
  width: 100%;
  max-width: 100%;
  -webkit-box-shadow: -30px 30px 70px -10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -30px 30px 70px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -30px 30px 70px -10px rgba(0, 0, 0, 0.1);
}

.cu100-img-item {
  box-shadow: rgba(0, 0, 0, 0.2) 56px 72px 68px -37px;
  transform: translate3d(0px, 0, 0px);
}

.cu100-img-item.img-item-1 {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}

.cu100-img-item.img-item-2 {
  z-index: 2;
  position: absolute;
  top: 90px;
  left: -15%;
  width: 50%;
  max-width: 200px;
}

.cu100-img-item.img-item-3 {
  z-index: 3;
  position: absolute;
  top: 30px;
  left: 72%;
  width: 30%;
  max-width: 160px;
}

@media (min-width: 576px) {
  .cu100-img-item.img-item-1 {
    max-width: 320px;
  }

  .cu100-img-item.img-item-2 {
    top: 80px;
    left: 0;
    max-width: 220px;
  }

  .cu100-img-item.img-item-3 {
    top: 50px;
    max-width: 200px;
  }
}

@media (min-width: 768px) {
  .cu100-img-item.img-item-1 {
    max-width: 360px;
  }

  .cu100-img-item.img-item-2 {
    top: 100px;
    left: -5%;
    width: 60%;
    max-width: 240px;
  }

  .cu100-img-item:nth-child(3) {
    top: 30px;
    left: 70%;
    width: 60%;
    max-width: 240px;
  }
}

/*---------------------------------------------- 

2X. Plugin: Dropdown Menu (Taxonomy)

------------------------------------------------*/
.section-ddmenu {
  z-index: 11;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 15px 0;
  border: 0;
  background-color: #fff;
}

@media (min-width: 768px) {
  .section-ddmenu {
    padding: 30px 0;
  }
}

.dd-menu {
  z-index: 30;
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 38px;
  margin: 0;
  padding: 0 15px;
  border: 1px solid #000;
  border-radius: 4px;
  background-color: #fff;
  font-family: "chulacharasnewbold", sans-serif;
  font-size: 16px;
  color: #000;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
}

@media (min-width: 1200px) {
  .dd-menu {
    height: 50px;
    line-height: 48px;
    font-size: 18px;
  }
}

.dd-menu.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dd-menu:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -10px;
  border-width: 0;
  border-style: solid;
  border-color: #fff transparent;
  background: #fff url(../images/icon-arrow-menu-down-black.html) 100% 50% no-repeat;
  background-size: 20px 20px;
}

.dd-menu.nolist {
  border-color: #fff;
}

.dd-menu.nolist:after {
  display: none;
}

.dd-menu .dropdown {
  z-index: 30;
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  margin: 0 -1px;
  padding: 0;
  border-top: 1px solid #000;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  box-shadow: 0 15px 30px -20px black !important;
}

@media (min-width: 1200px) {
  .dd-menu .dropdown {
    top: 48px;
  }
}

.dd-menu .dropdown ul {
  margin: 0;
  padding: 0;
}

.dd-menu .dropdown li {
  list-style: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.dd-menu .dropdown li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 15px;
  line-height: 38px;
  border: 1px solid #000;
  border-top: none;
  background-color: #fff;
  color: #000;
  text-align: left;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.dd-menu.active .dropdown li:last-child a {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

@media (min-width: 1200px) {
  .dd-menu .dropdown li a {
    line-height: 44px;
  }
}

.dd-menu .dropdown .children li a {
  padding-left: 35px;
}

.dd-menu .dropdown .children li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 10px;
  height: 1px;
  background-color: #000;
}

.dd-menu .dropdown .children .children li a {
  padding-left: 55px;
}

.dd-menu .dropdown .children .children li a::before {
  left: 35px;
}

.dd-menu .dropdown li a:hover,
.dd-menu .dropdown li.current-cat>a {
  background-color: #be5877;
  color: #fff;
}

.dd-menu .dropdown li a:hover::before,
.dd-menu .dropdown li.current-cat>a::before {
  background-color: #fff;
}

.dd-menu.active:after {
  border-width: 0;
}

.dd-menu.active .dropdown {
  opacity: 1;
  pointer-events: auto;
}

/*---------------------------------------------- 

2X. Plugin: WP Pagination

------------------------------------------------*/
.wp-pagenavi {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 1em;
  clear: both;
}

.wp-pagenavi a {
  display: inline-block;
  height: 44px;
  line-height: 44px;
  margin: 0 1px 1px 0;
  padding: 0 10px;
  border: none;
  background: #fff;
  color: #000;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #de5c8e;
}

.wp-pagenavi span {
  display: inline-block;
  height: 44px;
  line-height: 44px;
  margin: 0 1px 1px 0;
  padding: 0 15px;
  border: none;
  background: #fff;
  color: #000;
  text-decoration: none;
}

.wp-pagenavi span.pages {
  background: #b43b6b;
  color: #fff;
}

.wp-pagenavi span.current {
  padding: 0 10px;
  border: none;
  background: #b43b6b;
  color: #fff;
}

/* -----------------------------------------------------------------------------------

X. Content: Home

----------------------------------------------------------------------------------- */

/* Introduction
------------------------------------------------*/
.content-home-introduction {
  padding: 20px 0 0 0;
}

.content-home-introduction .text-title-1 {
  position: relative;
  font-size: 1.625em;
  color: #de5c8e;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.content-home-introduction .text-title-1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 2px;
  margin-left: -20px;
  background-color: #000;
}

.content-home-introduction .text-title-2 {
  font-size: 1.125em;
  margin-bottom: 15px;
  color: #000;
}

.content-home-introduction .text-title-3 {
  font-size: 1.25em;
  line-height: 1.625;
}

.content-home-introduction .text-title-3-2 {}

@media (min-width: 576px) {
  .content-home-introduction .text-title-1 {
    font-size: 1.822em;
  }

  .content-home-introduction .text-title-2 {
    font-size: 1.25em;
  }

  .content-home-introduction .text-title-3 {
    font-size: 1.375em;
  }
}

@media (min-width: 768px) {
  .content-home-introduction .text-title-1 {
    font-size: 2.25em;
  }

  .content-home-introduction .text-title-2 {
    font-size: 1.5em;
  }

  .content-home-introduction {
    padding: 30px 0 0 0;
  }
}

@media (min-width: 992px) {
  .content-home-introduction .text-title-1 {
    font-size: 2.5em;
  }
}

/* 4 Chula Factors
------------------------------------------------*/
.box.box-factor-home {
  width: 100%;
  margin: 0 0 30px 0;
}

.box.box-factor-home .box-cell {
  width: 100%;
  margin: 0 0 15px 0;
  padding: 0 30px;
  background-color: transparent;
}

.box.box-factor-home .box-cell .text-title {
  font-size: 1.125em;
  line-height: 1.5;
  color: #de5c8e;
  margin-bottom: 0.125em;
}

.icon-factor-strategy {
  width: 100%;
  height: 64px;
  margin-bottom: 15px;
  background-size: 64px 64px;
}

.icon-factor-strategy.icon-human {
  background: url(../images/icon-factor-human.html) top center no-repeat;
}

.icon-factor-strategy.icon-knowledge {
  background: url(../images/icon-factor-knowledge.html) top center no-repeat;
}

.icon-factor-strategy.icon-social {
  background: url(../images/icon-factor-social.html) top center no-repeat;
}

.icon-factor-strategy.icon-global {
  background: url(../images/icon-factor-global.html) top center no-repeat;
}

.box.box-factor-home i {
  color: #000;
}

.box.box-factor-home .icon-large {
  color: #000;
}

@media (min-width: 768px) {
  .box.box-factor-home .box-cell {
    width: 50%;
    margin: 0;
    padding: 30px;
    background-color: transparent;
  }

  .box.box-factor-home .box-cell {
    border: none;
    background-color: transparent;
  }

  .box.box-factor-home .box-cell:nth-child(1) {
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
  }

  .box.box-factor-home .box-cell:nth-child(2) {
    border-bottom: 1px solid #e5e5e5;
  }

  .box.box-factor-home .box-cell:nth-child(3) {
    border-right: 1px solid #e5e5e5;
  }
}

@media (min-width: 992px) {
  .box.box-factor-home .box-cell {
    width: 25%;
    padding: 15px;
    border: none !important;
  }
}

/* 3 Featured Posts
------------------------------------------------*/
.box.box-featured-home {
  width: 100%;
  margin: 0 0 30px 0;
}

.box.box-featured-home .box-cell {
  width: 100%;
  height: 180px;
  margin: 0;
  border-bottom: 1px solid #fff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.box.box-featured-home .box-cell {
  background-color: #fff;
}

.box.box-featured-home .box-cell .post-media {
  z-index: 1;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease;
}

.box.box-featured-home .box-cell:hover .post-media {
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.box.box-featured-home .box-cell .post-entry {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.box.box-featured-home .box-cell .post-overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.box.box-featured-home .box-cell .post-overlay a {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .box.box-featured-home .box-cell {
    height: 200px;
  }
}

@media (min-width: 992px) {
  .box.box-featured-home .box-cell {
    width: 33.3333333%;
    height: 220px;
    border: none;
  }

  .box.box-featured-home .box-cell:first-child {
    border-right: 1px solid #fff;
  }

  .box.box-featured-home .box-cell:last-child {
    border-left: 1px solid #fff;
  }
}

@media (min-width: 1440px) {
  .box.box-featured-home .box-cell {
    height: 240px;
  }
}

@media (min-width: 1680px) {
  .box.box-featured-home .box-cell {
    height: 280px;
  }
}

/* Fact and Figure Number
------------------------------------------------*/
.factfigure {
  position: relative;
  text-align: center;
}

.factfigure .factfigure-number {
  font-size: 300%;
  line-height: 0.5em;
  letter-spacing: -0.05em;
  color: #de5c8e;
}

@media (min-width: 576px) {
  .factfigure .factfigure-number {
    font-size: 400%;
  }
}

/* -----------------------------------------------------------------------------------

X. Academics Single Page

----------------------------------------------------------------------------------- */
.logo-org {
  width: 150px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.logo-org img {
  max-width: 100%;
}

.icon-section {
  margin: 0 auto 30px auto;
  color: #000;
  text-align: center;
}

.section-course {}

.section-course h3 {
  font-size: 1.25em;
  color: #de5c8e;
  margin-bottom: 1em;
}

.section-course h4 {
  font-size: 1.125em;
}

/* Course Category (Left)
--------------------------------------------------------------*/
.menu-anchor-sidebar {
  z-index: 1;
  position: relative;
  margin: 0;
  padding: 0;

  font-size: 1em;
  font-size: 700;
  line-height: 28px;
  text-align: left;
}

.menu-anchor-sidebar li {
  list-style: none;
  margin: 0 0 0.75em 0;
}

.menu-anchor-sidebar li a {
  position: relative;
  display: block;
  padding-left: 22px;
  padding-right: 30px;
  color: #000;
}

.menu-anchor-sidebar li a:focus,
.menu-anchor-sidebar li a:active {
  color: #000;
}

.menu-anchor-sidebar li a:hover,
.menu-anchor-sidebar li a.active {
  color: #de5c8e;
}

.menu-anchor-sidebar li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 28px;
  background: url(../images/icon-arrow-menu-right-black.html) 0 50% no-repeat;
  background-size: 12px 12px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 992px) {
  .menu-anchor-sidebar {
    padding-top: 50px;
  }
}

/* Course List (right)
--------------------------------------------------------------*/
.course-wrapper {}

.course-entry {
  margin: 0;
  padding: 30px 0;
}

.course-entry ul,
.course-entry ol {
  margin: 0 0 30px 0;
  padding: 0;
}

.course-entry li {
  list-style: none;
  /*
 list-style: none; 
 margin-bottom: 0;
 padding-top: 5px; 
 padding-bottom: 5px; 
 border-bottom: 1px dashed #d5d5d5;
 */
}

.course-entry p,
.course-entry h3,
.course-entry h4,
.course-entry h5 {
  margin-bottom: 1rem;
}

.course-entry h3,
.course-entry h3 a,
.course-entry h3 strong {
  color: #de5c8e;
}

@media (min-width: 992px) {
  .course-entry {}
}

.course-wrapper .course-entry:last-child {
  padding-bottom: 0;
}

/* Timeline */
.timeline {
  border-left: 4px solid #de5c8e;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: #fff;
  margin: 0;
  padding: 0 0 50px 30px;
  position: relative;
  line-height: 1.4em;
  font-size: 1.03em;

  list-style: none;
  text-align: left;
}

.timeline .event {
  position: relative;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px dashed rgba(0, 0, 0, 1);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .timeline .event {}
}

.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline .event:before {
  left: -217.5px;
  color: #000;
  content: attr(data-date);
  text-align: right;
  font-weight: 100;
  font-size: 0.9em;
  min-width: 120px;
  font-family: "Saira", sans-serif;
}

.timeline .event:after {
  box-shadow: 0 0 0 4px #de5c8e;
  left: -37.85px;
  background: #fff;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 60px;
}

.timeline .event ul {
  margin-bottom: 1em;
  padding-left: 0;
}

.timeline .event ul:last-child {
  margin-bottom: 0;
}

.timeline .event li {
  margin-bottom: 10px;
}

.timeline .event li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline {
    padding: 0 0 50px 40px;
  }

  .timeline .event:after {
    left: -47.85px;
  }

  .timeline .event ul {
    padding-left: 40px;
  }
}

/* -----------------------------------------------------------------------------------

X. GOOGLE MAP

----------------------------------------------------------------------------------- */
.map-contact {
  height: 320px;
}

@media (min-width: 576px) {
  .map-contact {
    height: 360px;
  }
}

@media (min-width: 768px) {
  .map-contact {
    height: 400px;
  }
}

@media (min-width: 992px) {
  .map-contact {
    height: 420px;
  }
}

@media (min-width: 1200px) {
  .map-contact {
    height: 480px;
  }
}

@media (min-width: 1440px) {
  .map-contact {
    height: 640px;
  }
}

/* -----------------------------------------------------------------------------------

X. ISSUU

----------------------------------------------------------------------------------- */
.issuu-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  /* set the aspect ratio here as (height / width) * 100% */
  height: 360px;
  overflow: hidden;
  max-width: 100%;
}

@media (min-width: 576px) {
  .issuu-embed-container {
    height: 480px;
  }
}

@media (min-width: 768px) {
  .issuu-embed-container {
    height: 0;
  }
}

.issuu-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------------------------------------

X. Loop

----------------------------------------------------------------------------------- */

/* Isotope Posts
------------------------------------------------*/
.loop-post {
  list-style: none;
}

.loop-post .post-media {
  position: relative;
  margin: 0;
}

.loop-post .post-media img {
  width: 100%;
}

.loop-post .post-entry {
  z-index: 10;
  position: relative;
  margin: 0;
  padding: 15px 15px 30px 15px;
  background-color: #fff;
  box-shadow: 0 -15px 50px -15px rgba(0, 0, 0, 0.25);
}

.loop-post .post-entry.nomedia {
  box-shadow: none;
}

.loop-post .post-entry .text-title {
  font-size: 1em;
  line-height: 1.625;
  margin-bottom: 0;
}

.loop-post .post-entry .text-title a {
  color: #000;
}

.loop-post .post-entry .text-title a:hover {
  color: #de5c8e;
}

.loop-post .post-entry.nomedia .text-title {
  font-size: 125%;
  line-height: 1.5;
}

.loop-post .post-entry .text-title+p,
.loop-post .post-entry .text-title+.wpcf-field-wysiwyg {
  margin-top: 10px;
}

.loop-post .post-entry .text-subtitle {
  font-size: 1em;
}

.loop-post .corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-color: #fff;
  overflow: hidden;
}

.loop-post .corner svg {
  display: block;
}

.loop-post .post-entry.nomedia .corner {
  bottom: -10px;
  right: -10px;
}

.bg-light .loop-post .corner {
  background-color: #f8f9fa;
}

.bg-grey-light .loop-post .corner {
  background-color: #e5e5e5;
}

.loop-post .post-entry.no-bg {
  background-color: transparent;
}

.loop-post .post-entry.no-shadow {
  box-shadow: none;
}

.loop-post .post-entry.no-gutter-l {
  padding-left: 0;
}

.loop-post .post-entry.no-gutter-r {
  padding-right: 0;
}

.loop-post .post-entry p {
  font-size: 0.875em;
  line-height: 1.75em;
}

.loop-post .post-entry p:last-of-type {
  margin-bottom: 0;
}

.loop-post .post-entry.nomedia,
.loop-post .post-quote {
  padding: 20px;
  border: 10px solid #aaa;
  background-color: #fff;
}

.loop-post .post-type {
  position: relative;
  margin-bottom: 10px;
  font-size: 0.875em;
  color: #555;
}

.loop-post .post-type i {
  margin-right: 5px;
}

.loop-post .post-type a {
  margin: 0 5px;
  color: #555;
  border-bottom: 1px solid #de5c8e;
}

.loop-post .post-type a:first-of-type {
  margin-left: 0;
}

.loop-post .text-light .caption-name {
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

@media (min-width: 576px) {
  .loop-post .post-entry {
    padding: 20px 20px 30px 20px;
  }

  .loop-post .post-entry .text-title {
    font-size: 1.125em;
  }

  .loop-post .post-entry.nomedia .text-title {
    font-size: 150%;
  }
}

@media (min-width: 992px) {
  .loop-post .post-entry .text-title {
    font-size: 1.25em;
  }

  .loop-post .post-type a:hover {
    color: #de5c8e;
  }
}

@media (min-width: 1200px) {
  .loop-post .post-entry.nomedia {
    padding: 30px;
  }

  .loop-post .post-entry.nomedia .text-title {
    font-size: 175%;
  }
}

@media (min-width: 1440px) {
  .loop-post .post-entry {
    padding: 30px 30px 40px 30px;
  }

  .loop-post .post-entry.nomedia .text-title {
    font-size: 200%;
  }
}

/* Cluster / หน่วยบริการสังคม
------------------------------------------------*/
.loop-cluster {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.loop-cluster .loop-item {
  position: relative;
  list-style: none;
  width: 100%;
  margin: 0 0 15px 0;
}

@media (min-width: 576px) {
  .loop-cluster .loop-item {
    margin: 0 0 50px 0;
  }
}

.loop-cluster .loop-item figure {
  margin-bottom: 0;
}

.loop-cluster .loop-item .post-media {
  z-index: 1;
  position: relative;
  width: 100%;
}

.loop-cluster .loop-item .post-media img {
  width: 100%;
  box-shadow: 0 15px 30px -30px black !important;
}

@media (min-width: 768px) {
  .loop-cluster .loop-item .post-media {
    position: absolute;
    top: 0;
    left: 60%;
    width: 40%;
  }

  .loop-cluster .loop-item .post-media img {
    box-shadow: 0 15px 30px -25px black !important;
  }

  .loop-cluster.zigzag .loop-item:nth-child(even) .post-media {
    left: 0;
  }
}

.loop-cluster .loop-item .post-entry {
  position: relative;
  width: 100%;
  padding: 30px 20px 20px 20px;
  background-color: #fff;
}

.loop-cluster .loop-item .post-entry p strong {
  color: #000;
}

.loop-cluster .loop-item .post-entry ul,
.loop-cluster .loop-item .post-entry ol {
  margin-bottom: 1.5em;
}

.loop-cluster .loop-item .post-entry .text-title {
  color: #de5c8e;
}

.loop-cluster .loop-item .post-entry .text-title-contact {
  font-size: 1.125em;
  margin-bottom: 5px;
}

.loop-cluster .loop-item .post-link {
  position: relative;
}

.loop-cluster .loop-item .post-link a {
  display: inline-block;
  margin: 1.5em 0 0 0;
}

.loop-cluster .loop-item .post-link a i {
  margin-right: 5px;
}

@media (min-width: 576px) {
  .loop-cluster .loop-item .post-entry {
    padding: 30px 50px 50px 50px;
  }
}

@media (min-width: 768px) {
  .loop-cluster .loop-item .post-entry {
    width: 80%;
    padding: 50px calc(20% + 50px) 50px 50px;
  }

  .loop-cluster.zigzag .loop-item:nth-child(even) .post-entry {
    left: 20%;
    padding: 50px 50px 50px calc(20% + 50px);
  }
}

@media (min-width: 1200px) {
  .loop-cluster .loop-item .post-entry {
    padding: 60px calc(20% + 50px) 60px 50px;
  }

  .loop-cluster.zigzag .loop-item:nth-child(even) .post-entry {
    left: 20%;
    padding: 60px 50px 60px calc(20% + 50px);
  }
}

@media (min-width: 1440px) {
  .loop-cluster .loop-item .post-entry {
    padding: 60px calc(20% + 100px) 60px 100px;
  }

  .loop-cluster.zigzag .loop-item:nth-child(even) .post-entry {
    left: 20%;
    padding: 60px 100px 60px calc(20% + 100px);
  }
}

/* Mobile application with detail
------------------------------------------------*/
.loop-application {
  position: relative;
  list-style: none;
  width: 100%;
  margin: 0 auto 30px auto;
  padding: 0;
}

@media (min-width: 992px) {
  .loop-application {
    margin: 0 auto 50px auto;
  }
}

.loop-application .loop-item {
  list-style: none;
  position: relative;
  width: 100%;
}

.loop-application .loop-item .post-media {
  z-index: 1;
  position: absolute;
  top: 30px;
  left: 85%;
  width: 30%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .loop-application .loop-item .post-media {
    width: 20%;
    top: 50px;
    left: 70%;
    margin: 0;
  }
}

.loop-application .loop-item .post-entry {
  position: relative;
  width: 100%;
  padding: 30px calc(15% + 30px) 50px 30px;
  background-color: #fff;
  box-shadow: 0 15px 30px -25px black !important;
}

@media (min-width: 576px) {
  .loop-application .loop-item .post-entry {
    padding: 30px calc(15% + 50px) 50px 50px;
  }

  .loop-application .loop-item .btn-download-ios,
  .loop-application .loop-item .btn-download-android {
    float: left;
  }
}

@media (min-width: 768px) {
  .loop-application .loop-item .post-entry {
    width: 100%;
    padding: 50px 40% 65px 10%;
  }

  .loop-application .loop-item .post-icon {
    width: 80px;
  }
}

.loop-application .loop-item .post-icon {
  width: 60px;
  margin: 0 0 15px 0;
}

.loop-application .loop-item .post-icon img {
  width: 100%;
  height: auto;
}

.loop-application .loop-item .btn-download-ios {
  display: block;
  width: 150px;
  height: 50px;
  margin: 0 10px 10px 0;
  background: url(../images/btn-download-ios.html) no-repeat 50% 50%;
  background-size: cover;
}

.loop-application .loop-item .btn-download-android {
  display: block;
  width: 150px;
  height: 50px;
  margin: 0;
  background: url(../images/btn-download-android.html) no-repeat 50% 50%;
  background-size: cover;
}

/* Department
------------------------------------------------*/
.loop-department {
  margin: 0;
  padding: 0 !important;
}

.loop-department>li {
  display: block;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 1.25rem 0;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
}

.loop-department>li:last-child {
  border-bottom: none;
}

.loop-department>li .post-entry {
  float: none;
  width: 100%;
}

.loop-department>li .post-entry h3 {
  position: relative;
  margin-bottom: 0.5rem;
}

.loop-department>li .post-entry h3,
.loop-department>li .post-entry h3 a {
  font-family: "chulacharasnewbold", sans-serif;
  font-size: 1em;
  line-height: 1.6em;
}

.loop-department.loop-department-top>li .post-entry h3 {
  font-size: 1.5em;
  margin-bottom: 0.5rem;
}

.loop-department.loop-department-top>li .post-entry h3,
.loop-department.loop-department-top>li .post-entry h3 a {
  font-family: "chulalongkornbold", sans-serif;
}

/*
.loop-department > li .post-entry h3 a {
 color: #aa4d71;
}
*/
.loop-department>li .post-entry h4 {
  font-family: "chulacharasnewregular", sans-serif;
  font-size: 0.875em;
  line-height: 1.6em;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.loop-department>li .post-meta {
  float: none;
  width: 100%;
}

.loop-department>li .post-contact {
  margin: 0;
  padding: 0;
  font-size: 0.9em;
  line-height: 1.2em;
  color: #000;
}

.loop-department>li .post-contact li {
  list-style: none;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.loop-department>li .post-contact li:last-child {
  margin-bottom: 0;
}

.loop-department>li .post-contact li .post-contact-title {
  display: table-cell;
  vertical-align: top;
  width: 80px;
  font-family: "chulacharasnewregular", sans-serif;
}

.loop-department>li .post-contact li .post-contact-detail {
  display: table-cell;
  vertical-align: top;
}

@media (min-width: 768px) {
  .loop-department>li {
    display: flex;
    text-align: left;
  }

  .loop-department>li .post-entry {
    float: left;
    width: 50%;
    padding-right: 50px;
  }

  .loop-department>li .post-entry h4 {
    margin-bottom: 0;
  }

  .loop-department>li .post-meta {
    float: left;
    width: 50%;
  }

  .loop-department>li .post-contact {
    line-height: 1.6em;
  }
}

@media (min-width: 992px) {
  .loop-department>li .post-entry {
    width: 55%;
  }

  .loop-department>li .post-meta {
    width: 45%;
  }
}

.loop-department-top {
  border-top: none;
}

.loop-department-top>li {
  padding-top: 0;
}

.loop-department-top h2 {
  margin-bottom: 5px;
}

.loop-department-top h3:before {
  display: none;
}

@media (min-width: 768px) {
  .loop-department-top>li .post-entry h3 {
    margin-bottom: 0;
    padding-left: 0;
  }

  .loop-department-top>li .post-entry h4 {
    margin-bottom: 0;
    padding-left: 0;
  }
}

.loop-department>li .post-entry.post-entry-child h3,
.loop-department>li .post-entry.post-entry-child h4,
.loop-department>li .post-meta.post-entry-child {
  padding-left: 30px;
}

.loop-department>li .post-entry.post-entry-child h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 1px;
  background-color: #000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 768px) {

  .loop-department>li .post-entry.post-entry-child h3,
  .loop-department>li .post-entry.post-entry-child h4 {
    padding-left: 45px;
  }

  .loop-department>li .post-entry.post-entry-child h3:before {
    width: 30px;
  }

  .loop-department>li .post-meta.post-entry-child {
    padding-left: 0;
  }
}

/* Management Team
------------------------------------------------*/
.loop-management {
  position: relative;
  list-style: none;
  width: 100%;
  margin: 0;
}

.loop-management li {
  list-style: none;
}

.loop-management .grid-item {
  overflow: visible;
}

.loop-management .post-wrapper {
  position: relative;
  height: auto;
  padding: 30px 0;
  background-color: #f5f5f5;
  line-height: 1.5em;
  text-align: center;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

@media (min-width: 768px) {
  .loop-management .post-wrapper {
    height: 400px;
  }
}

.loop-management .post-media {
  position: relative;
  width: 100%;
  text-align: center;
}

.loop-management .post-media img {
  position: relative;
  display: block;
  width: 100px;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 15px 30px -20px black !important;
}

.loop-management .post-entry {
  z-index: 1;
  position: relative;
  padding: 20px 30px 15px 30px;
}

.loop-management .post-entry h3 {
  font-size: 0.9em;
  line-height: 1.5em;
}

.loop-management .post-entry h4 {
  font-size: 0.8em;
  letter-spacing: 0;
  line-height: 1.5em;
}

.loop-management .post-contact {
  position: relative;
  bottom: auto;
  width: 100%;
  font-size: 0.8em;
  text-align: center;
}

@media (min-width: 768px) {
  .loop-management .post-contact {
    position: absolute;
    bottom: 30px;
  }
}

.loop-management .post-contact p {
  margin: 0;
}

.loop-management .post-contact strong {
  color: #000;
}

@media (min-width: 768px) {

  .loop-management .x3 .post-wrapper,
  .loop-management .x4 .post-wrapper {
    height: auto;
    padding: 50px;
  }

  .loop-management .x3 .post-entry,
  .loop-management .x4 .post-entry {
    padding-top: 20px;
  }

  .loop-management .x3 .post-entry h3,
  .loop-management .x4 .post-entry h3,
  .loop-management .x3 .post-entry h4,
  .loop-management .x4 .post-entry h4 {
    font-size: 1.15em;
  }

  .loop-management .x3 .post-contact,
  .loop-management .x4 .post-contact {
    position: relative;
    bottom: auto;
    font-size: 0.9em;
  }
}

/* Short Course
------------------------------------------------*/
.loop-shortcourse {
  list-style: none;
}

.loop-shortcourse .post-media {
  position: relative;
  width: 100%;
}

.loop-shortcourse .post-media img {
  width: 100%;
}

.loop-shortcourse .post-entry {
  position: relative;
  margin: -15px 15px 0 0;
  padding: 30px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 -20px 10px 0;
}

.loop-shortcourse .post-entry.nomedia {
  margin: 0;
  padding: 30px;
  border: 10px solid #e5e5e5;
  background-color: #fff;
}

.loop-shortcourse .corner {
  width: 26px;
  height: 26px;
  background-color: #f5f5f5;
  position: absolute;
  bottom: -1px;
  right: -1px;
}

.loop-shortcourse .post-entry.nomedia .corner {
  bottom: -11px;
  right: -11px;
}

.loop-shortcourse .post-meta-top {
  position: relative;
  margin-bottom: 5px;
}

.loop-shortcourse .post-meta-bottom {
  margin-top: 20px;
}

.loop-shortcourse .text-course-id {
  font-size: 0.875em;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
}

.loop-shortcourse .text-course-title {
  font-size: 1.25em;
  color: #de5c8e;
  margin: 0 0 10px 0;
}

.loop-shortcourse .text-course-title a {
  color: #de5c8e;
}

.loop-shortcourse .text-course-subtitle {
  font-size: 1em;
  color: #000;
  margin: 0;
}

.loop-shortcourse .text-course-subtitle a {
  color: #000;
}

.loop-shortcourse .text-course-title a:hover,
.loop-shortcourse .text-course-subtitle a:hover {
  color: #de5c8e;
}

.loop-shortcourse .text-course-meta {
  font-size: 0.75em;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  margin: 0 0 5px 0;
}

.loop-shortcourse .text-light .caption-name {
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

/* -----------------------------------------------------------------------------------

X. List

----------------------------------------------------------------------------------- */
.list-related-header {
  padding: 50px 30px;
}

.list-related-header .text-line-left {
  padding-left: 95px;
}

.list-related-header .text-line-left::before {
  width: 80px;
}

.list-related {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-related li {
  list-style: none;
  margin: 0;
  padding: 0;
  clear: both;
}

.list-related li a {
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}

.list-related li:first-child a {
  padding-top: 0;
}

.list-related li:last-child a {
  padding-bottom: 0;
  border-bottom: none;
}

.list-related li .post-media {
  float: left;
  width: 80px;
}

.list-related li .post-entry {
  float: left;
  width: calc(100% - 80px);
  padding-left: 15px;
}

.list-related li .post-entry .text-title {
  font-size: 1em;
  line-height: 1.625em;
  margin-bottom: 0;
  color: #555;
}

.list-related li:hover .post-entry .text-title {
  color: #de5c8e;
}

.list-related li .post-entry.nomedia {
  float: none;
  width: 100%;
  padding-left: 0;
}

.list-related-clipping {
  border-top: 1px solid #dedede;
}

.list-related-clipping a {
  border-bottom: 1px solid #dedede;
}

@media (min-width: 768px) {
  .list-related-header {
    padding: 50px 0;
  }

  .list-related li a {
    padding: 15px 0;
  }
}

@media (min-width: 1440px) {
  .list-related-header {
    margin-bottom: 15px;
    padding: 50px 0;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }

  .list-related-header .text-line-left {
    padding-left: 95px;
  }

  .list-related-header .text-line-left::before {
    width: 80px;
  }

  .list-related li a {
    padding: 15px 0;
  }
}

/* Menu
------------------------------------------------*/
.list-menu {
  position: relative;
  margin: 0;
  font-family: "chulacharasnewbold", sans-serif;
}

.list-menu li {
  list-style: none;
  position: relative;
  margin: 0 0 1em 0;
  line-height: 1.5em;
}

.list-menu li a {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: #000;
}

.list-menu a:hover {
  background-color: transparent;
  color: #be5877;
}

.list-menu li.active>a,
.list-menu li>a.active,
.list-menu li.current-menu-item>a {
  color: #be5877;
}

.list-menu li i {
  margin-right: 5px;
}

.list-menu .menu-item-has-children:after {
  right: 0;
}

.list-menu .current-menu-item>a,
.list-menu .current-page-parent>a {
  color: #be5877;
}

.list-menu .sub-menu {
  position: relative;
  display: none;
  float: none;
  border: none;
  border-radius: 0;
  margin: 1em 0 0 0;
  padding: 0;
  background-color: transparent;
  padding-left: 15px;
  border-left: 1px solid #be5877;
}

.list-menu .sub-menu li {
  margin: 0 0 0.5em 0;
}

.list-menu .sub-menu li a {
  margin-left: 0;
}

.list-menu .sub-menu li a::before {
  left: 25px;
}

/* Archive
------------------------------------------------*/
.list-archive {
  margin: 0 0 50px 0;
  padding: 0;
}

.list-archive li {
  list-style: none;
  margin: 0 0 5px 0;
  padding: 0;
}

.list-archive li a {
  display: block;
  padding: 1.5rem 0;
  background-color: #f5f5f5;
  border-bottom: 1px solid #f0f0f0;
}

.list-archive li .post-entry {
  padding: 0 0 0 15px;
  font-size: 0.875em;
  line-height: 1.75;
}

.list-archive li .post-entry .text-title {
  font-size: 1.125em;
  margin-bottom: 0;
}

.list-archive li .post-entry .text-meta {
  font-size: 0.875em;
  margin-bottom: 0;
}

.list-archive li .post-entry .text-title+.text-meta,
.list-archive li .post-entry .text-title+p,
.list-archive li .post-entry .text-meta+p {
  margin-top: 15px;
}

.list-archive li .post-entry h3 {
  margin-bottom: 5px;
  color: #be5877;
}

.list-archive li .post-entry h6 {
  margin-bottom: 0;
}

.list-archive li .post-entry h6+p {
  margin-top: 10px;
}

.list-archive li .post-entry p {
  margin-bottom: 10px;
  line-height: 1.7em;
  color: rgba(0, 0, 0, 0.75);
}

.list-archive li .post-entry p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .list-archive li .post-entry {
    padding: 0 0 0 30px;
  }
}

@media (min-width: 992px) {
  .list-archive {
    margin: 0 0 80px 0;
  }

  .no-touchevents .list-archive li a:hover {
    background-color: #fff;
  }

  .no-touchevents .list-archive li a:hover h3 {
    color: #be5877;
  }
}

/* Toggle
------------------------------------------------*/
.list-toggle {
  margin: 0 0 1.5rem 0;
  padding: 0;
  border-top: 1px solid #dedede;
}

.list-toggle>li {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #dedede;
  position: relative;
}

.list-toggle>li .list-toggle-title {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 1rem 0;
  color: #000;
  cursor: pointer;
}

.list-toggle>li .list-toggle-title:after {
  z-index: 0;
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 21px;
  margin-top: -9px;
  border-width: 0;
  border-style: solid;
  border-color: #fff transparent;
  background: #fff url(../images/icon-arrow-menu-down-black.html) 100% 50% no-repeat;
  background-size: 18px 18px;
}

.list-toggle>li .list-toggle-title h3 {
  margin: 0;
}

.list-toggle>li.active .list-toggle-title:after {
  background: #fff url(../images/icon-arrow-menu-down-pink.html) 100% 50% no-repeat;
  -webkit-transform: translate3d(0, 0, 0) rotate(180deg);
  transform: translate3d(0, 0, 0) rotate(180deg);
}

.list-toggle>li.active .list-toggle-title,
.list-toggle>li.active .list-toggle-title h3 {
  color: #be5877;
}

.list-toggle>li .list-toggle-content {
  display: none;
  padding: 0 0 1rem 0;
}

.list-toggle>li.active .list-toggle-content {
  display: block;
}

@media (min-width: 768px) {
  .list-toggle>li .list-toggle-title {
    padding-left: 0;
  }

  .list-toggle>li:after {
    right: 30px;
  }

  .list-toggle>li .list-toggle-content {
    padding: 15px 0 30px 0;
  }
}

/* Song
------------------------------------------------*/
.list-toggle.list-toggle-song>li:last-child {
  border-bottom: none;
}

.list-toggle.list-toggle-song>li .list-toggle-content p {
  margin-bottom: 10px;
}

.list-toggle.list-toggle-song>li .list-toggle-content p:last-child {
  margin-bottom: 0;
}

/* Course
------------------------------------------------*/
.list-toggle.list-toggle-course {
  border: none;
}

.list-toggle.list-toggle-course>li {
  margin: 0 0 0.25em;
  border: 1px solid #e5e5e5;
}

.list-toggle.list-toggle-course>li .list-toggle-title {
  background-color: #f5f5f5;
}

.list-toggle.list-toggle-course>li .list-toggle-title:after {
  background: none;
}

.list-toggle.list-toggle-course>li .list-toggle-title .icon-arrow {
  z-index: 0;
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 0;
  margin-top: -9px;
  background: url(../images/icon-arrow-menu-down-black.html) 100% 50% no-repeat;
  background-size: 18px 18px;
}

.list-toggle.list-toggle-course>li.active .list-toggle-title {
  background-color: #fff;
}

.list-toggle.list-toggle-course>li .list-toggle-title .text-title {
  font-size: 1em;
}

.list-toggle.list-toggle-course>li.active .list-toggle-title .text-title {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 24px;
}

.list-toggle.list-toggle-course>li.active .list-toggle-title .text-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #000;
}

.list-toggle.list-toggle-course.course-international>li.active .list-toggle-title h3 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.list-toggle.list-toggle-course.course-international>li.active .list-toggle-title h3::after {
  display: none;
  height: 0;
}

.list-toggle.list-toggle-course.course-international>li.active .list-toggle-title h6 {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 24px;
}

.list-toggle.list-toggle-course.course-international>li.active .list-toggle-title h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #000;
}

.list-toggle.list-toggle-course>li.active .list-toggle-title .icon-arrow {
  background: url(../images/icon-arrow-menu-down-pink.html) 100% 50% no-repeat;
  -webkit-transform: translate3d(0, 0, 0) rotate(180deg);
  transform: translate3d(0, 0, 0) rotate(180deg);
}

.list-toggle.list-toggle-course>li .list-toggle-content .course-entry {
  padding: 15px 0;
}

.list-toggle.list-toggle-course.course-international>li .list-toggle-content h3 strong {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .list-toggle.list-toggle-course>li .list-toggle-content {
    padding: 15px 0 30px 0;
  }
}

@media (min-width: 992px) {
  .list-toggle.list-toggle-course>li .list-toggle-content {
    padding-top: 0;
    padding-bottom: 50px;
  }
}

@media (min-width: 992px) {

  .list-toggle.list-toggle-course>li .list-toggle-title,
  .list-toggle.list-toggle-course>li .list-toggle-content {
    padding: 15px 30px;
  }

  .list-toggle.list-toggle-course>li .list-toggle-title .text-title {
    font-size: 1.25em;
  }

  .no-touchevents .list-toggle>li .list-toggle-title:hover {
    background-color: #fff;
  }
}

/* Collapse */
.accordion-custom {}

.accordion-custom .card-header {
  padding: 0;
}

.accordion-custom .card-header .text-title {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
}

.accordion-custom .card-header .btn {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 15px 10px 40px;
  border: none;
  background-color: #f5f5f5;
  color: #de5c8e;
  text-align: left;
  line-height: 28px;
  overflow: auto;
}

.accordion-custom .card-header .btn small {
  color: #000;
}

.accordion-custom .card-header .btn::before {
  content: "\f067";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  z-index: -1;
  position: absolute;
  top: 17px;
  left: 15px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  font-size: 0.875rem;
  color: #de5c8e;
  text-align: left;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}

.accordion-custom .card-header .btn.collapsed {
  background-color: #f5f5f5;
  color: #000;
}

.accordion-custom .card-header .btn.collapsed small {
  color: #808080;
}

.accordion-custom .card-header .btn.collapsed::before {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  color: #808080;
}

.accordion-custom .card-header .btn.collapsed:hover {
  color: #de5c8e;
}

.accordion-custom .card-body {
  padding: 1.5em 15px 1.5em 15px;
  font-size: 0.875em;
  line-height: 1.75;
}

.accordion-custom .card-body .course-entry {
  margin: 0 0 1.5em 0;
  padding: 0;
}

.accordion-custom .card-body .course-entry ul {
  margin: 0 0 0.5em 0;
}

.accordion-custom .card-body .course-entry ul li,
.accordion-custom .card-body .course-entryol li {
  margin-top: 5px;
}

.accordion-custom .card-body h3 {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 5px;
}

.accordion-custom .card-body h4 {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 5px;
}

.accordion-custom .card-body h5 {
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 5px;
}

.accordion-custom .card-body p {
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .accordion-custom .card-header .text-title {
    font-size: 1.125em;
  }

  .accordion-custom .card-header .btn {
    padding: 15px 30px 15px 50px;
  }

  .accordion-custom .card-header .btn::before {
    top: 22px;
    left: 20px;
  }

  .accordion-custom .card-body {
    padding: 1.75em 50px 1.75em 50px;
    font-size: 1em;
  }

  .accordion-custom .card-body h3,
  .accordion-custom .card-body h4 {
    font-size: 1.125em;
  }

  .accordion-custom .card-body h5 {
    font-size: 1em;
  }
}

/* -----------------------------------------------------------------------------------

 Single

----------------------------------------------------------------------------------- */

/* Single Meta
------------------------------------------------*/
.post-single-meta {
  clear: both;
  padding: 0 0 10px 0;
}

.post-single-meta .post-date {
  position: relative;
  float: left;
  margin: 0 15px 0 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.8em;
}

.text-light .post-single-meta .post-date {
  color: rgba(255, 255, 255, 0.5);
}

.post-single-meta .post-type {
  position: relative;
  float: left;
  margin: 0 0 5px 0;
  font-size: 0.8em;
}

.post-single-meta .post-type a {
  display: inline-block;
  margin: 0 5px 5px 5px;
  color: rgba(0, 0, 0, 0.5);
}

.post-single-meta .post-type a:first-of-type {
  margin-left: 0;
}

.text-light .post-single-meta .post-type a {
  color: rgba(255, 255, 255, 0.5);
}

.post-single-meta i {
  width: 20px;
  margin-right: 5px;
  font-size: 1.33333em;
  color: rgba(0, 0, 0, 0.5);
}

.text-light .post-single-meta i {
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 576px) {
  .post-single-meta .post-title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (min-width: 768px) {
  .post-single-meta {
    padding-bottom: 25px;
  }

  .post-single-meta .post-date {
    margin-right: 30px;
  }
}

@media (min-width: 992px) {
  .no-touchevents .post-single-meta .post-type a:hover {
    color: #be5877;
  }

  .no-touchevents .text-light .post-single-meta .post-type a:hover {
    color: #febeca;
  }
}

/* Single Media (Featured image, PDF, Embed Video)
------------------------------------------------*/
.post-single-media {
  margin: 0 0 1.5rem 0;
}

.post-single-media img {
  width: 100%;
  height: auto;
}

/* Single Content
------------------------------------------------*/
.post-single-entry {
  padding: 0 0 30px 0;
  word-wrap: normal;
}

@media (min-width: 992px) {
  .post-single-entry {
    padding: 0 0 50px 0;
  }
}

/* Tag
------------------------------------------------*/
.post-single-tag {
  display: inline-block;
  padding: 0;
}

.post-single-tag i {
  margin-right: 5px;
}

.post-single-tag a {
  display: inline-block;
  height: 34px;
  line-height: 32px;
  margin: 0 5px 15px 0;
  padding: 0;
  border-radius: 0;
  background-image: linear-gradient(120deg, #bf6281 0%, #e2bdbb 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
  transition: background-size 0 ease-in;
  font-family: "chulacharasnewbold", sans-serif;
  font-size: 0.9em;
}

@media (min-width: 992px) {
  .no-touchevents .post-single-tag a:hover {
    background-color: #fff;
  }
}

.box-nextprev {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
}

.box-nextprev::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  margin-left: -1px;
  background-color: #e5e5e5;
}

.box-nextprev .box-cell {
  width: 50%;
}

.box-nextprev .box-cell .text-title {
  font-size: 1em;
  line-height: 1.75;
  color: #000;
  margin-bottom: 0;
}

.box-nextprev .box-cell a {
  display: block;
  padding: 20px 15px;
  color: #000;
  text-align: center;
}

.box-nextprev .box-cell a:hover {
  color: #de5c8e;
}

.btn-nextprev {
  display: block;
  height: auto;
  line-height: 1.75;
  padding: 30px 15px;
  border: none;
  background-color: #fff;
  font-size: 1.125em;
  color: #000;
  text-align: center;
}

/*.btn-nextprev:visited {
 color: #000;
}*/
.btn-nextprev:hover {
  border: none;
  background-color: #fff;
  color: #de5c8e;
}

@media (min-width: 992px) {
  .box-nextprev .box-cell a {
    padding: 40px 30px;
    font-size: 1.125em;
  }

  .btn-nextprev {
    padding: 40px 30px;
  }
}

/* Next and previous post
------------------------------------------------*/
.post-single-nextprev * {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.post-single-nextprev {
  margin: 1px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-evenly;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  background-color: #fff;
}

.post-single-nextprev a {
  display: block;
  width: 100%;
  padding: 15px 30px 30px 30px;
}

.post-single-nextprev a:hover h3,
.post-single-nextprev a:hover h4 {
  color: #be5877;
}

.post-single-nextprev .label-small {
  margin: 0 0 15px 0;
  padding: 0.25rem 1rem;
  border: none;
  background-color: #000;
  color: #fff;
}

.post-single-nextprev-prev {
  position: relative;
  box-sizing: border-box;
  float: left;
  width: 50%;
  text-align: center;
  border: 1px solid #000;
  border-right: none;
  border-left: none;
}

.post-single-nextprev-next {
  position: relative;
  box-sizing: border-box;
  float: right;
  width: 50%;
  border: 1px solid #000;
  border-right: none;
  text-align: center;
}

.post-single-nextprev h3,
.post-single-nextprev h4 {
  margin: 10px 0 0 0;
}

@media (min-width: 768px) {
  .post-single-nextprev-prev {
    border: none;
    border-right: 1px solid #000;
  }

  .post-single-nextprev-prev a {
    padding-left: 0;
  }

  .post-single-nextprev-next {
    padding-right: 0;
    border: none;
  }

  .post-single-nextprev-next a {
    padding-right: 0;
  }
}

.single-course-entry {
  padding-top: 0;
}

@media (min-width: 992px) {
  .single-course-entry {
    padding-top: 30px;
  }
}

.single-course-meta {
  margin: 0 0 30px 0;
  padding: 20px;
  background-color: #f5f5f5;
  font-size: 1em;
}

@media (min-width: 576px) {
  .single-course-meta {
    padding: 30px;
  }
}

.single-course-meta dl {
  padding: 0;
}

.single-course-meta dl dt,
.single-course-meta dl dd {
  display: inline-block;
  *display: inline;
  zoom: 1;
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  margin: 0;
}

.single-course-meta dl dd {
  width: 100%;
  margin: 0 0 0.625em 0;
  padding: 0 0 0.625em 0;
  color: #000;
  font-weight: normal;
  border-bottom: 1px solid #e5e5e5;
}

.single-course-meta .course-meta-title {
  font-size: 1.25em;
  color: #000;
  margin-bottom: 15px;
}

.single-course-meta dl+p {
  margin-top: 0.25em;
}

.single-course-meta p {
  margin-bottom: 0.5em;
}

.single-course-meta p:last-child {
  margin-bottom: 0;
}

/*-------------------------------------------------------------------

 Tags

-------------------------------------------------------------------*/
.post-tag {
  text-align: center;
}

.post-tag a {
  display: inline-block;
  margin: 5px;
  padding: 0 1em;
  line-height: 26px;
  border: 2px solid #58595b;
  border-radius: 15px;
  background-color: #fff;

  font-size: 0.75em;
  color: #000;
}

.post-tag a:hover {
  border-color: #de5c8e;
  color: #de5c8e;
}

/*-------------------------------------------------------------------

 Next and Previous Menu

-------------------------------------------------------------------*/
.post-nextprev {
  position: relative;
  margin: 0;
  padding: 30px 15px;
  color: #000;
  background-color: #f5f5f5;
}

.post-nextprev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  margin-left: -1px;
  background-color: #fff;
}

.post-nextprev .text-title {
  font-size: 1em;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}

.post-nextprev .text-title a {
  color: #000;
}

.post-nextprev .text-title a:hover {
  color: #de5c8e;
}

.post-nextprev .text-meta {
  font-size: 1em;
  font-weight: 400;
  color: #de5c8e;
  margin-bottom: 5px;
}

@media (min-width: 576px) {
  .post-nextprev {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 768px) {
  .post-nextprev {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 992px) {
  .post-nextprev {
    padding-left: 50px;
    padding-right: 50px;
  }

  .post-nextprev .text-title {
    font-size: 1.125em;
  }
}

@media (min-width: 1200px) {
  .post-nextprev {
    margin-bottom: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 80px;
    background-color: transparent;
  }

  .post-nextprev::before {
    background-color: #e5e5e5;
    margin-left: -21px;
  }

  .post-nextprev .text-title {
    font-size: 1.125em;
  }
}

/*-------------------------------------------------------------------

 CU Inside รู้ลึกกับจุฬาฯ

-------------------------------------------------------------------*/
.logo-cuinside {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

.single .logo-cuinside {
  max-width: 140px;
}

@media (min-width: 768px) {
  .logo-cuinside {
    width: 100%;
    max-width: 300px;
  }

  .single .logo-cuinside {
    max-width: 200px;
  }
}

/*-------------------------------------------------------------------

 Museum

-------------------------------------------------------------------*/
#hero.hero-full.hero-museum #page-title h1::before {
  background-color: #000;
  left: 50%;
  margin-left: -15px;
  width: 30px;
}

#hero.hero-full.text-light.hero-museum #page-title h1::before {
  background-color: #fff;
}

/*-------------------------------------------------------------------

 Academic

-------------------------------------------------------------------*/
#hero.hero-full.hero-academic #page-title h1 {
  margin-bottom: 5px;
  padding-bottom: 0;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.9);
}

#hero.hero-full.hero-academic.text-light #page-title h1 {
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

#hero.hero-full.hero-academic #page-title h1::before {
  display: none;
}

#hero.hero-full.hero-academic .title-secondary {
  padding-bottom: 24px;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9);
}

#hero.hero-full.hero-academic.text-light .title-secondary {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

#hero.hero-full.hero-academic .title-secondary::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  left: 50%;
  bottom: 0;
  margin-left: -15px;
  background-color: #000;
}

#hero.hero-full.hero-academic.text-light .title-secondary::after {
  background-color: #fff;
}

#hero.hero-full.hero-academic #page-title h4 {
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9);
}

#hero.text-light.hero-academic #page-title h4 {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

/*-------------------------------------------------------------------

 Box

-------------------------------------------------------------------*/
/* Strategy
------------------------------------------------*/
.box-strategy .box-cell {
  position: relative;
  width: 100%;
  padding: 30px;
}

.box-strategy .box-cell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
}

.box-strategy .box-cell:nth-child(1) {
  background-color: rgba(255, 255, 255, 0.95);
}

.box-strategy .box-cell:nth-child(2) {
  background-color: rgba(255, 255, 255, 0.95);
}

.box-strategy .box-cell:nth-child(3) {
  background-color: rgba(255, 255, 255, 0.95);
}

.box-strategy .box-cell:nth-child(4) {
  background-color: rgba(255, 255, 255, 0.95);
}

.box-strategy .box-cell ul,
.box-strategy .box-cell ol {
  padding-left: 0;
}

@media (min-width: 768px) {
  .box-strategy .box-cell {
    width: 50%;
    padding: 50px;
  }
}

/* Single Header
------------------------------------------------*/
.box.box-header {
  justify-content: space-evenly;
}

.box.box-header .box-cell {
  width: 100%;
  max-width: 720px;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

@media (min-width: 1440px) {
  .box.box-header .box-cell {
    max-width: 100%;
  }
}

/* Single Entry
------------------------------------------------*/
.box.box-content {
  z-index: 50;
  position: relative;
  justify-content: flex-start;
  background-color: #fff;
}

.box.box-content .box-cell {
  width: 100%;
  margin: 0;
  padding: 0;
}

.box.box-content .box-cell:nth-child(1) {
  padding: 0;
}

.box.box-content .box-cell:nth-child(2) {
  padding: 0;
}

.hasmedia .box.box-content .box-cell:nth-child(1) {
  padding-top: 30px;
}

@media (min-width: 768px) {
  .box.box-content .box-cell:nth-child(1) {
    padding: 15px 0 0 0;
  }

  .box.box-content .box-cell:nth-child(2) {
    padding: 0 0 50px 0;
  }

  .hasmedia .box.box-content .box-cell:nth-child(1) {
    padding-top: 30px;
  }
}

@media (min-width: 1440px) {
  .hasmedia .box.box-content {
    margin-top: -100px;
  }

  .box.box-content .box-cell:nth-child(1) {
    width: 720px;
    margin-left: auto;
    margin-right: 0;
    padding: 15px 0 100px 0;
  }

  .box.box-content .box-cell:nth-child(2) {
    z-index: 1;
    position: relative;
    display: block;
    width: calc(100% - 720px);
    max-width: 360px;
    margin-left: 0;
    margin-right: auto;
    padding: 15px 0 100px 60px;
  }

  .hasmedia .box.box-content .box-cell:nth-child(1),
  .hasmedia .box.box-content .box-cell:nth-child(2) {
    padding-top: 80px;
  }
}

ul.page-tree {
  width: 100%;
  float: right;
  /*border: 1px solid #898989;*/
  padding: 10px;
  border-radius: 10px;
  background-color: #eee;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
}

ul.page-tree li {
  position: relative;
  display: inline-block;
  margin-left: 40px;
}

ul.page-tree li {
  font-family: 'quark', sans-serif;
  font-size: 14px;
  color: #ff0033;
}

ul.page-tree li:before {
  font-family: "FontAwesome";
  content: "\f0a9";
  color: #2b4496;
  font-size: 14px;
  position: absolute;
  left: -26px;
}

ul.page-tree li:first-child {
  margin-left: 0px;
}

ul.page-tree li:first-child:before {
  content: "";
}

ul.page-tree li a {
  display: inline-block;
  color: #353535;
  font-size: 14px;
  font-family: 'quark', sans-serif;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

/* Appendix Menu
------------------------------------------------*/
.box.box-appendix-page {
  width: 100%;
  margin: 0;
}

.box.box-appendix-page .box-cell {
  width: 100%;
  margin: 0;
  padding: 0 0 15px 0;
  background-color: transparent;
}

.box.box-appendix-page .box-cell:last-of-type {
  padding: 0;
}

@media (min-width: 768px) {
  .box.box-appendix-page .box-cell {
    width: 50%;
    padding: 0 30px 0 0;
  }
}

@media (min-width: 992px) {
  .box.box-appendix-page .box-cell:nth-child(1) {
    width: 66.6666666%;
    padding: 0 30px 0 0;
  }

  .box.box-appendix-page .box-cell:nth-child(2) {
    width: 33.3333333%;
    padding: 0;
  }
}

/* theme css v2.v3 */
@media screen and (min-width: 1564px) {
  .icon_imges_box>img {
    width: 55px !important;
    height: 40px !important;
  }
}

@media screen and (min-width: 1440px) and (max-width:1563px) {
  .icon_imges_box>img {
    width: 55px !important;
    height: 40px !important;
  }

  .icon_imges_box {
    padding: 10.7px 8px !important;
  }
}

span.swiper-pagination-bullet {
  width: 23px !important;
  height: 5px !important;
  border-radius: 30px !important;
}

.owl-carousel .owl-dots .owl-dot span {
  height: 5px !important;
}

.page-banner {
	background:transparent;
}

.right-content {
    height: 325px;
    overflow-y: auto;
}

@media screen and (min-width: 1550px){
  .right-content {
    height: 380px;
    overflow-y: auto;
  }
}