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;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  scroll-padding: 80px;
}
body {
  line-height: 1;
  background-color: #ffff;
  font-family: "DM Sans", sans-serif;
  color: #fff;
  scroll-padding: 80px;
}
a {
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}
a:hover {
  transition: 0.3s;
}
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;
}
section {
  overflow: hidden;
}
.container-fluid {
  padding: 0 100px 0 100px;
}
/* Header */
header {
  position: -webkit-sticky;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 41;
}

header .nav-top {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 0;
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 0 100px;
  margin: 0 auto;
}

.logo {
  position: relative;
  z-index: 1;
  top: 9px;
  transition: 0.3s;
  transition: 0.7s all;
  -moz-transition: 0.7s all;
  -webkit-transition: 0.7s all;
  -o-transition: 0.7s all;
}
.logo.large {
  width: 170px;
}
.logo img {
  transition: 0.7s all;
  -moz-transition: 0.7s all;
  -webkit-transition: 0.7s all;
  -o-transition: 0.7s all;
  width: 116px;
}
input.hamburger-button {
  display: none;
}

input.hamburger-button ~ label {
  position: relative;
  padding: 0.25rem;
  width: 3.5rem;
  height: 1.25rem;
  cursor: pointer;
}

input.hamburger-button ~ label > div,
input.hamburger-button ~ label > div::before,
input.hamburger-button ~ label > div::after {
  content: "";
  position: absolute;
  top: 0.825rem;
  height: 0.125rem;
  width: 1.5rem;
  opacity: 1;
  background: #28056a;
  -webkit-transition: 0.14s ease-in-out;
  transition: 0.14s ease-in-out;
}

input.hamburger-button ~ label > div::before {
  top: -0.5rem;
}

input.hamburger-button ~ label > div::after {
  top: 0.5rem;
}

header .nav-top .hamburger-button:checked ~ label > div {
  width: 0;
  background: rgba(18, 18, 18, 0);
}

header .nav-top .hamburger-button:checked ~ label > div::before {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  top: -0rem;
}

header .nav-top .hamburger-button:checked ~ label > div::after {
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
  top: -0rem;
}

header .nav-top .hamburger-button:checked ~ .menu {
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

header .nav-top .menu {
  position: absolute;
  z-index: -1;
  top: 3.5rem;
  -webkit-transform: translateX(calc(-100vw - 5rem));
  transform: translateX(calc(-100vw - 5rem));
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (max-content) [2];
  grid-template-rows: repeat(2, -webkit-max-content);
  grid-template-rows: repeat(2, max-content);
  width: 100%;
  -webkit-transition: 0.22s ease-in-out;
  transition: 0.22s ease-in-out;
  background-color: #ffffff !important;
}

header .nav-top .menu::after {
  content: "";
  position: absolute;
  z-index: -1;
}

header .nav-top .menu nav {
  grid-area: auto;
  position: relative;
}
a.active-link {
  color: #d7b44a !important;
}
header .nav-top .menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

header .nav-top .menu nav ul > li > a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #151515;
  display: block;
  text-align: center;
  transition: color 0.2s ease-in-out;
  position: relative;
  color: #151515;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

header .nav-top .menu nav ul > li > a:hover {
  color: #1d8292;
  transition: color 0.2s ease-in-out;
}
header .nav-top .menu nav ul > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  transition: 0.3s;
  height: 2px;
  background-color: #1d8292;
  bottom: 0;
}

header .nav-top .menu nav ul > li:hover > a:after {
  left: 0;
  width: 100%;
}

@keyframes rainbow {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}

.x-phone {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btnn {
  border-radius: 12px;
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  padding: 1px;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 2;
  color: #1d8292;
  right: 0;
}
.btnn .x-phone {
  align-items: center;
  background: #1d8292;
  border-radius: 11px;
  display: flex;
  justify-content: center;
  transition: background 0.5s ease;
  padding: 10px 30px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 18px;
}
.btnn .x-phone:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 1px solid #1d8292;
  background: rgba(29, 130, 146, 0.2);
  z-index: -1;
  border-radius: 100px;
  transition: background 0.5s ease;
}
.btnn:hover .x-phone {
  transition: background 0.5s ease;
  color: #208493;
}
.btnn:hover .x-phone:before {
  background-color: #20849300;
  transition: background 0.5s ease;
}
.iconx i {
  font-size: 22px;
}
.x-phone span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.x-phone strong {
  display: block;
  letter-spacing: 2.16px;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
header .nav-top .menu div.buttons {
  grid-area: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  right: 0;
  top: 50%;
}

header .nav-top .menu div.buttons > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
}

/* Media queries */
@media only screen and (min-width: 1050px) {
  header .nav-top {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border: none;
  }
  input.hamburger-button ~ label {
    display: none;
  }
  header .nav-top .menu {
    z-index: unset;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto max-content;
    grid-template-columns: auto -webkit-max-content;
    grid-template-columns: auto max-content;
    background: none;
    -webkit-transition: none;
    transition: none;
  }
  header .nav-top .menu::after {
    display: none;
  }
  header .nav-top .menu div.buttons {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
  }
  header .nav-top .menu nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  header .nav-top .menu nav ul > li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  header .nav-top .menu nav ul > li > a {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

@media only screen and (min-width: 1040px) {
  header .nav-top .menu {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 100px 0 100px;
    -webkit-transition: none;
    transition: none;
  }
  header .nav-top .menu div.buttons > * {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  header .nav-top .menu nav ul {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  header .nav-top .menu nav ul > li {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
  }
  header .nav-top .menu nav ul > li > a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 2.25rem 2.5rem;
  }
}

/*------ banner ------*/

.banner {
  padding-top: 0;
  position: relative;
  margin-top: 5em;
  background-image: url(../images/backse.png);
  background-size: cover;
  background-position: top;
  z-index: 1;
}
.banner .auto {
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0.37em;
  font-weight: 500;
}
.main-caption {
  position: relative;
  z-index: 2;
}
.banner h1 {
  position: relative;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #1d8292;
  text-align: center;
  margin: 34px 0 6px 0;
}
.banner p {
  color: #505050;
  text-align: center;
  font-family: DM Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  width: 69%;
  margin: 0 AUTO;
}
.banner p strong {
  font-weight: 700;
  color: #fff;
}
.btnn.exploreas {
  width: fit-content;
  margin: 36px 0px 0 0;
  transition: transform 0.5s;
}
.btnn.exploreas span {
  text-align: center;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  background-color: #000;
  font-size: 17px;
}
.btnn.exploreas span:before {
  background-color: #25e0ff;
}
.btnn.exploreas:hover span:before {
  background-color: #ffffff;
  transition: background 0.5s ease;
}
.back-gr {
  position: absolute;
  bottom: -4px;
  left: 0;
}

.It-c {
  border-radius: 20px;
  background: #fff;
  box-shadow: 15px 15px 63px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-top: 32px;
}
.It-c .form-control {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 17px 38px 17px 17px;
  font-size: 15px;
}
.It-c .Pickup .form-control {
  padding: 17px;
}
.It-c .form-control:focus {
  border-color: #1d8292;
  outline: 0;
  box-shadow: none;
}
.xxmx {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.Pickup input {
  width: 100%;
  padding: inherit;
}
.Pickup:nth-child(1) {
  flex: 1;
}
.calend {
  background: #1d8292;
  padding: 14px;
  height: 100%;
  border-radius: 8px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  width: 62px;
}
.cxxssss .form-check-label {
  color: #151515;
  margin: 0;
  position: relative;
  top: 4px;
}
.cxxssss {
  display: flex;
  gap: 90px;
}
.cxxssss .form-check-input:checked {
  background-color: #1d8292;
  border-color: #1d8292;
}
.form-select {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 17px;
  font-size: 15px;
}
.It-c .form-select:focus {
  border-color: #1d8292;
  outline: 0;
  box-shadow: none;
}
.form-control::placeholder {
  color: #151515;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #151515;
}

.form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #151515;
}

textarea::placeholder {
  color: #151515;
  opacity: 1; /* Firefox */
}

textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #151515;
}

textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #151515;
}

.accessorial h2 {
  color: #151515;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 9px;
}
.accessorial p {
  color: #505050;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  width: 84%;
}
.BOOKs {
  border-radius: 57px;
  border: 1px solid #1d8292;
  background: #1d8292;
  transition: 0.3s;
  color: #fff;
  padding: 19px 26px;
  margin: 0 auto;
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.16px;
}
.BOOKs:hover {
  transition: 0.3s;
  background-color: #151515;
  border: 1px solid #151515;
}
.pic-v {
  position: relative;
}
.pic-v i {
  color: #151515;
  font-size: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}
/*------ banner ------*/

/* Our-Courses */
.Our-Courses {
  padding: 200px 0 70px 0;
  position: relative;
  background-color: #1d8292;
  margin: -113px 0 0 0;
}
.video-s {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 80%;
}

.video-s a:hover i {
  color: #fff;
  transition: 0.3s;
}
.video-s .BOOKs {
  background-color: #fff;
  color: #1d8292;
  margin-top: 3em;
}
.video-s .BOOKs:hover {
  background-color: #151515;
  color: #fff;
}

/* END Optional styles */
.video-container {
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px;
  background-color: #fff;
  border-radius: 27px;
}
.video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}
.play-button-wrapper #circle-play-b svg {
  width: 100px;
  height: 100px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}
/* Our-Courses */

/*------ Über ------*/

.Aufbereitung.Über {
  background-color: #ffffff;
  padding: 80px 0;
}
.established-uber {
  padding-left: 4em;
}
.servies {
  margin-bottom: 3em;
}
.servies h4 {
  color: #000;
  font-size: 50px;
  margin-bottom: 29px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.servies p {
  color: #000000;
  line-height: 27px;
  margin-bottom: 54px;
}
.Aufbereitung.Über .theirasa img {
  border-radius: 20px;
  width: 100%;
  height: 355px;
  object-fit: cover;
}
.Aufbereitung.Über h3 {
  margin-bottom: 14px;
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 119%;
}
.Aufbereitung.Über p {
  /* text-transform: capitalize; */
  width: 100%;
  color: #000000;
  margin-bottom: 37px;
  font-family: DM Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.Industrial {
  margin: 40px 0 40px 0px !important;
}
.challengesasaa {
  margin-bottom: 6em;
}
.Aufbereitung.Über .established-uber {
  padding-left: 4em;
  padding-top: 2em;
}
.established-uber.sxxzzz {
  padding-left: 0;
}
.Aufbereitung.Über .established-uber.xxz {
  padding-right: 4em;
  padding-top: 2em;
  padding-left: 0px;
}
/*------ Über ------*/

/*------ services ------*/
.Our-Courses.x-driver {
  margin: 0;
  padding: 100px 0;
}
.main-Courses {
  display: flex;
  width: 100%;
  gap: 9px;
}
.Cosmetology {
  position: relative;
  width: 100%;
  z-index: 1;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
}
.Cosmetology:hover {
  transform: scale(1);
  z-index: 2;
  transition: 0.3s;
  background-color: rgb(255 255 255 / 22%);
}
.Cosmetology:hover .Courses-caption {
  color: #000;
  transition: 0.3s;
}

.Cosmetology img {
  width: 100%;
}
.Courses-caption {
  position: relative;
  top: 0;
  padding: 30px;
  transition: 0.5s ease;
  color: #fff;
}
.Courses-caption svg {
  margin-top: 1em;
  margin-bottom: 2em;
  width: 70px;
  height: 70px;
  transition: 0.3s;
}
.Courses-caption svg path {
  transition: 0.3s;
}
.Cosmetology:hover .Courses-caption svg path {
  fill: #000;
  transition: 0.3s;
}
.Courses-caption h4 {
  font-weight: 500;
  font-size: 30px;
  margin: 0;
}
.Courses-caption p {
  font-weight: 100;
  font-size: 17px;
  margin-bottom: 0px;
  transition: 0.5s ease;
}
.Cosmetology ul {
  padding: 18px 0px 0px 18px;
}
.Cosmetology ul li {
  list-style: disc;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 6px;
  color: #fff;
  transition: 0.3s;
}
.Cosmetology:hover .Courses-caption ul li {
  color: #000;
  transition: 0.3s;
}
.m_s {
  text-align: center;
  margin-top: 4em;
  color: #fff;
}
.m_s p {
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 33px;
}
.m_s a {
  float: none;
  margin: 0 auto;
}

/*------ services ------*/

/*------ Contact-Information ------*/

.Information {
  padding: 90px 0px;
  position: relative;
  background-color: #505050;
}
.Information h6 {
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 119%;
  margin-bottom: 27px;
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}
textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}

textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}
.Information input {
  width: 100%;
  background: rgb(255 255 255 / 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  margin-bottom: 13px;
  transition: 0.3s;
  border-radius: 10px;
  color: #fff;
}
.Information textarea {
  width: 100%;
  background: rgb(255 255 255 / 0%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  margin-bottom: 13px;
  transition: 0.3s;
  border-radius: 10px;
  height: 222px;
  color: #fff;
}
.Information input:focus,
.Information select:focus,
.Information textarea:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #1d8292;
  transition: 0.3s;
}
.forms-s.xzw button {
  margin: 0;
  text-transform: uppercase;
  background-color: #fff;
  margin-top: 13px;
  padding: 17px 24px;
  border: 0;
  color: #1d8292;
  transition: 0.3s;
}
.forms-s.xzw button:hover {
  background-color: #1d8292;
  color: #fff;
  transition: 0.3s;
}
.forms-s.xzw strong {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 119%;
  width: 82%;
  display: block;
  margin-top: 62px;
}
.loc-x {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 16px;
  float: right;
  width: 83%;
}
.address-x.Charoen {
  padding-bottom: 0;
}
.address-x.Charoen ul {
  display: block;
}
.address-x.Charoen ul li {
  display: flex;
  gap: 11px;
  color: #505050;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 0 0 12px 0px;
}
.address-x.Charoen ul li a {
  color: #505050;
}

.loc-x h5 {
  color: #151515;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 119%;
}
.loc-x p {
  color: #505050;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 13px 0 20px 0;
}
.timing h5 {
  margin: 33px 0 20px 0;
  border-top: 1px solid;
  padding-top: 30px;
}
.address-x.Charoen.v-time ul li span {
  display: inline-block;
  width: 160px;
}
/*------ Contact-Information ------*/

/*------ footer ------*/
footer {
  padding: 86px 0 70px 0;
  background-color: #1d8292;
  position: relative;
  margin-top: -3px;
}
.footer-logo img {
  margin: 0 auto;
  display: block;
}
.Copyright-h p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
  padding: 30px 0 0 0;
}
/*------ footer ------*/

/*------ Thanku ------*/
.wrapper-2 h6 {
  position: relative;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #1d8292;
  text-align: center;
}
.thankyoucontent button.btn-close {
  position: absolute;
  right: 8px;
  top: 7px;
  font-size: 13px;
}
.wrapper-2 img {
  margin: 0 auto;
  display: block;
  margin-bottom: 22px;
  margin-top: 19px;
}
.wrapper-2 p {
  color: #505050;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  width: 85%;
  margin: 0 AUTO;
  margin-bottom: 28px;
}
/*------ Thanku ------*/

/*------ timepicker ------*/
.ui-timepicker-container {
  position: absolute;
  overflow: hidden;
  box-sizing: border-box;
}
.ui-timepicker,
.ui-timepicker-viewport {
  box-sizing: content-box;
  height: 205px;
  display: block;
  margin: 0;
}
.ui-timepicker {
  list-style: none;
  padding: 0 1px;
  text-align: center;
}
.ui-timepicker-viewport {
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
}
.ui-timepicker-standard {
  font-size: 1.1em;
  background-color: #fff;
  color: #222;
  margin: 0;
  padding: 2px;
}
.ui-timepicker-standard a {
  border: 1px solid transparent;
  color: #222;
  display: block;
  padding: 0.2em 0.4em;
  text-decoration: none;
}
.ui-timepicker-standard .ui-state-hover {
  background-color: #dadada;
  border: 1px solid #999;
  font-weight: 400;
  color: #212121;
}
.ui-timepicker-standard .ui-menu-item {
  margin: 0;
  padding: 0;
}
.ui-timepicker-corners,
.ui-timepicker-corners .ui-corner-all {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.ui-timepicker-hidden {
  display: none;
}
.ui-timepicker-no-scrollbar .ui-timepicker {
  border: none;
} /*# sourceMappingURL=jquery.timepicker.min.css.map */

/*------ timepicker ------*/
