.elementor-5296 .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;}.elementor-5296 .elementor-element.elementor-element-15a9281{--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;}.elementor-5296 .elementor-element.elementor-element-f4573b0{--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 */
/* Start custom CSS for html, class: .elementor-element-9256235 */@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');

.team-section {
  padding: 80px 5%;
  font-family: 'Titillium Web', sans-serif;
}

/* HEADER */
.team-header {
  text-align: center;
  margin-bottom: 50px;
}

.team-header h2 {
  font-size: 45px;
  font-weight: 700;
}

.heading-divider {
  width: 60px;
  height: 3px;
  background: #c32131;
  margin: 10px auto 20px;
}

.team-header p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.team-card {
  background: #fff;
  border-radius: 1px;
  overflow: hidden;
  transition: 0.4s;
  border: 1px solid #eee;
}

/* IMAGE */
.team-img {
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER EFFECT */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-card:hover img {
  transform: scale(1.05);
}

/* INFO */
.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-info span {
  font-size: 14px;
  color: #c32131;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .team-header h2 {
    font-size: 28px;
  }

  .team-header p {
    font-size: 15px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-img img {
    height: 250px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-555b66f */@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');

.team-section {
  padding: 80px 5%;
  font-family: 'Titillium Web', sans-serif;
}

/* HEADER */
.team-header {
  text-align: center;
  margin-bottom: 40px;
}

.team-header h2 {
  font-size: 45px;
}

.heading-divider {
  width: 60px;
  height: 3px;
  background: #c32131;
  margin: 10px auto;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.team-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* STRIP */
.team-strip {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  color: #111;

  padding: 12px 16px;

  /* THIN DEFAULT */
  height: 65px;

  transition: 0.3s ease;
}

/* RED LINE */
.team-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #c32131;
  transition: 0.3s;
}

/* TEXT */
.team-strip h3 {
  margin: 0;
  font-size: 17px;
}

.team-strip span {
  font-size: 12px;
  color: #c32131;
}

/* HOVER EFFECT */
.team-card:hover img {
  transform: scale(1.05);
}

.team-card:hover .team-strip {
  height: 80px; /* slight expansion only */
}

.team-card:hover .team-strip::before {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .team-header h2 {
    font-size: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 250px;
  }
}/* End custom CSS */