@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --body: #fff;
  --black: #000;
  --black2: #222222;
  --white: #fff;
  --theme: #cbb464;
  --header: #062214;
  --text: #767676;
  --text-2: #5C6672B2;
  --text-3: #5C6672;
  --border: #1E202347;
  --bg: #1E2023;
  --bg-2: #D8D8D8;
  --bg-3: #F8F7F0;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  transition: all 0.4s ease;
  text-transform: uppercase;
}

.theme-btn-main.style-2 {
  background-color: var(--theme);
  padding: 7px 30px;
  padding-right: 7px;
}

.theme-btn-main.style-2 .theme-btn-arrow-left,
.theme-btn-main.style-2 .theme-btn-arrow-right {
  width: 43px;
  height: 43px;
  background: var(--white);
  color: var(--theme);
}

.theme-btn-main.style-2 .theme-btn {
  background-color: transparent;
  padding: 0;
  margin-right: 17px;
  font-weight: 600;
}

.theme-btn-main.style-2:hover {
  padding-right: 30px;
  padding-left: 9px;
}

.theme-btn-main.style-2:hover .theme-btn {
  background-color: transparent;
}

.theme-btn-main.style-2:hover .theme-btn-arrow-left {
  left: 5px;
}

.theme-btn-main:hover .theme-btn-arrow-left {
  scale: 1;
}

.theme-btn-main:hover .theme-btn-arrow-right {
  scale: 0;
}

.theme-btn-main:hover .theme-btn {
  transform: translateX(56px);
}

.theme-btn-main .theme-btn-arrow-left,
.theme-btn-main .theme-btn-arrow-right {
  width: 53px;
  height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme);
  color: var(--white);
  transition: 0.4s;
  text-align: center;
}

@media (max-width: 575px) {

  .theme-btn-main .theme-btn-arrow-left,
  .theme-btn-main .theme-btn-arrow-right {
    width: 48px;
    height: 48px;
  }
}

.theme-btn-main .theme-btn-arrow-left {
  scale: 0;
  position: absolute;
  left: 3px;
}

.theme-btn-main .theme-btn {
  background: var(--theme);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 30px;
  display: inline-flex;
  font-family: "Barlow", "Prompt", "Noto Sans Thai", "Thonburi", sans-serif;
  align-items: center;
  gap: 30px;
  transition: 0.4s;
}

@media (max-width: 575px) {
  .theme-btn-main .theme-btn {
    font-size: 14px;
    padding: 10px 25px;
  }
}

.theme-btn-main:hover .theme-btn {
  background-color: var(--header);
}

.theme-btn-main:hover .theme-btn-arrow-left,
.theme-btn-main:hover .theme-btn-arrow-right {
  background-color: var(--white);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Barlow", "Prompt", "Noto Sans Thai", "Thonburi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Unbounded", "Prompt", "Noto Sans Thai", "Thonburi", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 80px;
  font-weight: 900;
  line-height: 100%;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 68px;
  }
}

@media (max-width: 1399px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 34px;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 123%;
}

@media (max-width: 1399px) {
  h2 {
    font-size: 36px;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 98%;
}

@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 28px;
  font-weight: 500;
  line-height: 98%;
}

@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 222%;
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

/*----------------------------------------*/
/*  02. Template Section Styles
/*----------------------------------------*/
.about-left-item-style-1 .about-image {
  max-width: 702px;
  position: relative;
  z-index: 999;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .about-left-item-style-1 .about-image {
    max-width: initial;
  }
}

.about-left-item-style-1 .about-image img {
  width: 100%;
  height: 100%;
}

.about-left-item-style-1 .client-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  margin-left: 60px;
}

@media (max-width: 1399px) {
  .about-left-item-style-1 .client-item {
    margin-left: 0;
    margin-top: 30px;
  }
}

.about-content-style-1 .text {
  max-width: 621px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.about-section {
  position: relative;
  z-index: 9;
}

.about-section .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-section .shape1 {
    display: none;
  }
}

.counter-section {
  position: relative;
  z-index: 9;
}

.counter-section .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .counter-section .shape1 {
    display: none;
  }
}

.about-content-styles-3 .text {
  max-width: 621px;
  margin-top: 20px;
  margin-bottom: 30px;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 75%;
  }
}

.about-section .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1899px) {
  .about-section .container-fluid {
    padding: 0 70px;
  }
}

@media (max-width: 1600px) {
  .about-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .about-section .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .about-section .container-fluid {
    padding: 0 15px;
  }
}

.about-section-5 .container-fluid {
  padding: 0 230px;
}

@media (max-width: 1899px) {
  .about-section-5 .container-fluid {
    padding: 0 70px;
  }
}

@media (max-width: 1600px) {
  .about-section-5 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .about-section-5 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .about-section-5 .container-fluid {
    padding: 0 15px;
  }
}

.actually-area {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .actually-area {
    height: initial;
    padding: 100px 0;
  }

  .actually-area br {
    display: none;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes zoom {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}

/*img-animation**********************/

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes borderAnim {
  0% {
    width: 0;
  }

  100% {
    width: 44px;
  }
}

@keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
  }

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

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrolly {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-60%);
  }
}

@keyframes scrolls {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes left-animation {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes right-animation {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes top-animation {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes bottom-animation {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrolly {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-60%);
  }
}

@keyframes scrolls {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@keyframes heartbeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

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

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

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

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrolly {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-60%);
  }
}

@keyframes scrolls {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

.contact-wrapper {
  position: relative;
  padding: 120px 120px 40px;
}

@media (max-width: 1399px) {
  .contact-wrapper {
    padding: 30px;
  }
}

.contact-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(17, 17, 17, 0.45);
}

.contact-wrapper.faq-page {
  margin-bottom: 45px;
  position: relative;
  z-index: 99;
}

@media (max-width: 1399px) {
  .contact-wrapper.faq-page {
    margin-bottom: 0;
  }
}

.contact-box {
  background-color: var(--white);
  padding: 50px 60px;
  position: relative;
  margin-top: 48px;
}

@media (max-width: 1399px) {
  .contact-box {
    padding: 30px;
    margin-top: 30px;
  }
}

.contact-box .contact-form-items .form-clt {
  position: relative;
}

.contact-box .contact-form-items .form-clt input,
.contact-box .contact-form-items .form-clt textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #F6F6F6;
  color: rgba(92, 102, 114, 0.6980392157);
  font-weight: 500;
  border: 1px solid #EBEBEB;
  padding: 12px 20px;
}

@media (max-width: 767px) {

  .contact-box .contact-form-items .form-clt input,
  .contact-box .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {

  .contact-box .contact-form-items .form-clt input,
  .contact-box .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}

.contact-box .contact-form-items .form-clt input::placeholder,
.contact-box .contact-form-items .form-clt textarea::placeholder {
  color: rgba(92, 102, 114, 0.6980392157);
}

.contact-box .contact-form-items .form-clt input:focus,
.contact-box .contact-form-items .form-clt textarea:focus {
  border-color: var(--theme);
}

.contact-box .contact-form-items .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}

.contact-box .contact-form-items button.theme-btn-main.style-2 {
  background-color: var(--header);
}

.contact-box .contact-form-items button.theme-btn-main.style-2 .theme-btn-arrow-left,
.contact-box .contact-form-items button.theme-btn-main.style-2 .theme-btn-arrow-right {
  color: var(--header);
}

.contact-box .contact-form-items button.theme-btn-main.style-2:hover {
  background-color: var(--theme);
}

.contact-section {
  margin-bottom: -60px;
}

@media (max-width: 1399px) {
  .contact-section {
    margin-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .contact-section {
    margin-bottom: 80px;
  }
}

.contact-section .container-fluid {
  padding: 0 200px;
}

@media (max-width: 1899px) {
  .contact-section .container-fluid {
    padding: 0 70px;
  }
}

@media (max-width: 1600px) {
  .contact-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .contact-section .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .contact-section .container-fluid {
    padding: 0 15px;
  }
}

.contact-section-4 .container {
  max-width: 1144px;
}

.contact-section-inner .container {
  max-width: 1144px;
}

.contact-section-inner .container {
  max-width: 1520px;
}

@media (max-width: 991px) {
  .contact-left-image-inner {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .contact-left-image-inner {
    height: 500px;
  }
}

.contact-left-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-right-items-inner {
  margin-left: 60px;
}

@media (max-width: 1199px) {
  .contact-right-items-inner {
    margin-left: 0;
  }
}

.contact-right-items-inner .contact-content-style-7 {
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .contact-right-items-inner .contact-content-style-7 {
    margin-top: 30px;
  }
}

.contact-right-items-inner .contact-content-style-7 .contact-form-items .form-clt {
  position: relative;
}

.contact-right-items-inner .contact-content-style-7 .contact-form-items .form-clt input,
.contact-right-items-inner .contact-content-style-7 .contact-form-items .form-clt textarea {
  width: 100%;
  border: none;
  outline: none;
  background: var(--white);
  color: rgb(98, 108, 116);
  font-weight: 500;
  border: 1px solid rgb(217, 217, 217);
  padding: 12px 20px;
}

@media (max-width: 767px) {

  .contact-right-items-inner .contact-content-style-7 .contact-form-items .form-clt input,
  .contact-right-items-inner .contact-content-style-7 .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {

  .contact-right-items-inner .contact-content-style-7 .contact-form-items .form-clt input,
  .contact-right-items-inner .contact-content-style-7 .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}

.contact-right-items-inner .contact-content-style-7 .contact-form-items .form-clt input::placeholder,
.contact-right-items-inner .contact-content-style-7 .contact-form-items .form-clt textarea::placeholder {
  color: rgba(92, 102, 114, 0.6980392157);
}

.contact-right-items-inner .contact-content-style-7 .contact-form-items .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}

.contact-bottom-items-inner {
  z-index: 1;
  position: relative;
}

.contact-bottom-items-inner .info-items {
  display: flex !important;
  align-items: flex-start !important;
  gap: 20px;
}

.contact-bottom-items-inner .info-items .icon {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  max-width: 60px !important;
  min-height: 60px !important;
  max-height: 60px !important;
  flex-shrink: 0 !important;
  align-self: flex-start !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: var(--theme);
  color: var(--white);
  font-size: 26px;
  border-radius: 4px;
}

.contact-bottom-items-inner .info-items .content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #062214;
}

.contact-bottom-items-inner .info-items .content h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  color: #555;
}

.contact-bottom-items-inner .info-items .content h6 a {
  font-size: 14px;
  font-weight: 500;
  color: #062214;
  transition: color 0.3s ease;
}

.contact-bottom-items-inner .info-items .content h6 a:hover {
  color: var(--theme);
}

.contact-bottom-items-inner .info-items:hover .icon i {
  animation: wobble 1.5s ease-in-out;
}

.google-map-items iframe {
  width: 100%;
  height: 665px;
}

.cta-bg-wrapper-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .cta-bg-wrapper-5 {
    gap: 30px;
  }
}

@media (max-width: 1199px) {
  .cta-bg-wrapper-5 {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  .cta-bg-wrapper-5 {
    padding: 40px;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .cta-bg-wrapper-5 {
    padding: 30px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .cta-bg-wrapper-5 .cta-content .cta-button {
    margin-top: 30px;
  }
}

.cta-bg-wrapper-5 .cta-content .cta-button .theme-btn-main.style-2 {
  background-color: var(--header);
}

.cta-bg-wrapper-5 .cta-content .cta-button .theme-btn-main.style-2 .theme-btn-arrow-left,
.cta-bg-wrapper-5 .cta-content .cta-button .theme-btn-main.style-2 .theme-btn-arrow-right {
  color: var(--header);
}

.cta-bg-wrapper-5 .cta-content .cta-button .theme-btn-main.style-2:hover {
  background-color: var(--header);
}

.cta-bg-wrapper-5 .cta-man {
  position: relative;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .cta-bg-wrapper-5 .cta-man {
    display: none;
  }
}

.cta-bg-wrapper-5 .cta-man img {
  width: 100%;
  height: 100%;
}

.cta-bg-wrapper-5 .cta-contact-item {
  position: relative;
}

.cta-bg-wrapper-5 .cta-contact-item .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .cta-bg-wrapper-5 .cta-contact-item .contact-item {
    margin-bottom: 30px;
  }
}

.cta-bg-wrapper-5 .cta-contact-item .contact-item .icon {
  background-color: var(--white);
  color: var(--theme);
  border-radius: 100px;
  text-align: center;
  width: 72px;
  height: 72px;
  line-height: 72px;
  font-size: 24px;
}

.cta-bg-wrapper-5 .cta-contact-item .contact-item .content span {
  color: var(--white);
}

.cta-bg-wrapper-5 .cta-contact-item .contact-item .content h5 {
  font-weight: 500;
}

@media (max-width: 1399px) {
  .cta-bg-wrapper-5 .cta-contact-item .contact-item .content h5 {
    font-size: 16px;
  }
}

.cta-bg-wrapper-5 .cta-contact-item .contact-item .content h5 a {
  color: var(--white);
}

.cta-bg-section-5 {
  position: relative;
}

.cta-bg-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #F45B1E;
  opacity: 0.91;
}

.cta-bg-section-5 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

@media (max-width: 1600px) {
  .cta-bg-section-5 .left-shape {
    display: none;
  }
}

.cta-bg-section-5 .right-shape {
  position: absolute;
  right: 90px;
  top: 0;
  bottom: 0;
  z-index: 999;
}

@media (max-width: 1600px) {
  .cta-bg-section-5 .right-shape {
    display: none;
  }
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
  background-color: var(--white);
  border-radius: 0;
  padding: 12px 24px;
  height: initial;
  line-height: initial;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
  border-right: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .list {
  width: 100%;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .option {
  background-color: var(--bg);
  border: none;
}

.faq-items-style-3 .accordion .accordion-item {
  border: none;
  margin-bottom: 18px;
  background: var(--white);
  padding: 0;
  border: 1px solid #D9D9D9;
  border-radius: 0 !important;
}

.faq-items-style-3 .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 24px 30px;
  font-family: "Unbounded", "Prompt", "Noto Sans Thai", "Thonburi", sans-serif;
  color: var(--header);
}

@media (max-width: 1199px) {
  .faq-items-style-3 .accordion .accordion-item h2 button {
    font-size: 14px;
    font-weight: 400;
    padding: 24px 16px;
    line-height: 1.5;
    padding-right: 60px;
  }
}

.faq-items-style-3 .accordion .accordion-item .accordion-body {
  padding: 20px 30px;
}

.faq-items-style-3 .accordion .accordion-item .accordion-body p {
  color: var(--text);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 575px) {
  .faq-items-style-3 .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.faq-items-style-3 .accordion .accordion-button {
  background-color: var(--header);
  color: var(--white) !important;
}

.faq-items-style-3 .accordion .accordion-button::after {
  display: none;
}

.faq-items-style-3 .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  width: 39px;
  height: 39px;
  line-height: 39px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme);
}

@media (max-width: 1399px) {
  .faq-items-style-3 .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.faq-items-style-3 .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}

.faq-items-style-3 .accordion .accordion-button.collapsed::before {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  color: var(--theme);
  background-color: var(--bg-3);
}

.faq-content-style-3 .circle {
  margin-top: 110px;
  margin-left: 115px;
}

@media (max-width: 1399px) {
  .faq-content-style-3 .circle {
    margin-left: 15px;
    margin-top: 30px;
  }
}

.faq-content-style-3 .circle .circle-image {
  position: relative;
  display: inline-block;
}

.faq-content-style-3 .circle .circle-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  width: 162px;
  height: 162px;
  line-height: 162px;
  text-align: center;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-content-style-3 .circle .circle-image img {
  display: block;
  animation: spin 15s linear infinite;
}

.faq-content-style-3 .circle .circle-image i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 30px;
}

.faq-section {
  position: relative;
  z-index: 9;
}

.faq-section .faq-shape {
  position: absolute;
  left: 40px;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1600px) {
  .faq-section .faq-shape {
    display: none;
  }
}

.feature-section {
  position: relative;
}

@media (max-width: 1399px) {
  .feature-impact-section {
    margin-top: 100px;
  }
}

@media (max-width: 991px) {
  .feature-impact-section {
    margin-top: 80px;
  }
}

.our-impact-section-3 .container-fluid {
  padding: 0 60px;
}

@media (max-width: 1600px) {
  .our-impact-section-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .our-impact-section-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .our-impact-section-3 .container-fluid {
    padding: 0 15px;
  }
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 75%;
  }
}

.scrolling-wrap-1 {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 0px;
  padding: 65px 0;
  border-bottom: 1px solid rgba(30, 32, 35, 0.28);
}

@media (max-width: 1399px) {
  .scrolling-wrap-1 {
    padding: 30px 0;
  }
}

.scrolling-wrap-1 .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 50px;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .scrolling-wrap-1 .comm {
    gap: 40px;
  }
}

.scrolling-wrap-1 .comm .cmn-textslide {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 45px;
  position: relative;
  padding-left: 50px;
}

@media (max-width: 575px) {
  .scrolling-wrap-1 .comm .cmn-textslide {
    gap: 30px;
  }
}

.scrolling-wrap-1 .comm .cmn-textslide::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--theme);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.scrolling-wrap-1:hover .comm {
  animation-play-state: paused;
}

.complet-feature-section-7 .container {
  max-width: 1662px;
}

.footer-wrapper {
  padding: 90px 0 120px;
}

@media (max-width: 1399px) {
  .footer-wrapper {
    padding: 80px 0 100px;
  }
}

@media (max-width: 991px) {
  .footer-wrapper {
    padding: 50px 0 80px;
  }
}

.footer-wrapper .footer-newsletter {
  display: flex;
  align-items: center;
  gap: 250px;
  margin-bottom: 80px;
}

@media (max-width: 1399px) {
  .footer-wrapper .footer-newsletter {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0px;
  }
}

.footer-wrapper .footer-newsletter .content p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
  max-width: 344px;
}

@media (max-width: 1399px) {
  .footer-wrapper .footer-newsletter .content p {
    font-size: 16px;
  }
}

.footer-wrapper .footer-newsletter .newsletter-content {
  width: 100%;
  max-width: 571px;
}

.footer-wrapper .footer-newsletter .newsletter-content h4 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .footer-wrapper .footer-newsletter .newsletter-content h4 {
    font-size: 20px;
  }
}

.footer-wrapper .footer-newsletter .newsletter-content form {
  max-width: 571px;
  width: 100%;
}

.footer-wrapper .footer-newsletter .newsletter-content .form-clt {
  position: relative;
}

.footer-wrapper .footer-newsletter .newsletter-content .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: var(--text2);
  line-height: 1;
  padding: 18px 24px;
  max-width: 571px;
  padding-right: 200px;
}

@media (max-width: 1399px) {
  .footer-wrapper .footer-newsletter .newsletter-content .form-clt input {
    padding: 18px 18px;
  }
}

.footer-wrapper .footer-newsletter .newsletter-content .form-clt input::placeholder {
  color: var(--text2);
}

.footer-wrapper .footer-newsletter .newsletter-content .form-clt .theme-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  line-height: 1;
  background-color: var(--theme);
  color: var(--white);
  padding: 15px 20px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}

.footer-wrapper .footer-newsletter .newsletter-content .form-clt .theme-btn:hover {
  background-color: var(--header);
}

.footer-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-wrapper .single-footer-widget .footer-contact h4 {
  margin-bottom: 20px;
  font-size: 24px;
}

@media (max-width: 1399px) {
  .footer-wrapper .single-footer-widget .footer-contact h4 {
    font-size: 20px;
  }
}

.footer-wrapper .single-footer-widget .footer-contact h4 a {
  color: var(--white);
}

.footer-wrapper .single-footer-widget .footer-contact h4 a:hover {
  color: var(--theme);
}

.footer-wrapper .single-footer-widget .footer-contact h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-top: 20px;
}

.footer-wrapper .single-footer-widget .footer-contact p {
  color: var(--white);
  max-width: 344px;
}

.footer-wrapper .single-footer-widget .widget-title {
  margin-bottom: 30px;
}

.footer-wrapper .single-footer-widget .widget-title h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  position: relative;
}

.footer-wrapper .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.footer-wrapper .single-footer-widget .list-area li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.32);
  left: 0;
  top: 15px;
  transition: all 0.4s ease-in-out;
}

.footer-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
}

.footer-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}

.footer-wrapper .single-footer-widget .list-area li:hover a {
  color: var(--theme);
}

.footer-wrapper .single-footer-widget .list-area li:hover::before {
  background-color: var(--theme);
}

.footer-wrapper .single-footer-widget .map-items .googpemap iframe {
  width: 100%;
  height: 240px;
  border-radius: 12px;
}

@media (max-width: 575px) {
  .footer-wrapper .single-footer-widget .map-items .googpemap iframe {
    height: 260px;
  }
}

.footer-bottom {
  background-color: #062214;
}

.footer-bottom .footer-wrapper {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.footer-bottom .footer-wrapper p {
  color: var(--white);
}

.footer-bottom .footer-wrapper p a {
  color: var(--white);
}

.footer-bottom .footer-wrapper p a:hover {
  color: var(--theme);
}

@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper p {
    font-size: 16px;
  }
}

.footer-bottom .footer-wrapper .flag-wrap {
  position: relative;
  max-width: 130px;
}

.footer-bottom .footer-wrapper .flag-wrap .single-select {
  padding: 0 0 0 45px;
  background: transparent !important;
  border: none;
  text-align: center;
  padding-right: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  border: none !important;
  padding-bottom: 0 !important;
  font-weight: 400 !important;
  height: initial;
  line-height: initial;
}

.footer-bottom .footer-wrapper .flag-wrap .single-select span {
  font-weight: 400;
}

.footer-bottom .footer-wrapper .flag-wrap .single-select .list {
  width: 100%;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
  top: -84px;
}

.footer-bottom .footer-wrapper .flag-wrap .single-select .option {
  border: none;
  background-color: #fff;
}

.footer-bottom .footer-wrapper .flag-wrap .single-select .option.selected.focus {
  background-color: #fff;
}

.footer-bottom .footer-wrapper .flag-wrap .single-select::after {
  right: 0;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  width: 8px;
  height: 8px;
  top: 10px;
  border-bottom: 1px solid transparent;
  border-color: var(--white);
  border-right: 1px solid var(--white);
}

.footer-bottom .footer-wrapper .flag-wrap .single-select span {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}

.footer-bottom .footer-wrapper .flag-wrap .flag {
  position: absolute;
  top: -5px;
  left: 15px;
  z-index: 1;
}

.footer-bottom .footer-wrapper .flag-wrap .flag img {
  width: 100%;
  height: 100%;
}

.footer-section {
  position: relative;
}

.footer-section .right-shape {
  position: absolute;
  right: 50px;
  top: 0;
}

@media (max-width: 1399px) {
  .footer-section .right-shape {
    display: none;
  }
}

.footer-section .left-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 748px;
}

@media (max-width: 1600px) {
  .footer-section .left-shape {
    display: none;
  }
}

.footer-section .left-shape img {
  width: 100%;
  height: 100%;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
  /* Hide scrollbar - Firefox */
  /* Hide scrollbar - IE/Edge */
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #414141;
  font-family: "Barlow", "Prompt", "Noto Sans Thai", "Thonburi", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 10px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-main .header-right {
  gap: 50px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #062214;
}

.header-1::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  height: 100px;
  width: 270px;
  background-color: var(--theme);
}

@media (max-width: 991px) {
  .header-1::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .header-1 .header-logo img {
    width: 160px;
  }
}

.header-1 .container-fluid {
  padding: 0 180px;
  padding-right: 50px;
}

@media (max-width: 1899px) {
  .header-1 .container-fluid {
    padding-left: 70px;
  }
}

@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding-left: 50px;
  }
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .header-1 .container-fluid {
    padding-right: 30px;
  }
}

.header-1 .header-main .main-menu ul li a {
  color: #fff;
  padding: 15px 0;
}

.header-1 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-1 .header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.header-1 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-1 .header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 18px;
}

.header-1 .header__hamburger {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: 35px;
  padding-top: 13px;
}

@media (max-width: 991px) {
  .header-1 .header__hamburger {
    margin-left: 0;
    gap: 20px;
    padding-top: 0;
  }
}

.header-1 .header__hamburger .contact-btn {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .header-1 .header__hamburger .contact-btn {
    display: none;
  }
}

.header-1 .header-bar {
  position: relative;
  width: 40px;
  height: 24px;
}

@media (max-width: 575px) {
  .header-1 .header-bar {
    width: 28px;
  }
}

.header-1 .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--white);
  overflow: hidden;
}

.header-1 .header-bar span:first-child {
  top: 0;
  background: var(--white);
  left: 0;
}

.header-1 .header-bar span:nth-child(2) {
  top: 44%;
  background: var(--white);
}

.header-1 .header-bar span:last-child {
  bottom: 0;
  background: var(--white);
}

.header-1 .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}

.header-1 .header-bar.active span:nth-child(2) {
  opacity: 0;
}

.header-1 .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}

.header-1 .header-bar:hover {
  cursor: pointer;
}

.header-1.header-4 .container-fluid {
  padding: 0 110px;
  padding-right: 50px;
}

@media (max-width: 1899px) {
  .header-1.header-4 .container-fluid {
    padding-left: 115px;
  }
}

@media (max-width: 1600px) {
  .header-1.header-4 .container-fluid {
    padding-left: 50px;
  }
}

@media (max-width: 1399px) {
  .header-1.header-4 .container-fluid {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .header-1.header-4 .container-fluid {
    padding-right: 30px;
  }
}

.header-1.header-5 .container-fluid {
  padding: 0 140px;
  padding-right: 50px;
}

@media (max-width: 1899px) {
  .header-1.header-5 .container-fluid {
    padding-left: 80px;
  }
}

@media (max-width: 1600px) {
  .header-1.header-5 .container-fluid {
    padding-left: 50px;
  }
}

@media (max-width: 1399px) {
  .header-1.header-5 .container-fluid {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .header-1.header-5 .container-fluid {
    padding-right: 30px;
  }
}

.header-7 .container-fluid {
  padding: 0 60px;
}

@media (max-width: 1899px) {
  .header-7 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1600px) {
  .header-7 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1399px) {
  .header-7 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 1199px) {
  .header-7 .container-fluid {
    padding: 0 20px;
  }
}

.hero-section-2 .container-fluid {
  padding: 0 140px;
  padding-right: 50px;
}

@media (max-width: 1899px) {
  .hero-section-2 .container-fluid {
    padding: 0 60px;
  }
}

@media (max-width: 1600px) {
  .hero-section-2 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-section-2 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .hero-section-2 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .hero-section-2 .container-fluid {
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .hero-section-2 .container-fluid {
    padding: 0 15px;
  }
}

.hero-section-6 .container-fluid {
  padding: 0 100px;
}

@media (max-width: 1899px) {
  .hero-section-6 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1600px) {
  .hero-section-6 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1399px) {
  .hero-section-6 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 1199px) {
  .hero-section-6 .container-fluid {
    padding: 0 20px;
  }
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  background-color: #fff;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 {
  background-color: #414141;
  box-shadow: none;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

@media (max-width: 575px) {
  .offcanvas__logo a img {
    width: 150px;
  }
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas-title {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 500;
}

.offcanvas__wrapper .offcanvas__content p {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 500;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list {
  margin-bottom: 50px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  line-height: 1;
  margin-top: 3px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li .icon i {
  font-size: 18px;
  line-height: 1;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li .content p {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li .content h4 {
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
  font-family: "Unbounded", "Prompt", "Noto Sans Thai", "Thonburi", sans-serif;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li .content h4 a {
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
  margin-bottom: 18px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 99999;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(17, 17, 17, 0.3);
}

.breadcrumb-wrapper .page-heading {
  padding: 295px 0 150px;
  position: relative;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 230px;
    padding-bottom: 155px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 210px;
    padding-bottom: 150px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-list {
    justify-content: center;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li {
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li a {
  color: var(--white);
  margin-left: 15px;
  position: relative;
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li a::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--white);
  top: 10px;
  left: -15px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li a:hover {
  color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-title {
  font-size: 66px;
  font-weight: 700;
  color: var(--white);
  font-family: "Unbounded", "Prompt", "Noto Sans Thai", "Thonburi", sans-serif;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-title {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-title {
    font-size: 44px;
  }
}

@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-title {
    font-size: 35px;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.swiper-dot {
  text-align: center;
}

.swiper-dot .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  transition: 0.6s;
  background-color: var(--white);
  border-radius: 0;
  opacity: 1;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  transition: 0.6s;
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 0;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme);
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.swiper-dot-2 {
  text-align: center;
}

.swiper-dot-2 .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  transition: 0.6s;
  background-color: var(--white);
  border-radius: 30px;
  opacity: 1;
  position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-bottom: 30px;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  transition: 0.6s;
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 30px;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme);
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.footer-bg {
  background-color: var(--header);
}

.container-2 {
  max-width: 1320px;
}

@media (min-width: 1400px) {
  .container1320 {
    max-width: 1350px;
    margin: 0 auto;
  }
}

.swiper-dot-1 {
  text-align: center;
  margin-top: 60px;
  z-index: 1;
}

.swiper-dot-1 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  transition: 0.6s;
  border: 1px solid var(--theme);
  background-color: transparent;
  opacity: 1;
  border-radius: 0px;
}

.swiper-dot-1 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.swiper-dot-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}

.swiper-dot-1 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0;
  background-color: transparent;
  border: 1px solid var(--theme);
  content: "";
}

.actually-area .t_line>div {
  background-image: linear-gradient(to right, var(--header) 50%, rgba(15, 23, 42, 0.2980392157) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-1 {
  background-color: var(--header);
}

@media (max-width: 991px) {
  .hero-1 {
    padding-bottom: 80px;
  }
}

.hero-1 .container-fluid {
  padding: 0 180px;
}

@media (max-width: 1899px) {
  .hero-1 .container-fluid {
    padding: 0 70px;
    padding-right: 0;
  }
}

@media (max-width: 1600px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
    padding-right: 0;
  }
}

@media (max-width: 1399px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .hero-1 .container-fluid {
    padding-right: 30px;
  }
}

.hero-1 .hero-content {
  padding-top: 170px;
  padding-bottom: 56px;
  position: relative;
}

@media (max-width: 1600px) {
  .hero-1 .hero-content {
    padding-bottom: 0px;
  }
}

.hero-1 .hero-content h1 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 55px;
  position: relative;
  z-index: 999;
  line-height: 115%;
  margin-right: -70px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    margin-bottom: 30px;
    line-height: 125%;
    margin-right: 0;
  }
}

.hero-1 .hero-image {
  margin-right: -187px;
  position: relative;
}

@media (max-width: 1600px) {
  .hero-1 .hero-image {
    margin-right: -50px;
    height: 830px;
  }

  .hero-1 .hero-image img {
    object-fit: cover;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-image {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-image {
    margin-top: 30px;
    height: 700px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-image {
    height: 500px;
  }
}

.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-1 .hero-image .hero-box-item {
  display: flex;
  align-items: center;
  gap: 88px;
  padding: 54px 65px 13px;
  background-color: var(--white);
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1399px) {
  .hero-1 .hero-image .hero-box-item {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-image .hero-box-item {
    position: static;
    margin-top: 30px;
  }
}

.hero-1 .hero-image .hero-box-item .icon-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-1 .hero-image .hero-box-item .icon-item .content span {
  color: rgb(159, 159, 159);
}

.hero-1 .hero-image .hero-box-item .icon-item .content h5 {
  font-weight: 500;
  line-height: 190%;
}

.hero-1 .hero-image .hero-box-item .icon-item .content h5 a:hover {
  color: var(--theme);
}

.hero-section-2 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.35);
  transform: scale(1.35);
  border-radius: 20px;
}

.hero-section-2 .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.hero-section-2 .swiper-slide.swiper-slide-active .hero-button {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.hero-2 .container-fluid {
  padding: 0 140px;
}

@media (max-width: 1899px) {
  .hero-2 .container-fluid {
    padding: 0 60px;
  }
}

@media (max-width: 1600px) {
  .hero-2 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-2 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .hero-2 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-2 .container-fluid {
    padding: 0 15px;
  }
}

.hero-3 .container-fluid {
  padding: 0 250px;
}

@media (max-width: 1899px) {
  .hero-3 .container-fluid {
    padding: 0 70px;
  }
}

@media (max-width: 1600px) {
  .hero-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-3 .container-fluid {
    padding: 0 15px;
  }
}

.hero-5 .container-fluid {
  padding: 0 140px;
}

@media (max-width: 1899px) {
  .hero-5 .container-fluid {
    padding: 0 70px;
  }
}

@media (max-width: 1600px) {
  .hero-5 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-5 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-5 .container-fluid {
    padding: 0 15px;
  }
}

.hero-6 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.35);
  transform: scale(1.35);
  border-radius: 20px;
}

.hero-6 .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.hero-6 .swiper-slide.swiper-slide-active .hero-right-items {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.hero-6 .swiper-slide.swiper-slide-active .hero-button {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #414141;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid #E5E5E5 !important;
  border: none;
  font-family: "Barlow", "Prompt", "Noto Sans Thai", "Thonburi", sans-serif;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 16px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: var(--header);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader .spinner-wrap {
  width: 180px;
  height: 180px;
  position: relative;
}

.preloader .spinner-wrap .preloader-logo {
  width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader .spinner-wrap .spinner {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-top: 3px solid var(--theme);
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 2s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.back-to-top {
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup.active {
  z-index: 999999;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--header);
  font-family: "Barlow", "Prompt", "Noto Sans Thai", "Thonburi", sans-serif;
  margin-bottom: 15px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.section-title .sub-title::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--theme);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-title .sub-title.style-2::before {
  background-color: var(--white);
}

.section-title .sub-title.color {
  color: var(--header);
}

@media (max-width: 991px) {
  .section-title h2 br {
    display: none;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.bg-color-3 {
  background-color: var(--bg-3);
}


.footer-bg {
  background-color: #062214;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.contact-bg {
  background: #F4F5EC;
}

.service-section {
  position: relative;
}

.service-section .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  height: 995px;
}

@media (max-width: 1600px) {
  .service-section .left-shape {
    display: none;
  }
}

.service-section .left-shape img {
  height: 1003px;
}

.service-section .service-slider {
  margin-right: -350px;
  margin-top: 48px;
}

@media (max-width: 1600px) {
  .service-section .service-slider {
    margin-right: -75px;
  }
}

@media (max-width: 1399px) {
  .service-section .service-slider {
    margin-right: 0;
  }
}

.services-section-7 .container-fluid {
  padding: 0 80px;
}

@media (max-width: 1899px) {
  .services-section-7 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1600px) {
  .services-section-7 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 1399px) {
  .services-section-7 .container-fluid {
    padding: 0 15px;
  }
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 75%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

.team-section-51 .container-fluid {
  max-width: 1640px;
}

.project-section {
  overflow: hidden;
}

.project-section .container-fluid {
  padding: 0 80px;
  overflow: hidden;
}

@media (max-width: 1899px) {
  .project-section .container-fluid {
    padding: 0 70px;
  }
}

@media (max-width: 1600px) {
  .project-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .project-section .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .project-section .container-fluid {
    padding: 0 15px;
  }
}

.project-section h2 {
  font-size: 80px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 1399px) {
  .project-section h2 {
    font-size: 60px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .project-section h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .project-section h2 {
    font-size: 23px;
  }
}

.project-section .swiper {
  overflow: hidden;
}

.project-section .swiper-slide {
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(0.85);
  margin: 0;
  z-index: 1;
  position: relative;
}

.project-section .swiper-slide .project-card-item-style-1 .project-image {
  height: 632px;
}

@media (max-width: 991px) {
  .project-section .swiper-slide .project-card-item-style-1 .project-image {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .project-section .swiper-slide .project-card-item-style-1 .project-image {
    height: 450px;
  }
}

.project-section .swiper-slide .project-card-item-style-1 .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-section .swiper-slide-active {
  transform: scale(1);
  z-index: 3;
}

.project-section .swiper-slide-active .project-card-item-style-1 .project-image .project-box {
  opacity: 1;
  visibility: visible;
}

.project-section .swiper-slide-active .project-card-item-style-1 .project-image img {
  transform: scale(1.18);
}

.project-card-item-style-1 .project-image {
  height: 632px;
  position: relative;
}

.project-card-item-style-1 .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card-item-style-1 .project-image .project-box {
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: -30px;
  bottom: 20px;
  max-width: 538px;
  width: 100%;
}

@media (max-width: 1600px) {
  .project-card-item-style-1 .project-image .project-box {
    left: -15px;
  }
}

@media (max-width: 1399px) {
  .project-card-item-style-1 .project-image .project-box {
    left: -20px;
  }
}

@media (max-width: 991px) {
  .project-card-item-style-1 .project-image .project-box {
    flex-wrap: wrap;
    gap: 20px;
    left: 0px;
    max-width: 320px;
  }
}

.project-card-item-style-1 .project-image .project-box .content h4 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 1399px) {
  .project-card-item-style-1 .project-image .project-box .content h4 {
    font-size: 20px;
  }
}

.project-card-item-style-1 .project-image .project-box .content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.project-card-item-style-1 .project-image .project-box .content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-card-item-style-1 .project-image .project-box .content .list li {
  display: flex;
  align-items: center;
  gap: 50px;
  font-weight: 600;
  color: #535A63;
}

.project-card-item-style-1 .project-image .project-box .content .list li span {
  font-weight: 500;
  color: #91969C;
}

.project-card-item-style-1 .project-image .project-box .content .list li:not(:last-child) {
  margin-bottom: 10px;
}

.project-card-item-style-1 .project-image .project-box .arrow {
  width: 69px;
  line-height: 69px;
  height: 69px;
  text-align: center;
  color: var(--white);
  background-color: var(--theme);
  font-size: 25px;
  transition: all 0.4s ease-in-out;
}

.project-card-item-style-1 .project-image .project-box .arrow:hover {
  background-color: var(--header);
}

.project-section-2 .project-slider-2 .swiper-wrapper {
  align-items: center;
}

.project-section-5 .shop-pagi-items .project-dot .swiper-pagination-bullet {
  width: 505px;
  height: 1px;
  border-radius: 0;
  background: rgba(30, 32, 35, 0.19);
  opacity: 1;
  transition: 0.6s;
  margin: 0 !important;
}

@media (max-width: 1899px) {
  .project-section-5 .shop-pagi-items .project-dot .swiper-pagination-bullet {
    width: 340px;
  }
}

.project-section-5 .shop-pagi-items .project-dot .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--theme);
  width: 395px;
  height: 2px;
}

.gallery-section-inner {
  margin: 25px;
}

.gallery-card-item-inner .gallery-image {
  position: relative;
}

.gallery-card-item-inner .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card-item-inner .gallery-image::before {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(0.7);
  content: "";
  position: absolute;
  background: rgba(244, 91, 30, 0.68);
  z-index: 1;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.gallery-card-item-inner .gallery-image .icon {
  position: absolute;
  font-size: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  color: var(--white);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.gallery-card-item-inner .gallery-image.style-height {
  height: 905px;
}

@media (max-width: 1600px) {
  .gallery-card-item-inner .gallery-image.style-height {
    height: 660px;
  }
}

@media (max-width: 1399px) {
  .gallery-card-item-inner .gallery-image.style-height {
    height: 635px;
  }
}

.gallery-card-item-inner .gallery-image.style-height img {
  object-fit: cover;
}

.gallery-card-item-inner:hover .gallery-image::before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.gallery-card-item-inner:hover .gallery-image .icon {
  opacity: 1;
}

.gallery-card-item-inner.style-2 {
  margin-top: 30px;
}

/* Language Switcher Styling */
.lang-switcher-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-right: 15px;
}

.lang-switcher-wrap .lang-btn {
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-switcher-wrap .lang-btn:hover,
.lang-switcher-wrap .lang-btn.active {
  color: #000000;
  background-color: #ffb703;
  font-weight: 700;
}

.lang-switcher-wrap .lang-divider {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 3px;
}

.header-sticky.sticky .lang-switcher-wrap {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.05);
}

.header-sticky.sticky .lang-switcher-wrap .lang-btn {
  color: #222222;
}

.header-sticky.sticky .lang-switcher-wrap .lang-btn:hover,
.header-sticky.sticky .lang-switcher-wrap .lang-btn.active {
  color: #ffffff;
  background-color: #ffb703;
}

/* Header Big Phone Link */
.header-phone-link {
  background: #ffb703 !important;
  color: #062214 !important;
  font-weight: 800 !important;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.3);
}

.header-phone-link:hover {
  background: #062214 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Global warning buttons (.btn-warning) - FORCE DARK HIGH-CONTRAST TEXT & ICONS */
.btn-warning,
.btn-warning *,
a.btn-warning,
a.btn-warning *,
button.btn-warning,
button.btn-warning * {
  color: #062214 !important;
  text-decoration: none !important;
}

.btn-warning:hover,
.btn-warning:hover *,
a.btn-warning:hover,
a.btn-warning:hover *,
button.btn-warning:hover,
button.btn-warning:hover * {
  color: #ffffff !important;
  background-color: #062214 !important;
  border-color: #062214 !important;
}

/* Big Phone Number Callout Styling - High Contrast Everywhere */
.phone-number-big {
  font-size: 28px !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px;
}

/* Standalone phone links on dark backgrounds */
.phone-number-big a:not(.btn) {
  color: #ffb703 !important;
  text-decoration: none !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.phone-number-big a:not(.btn):hover {
  color: #ffffff !important;
}

/* Phone links inside buttons (.phone-number-big a.btn) MUST have dark text on yellow background */
.phone-number-big a.btn,
.phone-number-big a.btn *,
.phone-number-big .btn,
.phone-number-big .btn * {
  color: #062214 !important;
  background-color: #ffb703 !important;
  border-color: #ffb703 !important;
  text-shadow: none !important;
}

.phone-number-big a.btn:hover,
.phone-number-big a.btn:hover *,
.phone-number-big .btn:hover,
.phone-number-big .btn:hover * {
  color: #ffffff !important;
  background-color: #062214 !important;
  border-color: #062214 !important;
}

/* Phone numbers on light/white background cards (e.g. hero box item) */
.hero-box-item .phone-number-big,
.hero-box-item a.phone-number-big,
.hero-box-item .phone-number-big a:not(.btn),
.bg-white .phone-number-big a:not(.btn),
.card .phone-number-big a:not(.btn) {
  color: #062214 !important;
  text-shadow: none !important;
}

.hero-box-item .phone-number-big:hover,
.hero-box-item a.phone-number-big:hover,
.hero-box-item .phone-number-big a:not(.btn):hover {
  color: #cbb464 !important;
}

/* LINE Floating Widget */
.line-float-container {
  position: fixed;
  bottom: 30px;
  right: 90px;
  z-index: 99999;
}

.line-float-btn {
  width: 54px;
  height: 54px;
  background-color: #06C755;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(6, 199, 85, 0.45);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  outline: none;
}

.line-float-btn:hover {
  transform: scale(1.1);
  background-color: #05b34c;
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.6);
}

.line-float-btn i {
  font-size: 28px;
}

.line-popup-card {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 310px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  padding: 20px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border: 1px solid #eef2f5;
  z-index: 99999;
}

.line-popup-card.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.line-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.line-popup-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #06C755;
}

.line-popup-close {
  background: none;
  border: none;
  font-size: 16px;
  color: #888;
  cursor: pointer;
}

.line-popup-body p.line-popup-desc {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}

.line-qr-box {
  margin: 12px 0;
  text-align: center;
}

.line-qr-img {
  width: 145px;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 5px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.line-qr-img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.3) !important;
}

.line-qr-subtext {
  font-size: 11px;
  color: #777;
  margin-top: 6px;
  display: block;
}

.line-popup-btn {
  display: block;
  width: 100%;
  background: #06C755;
  color: #ffffff !important;
  text-align: center;
  padding: 10px 0;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: background 0.2s;
  margin-bottom: 8px;
}

.line-popup-btn:hover {
  background: #05b34c;
}

.line-call-btn {
  display: block;
  width: 100%;
  background: #111111;
  color: #ffffff !important;
  text-align: center;
  padding: 10px 0;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
}

.line-call-btn:hover {
  background: #333333;
}

/* Hidden Section */
.hidden-section {
  display: none !important;
}

/* Certificate Section Styling */
.cert-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(6, 34, 20, 0.12);
  border-color: var(--theme);
}

.cert-img-wrapper {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  border-bottom: 1px solid #eef2f5;
}

.cert-img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  padding: 15px;
  transition: transform 0.4s ease;
}

.cert-card:hover .cert-img-wrapper img {
  transform: scale(1.03);
}

.cert-overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 34, 20, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
  font-size: 28px;
}

.cert-img-wrapper:hover .cert-overlay-icon {
  opacity: 1;
}

.cert-card-body {
  padding: 24px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(203, 180, 100, 0.15);
  color: #8c7324;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.max-w-700 {
  max-width: 700px;
}