/**
* Template Name: Dewi
* Template URL: https://bootstrapmade.com/dewi-free-multi-purpose-html-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #d5252f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #e5eaee;  /* The default color of the main navmenu links */
  --nav-hover-color: #d5252f; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #d5252f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
@font-face{
  font-family: 'MarionBold'; /* ชื่อที่คุณจะใช้ในการอ้างอิงฟอนต์ */
  src: url('fonts/marion-bold.ttf') format('truetype'); /* path ไปยังไฟล์ .ttf */
  font-weight: bold;
  font-style: normal;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  /* font-family: "Itim", cursive; */
  font-family: 'MarionBold', sans-serif; 
  font-weight: 400;
  font-style: normal;
  
  overflow-x: hidden;
}
.text-en{
  font-family: 'MarionBold', sans-serif; 
  font-weight: bold;
}
.text-th{
  font-family: "Prompt", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# header Section
--------------------------------------------------------------*/
.header {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .img-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.header .img-bg-group {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  z-index: 1;
}

.header:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.header .container {
  position: relative;
  z-index: 3;
  max-width: 90vw;
}

.header h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #362725;
}

.header p {
  color: #362725;
  margin: 10px 0 0 0;
  font-size: 16px;
}

.section2 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

.light-background {
  --background-color: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  /* padding: 80px 0; */
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container-fluid {
  position: relative;
  padding: 0px;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100%;
  min-height: 100vh;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  /* margin-top: 20px;
  position: relative; */
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-image: url('../img/bg-footer.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: var(--default-color);
}
.footer::after {
  color: var(--default-color);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* สีดำโปร่งใส 50% ทับภาพ */
  pointer-events: none; /* ป้องกันไม่ให้รบกวนการคลิก */
  z-index: 0;
}

.img-ft{
  width: 15vw;
}

.footer .footer-top {
  padding-top: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  z-index: 2;
  padding-bottom: 20px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
}

.footer .social-links{  
  display: flex;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: var(--default-color);
  margin-right: 10px;
  transition: 0.3s;
  z-index: 2;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 3px;
  font-size: 13px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgb(255 255 255 / 59%);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}
.card-shop h3 {
  font-weight: 700;
  font-size: 36px;
}
.card-shop p {
  line-height: 24px;
  font-size: 16px;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.1);
}

.menu-language{
  list-style: none; /* เอาจุดออก */
  padding: 0;
  margin: 0;
  display: flex; /* จัดให้อยู่ในแถวเดียวกัน */
  align-items: center; /* จัดให้อยู่ตรงกลางแนวตั้ง */
  padding-right: 30px;
}

.img-ul{
  width: 1.7vw;
  margin-left: 10px;
  cursor:pointer
}
.img-logo{
  width: 50vw;
  padding-bottom: 20px;
}
.img-qrcode{
  padding-top: 10px;
  width: 23vw;
}
.row-img-capsule{
  padding-left: 2vw;
}
.img-capsule{
  width: 10vw;
  transition: 1s!important; 
}
.img-capsule:hover{
  transform: scale(1.1)!important;
}
.img-grop{
  transition: 1s!important; 
}
.img-grop:hover{
  transform: scale(1.1)!important;
}
.btn-game{
  transition: 1s!important; 
}
.btn-game:hover{
  transform: scale(1.1)!important;
}
.img-button{
  width: 73vw;
  position: absolute;
  bottom: -20px;
  right: -80px;
}

.div-title{
  border: 2px solid #41719c;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.row-grop{
  padding-top: 120px;
  display: flex !important;
}
.img-grop{
  width: 15vw;
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.starter-section {
  /* Add your styles here */
}

.row-img-capsule{
  display: flex; /* จัดให้อยู่ในแถวเดียวกัน */
}
.div-img-capsule{
  display: flex; /* จัดให้อยู่ในแถวเดียวกัน */
}

.card{
  width: 100%;
  margin-bottom: 40px;
}
.card .card-body{
  padding: 0px !important;
}
.card-img-1{
  width: 20vw;
}
.card-img-2{
  width: 15vw;
}


.fixed-image {
  width: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

@media (max-width:2500px) {
  .header h2 {
    font-size: 40px;
  }  
  .header p {
    font-size: 24px;
  }
  .img-button {
    width: 70vw;
    position: absolute;
    bottom: -98px;
    right: -88px;
  }

  .services .details{
    margin: -58px 30px 0 30px;
  }
  .services .details h3 {
    font-size: 40px;
  }  
  .services .details p {
    font-size: 24px;
  }
  .card-shop h3 {
    font-size: 40px;
  }
  .card-shop p {
    font-size: 24px;
  }

  .row-grop{
    padding-top: 210px;
  }
}
@media (max-width:1300px) {  
  .header h2 {
    font-size: 36px;
  }  
  .header p {
    font-size: 16px;
  }
  .img-button {
    width: 68vw;
    position: absolute;
    bottom: -90px;
    right: -55px;
  }
  .service-item img{
    max-width: 60vw;
  }

  .services .details{
    margin: -34px 30px 0 30px;
  }
  .services .details h3 {
    font-size: 36px;
  }  
  .services .details p {
    font-size: 20px;
  }
  .card-shop h3 {
    font-size: 36px;
  }
  .card-shop p {
    font-size: 20px;
  }
  .row-grop{
    padding-top: 120px;
  }
}
@media (max-width:1030px) {  
  .img-ul {
    width: 4.7vw;
    margin-left: 10px;
    cursor: pointer;
  }
  .img-logo{
    width: 75vw;
    padding-bottom: 50px;
  }
  .header h2 {
    font-size: 35px;
  }  
  .header p {
    font-size: 20px;
  }
  .img-qrcode {
    padding-top: 30px;
    width: 35vw;
  }
  .row-img-capsule{
    display: block;
  }
  .img-capsule{
    margin: 0 20px;
    width: 15vw;
    transition: 1s!important; 
  }
  .img-button {
    width: 81vw;
    position: absolute;
    bottom: -159px;
    right: -41px;
  }
  .img-grop {
    width: 23vw;
  }
  .services .details{
    width: 100%;
    margin: -30px 0 0 0;
  }
  .services .details h3 {
    font-size: 35px;
  }  
  .services .details p {
    font-size: 20px;
  }
  .card-shop h3 {
    font-size: 35px;
  }
  .card-shop p {
    font-size: 20px;
  }
  .service-item img{
    max-width: 100%;
  }
  .row-grop{
    padding-top: 90px;
  }
}
@media (max-width:840px) {  
  .img-ul {
    padding-top: 10px;
    width: 5.7vw;
    margin-left: 10px;
    cursor: pointer;
  }
  .img-logo{
    width: 75vw;
    padding-bottom: 50px;
  }
  .header h2 {
    font-size: 35px;
  }  
  .header p {
    font-size: 20px;
  }
  .img-qrcode {
    padding-top: 30px;
    width: 35vw;
  }
  .row-img-capsule{
    display: block;
  }
  .img-capsule{
    margin: 0 20px;
    width: 19vw;
    transition: 1s!important; 
  }
  .img-button {
    width: 78vw;
    position: absolute;
    bottom: -95px;
    right: -43px;
  }
  .services .details{
    width: 100%;
    margin: -15px 0 0 0;
  }
  .services .details h3 {
    font-size: 35px;
  }  
  .services .details p {
    font-size: 20px;
  }
  .card-shop h3 {
    font-size: 35px;
  }
  .card-shop p {
    font-size: 20px;
  }
  .card-img-1{
    width: 35vw;
  }
  .card-img-2{
    width: 22vw;
  }
  .row-grop {
    padding-top: 50px;
  }
  .fixed-image {
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width:770px) {  
  .img-logo{
    width: 80vw;
    padding-bottom: 45px;
  }
  .header h2 {
    font-size: 40px;
  }  
  .header p {
    font-size: 24px;
  }
  .img-qrcode {
    padding-top: 30px;
    width: 42vw;
  }
  .obj-img-capsule{
    overflow: auto;
    max-height: 135vh;
  }
  .row-img-capsule{
    display: block;
  }
  .div-img-capsule{
    display: block!important; 
  }
  .img-capsule{
    margin: 0 20px;
    width: 25vw;
    transition: 1s!important; 
  }
  .img-button {
    width: 78vw;
    position: absolute;
    bottom: -96px;
    right: -38px;
  }

  .services .details{
    width: 100%;
    margin: -15px 0 0 0;
  }
  .services .details h3 {
    font-size: 40px;
  }  
  .services .details p {
    font-size: 24px;
  }
  .card-shop h3 {
    font-size: 40px;
  }
  .card-shop p {
    font-size: 24px;
  }

  .card-text{
    padding: 20px;
  }
  .card-img-1{
    width: 35vw;
  }
  .card-img-2{
    width: 29vw;
  }
  .row-grop {
    padding-top: 65px;
  }
  .img-ft{
    width: 17vw;
  }
}
@media (max-width:430px) {  
  .img-logo {
    width: 96vw;
    padding-bottom: 20px;
  }
  .header h2 {
    font-size: 29px;
  }  
  .header p {
    font-size: 18px;
  }
  .img-qrcode {
    padding-top: 30px;
    width: 65vw;
    padding-bottom: 30px;
  }
  .obj-img-capsule{
    display: flex;
    overflow: auto;
    max-height: 135vh;
  }
  .row-img-capsule{
    display: flex;
  }
  .div-img-capsule{
    display: flex !important; 
  }
  .img-capsule{
    margin: 0 20px;
    width: 30vw;
    transition: 1s!important; 
  }
  .img-button {
    width: 110vw;
    position: absolute;
    bottom: -92px;
    right: -22px;
  }

  .services .details{
    width: 100%;
    margin: -15px 0 0 0;
  }
  .services .details h3 {
    font-size: 29px;
  }  
  .services .details p {
    font-size: 18px;
  }
  .card-shop h3 {
    font-size: 29px;
  }
  .card-shop p {
    font-size: 18px;
  }
  .row-grop {
    padding-top: 15px;
  }
  .img-ft{
    width: 35vw;
  }
}

@media (max-width:375px) {  
  .img-logo {
    width: 96vw;
    padding-bottom: 20px;
  }
  .header h2 {
    font-size: 25px;
  }
  .header p {
    font-size: 18px;
  }
  .img-qrcode {
    padding-top: 30px;
    width: 65vw;
    padding-bottom: 30px;
  }
  .obj-img-capsule{
    display: flex;
    overflow: auto;
    max-height: 135vh;
  }
  .row-img-capsule{
    display: flex;
  }
  .div-img-capsule{
    display: flex !important; 
  }
  .img-capsule {
    margin: 0 20px;
    width: 35vw;
    transition: 1s !important;
  }
  .img-button {
    width: 109vw;
    position: absolute;
    bottom: -92px;
    right: -19px;
  }
  .img-grop {
    width: 25vw;
  }

  .services .details{
    width: 100%;
    margin: -15px 0 0 0;
  }
  .services .details h3 {
    font-size: 25px;
  }  
  .services .details p {
    font-size: 18px;
  }
  .card-shop h3 {
    font-size: 25px;
  }
  .card-shop p {
    font-size: 18px;
  }
}

