html, body {
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: Charmonman;
  src: url(../fonts/Charmonman-Regular.ttf);
}
@font-face {
  font-family: BSRUBANSOMDEJ;
  src: url(../fonts/BSRUBANSOMDEJ-Regular.woff);
}
@font-face {
  font-family: Sarabun;
  src: url(../fonts/THSarabunNew.ttf);
}
@font-face {
  font-family: Anuphan;
  src: url(../fonts/Anuphan-Regular.woff2);
}
@font-face {
  font-family: poppins;
  src: url(../fonts/Poppins-Regular.woff);
}

@font-face {
  font-family: DBHeavent;
  src: url(../fonts/DBHeavent.ttf);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #e9c03a;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #D8B67A;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

@media (min-width: 1441px) {
  .back-to-top {
    right: 0;
    left: 0;
    margin: auto;
  }
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #f7d7a1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* background: rgba(0, 0, 0, 0.587); */
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  margin-top: -20px;
  max-width: 1440px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1440px) {
  #header {
    background: none;
  }
}

@media screen and (max-width: 991px) {
  #header {
    margin-top: -30px;
  }
}

#header .fixed-top {
  height: 130px;
}

#header .logo {
  margin: 0;
  padding: 0;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 428px) {
  #header .logo img {
    margin-left: 15px;
  }
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  /* border: 2px solid #cda45e; */
  
  letter-spacing: 0.5px;
  color: #341E00;
  border-radius: 10px;
  padding: 15px 50px;
  font-family: BSRUBANSOMDEJ;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  /* transition: 0.3s; */
  background: linear-gradient(180deg, #EFD798 0%, #B28242 100%);
  text-decoration: none;
}

.book-a-table-btn:hover {
  background: #cda45e;
  color: #fff;
}

@media (max-width: 1115px) {
  .book-a-table-btn {
    padding: 8px 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1048px) {
  .book-a-table-btn {
    padding: 8px;
    font-size: 16px;
  }
}
@media (max-width: 1012px) {
  .book-a-table-btn {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .book-a-table-btn {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 40px;
  color: #F2DC9C;
  white-space: nowrap;
  transition: 0.3s;
  font-family: Charmonman;
  font-style: normal;
  font-size: 24px;
  line-height: 46px;
  letter-spacing: 1px;
}

.navbar a:hover,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff4d1;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: rgba(252, 235, 170, 1);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle .bi-x {
  color: #fff;
}

@media (max-width: 428px) {
  .mobile-nav-toggle {
    display: block;
    margin-right: 15px;
  }

  .navbar ul {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar ul {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .navbar-collapse {
      position: fixed;
      top: 50px;
      left: 0;
      padding-left: 15px;
      padding-right: 15px;
      padding-bottom: 15px;
      width: 75%;
      height: 150%;
      margin-top: -50px;
  }

  #header .menu-mobile {
    margin-top: 10px;
    margin-left: -35px;
  }

  #header .menu-mobile a{
    text-decoration: none;
  }

  #header .menu-mobile a:hover,
  #header .menu-mobile .active {
    text-decoration: underline;
  }

  .navbar-collapse.collapsing {
      left: -75%;
      transition: height 0s ease;
  }

  .navbar-collapse.show {
      left: 0;
      transition: left 300ms ease-in-out;
  }

  .navbar-toggler.collapsed ~ .navbar-collapse {
      transition: left 500ms ease-in-out;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  position: relative;
  background: url("../../assets/img/bg/Hero1.svg") top center no-repeat;
  height: 807px;
}

#hero .container {
  position: relative;
  max-width: 1160px;
}

#hero h1 {
  margin: 0;
  color: #D8B67A;
  font-family: Charmonman;
  margin-top: -19px;
}

#hero .img-logo{
  margin-top: 18px;
  width: 433px;
  height: 113.75px;
}

#hero .img-text{
  margin-top: 10px;

}

#hero .img-last{
  margin-top: -35px;
  height: 64px;
  width: 266px;
  top: 582px;
}

#hero h6 {
  color: #FFFFFF;
  font-family: Sarabun;
  font-weight: 500;
  font-size: 29.5px;
  line-height: 30px;
  
}

#hero h5 {
  color: #FFFFFF;
  margin-top: 1%;
  font-family: Sarabun !important;
  font-weight: 500;
  font-size: 32px;
  line-height: 35px;
  text-align: left;

}

#hero .btns {
  margin-top: 29px;
}

#hero .btn-menu {
  letter-spacing: 1px;
  padding: 15px 50px;
  border-radius: 10px;
  /* transition: 0.3s; */
  line-height: 1;
  color: #F2F2F2;
  background: linear-gradient(180deg, #EFD798 0%, #B28242 100%);
  /* border: 2px solid #cda45e; */
  font-family: BSRUBANSOMDEJ;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
}

#hero .arrow {
  position: absolute;
  bottom: -77px;
  right: 0;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  cursor: pointer;
}

/* fade in social icon */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 991px) {
  #hero .arrow{
    display: none;
  }
}

#hero .social {
  margin-top: 14px;
  visibility: visible;
}

#hero .hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms;
}

#hero .btn-menu:hover {
  background: #cda45e;
  color: #fff;
}

#hero .btn-book {
  margin-left: 15px;
}

#main .tag {
  display: none;
}

@media screen and (max-width: 428px) {
  #hero {
    display: none !important;
  }

  #main .tag {
    position: absolute;
    top: -45px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    right: 0;
    left: 0;
  }

  #hero h1 {
    display: none;
  }
  
  #hero .img-logo{
    display: none;
  }
  
  #hero .img-text{
    display: none;
  }
  
  #hero .img-last{
    display: none;
  }
  
  #hero h6 {
    display: none;
  }
  
  #hero h5 {
    display: none;
  }
  
  #hero .btns {
    display: none;
  }
}

@media (max-width: 360px) {
  #main .tag {
    top: -40px !important;
  }
}

@media (max-width: 320px) {
  #main .tag {
    top: -35px !important;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.background_res {
  position: relative;
}

.bg_desktop {
  display: block;
}

.bg_mobile {
  display: none;
}

@media (max-width: 428px) {
  .bg_desktop {
    display: none;
  }
  .bg_mobile {
    display: block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  margin:0!important;
	padding:0!important;
}

/*--------------------------------------------------------------
# about2 Section
--------------------------------------------------------------*/
#about2 {
  margin:0!important;
	padding:0!important;
}

/*--------------------------------------------------------------
# vdo
--------------------------------------------------------------*/
.vdo {
  margin:0!important;
	padding:0!important;
}

.vdo .btn {
  max-width: 100%;
  position: absolute;
  top: 24.5%;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  border: none;
}

.vdo .img-preview {
  max-width: 65%;
  position: absolute;
  top: 11.5%;
  left: 17.5%;
}

/* vdo_youtube  */
#vdo iframe {
  position: absolute;
  top: 11.5%;
  left: 17.5%;
  width: 65%;
  height: 37%;
  border: none;
}

@media (max-width: 428px) {
  #vdo iframe {
    width: 86%;
    height: 15%;
    top: 3.2%;
    left: 7%;
  }
}

.vdo .flower3 {
  max-width: 100%;
  position: absolute;
  top: -110px;
  right: 0;
  margin: auto;
  border: none;
}

@media (max-width: 1300px) {
  .vdo .btn {
    max-width: 10%;
  }
}

@media (max-width: 960px) {
  .flower3 {
    width: 15%;
    top: -80px !important;
  }
}

@media (max-width: 800px) {
  .flower3 {
    top: -70px !important;
  }
}

@media (max-width: 700px) {
  .flower3 {
    top: -60px !important;
  }
}

@media (max-width: 600px) {
  .flower3 {
    top: -50px !important;
  }
}

@media (max-width: 500px) {
  .flower3 {
    top: -50px !important;
  }
}

@media (max-width: 400px) {
  .flower3 {
    top: -50px !important;
  }
}

@media (max-width: 428px) {
  .vdo .img-preview {
    max-width: 83%;
    position: absolute;
    top: 3.5%;
    left: 8.5%;
  }
  .vdo .btn {
    max-width: 15%;
    top: 9%;
  }

  #vdo .flower3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# howto
--------------------------------------------------------------*/
.howto {
  margin:0!important;
	padding:0!important;
}

#howto .flower2 {
  max-width: 100%;
  position: absolute;
  top: 409.34px;
  left: 0;
  margin: auto;
  border: none;
}

@media (max-width: 1350px) {
  #howto .flower2 {
    top: 350px;
  }
}
@media (max-width: 1210px) {
  #howto .flower2 {
    top: 300px;
  }
}
@media (max-width: 1090px) {
  #howto .flower2 {
    top: 270px;
  }
}
@media (max-width: 1020px) {
  #howto .flower2 {
    top: 220px;
  }
}
@media (max-width: 888px) {
  #howto .flower2 {
    top: 200px;
    width: 10%;
  }
}
@media (max-width: 690px) {
  #howto .flower2 {
    top: 180px;
  }
}
@media (max-width: 620px) {
  #howto .flower2 {
    top: 150px;
  }
}

@media (max-width: 540px) {
  #howto .flower2 {
    top: 120px;
  }
}
@media (max-width: 428px) {
  #howto .flower2 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Promotion3
--------------------------------------------------------------*/
.promotion3 {
  margin:0!important;
	padding:0!important;
}

.bi-chevron-left ,
.bi-chevron-right {
  font-size: 60px;
  color: #D8B67A
}

#promotion3 .carousel-inner {
  max-width: 1440px;
}

@media (max-width: 960px) {
  #promotion3 .bi-chevron-left,
  #promotion3 .bi-chevron-right {
    visibility: visible;
  }
}

@media (max-width: 428px) {
  #promotion3 .bi-chevron-left,
  #promotion3 .bi-chevron-right {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# people
--------------------------------------------------------------*/
.people {
  margin:0!important;
	padding:0!important;
}

/*--------------------------------------------------------------
# contacts
--------------------------------------------------------------*/
.contact {
  background-size: cover;
  position: relative;
  padding: 80px 0;
  
  height: auto;
}

.contact:before {
  content: "";
  /* background: rgba(0, 0, 0, 0.8); */
  background: url("../../assets/img/bg/Form.svg") top center repeat-y;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

@media (max-width: 428px) {
  .contact {
    height: 900px;
  }
  
  .contact:before {
    background: url("../../assets/img/mobile/09-Form-Background.jpg") center center;
  }

  .contact .header {
    width: 324px;
  }

  .contact .header {
    margin-top: -50px;
  }

  .contact form{
    margin-top: -5px;
  }

  .contact .form-group{
    margin-top: -5px;
  }

  .contact .form-check-input {
    height: 28px;
    width: 28px;
    left: 0px;
    top: 0px;
    border-radius: 4px;
  }

  #contact .checkPrivacy{
    font-family: DBHeavent !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 24px !important;
    line-height: 29px !important;
    margin-top: 2px !important;
    margin-left: 11px !important;
    color: #ffffff !important;
  }

  .contact .terms-text{
    display: none !important;
  }

  .contact .terms-text-mobile{
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 19px !important;
    font-family: DBHeavent !important;
    display: block !important;
    color: #ffffff !important;
    margin-top: 18px !important;
  }

  #contact .btn {
    height: 72px !important;
    width: 394px !important;
    margin-top: 15px !important; 
    letter-spacing: 1px !important; 
    font-size: 32px !important; 
    font-weight: 600 !important; 
    line-height: 38px !important;
    border-radius: 8px !important;
  }
}

#contact .form-control{
  margin-top: 22px;
  box-sizing: border-box;
  height: 57px;
  border-radius: 8px;
  padding: 10px, 14px, 10px, 14px;
  border: 1px solid #ECF4FF;
  border-radius: 8px;
  background: white !important;

  font-family: Anuphan;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */

  color: rgb(0, 0, 0);
}

/* #contact select{
  color: #6c757d !important;
} */

select option { color: black; }
select option:first-child{
  color: green;
}

#contact #other {
  height: 80px;
}

#contact .form-check {
  margin-top: 16px;
}

#contact .checkPrivacy{
  font-family: DBHeavent;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-left: 8px;
  /* Gold-Medium */

  color: rgba(216, 182, 122, 1)
}

#contact .terms-text{
  margin-top: 13px;
  font-family: DBHeavent;
  font-size: 17.5px;
  font-weight: 200;
  line-height: 19px;
  letter-spacing: 0.5px;
  text-align: left;
  display: block;
  color: #FFFFFF;
}

#contact .terms-text-mobile {
  display: none;
}

#contact .btn {
  height: 60px;
  width: 100%;
  left: 0px;
  border-radius: 10px;
  background: linear-gradient(180deg, #EFD798 0%, #B28242 100%);
  
  font-family: 'BSRUBANSOMDEJ';
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;

  color: #14142B;
}

/*--------------------------------------------------------------
# product2
--------------------------------------------------------------*/
.product2 {
  margin:0!important;
	padding:0!important;
}

.product2 .flower1 {
  max-width: 100%;
  position: absolute;
  top: -235px;
  right: 0;
  margin: auto;
  border: none;
}

@media (max-width: 1310px) {
  .flower1 {
    width: 15%;
    top: -225px !important;
  }
}

@media (max-width: 1268px) {
  .flower1 {
    width: 12% !important;
    top: -170px !important;
  }
}

@media (max-width: 1160px) {
  .flower1 {
    top: -150px !important;
  }
}

@media (max-width: 980px) {
  .flower1 {
    top: -130px !important;
  }
}

@media (max-width: 880px) {
  .flower1 {
    top: -120px !important;
  }
}

@media (max-width: 790px) {
  .flower1 {
    top: -110px !important;
  }
}

@media (max-width: 700px) {
  .flower1 {
    top: -90px !important;
  }
}

@media (max-width: 600px) {
  .flower1 {
    top: -80px !important;
  }
}

@media (max-width: 500px) {
  .flower1 {
    top: -70px !important;
  }
}

@media (max-width: 400px) {
  .flower1 {
    top: -60px !important;
  }
}

@media (max-width: 428px) {
  #product2 .flower1 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: black; */
  background: url("../../assets/img/bg/Rectangle156.svg") top center repeat-y;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  height: auto;
}

#footer a {
  text-decoration: none;
}

#footer .container {
  max-width: 1162px;
}

#footer .col-xs-12 {
  margin-top: 61.53px;
}

#footer .footer-logo img {
  height: 37.02px;
  width: 38.02;
  cursor: pointer;
}

#footer .footer-location a{
  font-family: Sarabun;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  /* identical to box height */

  color: #F2DC9C;
}
#footer .footer-location p{
  font-family: Sarabun;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  
  color: #F2DC9C;
}

#footer .p-2 img {
  width: 44px;
  height: 43.73px;
  left: 0px;
  top: 0px;
  border-radius: 0px;
  cursor: pointer;
}

@media (min-width: 631px) {
  #footer .social_normal {
    display: block;
  }
  #footer .social_630px {
    display: none;
  }
}

@media (max-width: 630px) {
  #footer .social_normal {
    display: none;
  }
  #footer .social_630px {
    display: block;
  }
}

#footer .row-mobile {
  display: none;
}

@media (max-width: 428px) {
  #footer .row-desktop {
    display: none;
  }

  #footer .row-mobile {
    display: block;
  }

  #footer .footer-logo-img img {
    height: 55px;
    width: 209px;
    margin-top: 20px;
  }

  #footer .footer-location-mobile{
    margin-top: 6.88px;
  }

  #footer .footer-location-mobile a{
    font-family: Sarabun;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 42.59px;
    color: #F2DC9C;
  }
  #footer .footer-location-mobile p{
    font-family: Sarabun;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 16.92px;
    margin-top: -5px;
    color: #F2DC9C;
  }

  #footer .footer-contact {
    margin-top: 12px;
    width: 370px;
    margin-left: auto;
    margin-right: auto;
  }

  #footer .footer-contact a{
    font-family: Sarabun;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #F2DC9C;
  }

  #footer .p-2 {
    margin-top: 10px;
  }

  #footer .p-2 img {
    width: 70px;
  }

  #footer .footer-contact-last-resolution {
    display: none;
  }
}

@media (max-width: 379px) {
  #footer .footer-contact-last-resolution {
    display: block;
  }

  #footer .footer-contact {
    display: none;
  }
}