/* ========================================================== */
/* 			               01. GENERAL LAYOUT                 */
/* ========================================================== */

:root {
  --primary-color: #143b64;
  --secondary-color: #01853c;
  /* Changed to blue to match the button color */
  --text-color: #143b64;
  --accent-color: #01853c;
  --divider-color: #dbdfea;
  --dark-divider-color: #ffffff30;
  --white-color: #ffffff;
  --error-color: #dc3545;
  --default-font: "Plus Jakarta Sans", sans-serif;
  --light-text: #b89e97;
  --light-bg: #decccc;
  --border-color: #b89e97;
}

/* Base Styles */
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  overflow-x: hidden;
  font-weight: 400;
  color: #272727;
}

/* Header Styles */
header {
  padding: 25px 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .socials a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  margin: 0 5px;
}

header .socials img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

header .btn-primary {
  background-color: #225283;
  border-color: #225283;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 30px;
}

/* Hero Banner */
.hero_banner {
  background-image:
    linear-gradient(131deg, #003c61, #003c61ab, #003c6183, #01853c),
    url("images/hero.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: white;
  padding: 6rem 0;
}

.hero_banner h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero_banner h4 {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hero_banner p {
  font-weight: 300;
  color: white;
  margin-bottom: 0.5rem;
}

.hero_banner .btn-light {
  background-color: white;
  color: #225283;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 1rem;
}

/* Tabby Section */
.tabby {
  background: linear-gradient(270deg, #003c61, #01853c);
  padding: 15px 0;
}

.tabby h4 {
  color: white;
  margin-bottom: 0;
}

.tabby img {
  max-width: 150px;
  height: auto;
}

/* Business Setup Section */
.Business-setup {
  padding: 4rem 0;
}

.Business-setup h2 {
  color: #000;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.Business-setup p {
  color: #666;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.popular {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 380px;
}

.popular img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 83, 131, 0.7);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  color: white;
}

.popular:hover .business-img {
  opacity: 1;
}

.trend-meta h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.trend-meta p {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Register Section */
.register {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.register h2 {
  color: #000;
  font-weight: 700;
  margin-bottom: 2rem;
}

.reg_business {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.reg_business:hover {
  transform: translateY(-5px);
}

.reg_business h4 {
  color: #225283;
  font-weight: 600;
  margin: 1rem 0;
}

.reg_business p {
  color: #666;
  font-size: 0.95rem;
}

/* Package Section */
.package {
  background: linear-gradient(131deg, #01853c, #003c61, #003c61, #01853c);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: black;
}

.package a {
  text-decoration: none;
}

.package h2 {
  color: black;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.package h4 {
  color: #225283;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.package h5 {
  color: black;
  font-size: 18px;
  margin-bottom: 20px;
}

.package .card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.package p {
  color: #272727;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.package p img {
  margin-right: 10px;
  margin-top: 3px;
}

.package-btn {
  background-color: #225283;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.package-btn:hover {
  background-color: #1a436b;
  color: white;
  transform: translateY(-3px);
}

.consultation-btn {
  /* background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease; */
  background-color: #225283;
  padding: 10px 25px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  text-align: center;
  margin-top: 1.5rem;
}

.consultation-btn:hover {
  /* background-color: white; */
  color: white;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .package .card {
    height: auto;
    padding: 30px;
    margin-bottom: 30px;
  }

  .package-btn,
  .consultation-btn {
    padding: 10px 20px;
  }
}

@media (max-width: 767.98px) {
  .package {
    padding: 60px 0;
  }

  .package h2 {
    font-size: 28px;
  }

  .package h4 {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .package .card {
    padding: 25px;
  }

  .package h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .package h5 {
    font-size: 16px;
  }
}

/* Services Section */
.services {
  padding: 4rem 0;
}

.service-icon-box {
  width: 80px;
  height: 80px;
  background-color: #ebf3ff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b6fe9;
  margin-bottom: 20px;
}

.service-icon-box i {
  font-size: 32px;
}

.services h2 {
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.services p {
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services .card {
  border-radius: 15px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
}

.services .card:hover {
  transform: translateY(-5px);
}

.services .card h4 {
  color: #225283;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 1rem 0;
}

.services .card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-link,
.read-less-link {
  color: #2875a9;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 0.5rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.about-section h2 {
  font-weight: 700;
  color: #334155;
  line-height: 1.3;
  margin-bottom: 2rem !important;
}

.about-section p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-section ul {
  color: #475569;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.about-section ul li {
  margin-bottom: 1rem;
}

.about-section ul li::marker {
  color: #94a3b8;
}

.about-section img {
  border-radius: 4px;
}

/* Footer */
.footer {
  background: linear-gradient(131deg, #01853c, #003c61, #003c61, #01853c);
  padding: 4rem 0 0;
  color: white;
}

.footer-logo img {
  /* max-width: 200px; */
  height: auto;
  margin-bottom: 1rem;
  max-width: 300px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer h6 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.8rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer ul li a:hover {
  color: white;
}

.copyright-sec {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.copyright-sec p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero_banner h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .hero_banner {
    padding: 3rem 0;
  }

  .hero_banner h1 {
    font-size: 2rem;
  }

  header .socials a span {
    display: none;
  }
}

@media (max-width: 767.98px) {
  header .col-md-3.text-center,
  header .col-md-6 {
    width: 100%;
    text-align: center;
  }

  header .socials {
    justify-content: center;
    margin: 10px 0;
  }

  .hero_banner .row {
    flex-direction: column-reverse;
  }

  .hero_banner .col-md-7 {
    margin-top: 2rem;
  }

  .hero_banner h1 {
    font-size: 1.8rem;
  }

  #myZohoForm {
    height: 500px;
  }

  .package .card {
    margin-bottom: 20px;
  }

  .footer .col-lg-3 {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .hero_banner h1 {
    font-size: 1.6rem;
  }

  .hero_banner h4 {
    font-size: 1rem;
  }

  .tabby h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .tabby .row {
    flex-direction: column;
    text-align: center;
  }

  .services .card {
    padding: 20px 15px;
  }

  .footer-logo img {
    max-width: 180px;
  }
}

.faq-section {
  background-color: #f9f9f9;
}

.faq-section h2 {
  color: #225283;
  font-weight: 700;
}

.card-header {
  background-color: white;
  border-bottom: 1px solid #eee;
}

.card-header h3 button {
  color: #225283;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  text-align: left;
  padding: 15px;
  position: relative;
}

.card-header h3 button:hover {
  text-decoration: none;
  color: #225283;
}

.card-header h3 button:after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 1.5rem;
  color: #225283;
}

.card-header h3 button.collapsed:after {
  content: "+";
}

.card-header h3 button:not(.collapsed):after {
  content: "-";
}

.card-body {
  padding: 20px;
  background-color: #f8fafc;
}

@media (max-width: 767px) {
  .card-header h3 button {
    font-size: 1rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  /* #hero-text {
        display: none;
    } */

  /* .whatsapp-fixed {*/
  /*        bottom: 70px;*/
  /*        right: 15px;*/
  /*    }*/

  /*.whatsapp-fixed a {*/
  /*    width: 45px;*/
  /*    height: 45px;*/
  /*}*/
}

/* WhatsApp Fixed Button */

/*.whatsapp-fixed {*/
/*    position: fixed;*/
/*    bottom: 30px;*/
/*    right: 30px;*/
/*    z-index: 999;*/
/*    animation: pulse 2s infinite;*/
/*}*/

.whatsapp-fixed {
  position: fixed;
  bottom: 72px;
  right: 15px;
  z-index: 999;
}

.whatsapp-fixed a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #29a71a;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-fixed a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-fixed img {
  width: 100%;
  padding: 12px;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  /*.whatsapp-fixed {*/
  /*    bottom: 20px;*/
  /*    right: 20px;*/
  /*}*/

  .whatsapp-fixed a {
    width: 45px;
    height: 45px;
  }
}
/* Reviews CTA Button Styles */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.reviews-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 15px;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: pulse-glow 2.5s infinite;
  position: relative;
  z-index: 10;
  max-width: 100%;
}

/* Reviews image CTA */
.reviews-cta-btn img {
  height: auto;
  width: 250px;
}

.reviews-cta-btn i {
  margin-right: 10px;
  color: #ffc107;
  /* Gold color for star */
  font-size: 1.1rem;
}

.reviews-cta-btn:hover {
  background: #f8f9fa;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  animation: none; /* stop pulsing on hover */
}

/* Responsive Adjustments */
@media (max-width: 575.98px) {
  .reviews-cta-btn {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding: 12px 15px;
  }
}
ul.home-benefits {
  margin-bottom: 25px;
  letter-spacing: 1px;
  color: #fff;
  padding: 0;
}

ul.home-benefits li {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
  color: #fff;
  list-style: none;
}

ul.home-benefits li i {
  font-size: 20px;
  line-height: 30px;
  margin-top: 2px;
  margin-right: 10px;
  color: rgb(54, 209, 66);
}
/* Subtle grid pattern background */
.bg-grid {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}
/* Pricing Tab Styles */
.pricing-wrapper {
  text-align: center;
}

.pricing-tab {
  position: relative;
  display: inline-flex;
  background-color: #f3f4f6;
  border-radius: 50px;
  padding: 5px;
  margin: 0 auto 40px auto;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.pricing-slider {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: 0;
  background: linear-gradient(90deg, #003c61 0%, #005952 62.5%, #01853c 100%);
  border-radius: 50px;
  transition:
    left 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-tab button {
  background: transparent;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #143b64;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: var(--default-font, "Plus Jakarta Sans", sans-serif);
}

.pricing-tab button.active {
  color: #ffffff;
}

.pricing-tab button:focus {
  outline: none;
}

.pricing-item .btn-default {
  background: #01853c 100%;
}

.pricing-item {
  background-color: var(--white-color);
  border-radius: 24px;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.pricing-item.style-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pricing-item.style-dark.active {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: scale(1.07);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.pricing-header {
  border-bottom: 1px solid var(--secondary-color);
  margin-bottom: 25px;
  padding-bottom: 20px;
  text-align: left;
}

.pricing-item.style-dark .pricing-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-header .package-name {
  font-size: 18px;
  font-weight: 500;
  color: #40ff96;
  margin-bottom: 10px;
}

.pricing-header .package-price {
  font-size: 36px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
}

.pricing-header .package-price .price-value {
  font-size: 42px;
  margin-left: 5px;
}

.pricing-header .package-price sup {
  font-size: 20px;
  top: -0.5em;
}

.pricing-header .package-price .price-period {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 5px;
}

.pricing-header .package-desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.pricing-features {
  margin-bottom: 25px;
  text-align: left;
  flex-grow: 1;
}

.pricing-features ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-features ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 14px;
}

.pricing-item.style-dark .pricing-features ul li {
  color: #ffffff;
}

.pricing-features ul li:last-child {
  margin-bottom: 0;
}

.pricing-features ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  background-color: transparent;
  color: var(--accent-color);
  font-size: 16px;
  position: absolute;
  top: 2px;
  left: 0;
}

.pricing-item.style-dark .pricing-features ul li:before {
  color: #ffffff;
}

.not-feature {
  margin-top: 15px !important;
}

.not-feature li:before {
  content: "\f057" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  background-color: transparent;
  color: rgb(253, 58, 58) !important;
  font-size: 18px !important;
  position: absolute;
  top: 2px;
  left: 0;
}

.pricing-footer {
  margin-top: auto;
  padding-top: 20px;
}

.btn-default {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
  color: #ffffff;
  /* Change to white */
  background-color: #01853c;
  /* Change to blue */
  text-transform: capitalize;
  padding: 15px 55px 15px 15px;
  border-radius: 8px;
  border: none;
  transition: 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: var(--white-color);
  background-image: url(./images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate(-15px, -50%);
  transition: 0.4s ease-in-out;
}

.btn-default::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 106%;
  border-radius: 8px;
  background: var(--primary-color);
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover::after {
  width: 106%;
}

.btn-default:hover {
  background-color: transparent;
  color: white;
}

.btn-default.btn-highlighted {
  margin-left: 20px;
  background-color: var(--white-color);
  color: #1098f7;
  /* Change to blue */
}

.btn-default.btn-highlighted::before {
  background-color: var(--accent-color);
  background-image: url(../images/arrow-white.svg);
}

.btn-default.btn-highlighted::after {
  background-color: var(--primary-color);
}

.btn-default.btn-highlighted:hover {
  background-color: transparent;
}

.btn-large {
  font-size: 20px;
  padding: 20px 65px 20px 20px;
}

.btn-default.btn-large::before {
  width: 40px;
  height: 40px;
  background-size: 15px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logos-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.logos-slide {
  display: flex;
  gap: 3rem;

  /* spacing between logos */
  width: max-content;
  animation: scroll 40s linear infinite;
  align-items: center;
}

.logos-slide img {
  height: 80px;
  /* base height */
  width: auto;
  /* maintain aspect ratio */
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.logos-slide img:hover {
  transform: scale(1.1);
}

.logos-slide:hover {
  animation-play-state: paused;
}

.logos-section {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* Small screens: mobile */
@media (max-width: 640px) {
  .logos-slide {
    animation: scroll 55s linear infinite;
    /* slower scroll */
    gap: 1.5rem;
    /* smaller gap */
  }

  .logos-slide img {
    height: 50px;
    /* smaller logos on mobile */
  }
}

/* Medium screens: tablets */
@media (min-width: 641px) and (max-width: 1024px) {
  .logos-slide {
    animation: scroll 45s linear infinite;
    gap: 2rem;
  }

  .logos-slide img {
    height: 45px;
  }
}

/* Large screens: desktops */
@media (min-width: 1025px) {
  .logos-slide {
    gap: 3rem;
  }

  .logos-slide img {
    height: 30px;
  }

  .vclub-logo {
    height: 40px !important;
  }
}

/* Ultra-wide screens */
@media (min-width: 1280px) {
  .last-logo {
    margin-right: 10rem;
    margin-left: 5rem;
  }
}
