/*styles*/

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: "Bai Jamjuree", system-ui;
    color: #111111;
}

body.active {
    overflow-y: hidden;
}

.container {
    max-width: 1500px;
    position: relative;
    height: 100%;
}

.container.sml {
    max-width: 1100px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

.aos-animate {
    z-index: 9;
}

.icon {
    background: transparent;
}

.header.stuck .scroll-button {
    bottom: 40px;
}

.scroll-button {
  padding: 8px;
  position: fixed;
  right: 40px;
  bottom: -100px;
  z-index: 1;
  color: white !important;
  box-shadow: 0 4px 20px 0 rgba(167,172,183,.3);
  border-radius: 50%;
  transition: all 0.4s ease;
  background: #1111113d;
  border: 4px solid white;
}

.header .material-icons {
  vertical-align: middle;
  font-size: 28px;
}

h1 {
    font-size: inherit !important;
    margin: inherit !important;
}

h2 {
    font-size: inherit !important;
    margin: inherit !important;
}

/* Header */

.contact-header a {
    color: #64717b !important;
    transition: all 0.3s ease;
}

.contact-header a:hover {
    color: #64717b !important;
}

.contact-header span {
    color: #64717b;
    vertical-align: middle;
    position: relative;
    margin-right: 5px;
    font-size: 18px;
    top: -1px;
}

li.border-right {
    border-right: 1px solid #8080803d !important;
}

.header-details {
    position: relative;
}

.header .topheader {
  background: #ff7600;
  position: relative;
  /*z-index: -1;*/
  width: 100%;
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 15px;
}

.header.stuck .topheader {
    margin-bottom: 100px;
}

.topheader ul {
    display: flex;
    justify-content: right;
    margin-bottom: 0;
}

.topheader ul li {
    display: inline-block;
    padding: 5px 20px;
    position: relative;
}

.topheader a {
    color: white;
}

.topheader ul li a {
    color: inherit;
    position: relative;
}

.topheader ul li a:hover {
    text-decoration: none;
}

.bottom-header {
    position: relative;
    font-size: 17px;
    background: #111;
    color: white;
    z-index: 999;
    padding: 10px 0;
    box-shadow: 2px 0 40px rgba(0,0,0,.05);
    transition: all 0.3s ease;
}

.header.stuck .bottom-header {
    width: 100%;
    top: 0;
    position: fixed;
}

.bottom-header .logo {
    position: relative;
    height: auto;
    transition: all 0.3s ease;
}

.bottom-header .logo img {
    max-height: 300px;
}

.bottom-header .menu {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.bottom-header .menu ul {
	display: flex;
	justify-content: right;
	display: -webkit-box;
	-webkit-box-pack: end;
	-webkit-box-align: center;
	position: relative;
}

.bottom-header .menu ul li {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
}

.bottom-header .menu ul li a {
    color: white;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
}

.bottom-header .menu ul li a:hover {
    text-decoration: none;
    color: #ff7600;
}

.header .bottom-header .material-icons {
    vertical-align: middle;
    margin-right: -10px;
    margin-left: -5px;
    font-size: 28px;
}

.bottom-header ul li ul.dropdown {
  position: absolute !important;
  left: 0;
  top: 60px;
  margin-left: 0;
  transition: all 0.4s ease;
  display: block !important;
  opacity: 0;
  background: white;
  border-radius: 0;
  padding: 0;
  height: auto;
  font-size: 15px;
  visibility: hidden;
  box-shadow: 2px 0 40px rgba(0,0,0,.05);
}

.bottom-header ul li:hover > ul.dropdown {
  opacity: 1;
  top: 50px;
  visibility: visible;
}

.bottom-header ul li ul.dropdown::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  height: 3px;
  width: 100%;
  background: #ff7600;
}

.bottom-header ul li ul.dropdown li {
  float: none;
  width: 100%;
  padding: 15px 20px;
  white-space: nowrap;
}

.bottom-header ul li ul.dropdown li {
  border-bottom: 1px solid #f7f7f7;
}

.bottom-header ul li ul.dropdown li a {
  color: #111;
}

.bottom-header ul li ul.dropdown li.end {
  border-bottom: none;
}


/*Home*/

.hero {
    position: relative;
}

.hero .title {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    font-family: "Kanit", system-ui;
    line-height: 52px;
    margin-bottom: 15px;
    font-style: italic;
    text-transform: uppercase;
}

.hero .tag {
  font-size: 26px;
  margin-bottom: 20px;
  /*color: #ff7600;*/
  color: #ff7600;
  width: fit-content;
  font-weight: 600;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}

.hero-image {
    min-height: 750px;
    height: 80vh;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-image::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /*background: linear-gradient(90deg, rgba(111,126,137,.94) 35%, rgba(0,0,0,0) 100%);*/
    background: linear-gradient(90deg, rgb(11 11 11 / 91%) 35%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    color: white;
    z-index: 1;
    top: 45%;
    transform: translateY(-50%);
    width: 50%;
}

.hero .logo-icon {
  max-width: 135px;
}

.section-block ul li a {
    color: #111111;
    text-decoration: none;
    transition: all .5s ease;
}

.section-block ul li a:hover {
    color: black;
}

.logo-icon {
  position: relative;
  max-width: 160px;
  margin-bottom: 10px;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li button::before {
    font-family: slick;
    font-size: 12px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button::before {
  opacity: .4;
  color: #fff;
}

.slick-dots li.slick-active button::before {
  opacity: .9;
  color: #fff;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-next::before, .slick-prev::before {
    display: none;
}

.slick-arrow.slick-prev {
    left: 30px;
    z-index: 9;
}

.slick-arrow.slick-next {
    right: 30px;
    z-index: 9;
}

.slick-arrow {
    position: absolute;
    color: white;
    font-size: 50px;
    border: none;
    box-shadow: none;
    transition: all .5s;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.slick-next, .slick-prev {
  width: 52px;
  height: 52px;
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
  color: white;
}

.button-hold {
    width: fit-content;
}

.btn {
  color: #111111;
  background: white;
  padding: 12px 30px;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid white;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-right: 10px;
  z-index: 1;
  font-weight: 600;
}

.btn:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.btn.rev {
    background: transparent;
    color: white;
    border-color: white;
}

.btn.rev:hover {
    background: white;
    color: #111111;
    border-color: white;
}
.btn.grey {
    background: transparent;
    color: #111111;
    border-color: #111111;
}

.btn.grey:hover {
    background: #111111;
    color: white;
    border-color: #111111;
}
.btn span {
  margin-left: 0;
  margin-right: 6px;
  position: relative;
  top: 1px;
}

.block {
    position: relative;
    padding: 120px 10px;
}
.block.grey {
  /*background: #111111;*/
  background: #111111;
  color: white;
  overflow: hidden;
}
.block.grey.one::before {
  	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url(../img/curve.png);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	opacity: .025;
	filter: drop-shadow(rgb(11, 11, 11) 25px 25px 25px);
}
.block.grey.two::before {
  	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url(../img/curve2.png);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	opacity: .038;
	filter: drop-shadow(rgb(11, 11, 11) 25px 25px 25px);
}
.block.blue {
  color: white;
  background-attachment: fixed;
}
.block.blue::before {
   position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /*background: #27bdff;*/
    background: #ff7600;
    opacity: .9;
}
.block.white {
  background-attachment: fixed;
  box-shadow: 2px 0 40px rgba(0,0,0,.05);
}
.block.white::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: .9;
}
.banner-content {
  position: relative;
}
/*.banner-content::before {
  position: absolute;
  content: "";
  left: 0;
  top: -90px;
  height: 2px;
  width: 100%;
  background: white;
}
.banner-content::after {
  position: absolute;
  content: "";
  left: 0;
  top: -90px;
  height: 2px;
  width: 100%;
  background: white;
}*/
.heading {
    font-size: 35px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: "Kanit", system-ui;
    font-style: italic;
    font-weight: 600;
}
.heading.bold {
  font-weight: 800;
}
.heading.small {
    font-size: 22px;
    margin-bottom: 6px;
}
.small-heading {
  font-size: 16px;
  margin-bottom: 25px;
  color: #ff7600;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-style: italic;
}
.hero-blocks {
  position: relative;
  box-shadow: 2px 0 40px rgba(0,0,0,.05);
  background: white;
}
.hero-block {
  position: relative;
  padding: 50px 40px;
  border: 1px solid #65727c0a;
  text-align: center;
}
.hero-block .heading {
  font-size: 28px;
  margin-bottom: 5px;
  color: #111111;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-blocks .icon {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  width: fit-content;
}
.icon span {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
  color: white;
  background: #ff7600;
  width: fit-content;
  padding: 8px;
  border-radius: 5px;
}

.hero-block p {
  font-size: 15px;
  margin-bottom: 0;
}
.block.grey .hero-block {
  background: #ff7600;
  border-radius: 5px;
  color: white;
  text-align: left;
  box-shadow: 2px 0 40px rgba(0,0,0,.05);
  padding: 40px;
}
.block.grey .hero-block .heading{
  color: white;
}
.block-icon span {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
  width: fit-content;
  padding: 8px;
  border-radius: 5px;
  background-image: linear-gradient(90deg, rgb(255 118 0) 0%, rgb(153 71 0) 100%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.section-block {
  position: relative;
  padding: 80px 60px;
  height: 100%;
}
.section-block.grey {
  background: #86939d;
	color: white;
}
.section-block.light {
  background: #64717b;
  color: white;
}
.section-block.lighter {
  background: #9ea8b0;
  color: white;
}
.section-block.image {
  background-size: cover;
  background-position: center;
  height: 100%;
}

.banner {
  position: relative;
  padding: 60px 40px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.banner::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #111111;
  opacity: .9;
}

.banner .logo {
  max-width: 400px;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.side-image {
  height: 600px;
  background-size: cover;
  background-position: center;
}

.side-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 30px;
  width: 65%;
}

.testimonial-block {
  padding: 50px 40px;
  border-radius: 5px;
  background: white;
  position: relative;
  box-shadow: 2px 0 40px rgba(0,0,0,.05);
}
.testimonial-block::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgb(255 118 0) 0%, rgb(153 71 0) 100%);
  border-radius: 5px;
}
.extract {
  font-size: 25px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-style: italic;
}
.name {
  font-size: 20px;
  font-weight: 800;
}
.quote-icon {
  font-size: 40px;
  margin-bottom: 24px;
  display: block;
  color: white;
  background: #ff7600;
  width: fit-content;
  padding: 8px;
  border-radius: 5px;
}
.quote-icon .quote {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 40px;
  width: 40px;
}
.line {
  fill: none;
  stroke: #ff7600;
  stroke-width: 8;
  transition: all 0.5s ease;
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 7;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 7;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 7;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 7;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 7;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 7;
}

input.wpcf7-form-control.wpcf7-text, textarea.wpcf7-form-control.wpcf7-textarea, select.wpcf7-form-control.wpcf7-select {
    width: 100%;
    margin: 12px 0;
    padding: 12px;
    border: 0;
    border-bottom: 1px solid #dcdcdd;
    border-radius: 2px;
    background: white;
    transition: all 0.5s ease;
}

input.wpcf7-form-control.wpcf7-text:hover, textarea.wpcf7-form-control.wpcf7-textarea:hover {
    outline: 0;
    border-color: rgb(38, 180, 249);
}

input.wpcf7-form-control.wpcf7-text:focus, textarea.wpcf7-form-control.wpcf7-textarea:focus {
    outline: 0;
    border-color: #ff7600;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    height: 125px;
    margin-bottom: 20px;
}

input.wpcf7-form-control.wpcf7-submit {
    text-transform: uppercase;
    background: #ff4c29;
    color: white;
    border: 2px solid #ff4c29;
    padding: 14px 28px;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    z-index: 9;
    position: relative;
    float: right;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
}

.wpcf7-form .btn {
  float: right;
}

.form {
  position: relative;
  box-shadow: 2px 0 40px rgba(0,0,0,.05);
  border-radius: 5px;
}

.form::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
  height: 3px;
  width: 100%;
  background: #ff7600;
  z-index: 1;
}

.form-block {
  padding: 60px 40px;
  position: relative;
}

#hold-image .front-image {
  position: relative;
  overflow: hidden;
}

#hold-image .front-image .zoom-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
  transition: all 0.4s ease;
  opacity: 0;
}

#hold-image .icon-magnifier {
  position: relative;
  font-size: 40px;
  background-image: linear-gradient(90deg, rgb(255 118 0) 0%, rgb(153 71 0) 100%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  left: 50%;
  transform: translate(-50%, -50%);
  height: fit-content;
  top: 70%;
  border-radius: 509%;
  padding: 20px;
  /*box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);*/
  transition: all 0.4s ease;
}

#hold-image img {
  display: block;
  width: 100%;
  max-height: 400px;
  min-height: 400px;
  object-fit: cover;
  position: relative;
}

#hold-image .front-image:hover .icon-magnifier {
  top: 50%;
}

#hold-image .front-image:hover .zoom-cover {
  opacity: 1;
}

/*Footer*/

.footer-heading {
	font-size: 24px;
  margin-bottom: 15px;
  font-weight: 800;
  color: #ff7600;
}

.footer {
    padding: 100px 10px;
    line-height: 35px;
    color: white;
    background: #111111;
}

.footer hr {
  background: #f2f2f2;
}

.footer ul li {
  margin-bottom: 5px;
}

.footer ul li a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.footer ul li a:hover {
    text-decoration: none;
    color: #ff7600;
}

.footer-logo {
  width: 300px;
  margin-left: -10px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
}

.footer-bottom a {
  color: white;
}

.footer-bottom a.site-label {
  font-size: 18px;
  color: #ff7600;
}

@media (max-width: 991px) {

  .block.grey .hero-block {
    margin-bottom: 30px;
  }

	.hero-content {
	  top: 50%;
	  width: 90%;
	  padding: 30px 0;
	}

    .menu-burger  {
        border: none;
        display: flex;
        padding: 0;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        background: transparent;
        color: #1f2c5c;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        cursor: pointer;
        float: right;
        /*right: 30px;*/
    }

    .menu-burger:focus {
        outline: none;
        border: none;
    }

    .menu-burger.active .line {
        stroke: #ff7600;
    }

    .bottom-header .menu {
        position: relative;
        top: 0;
        transform: none;
    }

    .bottom-header .menu ul li {
        width: 100%;
        text-align: center;
    }

    .bottom-header ul {
        display: block;
    }

    .bottom-header ul li {
        display: inline-block;
        padding: 10px;
        position: relative;
        transition: all 0.5s ease;
        text-align: center;
    }

    .bottom-header ul li a {
        color: white;
        position: relative;
        padding: 40px 0;
        margin: 0 0px 0 0;
        height: auto;
        transition: all 0.5s ease;
        font-size: 22px;
    }

    .bottom-header .menu ul li a {
        font-size: 20px;
        line-height: 50px;
    }

    .bottom-header .menu ul li {
        display: block;
    }

    .bottom-header .menu ul {
        height: 100vh;
        width: 100vw;
        background: #111;
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        display: block;
        padding: 50px;
        padding-top: 100px;
    }

    .bottom-header .menu ul.active {
        opacity: 1;
        visibility: visible;
    }

    .bottom-header .menu ul li a::before {
        display: none;
    }

    .wpcf7-form .btn {
      float: none;
      margin-top: 25px;
    }

    .testimonial-block {
      margin-bottom: 30px;
    }

}

@media (max-width: 768px) {

  .hero {
    margin-top: 85px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .bottom-header, .header.stuck .bottom-header {
    position: fixed;
    width: 100%;
    top: 0;
  }

    .block {
        padding: 50px 30px;
    }

    .footer-details-left {
        text-align: center;
    }

    .footer-details-right {
        text-align: center;
    }

    .section-block.image {
	  min-height: 350px;
	}

	.header .topheader {
		display: none;
	}

	.bottom-header {
	  padding: 15px;
	}

  .hero-image::before {
    background: linear-gradient(90deg, rgb(0 0 0 / 85%) 35%, rgb(0 0 0 / 63%) 100%);
  }

}

@media (max-width: 576px) {

    .block {
        padding: 45px 15px;
    }

    .section-block {
      padding: 40px;
    }

  .hero .title {
    font-size: 35px;
    line-height: 40px;
  }

  .hero .logo-icon {
    max-width: 100px;
  }

  .hero .tag {
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 3px;
  }

  .hero-content {
    width: 100%;
  }

  .block.grey .hero-block {
    padding: 25px;
  }

  .hero-block {
    padding: 25px;
  }

  .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

}

@media (max-width: 400px) {

  .heading {
    font-size: 32px;
    line-height: 35px;
  }

    .hero-content {
    padding: 0 20px;
  }

}
