@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

:root {
  --selection-color: #3685b6;
  --primary-color: #2b65f5;
  --linear-gradient: linear-gradient(45deg, #162ba2, #060c2c);
}

::selection {
  background-color: var(--primary-color);
  color: white;
}

body {
  background-color: black;
}

::-webkit-scrollbar {
  width: 3px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background-color: #072072;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: black;
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  transition: transform 0.1s ease;
}

.navbar-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: black; */
  z-index: 9999;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 4vw, 40px) clamp(40px, 8vw, 100px);
}

.main-logo {
  width: 100px;
}

.navbar-section > div > img {
  width: 150.67px;
  height: 50.33px;
  object-fit: contain;
}

.navlinks > ul {
  display: flex;
  gap: 10px;
  list-style: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.402);
  padding-top: 10px;
  padding-bottom: 13px;
  padding-left: 7px;
  padding-right: 7px;
  border-radius: 30px;
  background-color: #000000;
}

.navlinks > ul > li > a {
  text-decoration: none;
  color: white;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 300;
  opacity: 0.5;
  transition: opacity 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

.navlinks > ul > li > .active {
  animation: fadeIn 0.4s ease forwards;
  border: 1px solid rgba(255, 255, 255, 0.877);
  border-radius: 30px;
  background-color: rgb(89, 89, 89);
}
.ctnbtn {
  background-color: white;
  border-radius: 50px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  color: black;
  font-size: 0.8rem;
}

.ctnbtn:hover {
  background-color: black;
  color: white;
  border: 1px solid white;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  height: 2px;
  width: 25px;
  background: white;
  border-radius: 5px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-scrolled {
  background-color: rgba(0, 0, 0, 0.9); /* Smooth dark overlay */
  transition: background-color 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-section {
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  /* margin-top: 11rem; */
  background-image: url(../images/Home-Banner.jpg);
  background-size: cover;
  background-position: center;
}

.hero-section > .achieved {
  font-size: 10.67px;
  font-weight: 400;
  line-height: 10px;
  border: 1px solid #0f3a85;
  padding: 1px 8px 2px 2px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.hero-section > h1 {
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin: 10px;
}

.hero-section > .tagline {
  font-size: clamp(14px, 1.6vw, 16.67px);
  font-weight: 200;
  margin: 15px 0;
  color: rgb(230, 230, 230);
  line-height: 20px;
}

.main-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
}

.howitworks-btn {
  background-color: transparent;
  border-radius: 10px;
  padding: 8px 20px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.402);
}
.howitworks-btn:hover {
  background-color: rgba(139, 139, 139, 0.402);
  border: 1px solid rgba(72, 72, 72, 0.402);
  transition-duration: 200ms;
}

.howitworks-btn > span > img {
  padding-top: 5px;
  height: 19px;
}

.schedule-btn > span > img {
  padding-top: 5px;
  height: 19px;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0) invert(1);
}

.schedule-btn:hover > span > img {
  transform: rotate(-90deg);
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(190deg)
    brightness(0.6);
}

.schedule-btn {
  position: relative;
  overflow: hidden;
  background-color: #2b65f5;
  border-radius: 10px;
  font-weight: 300;
  padding: 8px 20px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid 330099;
  transition: color 0.6s ease;
  z-index: 1;
}

.schedule-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) scale(0);
  width: 500px;
  height: 500px;
  background: white;
  border-radius: 50%;
  transition: transform 1.2s ease;
  z-index: -1;
  pointer-events: none;
}

.schedule-btn:hover::before {
  transform: translate(-50%, -50%) scale(1.2);
}

.schedule-btn > span,
.schedule-btn > span > img,
.schedule-btn::after {
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease;
}

.schedule-btn:hover > span > img {
  transform: rotate(-70deg);
}

.schedule-btn:hover {
  color: #2b65f5;
}

.hero-animation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-animation video {
  max-width: 80%;
  height: 350px !important;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.desgin-hero-animation video {
  max-width: 80%;
  height: 200px !important;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trusted-patner {
  padding: 50px 20px;
  color: white;
}

.trusted-patner > h1 {
  font-weight: 300;
  line-height: 40px;
  margin: 10px auto;
  text-align: center;
  padding-bottom: 20px;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: white;
}

.sub-trusted-patner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  background-color: #191818;
  padding: 40px 20px;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  width: fit-content;
  animation: scroll-left 25s linear infinite;
}

.marquee-content.reverse {
  animation: scroll-right 25s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content img {
  height: 80px;
  margin-right: 50px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.buss-loader {
  position: relative;
  width: 120px;
  height: 120px;
}

.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #3a5ccb;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.static {
  width: 28px;
  height: 28px;
}

.elevate-your-business {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(16px, 3vw, 24px) clamp(40px, 8vw, 100px);
}

.elevate-your-business-text > p {
  color: var(--primary-color);
  font-size: 20px;
  margin: 20px 0;
}

.elevate-your-business-text > h3 {
  color: white;
  font-size: 2rem;
  font-weight: 300;
  margin: 15px 0;
  line-height: 1.4;
}

.buss-loader-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

.buss-loader {
  position: relative;
  width: 120px;
  height: 120px;
}

.rotating {
  width: 100%;
  height: 100%;
  animation: segmentedSmoothRotate 10s linear forwards infinite;
  transform-origin: center center;
}

@keyframes segmentedSmoothRotate {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(120deg);
  }
  33% {
    transform: rotate(120deg);
  }

  48% {
    transform: rotate(240deg);
  }
  66% {
    transform: rotate(240deg);
  }

  81% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(58, 92, 203);
  height: 45px;
  width: 45px;
  padding: 15px;
  border-radius: 50%;
}

.static {
  width: 27px;
  height: 27px;
}

.buss-description {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.badge-icon {
  display: flex;
  align-items: center;
}

.outer-circle {
  width: 40px;
  height: 40px;
  border: 2px dashed #865dff;
  border-radius: 50%;
  margin-right: -15px;
}

.inner-circle {
  background: #865dff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.inner-circle img {
  width: 20px;
  height: 20px;
}

.buss-description p {
  color: rgb(210, 210, 210);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
}

.buss-description p span.highlight {
  color: #865dff;
  font-weight: 300;
}

.elevate-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
  padding: clamp(30px, 6vw, 90px);
}

.elevate-card > div {
  background-color: #101216;
  color: white;
  padding: 50px 20px;
  border-radius: 15px;
  width: 100%;
}
.elevate-card > div:hover {
  transition-delay: 20ms;
}
.elevate-card > div:first-child {
  padding: 38px 20px;
}
.elevate-card-item {
  width: 30%;
  padding: 150px 20px;
}

.elevate-card-item > div {
  background-color: #1e2024;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  height: 50px;
  width: 50px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.elevate-card-item > div > img {
  width: 40px;
  height: 40px;
  color: white;
}

.elevate-card-item > h6 {
  font-weight: 300;
  font-size: 20px;
  margin-top: 30px;
  color: white;
}

.elevate-card-item > .card-title {
  font-weight: 300;
  font-size: 14px;
  margin: 15px 0;
  color: #a7a7a7;
  padding-bottom: 20px;
}

.elevate-card-item:hover {
  background: var(--linear-gradient) !important;
  transition: background 0.6s ease;
}

.elevate-card-item:hover > div {
  background: var(--primary-color) !important;
  transition: background 0.6s ease;
}
.elevate-card-item:hover > p {
  color: white;
}

.elevate-card-item {
  position: relative;
  padding: 20px;
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.know-more-btn {
  display: none;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #1a73e8;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.elevate-card-item:hover .know-more-btn {
  display: inline-block;
}

.more-content {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-text {
  font-weight: 300;
  font-size: 14px;
  margin: 15px 0;
  color: #7b7b7b;
  line-height: 20px;
}

.why-choose-us {
  padding: clamp(16px, 3vw, 24px) clamp(40px, 8vw, 100px);
  margin-bottom: clamp(30px, 5vw, 50px);
}

.why-choose-us-subhead > p {
  color: var(--primary-color);
}

.why-choose-us-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding-bottom: 50px;
}

.why-choose-us-text > h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: white;
  font-weight: 300;
}

.why-choose-us-text > p {
  color: #c4c4c4;
  text-align: right;
  font-weight: 200;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background-color: #101216;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.card {
  color: white;
  padding: 20px;
  border-radius: 15px;
}

.card > img {
  margin-bottom: 10px;
  height: 23px;
  width: 23px;
}

.card .empty-card {
  width: 30px;
  height: 30px;
  background-color: black;
  border-radius: 5px;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: background-color 0.4s ease;
}

.card-wrapper > .card:hover {
  background: var(--linear-gradient) !important;
  transition: background 0.6s ease;
  color: white;
}

.card-wrapper > .card:hover p {
  color: white;
}

.card > h3 {
  color: white;
  font-weight: 300;
  font-size: 1rem;
}

.card > p {
  color: #868686;
  font-weight: 300;
  font-size: 0.9rem;
  margin: 10px 0;
}

.card:hover {
  transform: translateY(-5px);
}

.faq-section {
  padding: clamp(16px, 3vw, 24px) clamp(40px, 8vw, 100px);
  margin-bottom: clamp(40px, 6vw, 90px);
}
.faq-section-subhead {
  color: #687be6;
  font-size: 1.1rem;
}
.faq-section-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding-bottom: 50px;
}

.faq-section-text > div > h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: rgb(255, 255, 255);
  font-weight: 300;
}
.faq-section-text > div > p {
  font-size: 1rem;
  text-align: right;
  color: #c4c4c4;
  font-weight: 200;
}
.faq-container {
  max-width: auto;
  margin: auto;
  text-align: start;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 30px;
  cursor: pointer;
  background: #1c1919;
  color: #c4c4c4;
  transition: background 0.3s;
  font-weight: 300;
  font-size: 1.1rem;
}

.faq-question:hover {
  background: #4d4d4d;
  color: black;
}

.faq-answer {
  padding: 30px;
  display: none;
  color: #798ceb;
  font-size: 1.1rem;
  background-color: #1c1919;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

footer {
  padding: clamp(24px, 4vw, 40px) clamp(40px, 8vw, 100px);
  background-color: #101113;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.footer-col {
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 40px;
  color: #ffffff;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.footer-contact p {
  margin: 20px 0;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 200;
  color: #f1f1f1;
}
.footer-col ul li {
  margin: 25px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #7e7e7e;
}
.footer-contact > p > img {
  margin-right: 10px;
  background-color: #6c6c6c4a;
  padding: 7px;
  border-radius: 7px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #838383;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

.social-icons {
  margin-top: 40px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #6c6c6c;
  padding: 5px 5px 2px 5px;
  background-color: #6c6c6c68;
  border-radius: 6px;
}
.main-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  border-top: 1px solid #505050;
}

.footer-bottom {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem) !important;
  color: #969696;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 200;
  margin-top: 40px;
}

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1e1e1e;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 15px;
  z-index: 9999;
}

#cookie-consent-banner button {
  background-color: #330099;
  border: none;
  color: white;
  padding: 8px 16px;
  margin: 10px 8px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

#cookie-consent-banner button:hover {
  background-color: #642cd3;
}

@media (max-width: 426px) {
  .hero-section {
    padding-top: 50px;
  }

  .navlinks {
    width: 100%;
  }
  .navlinks > ul {
    border-radius: unset;
    background-color: rgb(28, 28, 28);
    width: 100%;
    padding: 30px 20px !important;
    text-align: center;
  }
  .navlinks > ul > li > .active {
    border-radius: 50px;
    padding: 5px 10px;
  }
  .navlinks > ul > li > a {
    font-size: 1rem;
    padding-bottom: 1rem;
  }
  .trusted-patner {
    margin-top: 50px;
    padding: 5px 20px;
  }
  .elevate-your-business {
    padding: 0 20px;
  }
  .elevate-card-item {
    width: unset !important;
  }
  .why-choose-us {
    /* padding: 20px; */
    text-align: center;
    margin: unset !important;
  }
  .why-choose-us-text > p {
    text-align: center;
  }
  .why-choose-us-text {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    margin: unset;
  }
  .elevate-your-business-text {
    margin-bottom: unset !important;
  }
  .faq-section {
    /* padding: 20px; */
    text-align: center;
  }
  .faq-section-text > div > p {
    text-align: center;
  }
  #cookie-consent-banner {
    display: none;
  }
  .main-footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .tagline {
    font-size: 13.67px !important;
    max-width: 300px;
  }
  .schedule-btn {
    padding: 8px 13px;
  }
  .elevate-your-business-text > p {
    font-size: 15px;
  }
  .elevate-your-business-text > h3 {
    font-size: 1.3rem;
  }
  .faq-item {
    text-align: left;
  }
  .faq-section {
    margin-bottom: 15px;
  }
  .faq-section-text {
    margin: unset;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .faq-question {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 50px;
  }
  .navlinks {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: rgb(28, 28, 28);
    padding: 20px 0;
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .navlinks.active {
    display: flex;
  }

  .navlinks > ul > li > .active {
    border-radius: 50px;
    padding: 5px 10px;
  }
  .navlinks > ul {
    flex-direction: column;
    gap: 15px;
    border: none;
    background-color: rgb(28, 28, 28);
    /* background-color: rebeccapurple; */
    width: 50%;
    font-size: 1.5rem;
    text-align: center;
  }

  .navlinks ul li a {
    padding: 10px 0;
  }

  .ctnbtn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-section {
    padding: 100px 20px;
  }

  .right-section {
    gap: 10px;
  }

  .elevate-your-business {
    flex-direction: column;
    text-align: center;
  }

  .elevate-card {
    flex-direction: column;
  }

  .buss-loader-section {
    flex-direction: column;
  }

  .why-choose-us-text,
  .faq-section-text {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer {
    flex-direction: column;
    /* padding: 30px 20px; */
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .main-buttons {
    flex-direction: column;
  }

  .elevate-card > div:first-child {
    padding: 20px;
  }
  /* .elevate-card-item {
    width: 80%;
  } */
  .why-choose-us-text {
    align-items: start;
  }

  .faq-section-text {
    align-items: start;
  }
  .intro {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .elevate-your-business {
    flex-direction: column;
    text-align: center;
  }

  .elevate-your-business-text {
    margin-bottom: 20px;
  }

  .elevate-card {
    flex-direction: column;
    /* padding: 30px; */
  }

  .why-choose-us-text {
    flex-direction: column;
    text-align: center;
  }

  .faq-section-text {
    flex-direction: column;
    text-align: center;
  }

  .elevate-card > div:first-child {
    padding: 20px;
  }

  .why-choose-us-text {
    align-items: start;
  }

  .faq-section-text {
    align-items: start;
  }
}

.scroll-container {
  scroll-behavior: auto;
}

@media (min-width: 390px) and (max-width: 440px) and (min-height: 844px) and (max-height: 956px) {
  .hero-section {
    margin-top: 8rem;
    padding-bottom: unset;
  }

  .elevate-your-business {
    padding: unset !important;
  }

  .why-choose-us-subhead > p {
    text-align: center;
  }
  .faq-section {
    text-align: center;
  }
  .faq-section-text > div {
    width: 100%;
  }
  .faq-section-text > div > h1 {
    display: inline-block;
    text-align: center;
  }
  .why-choose-us-text > h1 {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}
