/* Custom CSS Styles */
body {
  font-family: "Poppins", "Noto Sans Thai", sans-serif;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li {
  margin: 0;
  font-family: "Poppins", "Noto Sans Thai", sans-serif;
}

.navbar {
  background-color: transparent;
}
.navbar .box-navbar {
  padding: 16px 30px;
  background-color: #ffffff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0px 4px 10px 0px #0000001a;
}
.navbar-nav {
  gap: 14px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #002f6c;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s ease; /* Adds smooth transition for text color */
}

/* Create a pseudo-element for the underline on both active and hover states */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0; /* Start with no width */
  height: 4px;
  background-color: #ffc107; /* Yellow color */
  border-radius: 2px;
  transition: width 0.3s ease; /* Adds smooth transition for width */
}

/* Style for the link on hover */
.navbar-nav .nav-link:hover::after {
  width: 85%;
}

/* Style for the active link */
.navbar-nav .nav-link.active {
  color: #002f6c;
}

.navbar-nav .nav-link.active::after {
  width: 85%; /* Underline for the active link */
}

@media screen and (max-width: 768px) {
  .navbar-nav .nav-link.active::after,
  .navbar-nav .nav-link:hover::after {
    width: 100%;
  }
}

.hero-section {
  padding-bottom: 100px;
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
  overflow: hidden;
}

.hero-section h1 {
  font-weight: 700;
  font-size: 2.8rem;
}

.hero-section .brand-text {
  background-color: #ffffff;
  color: #0d6efd;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding-top: 105px;
    padding-bottom: 0px;
  }
}

/* --- About Section Styles --- */
.about-section h2 {
  font-weight: 700;
  color: #002f6c;
  font-size: 2.5rem;
	text-transform: capitalize;
}

.section-tag {
  display: inline-block;
  background-color: #ffc107;
  color: #002f6c;
  font-weight: 500;
  padding: 6px 15px;
  border-radius: 50px;
}

.icon-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #333;
}

.icon-list-item .icon {
  width: 50px;
  height: 50px;
  background-color: #ffc107;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.icon-list-item .icon img {
  height: 28px;
  width: 28px;
}
/* --- End About Section Styles --- */

.franchise-section {
  position: relative;
  z-index: 30;
}
.franchise-section h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;

  letter-spacing: 0%;
  color: #002f6c;
}
.franchise-section p {
  margin-top: 1rem;
  font-weight: 400;
  font-size: 18px;
  color: #002f6c;
}

.section-card {
  padding: 2rem;
  height: 100%;
}

.package-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card .card-body {
  background-color: #fff;
}
.package-card .card-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #002f6c;
}

.package-card .card-text {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #002f6c;
}

.btn-custom {
  background-color: #002f6c;
  color: white;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 500;
}
.btn-custom:hover {
  background-color: #004a99; /* น้ำเงินสว่างขึ้น */
  color: #ffffff;
}

.icon-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.icon-list-item .icon {
  width: 58px;
  height: 58px;
  background-color: #ffc107;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #fff;
  font-weight: bold;
}

.box-packages {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 3rem;
}

.box-packages .text-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #002f6c;
}
.box-packages .text-highlight {
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

  color: #002f6c;
  background-color: #fec601;
  display: inline-block;

  padding: 8px 36px;
}

.box-packages .text-title-subtitle {
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #002f6c;
}
.box-packages .text-title-subtitle .text-yellow {
  color: #fec601;
}

/* --- Footer Section Styles --- */
.footer-section {
  background-color: #002f6c;

  padding: 2rem 3rem;
  border-radius: 5rem 5rem 0 0;
  position: relative;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-company-name {
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-address {
  color: #e0e7ff;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.footer-social {
  display: flex;
  margin-top: 1rem;
  flex-direction: column;
  gap: 8px;
}

.footer-social span {
  color: #e0e7ff;
  font-size: 0.9rem;
}

.social-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
}

.line-icon {
  background-color: #00c300;
}

.line-icon::after {
  content: "LINE";
  font-size: 8px;
}

.facebook-icon {
  background-color: #1877f2;
}

.facebook-icon::after {
  content: "f";
  font-size: 14px;
}

/* กล่องรวม */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* แท่งครีม + โค้งมน + ข้อความ */
.contact-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #fff3cd; /* ครีม */
  color: #0b2d52; /* น้ำเงินกรมท่า */
  border-radius: 999px;
  padding: 14px 24px 14px 72px; /* เผื่อพื้นที่ให้ไอคอนซ้าย */
  font-weight: 700;
  text-decoration: none;
}

/* วงกลมเหลืองล้ำออกซ้าย */
.chip-icon {
  position: absolute;
  left: -18px; /* ทำให้ล้ำออกนอกกล่อง */
  width: 64px;
  height: 64px;
  background: #fec601; /* เหลือง */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ไอคอนโทรศัพท์สีขาว */
.chip-icon svg {
  width: 34px;
  height: 34px;
}

.chip-text {
  white-space: nowrap;
}

.qr-code-container {
  display: flex;
  justify-content: center;
}

.qr-code-placeholder {
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.qr-code-text {
  color: #002f6c;
  font-weight: bold;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

.footer-copyright {
  background-color: #ffc107;
  margin: 0rem 0;
  padding: 1rem 0;
  text-align: center;
  border-radius: 0;
}

.footer-copyright p {
  color: #002f6c;
  font-weight: 500;
  margin: 0;
  font-size: 0.9rem;
	    text-transform: capitalize;

}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    padding: 2rem 1rem;
  }

  .contact-buttons {
    margin: 2rem 0;
  }

  .qr-code-container {
    margin-top: 2rem;
  }

  .footer-copyright {
    margin: 0rem 0;
  }
}

/* --- Floating speech-bubble list --- */
.hidden-contact {
  display: none !important;
}
.fixed-contact {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px; /* ระยะห่างแต่ละแถว แบบภาพแรก */
  align-items: end;
}

/* 1 แถว = bubble ซ้าย + icon กลมขวา */
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.4s ease;
  max-height: 100px; /* สูงพอสำหรับปุ่มแต่ละแถว */
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.contact-item.collapsed {
  max-height: 0;
  opacity: 0;
  transform: translateX(20px); /* ขยับเล็กน้อยตอนหาย */
  visibility: hidden;
  pointer-events: none;
}

/* ปุ่ม bubble ซ้าย */
.bubble-btn {
  --bg: #2f6df6; /* ค่าเริ่มต้น เผื่อไม่ใส่ class สี */
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--bg);
  text-decoration: none;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}

/* หัวลูกศรทางขวา (หางกล่องคำพูด) */
.bubble-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 14px; /* ขนาดหาง */
  border-color: transparent transparent transparent var(--bg);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
}

/* Hover ยกนิด ๆ */
.bubble-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  color: #fff;
  text-decoration: none;
}

/* วงกลมไอคอนขวา */
.circle-icon {
  --circle: #2f6df6;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  background: var(--circle);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.circle-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

/* ธีมสีแต่ละแถว ให้เหมือนภาพแรก */
.contact-item.facebook .bubble-btn {
  --bg: #3478ff;
}
.contact-item.facebook .circle-icon {
  --circle: #ffffff;
}

.contact-item.line .bubble-btn {
  --bg: #39cd00;
}
.contact-item.line .circle-icon {
  --circle: #39cd00;
}

.contact-item.phone .bubble-btn {
  --bg: #fec601;
}
.contact-item.phone .circle-icon {
  --circle: #fec601;
}

.contact-item.contact .bubble-btn {
  --bg: #63b3ed;
}
.contact-item.contact .circle-icon {
  --circle: #63b3ed;
}

/* Responsive */
@media (max-width: 768px) {
  .fixed-contact {
    right: 12px;
    gap: 20px;
  }
  .bubble-btn {
    min-width: 150px;
    padding: 11px 18px;
    font-weight: 700;
    display: none;
  }
  .circle-icon {
    width: 56px;
    height: 56px;
  }
}

.package-about-section {
  padding-top: 130px !important;
  z-index: 30;
}
.package-about-section .text-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #002f6c;
  position: relative;
}

.package-about-section .text-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 15%;
}

.package-about-section .img {
  margin-top: 20px;
}

.package-about-section .img .img-about-package {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
}

.package-about-section .text-subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #002f6c;
  margin-bottom: 8px;
}

.package-about-section .text-content {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #002f6c;
  margin-bottom: 15px;
}

/* --- Passive Income Section Styles --- */
.passive-income-section {
  background-color: #ffffff;
}

.passive-income-section .icon-passive-income {
  position: relative;
}

.passive-income-section .icon-passive-income .img-star img {
  position: absolute;
  left: -50px;
}
.passive-income-section .icon-passive-income .img-text img {
  position: absolute;
  right: -200px;
  top: -25px;
}
.passive-income-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #002f6c;
}

.passive-income-subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #002f6c;
}

.passive-income-subtitle .highlight {
  color: #ffc107;
  font-weight: 700;
}

.passive-income-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: #002f6c;
  margin-bottom: 1rem;
}

.passive-income-item .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffc107;
}

.passive-income-price {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  background-color: #ffc107;
  color: #002f6c;
  padding: 24px 36px;
  display: inline-block;
  border-radius: 40px;
}

@media screen and (max-width: 991px) {
  .passive-income-section .icon-passive-income .img-star img {
    display: none;
  }
  .passive-income-section .icon-passive-income .img-text img {
    display: none;
  }
}
/* --- End Passive Income Section Styles --- */

/* --- Package Detail Section Styles --- */

.package-yellow-section .box-yellow-section {
  background-color: #ffc107;
  border-radius: 2rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  color: #002f6c;
}
.package-img {
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-size {
  background-color: #002f6c;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.package-price {
  font-size: 2rem;
  font-weight: bold;
  color: #002f6c;
}

.vat-note {
  font-size: 0.875rem;
  color: #333;
  margin-top: 0.25rem;
}

.package-divider {
  border-top: 4px solid #002f6c;
  margin: 1rem 0;
  width: 100%;
  opacity: 1;
}

.package-desc {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.package-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #002f6c;
}

.check-icon {
  background-color: #002f6c;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-yellow-section .badge-size {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.package-yellow-section .badge-size .text-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
}

.package-yellow-section .badge-size .text-title-size {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

/* --- End Package Detail Section Styles --- */

.text-title-highlight {
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #002f6c;
  position: relative;
}

.text-title-highlight::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 15%;
}

/* --- News Section Styles --- */
.news-card.hidden {
  display: none;
}
.news-section {
}

.news-card {
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.news-date {
  color: #002f6c;
  background-color: #fff3c7;
  padding: 16px;

  font-weight: 400;
  font-size: 16px 24px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 16px;
  display: inline-block;
  border-radius: 40px;
}

.news-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
  margin-top: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #002f6c;
}

.news-link {
  font-size: 1rem;
  color: #002f6c;
  text-decoration: none;
  margin-top: 0.5rem;
  display: inline-block;
}

.news-link:hover {
  text-decoration: underline;
}

.news-section .btn-custom {
  background-color: #002f6c;
  color: white;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  position: relative;
  z-index: 999;
}

.news-section .text-title-news {
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
  color: #002f6c;
}
.news-section .content-news .date {
  color: #002f6c;
  background-color: #63b3ed4d;
  padding: 8px 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 16px;
  display: inline-block;
  border-radius: 40px;
}

.news-section .content-news p {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0%;
  color: #002f6c;
}
.news-section .content-news{
	color: #002f6c;
}
/* --- End News Section Styles --- */

/* --- Call-to-Action Section Styles --- */
.call-to-action-section {
  padding: 3rem;

  position: relative;
}
.call-to-action-section::after {
  content: "";
  position: absolute;
  top: -240px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: url(../../assets/image/icon/bg-action-section.png);
  background-size: cover;
  z-index: -1;
}

.call-to-action-section.branches::after {
  top: -290px;
}

@media screen and (max-width: 768px) {
  .call-to-action-section::after {
    top: -80px !important;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #002f6c;
	text-transform: capitalize;
}

.cta-description {
  font-size: 1.2rem;
  color: #002f6c;
  margin: 1rem 0;
}

.call-to-action-section .btn-custom {
  background-color: #fec601;
  color: #002f6c;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
}

.btn-custom:hover {
  background-color: #fec601;
  color: #ffffff;
}

/* Contact Section Styles */
.contact-section {
  padding: 3rem 0;
}
.contact-card {
  background-color: #002f6c;
  color: white;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-height: 225px;
  border-radius: 16px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.contact-card h5 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 1rem;
}
.contact-card p {
  font-size: 1rem;
  margin-top: 0.5rem;
	text-transform: capitalize;
}
.contact-card .box-img-contact {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Map Section Styles */
.map-section {
  padding: 3rem 0;
  position: relative;
  z-index: 999;
}
.map-container {
  text-align: center;
}
.map-container img {
  max-width: 100%;
  border-radius: 1rem;
}

/* Owl Carousel Section Styles */
.owl-carousel-section {
  padding: 3rem 0;
}
.owl-carousel-section .item {
  padding: 1rem;
}
.owl-carousel-section .item img {
  max-width: 100%;
  border-radius: 1rem;
}
.owl-carousel-section .item .box-content-carousel {
  margin-top: 30px;
}
.owl-carousel-section .item .box-content-carousel h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #002f6c;
  margin-bottom: 10px;
}
.owl-carousel-section .item .box-content-carousel p {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #002f6c;
}
.owl-carousel-section .item .box-content-carousel ul {
  margin-top: 1rem;
}
.owl-carousel-section .item .box-content-carousel ul li {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #002f6c;
}

.owl-dots {
  display: flex !important;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.owl-dots .owl-dot {
  background: #002f6c4d !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 0 !important;
  height: 20px !important;
  padding: 0 !important;
  transition: 0.5s !important;
  width: 20px !important;
}

.owl-dots .owl-dot.active {
  background: #002f6c !important;
}

.bg-section {
  position: relative;
}
.bg-section .img-section {
  position: absolute;
  top: -285px;
}

.bg-section.index .img-section {
  top: -215px;
}

.bg-section.index-left .img-section {
  top: -315px;
  right: -300px;
}

@media screen and (max-width: 768px) {
  .bg-section.index-left .img-section {
    top: -70px;
  }
}

.aslk {
    position: relative;
}

.aslk .tglk {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}
/* .bg-section::after {
  content: "";
  position: absolute;
  top: -125px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: url(../../assets/image/icon/bg-section.png);
  background-size: cover;
  z-index: -1;
} */
