/** Shopify CDN: Minification failed

Line 85:0 Unexpected "}"
Line 137:0 Expected "}" to go with "{"

**/

.aboutus-section{
  background: linear-gradient(180deg, #215AE0 7.58%, #2055d2 30.61%);

}


.timeline {
  display: flex;
  gap: 30px;
}

.card-timeline {
  border-radius: 80px 80px 20px 20px;
  overflow: hidden;
  position: relative;
    z-index:99;
  background: url(history.jpg) no-repeat center;
  background-size: cover;
  height: 380px;
  width: 100%;
  width: 250px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 20px;
  transition: all 0.5s ease; /* Smooth transition for hover and active states */
  h3 {
    font-size: 68px;
    padding: 30px 0px;
    transform: rotate(-90deg);
    margin: 0;
    color: rgba(251, 196, 12, 1);
    font-family: "Gilroy-Bold", sans-serif;
    letter-spacing: 2px;
    transition: all 0.5s ease; /* Smooth transition for hiding */
  }
}
.card-timeline.expanded {
  width: 350px;
  width: 100%;
}
.card-timeline.expanded h3 {
  opacity: 0;
  display:none;
}
.card-timeline .card-detail{
  display:none;
  opacity:0;
}
.card-timeline.expanded .card-detail {
  opacity: 1;
  display:block;
  padding:30px 50px
}
.card-timeline.expanded{
  align-items:start;
}
.card-timeline.expanded .card-detail h4{
  color: rgba(251, 196, 12, 1);
  font-family: "Gilroy-Bold", sans-serif;
  font-size:32px;
  position:relative;
}
.card-timeline.expanded .card-detail h4:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 2px;
    background: #fff;
    width: 250px;
}
.card-timeline.expanded .card-detail p{
   color: #fff;
}
}


.content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
text-align:left;
}

.about-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color:#ffffff;

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 15px;
}

.image {
  flex: 1;
  max-width: 400px;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .image {
    max-width: 100%;
  }
}
