@charset "UTF-8";
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
main {
  overflow: hidden;
}

.about-secA {
  background: var(--gray);
  height: calc(100vh - 140px);
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .about-secA {
    height: calc(50vh - 140px);
  }
}
.about-secA img, .about-secA video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-secA::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 40%, rgba(102, 102, 102, 0) 94%);
}
.about-secA .container {
  position: relative;
  height: 100%;
}
.about-secA .content {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  max-width: 350px;
}
@media only screen and (max-width: 768px) {
  .about-secA .content {
    bottom: 50px;
    max-width: 300px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .content {
    bottom: 35px;
    max-width: 90%;
  }
}
.about-secA .content h1 {
  color: var(--white);
  margin-bottom: 10px;
}
@media only screen and (max-width: 540px) {
  .about-secA .content h1 {
    font-size: clamp(28px, 7vw, 40px);
  }
}
.about-secA .content p {
  color: var(--white);
  opacity: 0.7;
}
@media only screen and (max-width: 540px) {
  .about-secA .content p {
    font-size: 14px;
  }
}

.about-secB {
  padding: 70px 0;
}
@media only screen and (max-width: 991px) {
  .about-secB {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB {
    padding: 40px 0;
  }
}
.about-secB .content {
  width: 100%;
  max-width: 975px;
  margin: 0 auto;
  text-align: center;
}
.about-secB .content p {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
}
.about-secB .content h6 {
  font-size: 32px;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .about-secB .content h6 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 768px) {
  .about-secB .content h6 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB .content h6 {
    font-size: 18px;
  }
}
.about-secB .content h6:last-child {
  color: var(--text);
}

.about-secC {
  background: rgb(242, 249, 255);
  padding: 70px 0;
}
@media only screen and (max-width: 991px) {
  .about-secC {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .about-secC {
    padding: 40px 0;
  }
}
.about-secC .heading {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 540px) {
  .about-secC .heading {
    margin-bottom: 2rem;
  }
}
.about-secC .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .about-secC .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .about-secC .grid {
    grid-template-columns: 1fr;
  }
}
.about-secC .grid .card {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 10px;
}
@media only screen and (max-width: 540px) {
  .about-secC .grid .card {
    padding: 24px 20px;
  }
}
.about-secC .grid .card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}
@media only screen and (max-width: 540px) {
  .about-secC .grid .card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }
}
.about-secC .grid .card .icon img, .about-secC .grid .card .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-secC .grid .card h5 {
  margin-bottom: 10px;
}
.about-secC .grid .card .hover-content {
  position: absolute;
  inset: 0;
  background: #4da3d9;
  color: #fff;
  padding: 40px;
  transform: translateY(100%);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 540px) {
  .about-secC .grid .card .hover-content {
    padding: 24px 20px;
  }
}
.about-secC .grid .card .hover-content p {
  color: var(--white);
  font-size: 14px;
  margin-top: 10px;
}
.about-secC .grid .card:hover .hover-content {
  transform: translateY(0);
}

.about-secD {
  background: #fff;
  padding: 70px 0;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 991px) {
  .about-secD {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .about-secD {
    padding: 30px 0;
  }
}

.journey-heading {
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
}
@media only screen and (max-width: 991px) {
  .journey-heading {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 540px) {
  .journey-heading {
    margin-bottom: 20px;
  }
}

.timeline-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
}
@media only screen and (max-width: 991px) {
  .timeline-wrapper {
    margin-bottom: 45px;
    gap: 10px;
    padding: 0 5px;
  }
}
@media only screen and (max-width: 540px) {
  .timeline-wrapper {
    margin-bottom: 25px;
    gap: 6px;
  }
}

.timeline-nav {
  z-index: 5;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}
.timeline-nav svg {
  width: 45px;
  height: 45px;
  stroke: var(--secondary);
  transition: stroke 0.3s ease;
  display: block;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .timeline-nav svg {
    width: 35px;
    height: 35px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 540px) {
  .timeline-nav svg {
    width: 28px;
    height: 28px;
    margin-bottom: 20px;
  }
}
.timeline-nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.timeline-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.year-swiper {
  position: relative;
  z-index: 2;
  padding: 15px 0;
}
@media only screen and (max-width: 540px) {
  .year-swiper {
    padding: 10px 0;
  }
}
.year-swiper .swiper-wrapper {
  justify-content: space-between;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: 23px;
  background: #e0e0e0;
  z-index: 1;
}
@media only screen and (max-width: 540px) {
  .timeline-line {
    top: 16px;
  }
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--secondary);
  transition: width 0.45s ease;
}

.year-dot {
  position: relative;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 540px) {
  .year-dot {
    height: 50px;
  }
}
.year-dot::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e0e0e0;
  transition: all 0.3s ease;
  z-index: 3;
  flex-shrink: 0;
}
@media only screen and (max-width: 540px) {
  .year-dot::before {
    width: 12px;
    height: 12px;
    border-width: 2px;
  }
}
.year-dot.passed::before, .year-dot.active::before {
  background: var(--secondary);
  border-color: var(--secondary);
}
.year-dot:hover:not(.active)::before {
  transform: scale(1.15);
  border-color: var(--secondary);
}

.year-label {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 540px) {
  .year-label {
    margin-top: 8px;
    font-size: 11px;
  }
}

.year-dot.active .year-label {
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
}
@media only screen and (max-width: 540px) {
  .year-dot.active .year-label {
    font-size: 13px;
  }
}

.journey-content {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .journey-content {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .journey-content {
    margin-top: 30px;
  }
}

.journey-swiper {
  overflow: visible;
}

.journey-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.journey-slide.swiper-slide-active {
  opacity: 1;
  transform: translateY(0);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 75px;
  align-items: center;
}
@media only screen and (max-width: 1280px) {
  .content-grid {
    gap: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .content-grid {
    gap: 20px;
  }
}

.grid-column {
  display: flex;
  flex-direction: column;
}

.year-column {
  padding-top: 10px;
}
@media only screen and (max-width: 991px) {
  .year-column {
    padding-top: 0;
    text-align: center;
    order: 2;
  }
}
.year-column .year-title {
  margin-bottom: 12px;
}
@media only screen and (max-width: 540px) {
  .year-column .year-title {
    font-size: clamp(28px, 7vw, 40px);
  }
}

@media only screen and (max-width: 991px) {
  .image-column {
    order: 1;
  }
}
.image-column img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width: 991px) {
  .text-column {
    order: 3;
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 540px) {
  .text-column {
    width: 100%;
  }
}
.text-column p {
  color: #555;
  font-size: 14px;
  text-align: center;
}
.text-column p:not(:last-child) {
  margin-bottom: 8px;
}
.text-column ul {
  margin-bottom: 20px;
  margin-top: 10px;
  padding-left: 25px;
}
.text-column ul li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-size: 14px;
}
.text-column ul li:not(:last-child) {
  margin-bottom: 8px;
}
.text-column ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}

.about-secE {
  padding: 70px 0 0;
  background: rgb(245, 245, 245);
}
@media only screen and (max-width: 991px) {
  .about-secE {
    padding: 50px 0 30px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secE {
    padding: 40px 0 20px;
  }
}
.about-secE .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}
@media only screen and (max-width: 991px) {
  .about-secE .grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secE .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.about-secE .item-left {
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .about-secE .item-left {
    padding-bottom: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .about-secE .item-left {
    padding-bottom: 0;
  }
}
.about-secE .item-left p {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}
.about-secE .item-left h5 {
  margin: 4rem 0 3rem;
}
@media only screen and (max-width: 768px) {
  .about-secE .item-left h5 {
    margin: 2rem 0 2rem;
  }
}
@media only screen and (max-width: 540px) {
  .about-secE .item-left h5 {
    margin: 1.5rem 0 1.5rem;
    font-size: clamp(16px, 4vw, 20px);
  }
}
@media only screen and (max-width: 991px) {
  .about-secE .item-left .name {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.about-secE .item-left .name h6 {
  font-size: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 540px) {
  .about-secE .item-left .name h6 {
    font-size: 17px;
    margin-top: 15px;
  }
}
.about-secE .item-left .name p {
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  color: var(--text);
}
.about-secE .item-img {
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 991px) {
  .about-secE .item-img {
    order: -1;
    justify-content: center;
  }
}
.about-secE .item-img img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .about-secE .item-img img {
    max-width: 400px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secE .item-img img {
    max-width: 280px;
  }
}
.about-secE .item-quots {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .about-secE .item-quots {
    display: none;
  }
}
.about-secE .item-quots img {
  max-width: 120px;
}

.about-secF {
  padding: 70px 0;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .about-secF {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .about-secF {
    padding: 40px 0;
  }
}
.about-secF .heading {
  text-align: center;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .about-secF .heading {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 540px) {
  .about-secF .heading {
    margin-bottom: 2rem;
  }
}
.about-secF .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .about-secF .wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secF .wrap {
    gap: 35px;
  }
}
.about-secF .image {
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .about-secF .image {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
}
.about-secF .image img {
  width: 100%;
  border-radius: 10px;
}
.about-secF .timeline {
  position: relative;
  padding-left: 70px;
}
@media only screen and (max-width: 540px) {
  .about-secF .timeline {
    padding-left: 55px;
  }
}
.about-secF .timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -50px;
  bottom: 0;
  width: 1px;
  background: rgb(48, 48, 48);
  height: 100vh;
}
.about-secF .timeline .item {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 540px) {
  .about-secF .timeline .item {
    margin-bottom: 16px;
  }
}
.about-secF .timeline .item .dot {
  position: absolute;
  left: -75px;
  top: 6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgb(48, 48, 48);
  background: #fff;
}
@media only screen and (max-width: 540px) {
  .about-secF .timeline .item .dot {
    left: -60px;
    width: 28px;
    height: 28px;
  }
}
.about-secF .timeline .item .dot::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 540px) {
  .about-secF .timeline .item .dot::before {
    font-size: 16px;
  }
}
.about-secF .timeline .item .content {
  background: transparent;
  padding: 15px 20px;
  border-radius: 6px;
  transition: 0.3s;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .about-secF .timeline .item .content {
    padding: 12px 16px;
  }
}
.about-secF .timeline .item .content h4 {
  font-size: 18px;
}
@media only screen and (max-width: 540px) {
  .about-secF .timeline .item .content h4 {
    font-size: 16px;
  }
}
.about-secF .timeline .item .content p {
  display: none;
  margin-top: 8px;
  color: var(--white);
  font-size: 14px;
}
.about-secF .timeline .item .content .btn-arrow {
  position: absolute;
  top: 20px;
  left: -20px;
  opacity: 0;
}
.about-secF .timeline .item.active .dot {
  background: #fff;
}
.about-secF .timeline .item.active .dot::before {
  content: "−";
}
.about-secF .timeline .item.active .content {
  background: var(--primary-light);
  color: #fff;
  width: 100%;
  max-width: 450px;
}
@media only screen and (max-width: 768px) {
  .about-secF .timeline .item.active .content {
    max-width: 100%;
  }
}
.about-secF .timeline .item.active .content p {
  display: block;
}
.about-secF .timeline .item.active .content .btn-arrow {
  opacity: 1;
}/*# sourceMappingURL=about.css.map */