/* Base Reset & Typography */
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.5;
  color: #222;
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #e64900;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: underline;
}

/* Layout Helpers */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
.flex {
  display: flex;
}
.space-between {
  justify-content: space-between;
}
.v-center {
  align-items: center;
}
.wrap {
  flex-wrap: wrap;
}

/* Utility Classes */
.btn {
  background: #e64900;
  color: #fff;
  padding: 0.9rem 1.65rem;
  font-weight: 600;
  border: 0;
  display: inline-block;
  cursor: pointer;
  transition: 0.25s background, 0.25s transform;
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.btn.small {
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
}
.btn:hover,
.btn:focus {
  background: #ff641c;
  text-decoration: none;
}
.btn:active {
  transform: translateY(2px);
}
.btn.cta {
  font-size: 1rem;
}
.btn .arrow {
  margin-left: 0.5rem;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Top Bar */
.top-bar {
  background: #333;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}
.topbar-wrap {
  justify-content: flex-end;
}
.top-bar .bar-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.top-bar .bar-items li {
  position: relative;
  padding: 0.42rem 0 0.38rem;
}
.top-bar .bar-items li + li {
  padding-left: 2rem;
}
.top-bar .bar-items li + li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
}
.top-bar a {
  color: #fff;
}
.utility {
  padding: 0;
}
@media (max-width: 620px) {
  .top-bar .bar-items {
    gap: 1rem;
  }
  .top-bar .bar-items li + li {
    padding-left: 1rem;
  }
  .top-bar .bar-items li + li:before {
    height: 12px;
  }
  .top-bar {
    font-size: 0.62rem;
  }
}

/* Header Navigation */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 54px;
  width: auto;
  display: block;
}
.main-nav {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  justify-content:right;
}
.main-nav .nav-toggle {
  display: none;
  background: #e64900;
  color: #fff;
  border: 0;
  padding: 0.6rem 0.9rem;
  font-size: 1.1rem;
  cursor: pointer;
}
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.35rem;
  align-items: stretch;
}
.menu li {
  position: relative;
  display: flex;
  align-items: stretch;
}
.menu a,
.has-submenu > .submenu-toggle {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.95rem 1rem 0.85rem;
  line-height: 1;
  font-family: inherit;
}
.menu a small {
  font-weight: 400;
  text-transform: none;
  font-size: 0.55rem;
  color: #777;
  letter-spacing: 0.4px;
}
.menu a.active,
.menu a:hover,
.has-submenu > .submenu-toggle:hover {
  color: #e64900;
}
.has-submenu {
  padding: 0;
}
.has-submenu > .submenu-toggle {
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  color: #222;
  position: relative;
  padding: 0.95rem 1rem 0.85rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
}
.has-submenu > .submenu-toggle:after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 3px;
  transition: 0.25s transform;
  display: inline-block;
}
.has-submenu > .submenu-toggle[aria-expanded="true"]:after {
  transform: rotate(225deg) translateY(2px);
}
.has-submenu:hover > .submenu-toggle {
  color: #e64900;
}
.submenu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 100;
}
.submenu li {
  padding: 0;
}
.submenu a {
  padding: 0.55rem 0.9rem;
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
}
.submenu a:hover {
  background: #f5f5f5;
  color: #e64900;
}
.has-submenu:hover > .submenu {
  display: block;
}

/* Mobile submenu default hidden, toggled via JS */
@media (max-width: 820px) {
  .has-submenu {
    width: 100%;
  }
  .has-submenu > .submenu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.7rem 1rem;
  }
  .submenu {
    position: static;
    border: 0;
    box-shadow: none;
    background: #fafafa;
    padding: 0;
    display: none;
  }
  .submenu a {
    padding: 0.7rem 1.2rem;
    border-top: 1px solid #ececec;
  }
  .submenu.open {
    display: block;
  }
  .has-submenu:hover > .submenu {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 540px;
  background: #111;
  color: #fff;
  overflow: visible;
  margin-bottom: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/Design-OG/banner-03.jpg") center/cover no-repeat;
  filter: brightness(0.45);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0.7) 10%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
  mix-blend-mode: multiply;
}
.hero-content {
  position: relative;
  padding: 7rem 0 2.5rem;
  text-align: center;
  max-width: 780px;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: 3.6rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.lead {
  font-size: 0.9rem;
  font-weight: 300;
  margin: 0 auto 1.7rem;
  color: #eee;
}

/* Feature Panel overlay */
.feature-backdrop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -180px;
  width: 120%;
  max-width: 1800px;
  height: 420px;
  background: #ffffff;
  border-top-left-radius: 420px;
  border-top-right-radius: 420px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
  box-shadow: 0 -14px 40px -12px rgba(0, 0, 0, 0.13),
    0 -50px 110px -34px rgba(0, 0, 0, 0.2);
}
.feature-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -140px;
  z-index: 3;
}
.feature-cards {
  border-radius: 22px;
  box-shadow: 0 20px 54px -16px rgba(0, 0, 0, 0.28),
    0 10px 30px -12px rgba(0, 0, 0, 0.22);
}
.feature-cards {
  display: flex;
  gap: 0;
  background: #d93f00;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.feature-cards.cards-flat {
  background: linear-gradient(90deg, #ff5205 0%, #e43700 100%);
  padding: 2rem 0 1.6rem;
  border-radius: 0;
}
.feature-cards.cards-flat .card {
  background: transparent;
  padding: 0 2rem;
  display: block;
}
.feature-cards.cards-flat .card.highlight {
  background: transparent;
}
.feature-cards.cards-flat .card + .card {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.feature-cards.cards-flat .icon-wrap {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: 48px;
  line-height: 1;
  padding: 0;
  margin: 0 12px 0 0;
  display: inline-flex;
  align-items: flex-start;
}
.feature-cards.cards-flat .icon-wrap .ic {
  display: block;
  width: 52px;
  height: 52px;
}
.feature-cards.cards-flat .icon-wrap .ic * {
  vector-effect: non-scaling-stroke;
}
.feature-cards.cards-flat .ic-erp circle {
  stroke: #ffffff;
}
.feature-cards.cards-flat .ic-erp path {
  stroke: #ffffff;
}
.feature-cards.cards-flat .ic-pmt * {
  stroke: #ffffff;
}
.feature-cards.cards-flat .ic-case * {
  stroke: #ffffff;
}
.feature-cards.cards-flat .card h3 {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: #fff;
}
.feature-cards.cards-flat .card p {
  margin: 0 0 0.9rem;
  max-width: 230px;
  font-size: 0.7rem;
  line-height: 1.35;
  color: #fff;
}
.feature-cards.cards-flat .card .btn.small {
  background: #f2b400;
  color: #222;
  font-size: 0.6rem;
  padding: 0.38rem 0.75rem;
  letter-spacing: 0.3px;
  border-radius: 0;
}
.feature-cards.cards-flat .card .btn.small:hover {
  background: #ffca28;
  color: #111;
}
.cards-flat .card-arrows {
  display: none;
}

@media (max-width: 980px) {
  .feature-cards.cards-flat {
    flex-direction: column;
    padding: 1.6rem 1.4rem 1.4rem;
  }
  .feature-cards.cards-flat .card {
    padding: 0 0 1.4rem;
  }
  .feature-cards.cards-flat .card + .card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
  .feature-cards.cards-flat .card p {
    max-width: 100%;
  }
}
.card {
  flex: 1;
  background: #d93f00;
  color: #fff;
  padding: 2.6rem 2rem 2.2rem;
  position: relative;
  font-size: 0.75rem;
  line-height: 1.4;
}
.card.highlight {
  background: #ff5205;
}
.card + .card {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.card h3 {
  margin: 0.2rem 0 0.9rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.card .btn.small {
  margin-top: 0.7rem;
  background: #222;
}
.card .btn.small:hover {
  background: #000;
}
.icon-wrap {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d93f00;
  font-weight: 700;
  font-size: 1.2rem;
}
.icon.erp:before {
  content: "Q";
}
.icon.pmt:before {
  content: "\1F464";
}
.icon.case:before {
  content: "\1F4BC";
}
.card-arrows {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
}
.arrow-btn {
  background: #b33000;
  color: #fff;
  border: 0;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s background;
}
.arrow-btn:hover {
  background: #ff641c;
}
.panel-wave {
  display: none !important;
}

/* Columns Utility (reused in footer) */
.columns-3 {
  display: flex;
  gap: 3rem;
}
.columns-3 .col {
  flex: 1;
  min-width: 200px;
}
/* Social & Newsletter (shared) */
.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6rem;
}
.soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d9d9d9;
  color: #222;
  font-weight: 600;
  font-size: 0.8rem;
  transition: 0.25s background, 0.25s color;
}
.soc:hover {
  background: #e64900;
  color: #fff;
}
.soc svg { width:18px; height:18px; fill:#fff; }
.social-list .soc.fb { background:#1877F2; }
.social-list .soc.x { background:#000; }
.social-list .soc.yt { background:#FF0000; }
.social-list .soc.in { background:#0a66c2; }
/* Removed .soc.gp (Google Plus deprecated) */
.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.newsletter input {
  flex: 1;
  padding: 0.55rem 0.7rem;
  border: 1px solid #ccc;
  font-size: 0.7rem;
  font-family: inherit;
}
.newsletter input:focus {
  outline: 2px solid #ff5205;
  outline-offset: 1px;
}

/* Unified Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid #e2e2e2;
  font-size: 0.7rem;
  color: #555;
  padding: 3.4rem 0 2.4rem;
}
.footer-cols {
  display: flex;
  gap: 3.4rem;
  width: 90%;
  max-width: 1180px;
  margin: 0 auto 1.6rem;
}
.footer-cols .col h2 {
  font-size: 1rem;
  margin: 0.2rem 0 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #e64900;
}
.footer-cols .col p {
  font-size: 0.68rem;
  margin: 0 0 0.6rem;
  line-height: 1.5;
}
.footer-cols .col:nth-child(2) h2,
.footer-cols .col:nth-child(3) h2 {
  color: #222;
}
.footer-line {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto 1.2rem;
  border: 0;
  height: 1px;
  background: #e2e2e2;
}
.bottom-meta {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.bottom-meta p {
  margin: 0;
}
.bottom-meta a {
  color: #e64900;
}
.social-list .soc.fb {
  background: #3b5998;
  color: #fff;
}
.social-list .soc.tw {
  background: #1da1f2;
  color: #fff;
}
.social-list .soc.gp {
  background: #dd4b39;
  color: #fff;
}
.social-list .soc.in {
  background: #0a66c2;
  color: #fff;
}
.newsletter {
  max-width: 320px;
}
.newsletter input {
  background: #fff;
}
@media (max-width: 860px) {
  .footer-cols {
    flex-direction: column;
    gap: 2.2rem;
  }
  .newsletter {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .newsletter input {
    flex: 1 1 100%;
  }
  .newsletter .btn {
    flex: 0 0 auto;
  }
}

/* Icons (simple placeholders) */
.icon {
  font-style: normal;
}

/* Mobile & Responsive */
@media (max-width: 980px) {
  .hero h1 {
    font-size: 3rem;
  }
  .feature-backdrop {
    bottom: -200px;
    height: 400px;
    width: 150%;
  }
  .feature-panel {
    bottom: -160px;
  }
}

@media (max-width: 820px) {
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    flex-direction: column;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.25);
    width: 250px;
    padding: 0.5rem 0 1rem;
  }
  .menu.open {
    display: flex;
  }
  .main-nav .nav-toggle {
    display: inline-block;
  }
  .menu li {
    padding: 0.5rem 1rem;
  }
  .feature-cards {
    flex-direction: column;
  }
  .feature-panel {
    position: static;
    margin-top: -140px;
    z-index: 20;
  }
  .feature-backdrop {
    display: none;
  }
  .panel-wave {
    display: none;
  }
  .columns-3 {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-content {
    padding: 6rem 0 2rem;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .lead {
    font-size: 0.8rem;
  }
  .main-nav .nav-toggle {
    display: inline-block;
  }
  .site-header .container {
    justify-content: space-between;
  }
  .main-nav {
    flex: 0 0 auto;
  }
  .card {
    padding: 2rem 1.4rem 1.8rem;
  }
  .top-bar ul {
    flex-wrap: wrap;
  }
  .top-bar {
    text-align: center;
  }
  .newsletter {
    flex-direction: column;
  }
  .newsletter input {
    width: 100%;
  }
  .newsletter .btn {
    width: 100%;
    text-align: center;
  }
}

/* Focus Styles Accessible */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #222;
  outline-offset: 2px;
}
button {
  font-family: inherit;
}


/* ================= Contact Page ================= */
.contact-main {
  padding: 2.5rem 0 4rem;
  font-size: 0.75rem;
  width:50%;
}
.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  letter-spacing: 0.4px;
}
.contact-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin: 3.2rem 0 0.6rem;
  letter-spacing: 0.4px;
}
.contact-intro {
  margin: 0 0 1rem;
  color: #555;
  font-size: 0.66rem;
}
.contact-section,
.contact-form-section,
.contact-offices {
  position: relative;
}
.contact-section:after,
.contact-form-section:after,
.contact-offices:after {
  content: "";
  display: block;
  height: 1px;
  background: #e3e3e3;
  margin: 1.4rem 0 0;
}

/* Contact info cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.contact-card {
  display: flex;
  background: #f3f3f3;
  border: 1px solid #e6e6e6;
  padding: 0.65rem 0.9rem;
  gap: 0.9rem;
  align-items: center;
}
.cc-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cc-phone {
  background: #ff5205;
  color: #fff;
}
.cc-mail {
  background: #555;
  color: #fff;
}
.cc-skype {
  background: #00a9f5;
  color: #fff;
}
.cc-body {
  line-height: 1.3;
}
.cc-lead {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
}
.cc-data {
  margin: 0;
  font-size: 0.68rem;
  word-break: break-word;
}
.cc-data a {
  color: #e64900;
}
.cc-phone-number span {
  letter-spacing: 1px;
}

/* Form */
.contact-form {
  max-width: 620px;
}
.form-row {
  display: flex;
  flex-direction: column;
  margin: 0 0 0.8rem;
}
.form-row label {
  font-weight: 600;
  font-size: 0.62rem;
  margin: 0 0 0.25rem;
  letter-spacing: 0.5px;
}
.form-row input,
.form-row textarea {
  font-family: inherit;
  font-size: 0.65rem;
  padding: 0.55rem 0.55rem;
  border: 1px solid #dedede;
  background: #f7f7f7;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid #ff5205;
  outline-offset: 1px;
  background: #fff;
}
.req {
  color: #e64900;
}
.form-actions {
  margin-top: 1.2rem;
}
.form-actions .submit-btn {
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.65rem;
  background: #ff5205;
}
.form-actions .submit-btn:hover {
  background: #e64900;
}

/* Offices */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.2rem;
  margin-top: 1.4rem;
}
.office h3 {
  margin: 0.2rem 0 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.office address {
  font-style: normal;
  line-height: 1.4;
  font-size: 0.62rem;
  color: #444;
}

@media (max-width: 760px) {
  .contact-subtitle {
    margin: 2.4rem 0 0.6rem;
  }
  .contact-form {
    max-width: 100%;
  }
  .offices-grid {
    gap: 1.6rem;
  }
}
@media (max-width: 520px) {
  .contact-title {
    font-size: 1.1rem;
  }
  .contact-cards {
    gap: 0.6rem;
  }
  .cc-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .contact-main {
    padding: 2rem 1rem 3rem;
    width:100%;
  }
}

/* Hero adjustments for embedded cards */
.hero-content {
  padding: 7rem 0 2.5rem;
}

.hero-cards {
  width: 100%;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
}
.hero-cards .feature-cards {
  margin: 0 auto 0;
}

/* Transition white curved block below hero */
.below-cards-transition {
  background: #fff;
  height: 120px;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  margin-top: -120px;
  position: relative;
  z-index: 1;
  box-shadow: 0 -10px 34px -14px rgba(0, 0, 0, 0.18);
}

/* Disable old backdrop/panel (not used now) */
.feature-backdrop,
.feature-panel {
  display: none !important;
}

@media (max-width: 980px) {
  /* So previous responsive rules don't interfere */
  .below-cards-transition {
    height: 110px;
    margin-top: -55px;
    border-top-left-radius: 110px;
    border-top-right-radius: 110px;
  }
}

@media (max-width: 820px) {
  .below-cards-transition {
    height: 90px;
    margin-top: -50px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
  .hero-content {
    padding: 6rem 0 2rem;
  }
}

@media (max-width: 520px) {
  .below-cards-transition {
    height: 70px;
    margin-top: -40px;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
  }
}

/* ===== About Page ===== */
.about-main {
  min-height: 50vh;
  padding: 3.5rem 0 4rem;
  font-size: 0.75rem;
  line-height: 1.5;
  width:50%;
}
.about-main h1 {
  font-size: 1.4rem;
  margin: 0 0 0.8rem;
  letter-spacing: 0.5px;
}
.about-sub {
  margin: 0 0 1.4rem;
  font-size: 0.68rem;
  color: #666;
}
.case-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: #e64900;
  margin: 2rem 0 0.6rem;
  letter-spacing: 0.4px;
  text-transform: none;
}
.about-main p {
  margin: 0 0 1rem;
  font-size: 0.63rem;
  color: #333;
}
.about-list {
  margin: 0.4rem 0 1.2rem 1.2rem;
  padding: 0;
  list-style: disc;
  font-size: 0.63rem;
  color: #333;
}
.about-list li {
  margin: 0 0 0.35rem;
}
.about-list ul {
  margin: 0.35rem 0 0 1.2rem;
  list-style: circle;
}

@media (max-width: 620px) {
  .about-main {
    padding: 3rem 1rem 3.2rem;
    width: 100%;

  }
  .about-main h1 {
    font-size: 1.25rem;
  }
}

/* Disable transitions & animations for hero background and cards */
.hero,
.hero-bg,
.feature-cards,
.card {
  animation: none !important;
  transition: none !important;
}

/* Disable transitions & animations for all heading elements and site header */
h1, h2, h3, h4, h5, h6, .site-header {
  animation: none !important;
  transition: none !important;
}

/* (Optional) if any descendants were inheriting animations */
.hero * .feature-cards * {
  animation: none !important;
  transition: none !important;
}
