.elementor-5430 .elementor-element.elementor-element-e92e2db{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-d45bace */@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');

.about-page {
  font-family: 'Titillium Web', sans-serif;
}

/* ================= BLOCK ================= */
.about-block {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 90px 5%;
  position: relative;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

/* ================= TEXT ================= */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 45px;
  margin-bottom: 10px;
}

.heading-divider {
  width: 60px;
  height: 3px;
  background: #c32131;
  margin: 12px 0 20px 0;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
  transition: 0.3s;
}

.about-text p:hover {
  color: #000;
}

/* ================= IMAGE (FIXED + VERTICAL) ================= */
.about-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

/* THIS IS THE MAIN CHANGE */
.about-image img {
  width: 70%;              /* makes it vertical instead of full width */
  height: 520px;           /* makes it tall */

  object-fit: cover;
  object-position: center;

  transition: 0.6s ease;
}

/* FRAME */
.about-image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20%;
  width: 70%;
  height: 520px;

  border: 2px solid #c32131;

  z-index: -1;
  transition: 0.4s ease;
}

/* HOVER */
.about-image:hover img {
  transform: scale(1.05);
}

.about-image:hover::after {
  top: 10px;
  left: 18%;
}

/* DEPTH LINE */
.about-block::before {
  content: "";
  position: absolute;
  left: 5%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0,0,0,0.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {

  .about-block {
    flex-direction: column;
  }

  .about-block.reverse {
    flex-direction: column;
  }

  .about-block::before {
    display: none;
  }

  .about-image img {
    width: 100%;
    height: 400px;
  }

  .about-image::after {
    display: none;
  }
}

@media (max-width: 768px) {

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-block {
    padding: 60px 5%;
  }

  .about-image img {
    height: 300px;
  }
}/* End custom CSS */