* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
}

.main-hero {
  background: url("../images/startup_background_image.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 50%;
  width: 100%;
  padding: 100px 60px 140px 20px;
  text-align: center;
}

.main-hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.main-hero p {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1.2rem;
}

.startup-image {
  max-height: 300px;
  border-radius: 20px;
}

.growth-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 10px;
}

.features {
  background: url("../images/startup_growth_banner_image.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.features .features-card {
  background: #f0f4f8;
  color: #155265;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0509803922);
}

.heading-text {
  color: #155265;
}

.btn.primary {
  background-color: #155265;
  color: white;
  margin-left: 20px;
}

.d-status {
  display: flex !important;
}

h2 {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 400;
}

.company-banner {
  background-image: url("../images/gradient-banner-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 50%;
  width: 100%;
  border-radius: 8px;
  justify-content: center;
}

.midmarket-main-hero {
  background: url("../images/midmarket_cover_image.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 50%;
  width: 100%;
  padding: 100px 60px 350px 20px;
  text-align: left;
}

.market-growth {
  width: 42em;
  height: 18em;
}

.accordion-header {
  cursor: pointer;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
}

.accordion-button::after {
  display: none !important;
}

.accordion-button {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px !important;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  padding: 1rem;
  height: 120px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  color: #212529;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.0509803922);
}

.accordion-button:hover {
  background-color: #155265;
  color: white;
}

.accordion-body {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: transform 0.5s ease;
}

.accordion-arrow img {
  width: 18px;
  height: 18px;
  transition: transform 0.8s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #155265;
  color: white;
  box-shadow: none;
}

.accordion-button:hover .accordion-arrow img {
  transform: rotate(180deg);
}

.midmarket-image {
  max-height: 440px;
  border-radius: 20px;
  margin-right: 20px;
}

.accordion-header:hover + .accordion-collapse,
.accordion-button:hover + .accordion-collapse {
  display: block !important;
  visibility: visible;
  height: auto !important;
  max-height: 500px;
  opacity: 1;
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
}

@keyframes accordion-open {
  from {
    max-height: 0;
  }
  to {
    max-height: 500px;
  }
}
@keyframes accordion-close {
  from {
    max-height: 500px;
  }
  to {
    max-height: 0;
  }
}
.accordion-header:hover + .accordion-collapse {
  animation: accordion-open 1.5s ease forwards;
}

.accordion-header:not(:hover) + .accordion-collapse {
  animation: accordion-close 1.5s ease forwards;
}

.enterprise-main-hero {
  background: url("../images/enterprise_main_cover_image.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 40%;
  width: 100%;
  padding: 30px 60px 250px 20px;
  text-align: left;
}

.enterprise-main-div {
  text-align: left;
}

.enterprise-image {
  width: 45em;
  height: 18em;
  border-radius: 20px;
}

.enterprise-growth-feature {
  display: flex;
  justify-content: space-between;
  margin: 0px 10px;
  align-items: center;
}

.enterprise-sub-heading {
  width: 40em;
}

/*# sourceMappingURL=company.css.map */