/* Filter Grayscale */
/* Clip path */
/* Transition */
/* Border radius */
/* CLEAR COTNENT */
.cl:before,
.cl:after {
  display: table;
  content: " ";
}

.cl:after {
  clear: both;
}

.cl {
  clear: both;
}

/* IMAGES */
.img-full {
  width: 100%;
  display: block;
}

/* HR Lines*/
hr {
  margin: 0px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* DISPLAY */
.hide {
  display: none;
}

/* TEXT ALIGN */
.text-center {
  text-align: center;
}

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

/* TEXT TRANSFORM */
.text-upper {
  text-transform: uppercase;
}

/* BACKGROUND COLORS */
.bg-white {
  background-color: #fff;
}

.bg-red {
  background-color: rgb(221, 17, 8);
}

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

/* COLORS */
.color-black {
  color: #000;
}

.color-red {
  color: rgb(221, 17, 8);
}

.color-white {
  color: #fff;
}

.color-black-5 {
  color: rgba(0, 0, 0, 0.5);
}

/* MARGINS */
.m-auto {
  margin: auto;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

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

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-160 {
  margin-top: 160px;
}

@media screen and (max-width: 992px) {
  .mt-0-md {
    margin-top: 0;
  }
  .mt-10-md {
    margin-top: 10px;
  }
  .mt-20-md {
    margin-top: 20px;
  }
  .mt-40-md {
    margin-top: 40px;
  }
  .mt-60-md {
    margin-top: 60px;
  }
  .mt-80-md {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .mt-0-sm {
    margin-top: 0;
  }
  .mt-10-sm {
    margin-top: 10px;
  }
  .mt-20-sm {
    margin-top: 20px;
  }
  .mt-40-sm {
    margin-top: 40px;
  }
  .mt-60-sm {
    margin-top: 60px;
  }
  .mt-80-sm {
    margin-top: 80px;
  }
}
@media screen and (max-width: 600px) {
  .mt-0-xs {
    margin-top: 0;
  }
  .mt-10-xs {
    margin-top: 10px;
  }
  .mt-20-xs {
    margin-top: 20px;
  }
  .mt-40-xs {
    margin-top: 40px;
  }
  .mt-60-xs {
    margin-top: 60px;
  }
  .mt-80-xs {
    margin-top: 80px;
  }
}
.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-160 {
  margin-bottom: 160px;
}

@media screen and (max-width: 992px) {
  .mb-0-md {
    margin-bottom: 0;
  }
  .mb-10-md {
    margin-bottom: 10px;
  }
  .mb-20-md {
    margin-bottom: 20px;
  }
  .mb-40-md {
    margin-bottom: 40px;
  }
  .mb-60-md {
    margin-bottom: 60px;
  }
  .mb-80-md {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .mb-0-sm {
    margin-bottom: 0;
  }
  .mb-10-sm {
    margin-bottom: 10px;
  }
  .mb-20-sm {
    margin-bottom: 20px;
  }
  .mb-40-sm {
    margin-bottom: 40px;
  }
  .mb-60-sm {
    margin-bottom: 60px;
  }
  .mb-80-sm {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 600px) {
  .mb-0-xs {
    margin-bottom: 0;
  }
  .mb-10-xs {
    margin-bottom: 10px;
  }
  .mb-20-xs {
    margin-bottom: 20px;
  }
  .mb-40-xs {
    margin-bottom: 40px;
  }
  .mb-60-xs {
    margin-bottom: 60px;
  }
  .mb-80-xs {
    margin-bottom: 80px;
  }
}
/* PADDINGS */
.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.padded20 {
  padding: 20px 0px;
}

.padded40 {
  padding: 40px 0px;
}

.padded60,
.padded80,
.padded100,
.padded120,
.padded140,
.padded160 {
  padding: 40px 0px;
}

@media screen and (min-width: 992px) {
  .padded60 {
    padding: 60px 0px;
  }
  .padded80 {
    padding: 80px 0px;
  }
  .padded100 {
    padding: 100px 0px;
  }
  .padded120 {
    padding: 120px 0px;
  }
  .padded140 {
    padding: 140px 0px;
  }
  .padded160 {
    padding: 160px 0px;
  }
}
/* FONT WEIGHTS */
.font100 {
  font-weight: 100;
}

.font200 {
  font-weight: 200;
}

.font300 {
  font-weight: 300;
}

.font400 {
  font-weight: 400;
}

.font500 {
  font-weight: 500;
}

.font600 {
  font-weight: 600;
}

.font700 {
  font-weight: 700;
}

.font800 {
  font-weight: 800;
}

.font900 {
  font-weight: 900;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Khand", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-style: normal;
  color: #000;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
}

body.no-scroll {
  overflow: hidden;
}

html {
  height: 100%;
}

section,
header,
footer {
  position: relative;
  outline: 0;
  border: 0;
}

@media screen and (max-width: 767px) {
  section {
    overflow: hidden;
  }
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(221, 17, 8);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(221, 17, 8);
}

img {
  max-width: 100%;
  display: block;
}

b,
strong {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Khand", sans-serif;
  margin: 0;
  color: #000;
  z-index: 1;
  position: relative;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    margin-bottom: 20px;
  }
}

h1, .h1 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  h1, .h1 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1200px) {
  h1, .h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1300px) {
  h1, .h1 {
    font-size: 42px;
    line-height: 46px;
  }
}
@media screen and (min-width: 1600px) {
  h1, .h1 {
    font-size: 52px;
    line-height: 56px;
  }
}

h2, .h2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
}
@media screen and (min-width: 1300px) {
  h2, .h2 {
    font-size: 30px;
    line-height: 44px;
  }
}
@media screen and (min-width: 1600px) {
  h2, .h2 {
    font-size: 40px;
    line-height: 44px;
  }
}

h3, .h3 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
}
@media screen and (min-width: 1300px) {
  h3, .h3 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1600px) {
  h3, .h3 {
    font-size: 40px;
    line-height: 44px;
  }
}

h4, .h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
@media screen and (min-width: 1300px) {
  h4, .h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (min-width: 1600px) {
  h4, .h4 {
    font-size: 22px;
    line-height: 30px;
  }
}

h5, .h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  h5, .h5 {
    font-size: 18px;
    line-height: 28px;
  }
}

p {
  font-family: "Kanit", sans-serif;
  font-size: 18px;
  line-height: 32px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  p {
    font-size: 20px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1600px) {
  p {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}
p a {
  font-family: "Kanit", sans-serif;
  color: rgb(221, 17, 8);
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  p a {
    font-size: 20px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1600px) {
  p a {
    font-size: 24px;
    line-height: 40px;
  }
}

.container {
  width: auto;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 767px) {
  .container {
    width: 740px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media screen and (min-width: 1300px) {
  .container {
    width: 1270px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    width: 1570px;
  }
}

.row {
  margin-left: -20px;
  margin-right: -20px;
  position: relative;
}
.row > * {
  padding-left: 20px;
  padding-right: 20px;
}

.section-container {
  position: relative;
  padding: 60px 20px;
}
@media screen and (min-width: 992px) {
  .section-container {
    padding: 100px 40px;
  }
}

.section-title {
  position: relative;
}
.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5 {
  font-family: "Khand", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .section-title h1 {
    font-size: 14vw;
    line-height: 80%;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .section-title h1 {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 767px) {
  .section-title h2 {
    font-size: 12vw;
    line-height: 80%;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .section-title h2 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section-title h2.h2-large-m {
    font-size: 18vw;
    line-height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .section-title h3 {
    font-size: 4vw;
    line-height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .section-title h4 {
    font-size: 2vw;
    line-height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .section-title h5 {
    font-size: 2vw;
    line-height: 100%;
  }
}
.section-title-with-logo-center {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin: auto;
  background-color: #000;
  width: 200px;
  height: 60px;
  border: 6px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: -100px;
  -webkit-border-radius: 120px;
  -moz-border-radius: 120px;
  -o-border-radius: 120px;
  border-radius: 120px;
  -webkit-transform: rotate(24deg);
  -moz-transform: rotate(24deg);
  -ms-transform: rotate(24deg);
  transform: rotate(24deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .section-title-with-logo-center {
    width: 260px;
    height: 80px;
  }
}
@media screen and (min-width: 767px) {
  .section-title-with-logo-center {
    bottom: -140px;
    border: 10px solid #fff;
  }
}
@media screen and (min-width: 992px) {
  .section-title-with-logo-center {
    bottom: -120px;
  }
}
@media screen and (min-width: 1300px) {
  .section-title-with-logo-center {
    width: 260px;
    height: 80px;
    border: 10px solid #fff;
    bottom: -60px;
  }
}
@media screen and (min-width: 1600px) {
  .section-title-with-logo-center {
    width: 400px;
    height: 120px;
    border: 16px solid #fff;
  }
}
@media screen and (min-width: 1800px) {
  .section-title-with-logo-center {
    width: 480px;
    height: 140px;
  }
}
.section-title-with-logo-center img {
  width: 60%;
  height: auto;
  display: block;
}

.section-link {
  position: relative;
  display: block;
}
.section-link a {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  line-height: 100%;
  color: #000;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .section-link a {
    font-size: 2.4vw;
    line-height: 100%;
  }
}
.section-link a:hover, .section-link a:focus {
  color: rgb(221, 17, 8);
  border-color: rgb(221, 17, 8);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

@media screen and (min-width: 992px) {
  .section-content {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
  }
}
.section-content-image {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}
@media screen and (min-width: 600px) {
  .section-content-image {
    width: 60%;
  }
}
@media screen and (min-width: 992px) {
  .section-content-image {
    width: 40%;
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1600px) {
  .section-content-image {
    width: 35%;
  }
}
.section-content-image img {
  width: 100%;
  height: auto;
  display: block;
}
.section-content-info {
  position: relative;
  display: block;
}
@media screen and (min-width: 992px) {
  .section-content-info {
    width: 50%;
    margin-left: 5%;
  }
}
@media screen and (min-width: 1600px) {
  .section-content-info {
    width: 35%;
    margin-left: 15%;
  }
}
.section-content-info h1,
.section-content-info h2,
.section-content-info h3,
.section-content-info h4,
.section-content-info h5 {
  text-transform: uppercase;
  font-weight: 700;
}
.section-content-info-box {
  display: block;
  position: relative;
  padding: 0px 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 600px) {
  .section-content-info-box {
    padding: 20px 40px;
    margin-left: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .section-content-info-box {
    padding: 30px 60px;
    margin-left: 20%;
  }
}
.section-content-info-box p {
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  .section-content-info-box p {
    margin-bottom: 35px;
  }
}

.section-statistic {
  background-color: #000;
}
@media screen and (min-width: 992px) {
  .section-statistic {
    padding: 40px 0px;
  }
}
@media screen and (min-width: 1200px) {
  .section-statistic {
    padding: 100px 0px;
  }
}
.section-statistic h1,
.section-statistic h2,
.section-statistic h3,
.section-statistic h4,
.section-statistic h5 {
  color: #fff;
}
.section-statistic p {
  color: rgba(255, 255, 255, 0.7);
}
.section-statistic-content {
  position: relative;
}
@media screen and (min-width: 992px) {
  .section-statistic-content {
    padding-left: 10%;
    padding-right: 10%;
  }
}
.section-statistic-content-col {
  position: relative;
}
@media screen and (min-width: 767px) {
  .section-statistic-content-col {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    justify-content: end;
    margin-top: 60px;
    gap: 60px;
  }
}
@media screen and (min-width: 992px) {
  .section-statistic-content-col {
    gap: 80px;
    margin-top: 80px;
  }
}
.section-statistic-content-col-item {
  margin-bottom: 30px;
}
.section-statistic-content-col-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 767px) {
  .section-statistic-content-col-item {
    width: 60%;
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .section-statistic-content-col-item {
    width: 40%;
  }
}
@media screen and (min-width: 1300px) {
  .section-statistic-content-col-item {
    width: 30%;
  }
}
.section-statistic-content-col-item .btn {
  margin-top: 40px;
}

@media screen and (min-width: 767px) {
  .section-testimonials {
    padding: 80px 0px;
  }
}
@media screen and (min-width: 1200px) {
  .section-testimonials {
    padding: 100px 0px;
  }
}

.header {
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 80px;
  background-color: transparent;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .header {
    height: 100px;
  }
}
.header-container {
  padding: 0px 20px;
  position: relative;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .header-container {
    padding: 0px 40px;
  }
}
.header-logo {
  width: 140px;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .header-logo {
    width: 180px;
  }
}
.header-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.header-menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 80px;
  height: 80px;
  background-image: url(../../assets/images/icons/icn-header-menu.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  cursor: pointer;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .header-menu {
    width: 100px;
    height: 100px;
  }
}
.header-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  background-color: rgb(221, 17, 8);
  display: block;
  margin: auto;
  opacity: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.header-menu:hover, .header-menu:focus {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.header-menu:hover:after, .header-menu:focus:after {
  opacity: 1;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.header.header-sticky {
  background-color: #000;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.footer {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .footer {
    text-align: initial;
  }
}
.footer-container {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0px;
}
@media screen and (min-width: 992px) {
  .footer-container {
    padding: 40px 0px;
  }
}
@media screen and (min-width: 992px) {
  .footer-container {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}
.footer-copyright {
  position: relative;
}
@media screen and (min-width: 992px) {
  .footer-copyright {
    width: 40%;
  }
}
.footer-copyright p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 992px) {
  .footer-copyright p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 24px;
  }
}
.footer .list-social {
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .footer .list-social {
    justify-content: end;
  }
}
.footer-scroll-to-top {
  text-align: center;
  position: relative;
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .footer-scroll-to-top {
    width: 20%;
    margin-bottom: 0px;
  }
}
.footer-scroll-to-top a {
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
  padding-right: 24px;
  display: inline-block;
  position: relative;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .footer-scroll-to-top a {
    font-size: 18px;
    line-height: 24px;
  }
}
.footer-scroll-to-top a:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  opacity: 0.7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-image: url(../../assets/images/icons/icn-arrow-black.svg);
  display: block;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.footer-scroll-to-top a:hover, .footer-scroll-to-top a:focus {
  color: #000;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.footer-scroll-to-top a:hover:after, .footer-scroll-to-top a:focus:after {
  opacity: 1;
  top: -12px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.footer-social-links {
  position: relative;
}
@media screen and (min-width: 992px) {
  .footer-social-links {
    width: 40%;
  }
}

::-webkit-input-placeholder {
  font-family: "Khand", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 767px) {
  ::-webkit-input-placeholder {
    font-size: 18px;
  }
}

::-moz-placeholder {
  font-family: "Khand", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 767px) {
  ::-moz-placeholder {
    font-size: 18px;
  }
}

:-ms-input-placeholder {
  font-family: "Khand", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 767px) {
  :-ms-input-placeholder {
    font-size: 18px;
  }
}

:-moz-placeholder {
  font-family: "Khand", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 767px) {
  :-moz-placeholder {
    font-size: 18px;
  }
}

.form-control {
  font-family: "Khand", sans-serif;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  outline: 0;
  background-color: #fff;
  padding: 6px 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
@media screen and (min-width: 767px) {
  .form-control {
    font-size: 18px;
    padding: 8px 14px;
  }
}
.form-control:hover, .form-control:focus {
  border-color: rgb(221, 17, 8);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
@media screen and (min-width: 767px) {
  textarea.form-control {
    min-height: 180px;
  }
}
@media screen and (min-width: 992px) {
  textarea.form-control {
    min-height: 220px;
  }
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group .form-label {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (min-width: 767px) {
  .form-group .form-label {
    font-size: 18px;
    line-height: 24px;
  }
}

.btn {
  font-family: "Khand", sans-serif;
  outline: 0;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 600;
  padding: 10px 28px;
  font-size: 20px;
  line-height: 32px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  z-index: 1;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
  /*Black*/
  /*White*/
  /*Button with arrow*/
  /*Block*/
}
@media screen and (min-width: 1200px) {
  .btn {
    padding: 14px 34px;
    font-size: 22px;
    line-height: 34px;
  }
}
.btn span {
  position: relative;
  z-index: 2;
  text-align: center;
}
.btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 0;
  z-index: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.btn:hover, .btn:focus {
  text-decoration: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.btn:hover:after, .btn:focus:after {
  width: 100%;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.btn.btn-black {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.btn.btn-black:hover, .btn.btn-black:focus {
  color: #fff;
  border-color: rgb(221, 17, 8);
}
.btn.btn-black:hover:after, .btn.btn-black:focus:after {
  background-color: rgb(221, 17, 8);
}
.btn.btn-white {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
.btn.btn-white:hover, .btn.btn-white:focus {
  color: #fff;
  border-color: rgb(221, 17, 8);
}
.btn.btn-white:hover:after, .btn.btn-white:focus:after {
  background-color: rgb(221, 17, 8);
}
.btn.btn-arrow span {
  padding-right: 30px;
}
@media screen and (min-width: 1200px) {
  .btn.btn-arrow span {
    padding-right: 44px;
  }
}
.btn.btn-arrow span:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 1200px) {
  .btn.btn-arrow span:after {
    right: -10px;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
  }
}
.btn.btn-arrow:hover span:after, .btn.btn-arrow:focus span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.btn.btn-black.btn-arrow span:after {
  background-image: url(../../assets/images/icons/icn-arrow-white.svg);
}
.btn.btn-white.btn-arrow span:after {
  background-image: url(../../assets/images/icons/icn-arrow-black.svg);
}
.btn.btn-block {
  display: block;
  width: 100%;
}

.page-progress {
  position: fixed;
  top: 80px;
  left: 0;
  height: 3px;
  background-color: rgb(221, 17, 8);
  min-width: 0px;
  z-index: 20;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.page-progress:after {
  content: "";
  position: absolute;
  right: 0;
  width: 14px;
  height: 14px;
  background-color: rgb(221, 17, 8);
  display: block;
  bottom: -6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (min-width: 767px) {
  .page-progress {
    top: 100px;
  }
}

.hero {
  height: 100%;
  min-height: 100vh;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .hero {
    background-attachment: fixed;
  }
}
.hero-container {
  padding: 0px 20px;
  height: 100%;
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .hero-container {
    padding: 0px 40px;
  }
}
.hero-content {
  position: relative;
  height: 100%;
  display: block;
}
.hero-content h1 {
  font-family: "Khand", sans-serif;
  font-size: 18vw;
  line-height: 100%;
  color: #fff;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .hero-content h1 {
    margin-bottom: 0;
    font-size: 16vw;
    line-height: 80%;
  }
}
.hero-content h1 span {
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  text-transform: initial;
  display: block;
}
@media screen and (min-width: 1300px) {
  .hero-content h1 span {
    font-size: 60px;
    line-height: 60px;
  }
}
.hero-content h1 span:nth-child(2) {
  text-align: right;
}
.hero-content-logo {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  margin: auto;
  background-color: #000;
  width: 200px;
  height: 60px;
  border: 6px solid #fff;
  -webkit-border-radius: 120px;
  -moz-border-radius: 120px;
  -o-border-radius: 120px;
  border-radius: 120px;
  -webkit-transform: rotate(24deg);
  -moz-transform: rotate(24deg);
  -ms-transform: rotate(24deg);
  transform: rotate(24deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .hero-content-logo {
    width: 260px;
    height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .hero-content-logo {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 10px solid #fff;
  }
}
@media screen and (min-width: 1300px) {
  .hero-content-logo {
    width: 260px;
    height: 80px;
    border: 10px solid #fff;
  }
}
@media screen and (min-width: 1600px) {
  .hero-content-logo {
    width: 400px;
    height: 120px;
    border: 16px solid #fff;
  }
}
@media screen and (min-width: 1800px) {
  .hero-content-logo {
    width: 480px;
    height: 140px;
  }
}
.hero-content-logo img {
  height: auto;
  display: block;
  width: 60%;
}
@media screen and (min-width: 1600px) {
  .hero-content-logo img {
    width: 60%;
  }
}

.hero-inner {
  height: 100%;
  min-height: 100vh;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .hero-inner {
    background-attachment: fixed;
  }
}
.hero-inner-container {
  padding: 0px 20px;
  height: 100%;
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .hero-inner-container {
    padding: 0px 40px;
  }
}
.hero-inner-content {
  position: relative;
  height: 100%;
  width: 50%;
  display: block;
}
.hero-inner-content h1,
.hero-inner-content h2 {
  font-family: "Khand", sans-serif;
  font-size: 8vw;
  line-height: 100%;
  color: #000;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .hero-inner-content h1,
  .hero-inner-content h2 {
    margin-bottom: 20px;
    font-size: 4.8vw;
    line-height: 100%;
  }
}
.hero-inner-content-desc {
  position: relative;
  width: 50%;
}
.hero-inner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}
.hero-inner-video:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
.hero-inner-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.brands-list {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.brands-list-items {
  position: relative;
  padding: 15px 0px;
  width: 100%;
  display: inline-flex;
  white-space: nowrap;
  width: max-content;
  -webkit-animation: brands-text-anim 20s linear infinite;
  -moz-animation: brands-text-anim 20s linear infinite;
  -o-animation: brands-text-anim 20s linear infinite;
  animation: brands-text-anim 20s linear infinite;
}
@media screen and (min-width: 992px) {
  .brands-list-items {
    padding: 30px 0px;
  }
}
@-webkit-keyframes brands-text-anim {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@-moz-keyframes brands-text-anim {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@-o-keyframes brands-text-anim {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes brands-text-anim {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.brands-list-items p {
  font-family: "Kanit", sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
  display: inline-block;
  position: relative;
  padding: 0px 20px;
}
@media screen and (min-width: 992px) {
  .brands-list-items p {
    font-size: 30px;
    line-height: 30px;
    padding: 0px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .brands-list-items p {
    font-size: 34px;
    line-height: 34px;
    padding: 0px 60px;
  }
}
@media screen and (min-width: 1300px) {
  .brands-list-items p {
    font-size: 40px;
    line-height: 40px;
  }
}

.works {
  position: relative;
}

.work-item {
  position: relative;
  margin-bottom: 20px;
}
.work-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 767px) {
  .work-item {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    justify-content: space-between;
  }
}
.work-item-info {
  position: relative;
  padding-left: 40px;
  padding-top: 20px;
}
@media screen and (min-width: 767px) {
  .work-item-info {
    width: 50%;
    padding-left: 60px;
  }
}
@media screen and (min-width: 992px) {
  .work-item-info {
    padding-left: 80px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .work-item-info {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1300px) {
  .work-item-info {
    padding-left: 100px;
    padding-top: 80px;
  }
}
.work-item-info:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 767px) {
  .work-item-info:after {
    right: 5%;
  }
}
.work-item-info-no {
  position: absolute;
  left: 0;
  top: 20px;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 34px;
  display: block;
  color: #000;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .work-item-info-no {
    top: 40px;
    font-size: 1.8vw;
    line-height: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .work-item-info-no {
    top: 60px;
  }
}
@media screen and (min-width: 1300px) {
  .work-item-info-no {
    top: 80px;
  }
}
.work-item-info-title {
  display: block;
  margin-bottom: 0px;
}
@media screen and (min-width: 767px) {
  .work-item-info-title {
    margin-bottom: 15px;
  }
}
.work-item-info-title > a {
  text-transform: uppercase;
  font-size: 28px;
  line-height: 34px;
  display: block;
  color: #000;
  font-weight: 700;
  display: block;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .work-item-info-title > a {
    font-size: 4vw;
    line-height: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .work-item-info-title > a {
    font-size: 4vw;
  }
}
@media screen and (min-width: 1300px) {
  .work-item-info-title > a {
    font-size: 4vw;
  }
}
@media screen and (min-width: 1600px) {
  .work-item-info-title > a {
    font-size: 3vw;
  }
}
.work-item-info p {
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  .work-item-info p {
    font-size: 24px;
    line-height: 28px;
  }
}
.work-item-media {
  position: relative;
  margin-top: 20px;
}
@media screen and (min-width: 767px) {
  .work-item-media {
    width: 50%;
    margin-top: 0px;
  }
}
.work-item-media a {
  display: block;
  width: 100%;
  position: relative;
}
.work-item-media img {
  width: 100%;
  height: auto;
  display: block;
}

.services {
  position: relative;
}
@media screen and (min-width: 992px) {
  .services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .services {
    column-gap: 60px;
  }
}
@media screen and (min-width: 1300px) {
  .services {
    column-gap: 80px;
  }
}
@media screen and (min-width: 1600px) {
  .services {
    column-gap: 100px;
  }
}

.service-item {
  position: relative;
  display: block;
  border-top: 1px solid #000;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.service-item-no {
  position: absolute;
  left: 0;
  top: 20px;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 36px;
  line-height: 120%;
  display: block;
  color: #000;
  font-weight: 500;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 1200px) {
  .service-item-no {
    top: 40px;
    font-size: 1.8vw;
    line-height: 120%;
  }
}
@media screen and (min-width: 1300px) {
  .service-item-no {
    top: 60px;
  }
}
.service-item-title {
  display: block;
  margin-bottom: 20px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .service-item-title {
    margin-bottom: 30px;
  }
}
.service-item-title > a {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 36px;
  display: block;
  color: #000;
  font-weight: 700;
  display: block;
  text-decoration: none;
  padding: 20px 80px 0px 60px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .service-item-title > a {
    font-size: 5.4vw;
    line-height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .service-item-title > a {
    padding: 40px 120px 0px 80px;
  }
}
@media screen and (min-width: 1300px) {
  .service-item-title > a {
    padding: 60px 180px 0px 120px;
  }
}
.service-item-title > a:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 20px;
  background-image: url(../../assets/images/icons/icn-arrow-black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  display: block;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 1200px) {
  .service-item-title > a:after {
    right: 40px;
    top: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .service-item-title > a:after {
    right: 60px;
    top: 60px;
  }
}
.service-item p {
  margin-bottom: 0;
  padding: 0px 60px 40px 60px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 1200px) {
  .service-item p {
    padding: 0px 80px 60px 80px;
  }
}
@media screen and (min-width: 1300px) {
  .service-item p {
    padding: 0px 120px 60px 120px;
  }
}
.service-item:hover, .service-item:focus {
  border-top-color: rgb(221, 17, 8);
  background-color: rgb(221, 17, 8);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.service-item:hover .service-item-no, .service-item:focus .service-item-no {
  color: #fff;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.service-item:hover .service-item-title, .service-item:focus .service-item-title {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.service-item:hover .service-item-title a, .service-item:focus .service-item-title a {
  color: #fff;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .service-item:hover .service-item-title a:after, .service-item:focus .service-item-title a:after {
    background-size: 48px 48px;
    width: 48px;
    height: 48px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 400ms ease 0ms;
    -moz-transition: all 400ms ease 0ms;
    -o-transition: all 400ms ease 0ms;
    transition: all 400ms ease 0ms;
  }
}
.service-item:hover p, .service-item:focus p {
  color: #fff;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.stat-item {
  position: relative;
  display: block;
}
.stat-item-no {
  text-transform: uppercase;
  font-size: 34px;
  line-height: 38px;
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .stat-item-no {
    font-size: 3.4vw;
    line-height: 100%;
  }
}
.stat-item-no span {
  font-weight: 300;
  padding-left: 10px;
}
.stat-item p {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .stat-item p {
    font-size: 20px;
    line-height: 24px;
  }
}

.testimonial-item {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 64px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .testimonial-item {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-item {
    padding-top: 160px;
  }
}
.testimonial-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
  background-image: url(../../assets/images/icons/icn-quote.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 48px 48px;
  width: 48px;
  height: 48px;
  display: block;
}
@media screen and (min-width: 767px) {
  .testimonial-item:after {
    background-size: 64px 64px;
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-item:after {
    background-size: 100px 100px;
    width: 100px;
    height: 100px;
  }
}
.testimonial-item h1,
.testimonial-item h2,
.testimonial-item h3,
.testimonial-item h4,
.testimonial-item h5 {
  font-size: 28px;
  line-height: 34px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
}
@media screen and (min-width: 600px) {
  .testimonial-item h1,
  .testimonial-item h2,
  .testimonial-item h3,
  .testimonial-item h4,
  .testimonial-item h5 {
    font-size: 34px;
    line-height: 46px;
  }
}
@media screen and (min-width: 992px) {
  .testimonial-item h1,
  .testimonial-item h2,
  .testimonial-item h3,
  .testimonial-item h4,
  .testimonial-item h5 {
    font-size: 3.8vw;
    line-height: 110%;
  }
}

.owl-carousel-testimonials {
  position: relative;
  display: block;
}
.owl-carousel-testimonials .item {
  position: relative;
}
@media screen and (min-width: 992px) {
  .owl-carousel-testimonials .item {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.owl-carousel-testimonials-dots {
  position: relative;
  margin-top: 20px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 767px) {
  .owl-carousel-testimonials-dots {
    margin-top: 40px;
  }
}
.owl-carousel-testimonials-dots-item {
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0.5;
  padding-bottom: 20px;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .owl-carousel-testimonials-dots-item {
    text-align: left;
    padding-right: 20px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    gap: 10px;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .owl-carousel-testimonials-dots-item {
    gap: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .owl-carousel-testimonials-dots-item {
    padding-right: 60px;
    padding-bottom: 30px;
  }
}
.owl-carousel-testimonials-dots-item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  right: 0;
  background-color: #000;
  height: 1px;
  display: block;
  opacity: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.owl-carousel-testimonials-dots-item-photo {
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  margin: auto;
  margin-bottom: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .owl-carousel-testimonials-dots-item-photo {
    margin-bottom: 0px;
    width: 80px;
    height: 80px;
  }
}
.owl-carousel-testimonials-dots-item-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.owl-carousel-testimonials-dots-item-info {
  position: relative;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.owl-carousel-testimonials-dots-item-info h1,
.owl-carousel-testimonials-dots-item-info h2,
.owl-carousel-testimonials-dots-item-info h3,
.owl-carousel-testimonials-dots-item-info h4,
.owl-carousel-testimonials-dots-item-info h5 {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  display: block;
  margin-bottom: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .owl-carousel-testimonials-dots-item-info h1,
  .owl-carousel-testimonials-dots-item-info h2,
  .owl-carousel-testimonials-dots-item-info h3,
  .owl-carousel-testimonials-dots-item-info h4,
  .owl-carousel-testimonials-dots-item-info h5 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (min-width: 992px) {
  .owl-carousel-testimonials-dots-item-info h1,
  .owl-carousel-testimonials-dots-item-info h2,
  .owl-carousel-testimonials-dots-item-info h3,
  .owl-carousel-testimonials-dots-item-info h4,
  .owl-carousel-testimonials-dots-item-info h5 {
    font-size: 28px;
    line-height: 34px;
  }
}
@media screen and (min-width: 1200px) {
  .owl-carousel-testimonials-dots-item-info h1,
  .owl-carousel-testimonials-dots-item-info h2,
  .owl-carousel-testimonials-dots-item-info h3,
  .owl-carousel-testimonials-dots-item-info h4,
  .owl-carousel-testimonials-dots-item-info h5 {
    font-size: 32px;
    line-height: 38px;
  }
}
.owl-carousel-testimonials-dots-item-info p {
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 16px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .owl-carousel-testimonials-dots-item-info p {
    font-size: 18px;
    line-height: 22px;
  }
}
.owl-carousel-testimonials-dots-item.active {
  opacity: 1;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.owl-carousel-testimonials-dots-item.active:after {
  opacity: 1;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.logos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 767px) {
  .logos {
    margin-top: 60px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.logo-item {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
  aspect-ratio: 1/1;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.logo-item a,
.logo-item span {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.logo-item a img,
.logo-item span img {
  display: block;
  width: 60%;
  height: auto;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .logo-item a img,
  .logo-item span img {
    width: 40%;
  }
}
.logo-item:hover, .logo-item:focus {
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.logo-item:hover a,
.logo-item:hover span, .logo-item:focus a,
.logo-item:focus span {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.logo-item:hover a img,
.logo-item:hover span img, .logo-item:focus a img,
.logo-item:focus span img {
  width: 50%;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.list-social {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 20px;
}
.list-social > li {
  position: relative;
}
.list-social > li > a {
  display: block;
  width: 20px;
  position: relative;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.list-social > li > a img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.list-social > li > a:hover, .list-social > li > a:focus {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.list-social > li > a:hover img, .list-social > li > a:focus img {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.menu-full {
  position: fixed;
  top: 0;
  left: 100%;
  right: -100%;
  bottom: 0;
  z-index: 200;
  background-color: #000;
  display: block;
  opacity: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full-logo {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .menu-full-logo {
    left: 40px;
  }
}
.menu-full-logo a {
  cursor: pointer;
  display: block;
  width: 140px;
}
@media screen and (min-width: 600px) {
  .menu-full-logo a {
    width: 180px;
  }
}
.menu-full-logo a img {
  width: 100%;
  height: auto;
  display: block;
}
.menu-full-close {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 80px;
  width: auto;
  z-index: 2;
}
@media screen and (min-width: 767px) {
  .menu-full-close {
    height: 100px;
  }
}
.menu-full-close a {
  cursor: pointer;
  height: 80px;
  display: block;
  position: relative;
  width: 80px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .menu-full-close a {
    width: auto;
  }
}
@media screen and (min-width: 767px) {
  .menu-full-close a {
    height: 100px;
  }
}
.menu-full-close a span {
  font-family: "Kanit", sans-serif;
  font-size: 12px;
  line-height: 80px;
  color: #fff;
  font-weight: 300;
  opacity: 0.5;
  display: none;
}
@media screen and (min-width: 600px) {
  .menu-full-close a span {
    font-size: 16px;
    display: block;
    padding-right: 60px;
  }
}
@media screen and (min-width: 767px) {
  .menu-full-close a span {
    line-height: 100px;
  }
}
@media screen and (min-width: 992px) {
  .menu-full-close a span {
    padding-right: 100px;
  }
}
.menu-full-close a:after, .menu-full-close a:before {
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0px;
  left: 0;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .menu-full-close a:after, .menu-full-close a:before {
    right: 20px;
    left: initial;
  }
}
@media screen and (min-width: 992px) {
  .menu-full-close a:after, .menu-full-close a:before {
    right: 40px;
  }
}
.menu-full-close a:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-full-close a:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-full-close a:hover, .menu-full-close a:focus {
  opacity: 1;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full-close a:hover:after, .menu-full-close a:focus:after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full-close a:hover:before, .menu-full-close a:focus:before {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .menu-full-box {
    flex-direction: column;
  }
}
.menu-full-box-l {
  display: none;
}
@media screen and (min-width: 767px) {
  .menu-full-box-l {
    position: relative;
    background-color: #000;
    overflow-x: hidden;
    overflow-y: auto;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    width: 40%;
    height: auto;
    padding: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .menu-full-box-l {
    padding: 40px;
    width: 30%;
  }
}
.menu-full-box-l:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  margin: auto;
  left: -150px;
  width: 300px;
  height: 300px;
  background-color: rgb(221, 17, 8);
  -webkit-filter: blur(600px);
  filter: blur(600px);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.menu-full-box-r {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  width: auto;
  height: 100%;
  padding: 20px;
  background-color: #101010;
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (min-width: 767px) {
  .menu-full-box-r {
    width: 60%;
  }
}
@media screen and (min-width: 1300px) {
  .menu-full-box-r {
    padding: 40px;
    width: 70%;
  }
}
.menu-full-box-r:after, .menu-full-box-r:before {
  content: "";
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.menu-full-contact {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .menu-full-contact {
    row-gap: 40px;
  }
}
.menu-full-contact-item {
  position: relative;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full-contact-item-title {
  font-family: "Khand", sans-serif;
  text-transform: uppercase;
  opacity: 0.3;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full-contact-item-title + a {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full-contact-item-title + p {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
}
.menu-full-contact-item .list-social {
  margin-top: 10px;
}
.menu-full-contact-item:hover, .menu-full-contact-item:focus {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full-contact-item:hover:hover .menu-full-contact-item-title, .menu-full-contact-item:hover:focus .menu-full-contact-item-title, .menu-full-contact-item:focus:hover .menu-full-contact-item-title, .menu-full-contact-item:focus:focus .menu-full-contact-item-title {
  opacity: 0.5;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full-contact-item:hover:hover .menu-full-contact-item-title + a, .menu-full-contact-item:hover:focus .menu-full-contact-item-title + a, .menu-full-contact-item:focus:hover .menu-full-contact-item-title + a, .menu-full-contact-item:focus:focus .menu-full-contact-item-title + a {
  color: rgb(221, 17, 8);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full-copyright {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
}
.menu-full-copyright p {
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 0;
}
.menu-full-nav {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .menu-full-nav {
    row-gap: 40px;
  }
}
.menu-full-nav > li > a {
  font-family: "Khand", sans-serif;
  font-size: 8vw;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  padding-right: 40px;
  position: relative;
  opacity: 0.5;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .menu-full-nav > li > a {
    font-size: 4vw;
    line-height: 80%;
  }
}
@media screen and (min-width: 992px) {
  .menu-full-nav > li > a {
    padding-left: 40px;
    padding-right: 80px;
  }
}
.menu-full-nav > li > a:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-image: url(../../assets/images/icons/icn-arrow-white.svg);
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .menu-full-nav > li > a:after {
    width: 48px;
    height: 48px;
    background-size: 48px 48px;
  }
}
.menu-full-nav > li > a:hover, .menu-full-nav > li > a:focus {
  opacity: 1;
  padding-left: 50px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.menu-full.menu-full-show {
  right: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

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