/* Start custom CSS for html, class: .elementor-1030 .elementor-element.elementor-element-c7e2b9b */
/* ==========================================================================
   TABANI GROUPE - ABOUT PAGE STYLING ARCHITECTURE
   ========================================================================== */

/* --- SECTION 1: HERO BANNER --- */
.about-hero-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 140px 0 100px 0;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 46, 90, 0.94) 0%, rgba(15, 27, 54, 0.88) 100%);
    z-index: 1;
}

.about-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-breadcrumb-link {
    color: #7A8394 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-breadcrumb-link:hover {
    color: #FFFFFF !important;
}

.about-breadcrumb-separator {
    color: #7A8394;
}

.about-breadcrumb-current {
    color: #FFFFFF;
}

.about-preheading {
    display: inline-block;
    color: #7A8394;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-main-title {
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 46px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    max-width: 800px;
    margin: 0 0 20px 0;
}

.about-subtext {
    color: #E2E8F0 !important;
    font-family: 'Inter', sans-serif;
    font-size: 18px !important;
    line-height: 1.6 !important;
    max-width: 720px;
    margin: 0;
}

/* --- SECTION 2: COMPANY PROFILE --- */
.about-profile-section {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.about-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-profile-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.profile-col-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.profile-col-image {
    flex: 1;
}

.profile-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #7A8394;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.profile-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1.25 !important;
    margin: 0 0 15px 0;
}

.profile-decorator {
    width: 50px;
    height: 3px;
    background-color: #1B2E5A;
    margin-bottom: 30px;
}

.profile-paragraph-accent {
    font-family: 'Inter', sans-serif;
    font-size: 18px !important;
    line-height: 1.65 !important;
    color: #1B2E5A !important;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.profile-paragraph-standard {
    font-family: 'Inter', sans-serif;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #4B5563 !important;
    margin: 0;
}

.profile-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    aspect-ratio: 4 / 3;
}

.profile-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SECTION 3: CORE PILLARS GRID --- */
.about-pillars-section {
    background-color: #F9FAFB;
    padding: 100px 0;
    border-top: 1px solid #E5E7EB;
}

.about-pillars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.pillar-card-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.pillar-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.pillar-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 991px) {
    .about-profile-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    .about-pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-main-title {
        font-size: 32px !important;
    }
    .profile-title {
        font-size: 28px !important;
    }
}
/* End custom CSS */
/* Start custom CSS for e-flexbox, class: .elementor-1030 .elementor-element.elementor-element-1f0a27d */
/* End custom CSS */
/* Start custom CSS for html, class: .elementor-1030 .elementor-element.elementor-element-863e406 */
/*==========================================================
  TABANI GROUPE — ABOUT PAGE: COMPANY PROFILE SECTION
  Depends on the brand tokens in tabani-hero-section.css
  (--tg-navy, --tg-navy-deep, --tg-accent, --tg-slate-soft,
  fonts, .tg-eyebrow, .tg-container, --tg-radius,
  --tg-shadow-lg). Load that file first.
==========================================================*/

.tg-profile{
  padding:100px 0;
  background:var(--tg-white);
  overflow:hidden;
}

.tg-profile__grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:80px;
  align-items:center;
}

/*=====================================
LEFT — CONTENT
======================================*/

.tg-profile__content h2{
  font-family:var(--tg-font-head);
  font-weight:800;
  font-size:clamp(28px, 3.4vw, 42px);
  line-height:1.15;
  letter-spacing:-.5px;
  color:var(--tg-navy-deep);
  margin:18px 0 0;
}

.tg-profile__decorator{
  display:block;
  width:64px;
  height:4px;
  border-radius:2px;
  margin:26px 0 30px;
  background:linear-gradient(90deg, var(--tg-navy) 0%, var(--tg-accent) 100%);
  position:relative;
}
.tg-profile__decorator::after{
  content:"";
  position:absolute;
  left:76px;
  top:50%;
  transform:translateY(-50%);
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--tg-accent);
}

.tg-profile__lede{
  font-family:var(--tg-font-body);
  font-weight:600;
  color:var(--tg-navy-deep);
  font-size:18px;
  line-height:1.7;
  margin:0 0 20px;
  padding-left:20px;
  border-left:3px solid var(--tg-accent);
}

.tg-profile__text{
  font-family:var(--tg-font-body);
  color:var(--tg-ink-muted);
  font-size:15.5px;
  line-height:1.85;
  max-width:56ch;
  margin:0 0 34px;
}

/*=====================================
CREDENTIAL BADGES
======================================*/

.tg-profile__badges{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.tg-profile__badges li{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:var(--tg-slate-soft);
  color:var(--tg-navy);
  font-family:var(--tg-font-body);
  font-weight:700;
  font-size:13px;
  padding:10px 16px;
  border-radius:30px;
}
.tg-profile__badges svg{
  width:15px;
  height:15px;
  flex:none;
}

/*=====================================
RIGHT — IMAGE
======================================*/

.tg-profile__visual{
  position:relative;
}

/* offset frame accent sits behind the photo — the section's
   signature device, giving the image depth without needing a
   second photo */
.tg-profile__frame-accent{
  position:absolute;
  top:-28px;
  right:-28px;
  width:100%;
  height:100%;
  background:var(--tg-navy);
  border-radius:var(--tg-radius);
  z-index:0;
}
.tg-profile__frame-accent::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:22px 22px;
  border-radius:var(--tg-radius);
}

.tg-profile__image-frame{
  position:relative;
  z-index:1;
  border-radius:var(--tg-radius);
  overflow:hidden;
  box-shadow:var(--tg-shadow-lg);
  aspect-ratio:4/5;
}
.tg-profile__image-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.tg-profile__tag{
  position:relative;
  z-index:2;
  display:inline-block;
  margin-top:-24px;
  margin-left:28px;
  background:var(--tg-white);
  color:var(--tg-navy-deep);
  font-family:var(--tg-font-head);
  font-weight:700;
  font-size:13.5px;
  padding:12px 22px;
  border-radius:10px;
  box-shadow:0 14px 30px -12px rgba(18,32,63,.35);
}

/*=====================================
RESPONSIVE
======================================*/

@media (max-width:1000px){
  .tg-profile__grid{
    grid-template-columns:1fr;
    gap:64px;
  }
  .tg-profile__visual{
    order:-1;
    max-width:440px;
    margin:0 auto;
  }
  .tg-profile__frame-accent{
    top:-18px;
    right:-18px;
  }
}

@media (max-width:640px){
  .tg-profile{ padding:70px 0; }
  .tg-profile__lede{ font-size:16.5px; }
  .tg-profile__badges{ flex-direction:column; align-items:flex-start; }
  .tg-profile__tag{ margin-left:16px; font-size:12.5px; padding:10px 16px; }
}
/* End custom CSS */
/* Start custom CSS for e-flexbox, class: .elementor-1030 .elementor-element.elementor-element-a9b2acd */
/* End custom CSS */
/* Start custom CSS for html, class: .elementor-1030 .elementor-element.elementor-element-09008b8 */
/* End custom CSS */
/* Start custom CSS for e-flexbox, class: .elementor-1030 .elementor-element.elementor-element-e736951 */
/* End custom CSS */
/* Start custom CSS for html, class: .elementor-1030 .elementor-element.elementor-element-263eb3f */
/* ==========================================================================
   TABANI GROUPE - ABOUT INFRASTRUCTURE SECTION STYLING
   ========================================================================== */

.about-infrastructure-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    width: 100%;
}

.infrastructure-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Content Layout */
.infrastructure-header {
    max-width: 800px;
    margin-bottom: 50px;
    text-align: left;
}

.infra-pretitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #7A8394;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.infra-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #1B2E5A !important; /* Unified Tabani Navy */
    line-height: 1.25 !important;
    margin: 0 0 15px 0;
}

.infra-decorator {
    width: 60px;
    height: 4px;
    background-color: #1B2E5A;
    margin-bottom: 20px;
    border-radius: 2px;
}

.infra-lead-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: #4B5563 !important;
    margin: 0;
}

/* Symmetrical Panels Split Grid Layout */
.infrastructure-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.infra-panel-card {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27, 46, 90, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.infra-panel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(27, 46, 90, 0.08);
}

.infra-panel-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #E5E7EB;
}

.infra-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.infra-panel-card:hover .infra-panel-image img {
    transform: scale(1.04);
}

.infra-panel-meta {
    padding: 35px;
}

.infra-panel-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1B2E5A;
    margin: 0 0 12px 0;
}

.infra-panel-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS (STACK PANELS MOBILE)
   ========================================================================== */
@media (max-width: 991px) {
    .infrastructure-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .infra-main-title {
        font-size: 28px !important;
    }
    
    .infra-panel-meta {
        padding: 25px;
    }
}
/* End custom CSS */
/* Start custom CSS for e-flexbox, class: .elementor-1030 .elementor-element.elementor-element-86f8f6a */
/* End custom CSS */
/* Start custom CSS for html, class: .elementor-1030 .elementor-element.elementor-element-72129c0 */
/* ==========================================================================
   TABANI GROUPE - ABOUT CAPACITY SECTION STYLING Matrix
   ========================================================================== */

.tabani-capacity-section {
    width: 100%;
    padding: 100px 0;
    background-color: #F9FAFB; /* Off-white container canvas to drop cleanly out of Section 4 */
    font-family: 'Inter', sans-serif;
}

.capacity-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Component Configuration */
.capacity-header {
    max-width: 800px;
    margin-bottom: 50px;
    text-align: left;
}

.capacity-pretitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #7A8394;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.capacity-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #1B2E5A !important; /* Brand Identity Navy Blueprint */
    line-height: 1.25 !important;
    margin: 0 0 15px 0;
}

.capacity-decorator {
    width: 60px;
    height: 4px;
    background-color: #1B2E5A;
    margin-bottom: 20px;
    border-radius: 2px;
}

.capacity-lead-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: #4B5563 !important;
    margin: 0;
}

/* Symmetrical Metric Panel Array */
.capacity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.capacity-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.capacity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(27, 46, 90, 0.06);
}

.capacity-icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: rgba(27, 46, 90, 0.05); /* Soft corporate brand accent layer tint */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.capacity-svg {
    width: 24px;
    height: 24px;
    color: #1B2E5A;
}

.capacity-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1B2E5A;
    margin: 0 0 12px 0;
}

.capacity-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4B5563;
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONSTRAINTS
   ========================================================================== */
@media (max-width: 768px) {
    .capacity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capacity-main-title {
        font-size: 28px !important;
    }
    
    .capacity-card {
        padding: 30px 20px;
    }
}
/* End custom CSS */
/* Start custom CSS for e-flexbox, class: .elementor-1030 .elementor-element.elementor-element-d90051a */
/* End custom CSS */
/* Start custom CSS for e-flexbox, class: .elementor-1030 .elementor-element.elementor-element-efb501e */
/* End custom CSS */
/* Start custom CSS for html, class: .elementor-1030 .elementor-element.elementor-element-c24ebed */
/*==========================================================
  TABANI GROUPE — B2B LEAD INTAKE / CONTACT FORM SECTION
  Depends on the brand tokens in tabani-hero-section.css
  (--tg-navy, --tg-navy-deep, --tg-accent, --tg-slate-soft,
  fonts, .tg-eyebrow, .tg-container, --tg-radius,
  --tg-shadow-lg). Load that file first.
==========================================================*/

.tabani-contact-form-section{
  padding:100px 0;
  background:var(--tg-slate-soft);
}

.contact-form-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:72px;
  align-items:center;
}

/*=====================================
LEFT — INTRO + TRUST CONTENT
======================================*/

.form-main-title{
  font-family:var(--tg-font-head);
  font-weight:800;
  font-size:clamp(28px, 3.2vw, 38px);
  line-height:1.2;
  letter-spacing:-.4px;
  color:var(--tg-navy-deep);
  margin:18px 0 0;
}
.form-decorator{
  display:block;
  width:64px;
  height:4px;
  border-radius:2px;
  margin:24px 0 22px;
  background:linear-gradient(90deg, var(--tg-navy) 0%, var(--tg-accent) 100%);
}
.form-lead-text{
  font-family:var(--tg-font-body);
  color:var(--tg-ink-muted);
  font-size:15.5px;
  line-height:1.8;
  max-width:48ch;
  margin:0 0 40px;
}

.contact-form-trust{
  list-style:none;
  margin:0 0 40px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.contact-form-trust li{
  display:flex;
  align-items:flex-start;
  gap:16px;
}
.contact-form-trust__icon{
  flex:none;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--tg-white);
  color:var(--tg-navy);
  border-radius:12px;
  box-shadow:0 8px 20px -12px rgba(18,32,63,.3);
}
.contact-form-trust__icon svg{
  width:18px;
  height:18px;
}
.contact-form-trust h3{
  font-family:var(--tg-font-head);
  font-weight:700;
  font-size:15px;
  color:var(--tg-navy-deep);
  margin:0 0 4px;
}
.contact-form-trust p{
  font-family:var(--tg-font-body);
  font-size:13.5px;
  color:var(--tg-ink-muted);
  margin:0;
  line-height:1.6;
}

.contact-form-altcontact{
  font-family:var(--tg-font-body);
  font-size:14.5px;
  color:var(--tg-ink-muted);
  line-height:1.9;
  padding-top:24px;
  border-top:1px solid #DEE2EA;
}
.contact-form-altcontact a{
  color:var(--tg-navy);
  font-weight:700;
  text-decoration:none;
}
.contact-form-altcontact a:hover{
  text-decoration:underline;
}

/*=====================================
RIGHT — FORM CARD
======================================*/

.contact-form-card{
  background:var(--tg-white);
  border-radius:var(--tg-radius);
  box-shadow:var(--tg-shadow-lg);
  padding:40px 38px;
}

/*=====================================
CONTACT FORM 7 — GENERIC FIELD STYLING
Targets CF7's default output classes so whatever fields are
configured in the CF7 admin inherit the brand look. Safe to
keep even if some .elementor-1030 .elementor-element.elementor-element-c24ebeds don't match your exact field set.
======================================*/

.tabani-cf7-render-engine .wpcf7-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.tabani-cf7-render-engine p{
  margin:0;
}
.tabani-cf7-render-engine label{
  display:block;
  font-family:var(--tg-font-body);
  font-weight:700;
  font-size:13.5px;
  color:var(--tg-navy-deep);
  margin-bottom:8px;
}
.tabani-cf7-render-engine input[type="text"],
.tabani-cf7-render-engine input[type="email"],
.tabani-cf7-render-engine input[type="tel"],
.tabani-cf7-render-engine input[type="url"],
.tabani-cf7-render-engine select,
.tabani-cf7-render-engine textarea{
  width:100%;
  font-family:var(--tg-font-body);
  font-size:14.5px;
  color:var(--tg-ink);
  background:var(--tg-white);
  border:1.5px solid #E1E5EC;
  border-radius:10px;
  padding:13px 16px;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.tabani-cf7-render-engine textarea{
  min-height:120px;
  resize:vertical;
}
.tabani-cf7-render-engine input:focus,
.tabani-cf7-render-engine select:focus,
.tabani-cf7-render-engine textarea:focus{
  outline:none;
  border-color:var(--tg-navy);
  box-shadow:0 0 0 3px rgba(27,46,90,.12);
}
.tabani-cf7-render-engine input::placeholder,
.tabani-cf7-render-engine textarea::placeholder{
  color:var(--tg-ink-muted);
  opacity:.7;
}

.tabani-cf7-render-engine .wpcf7-submit{
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--tg-navy);
  color:var(--tg-white);
  font-family:var(--tg-font-body);
  font-weight:700;
  font-size:15px;
  border:none;
  padding:15px 32px;
  border-radius:10px;
  cursor:pointer;
  box-shadow:var(--tg-shadow-lg);
  transition:transform .3s ease, background .3s ease;
}
.tabani-cf7-render-engine .wpcf7-submit:hover{
  transform:translateY(-3px);
  background:var(--tg-navy-light, #2C4680);
}

.tabani-cf7-render-engine .wpcf7-spinner{
  margin-left:12px;
  vertical-align:middle;
}
.tabani-cf7-render-engine .wpcf7-not-valid-tip{
  display:block;
  font-family:var(--tg-font-body);
  font-size:12.5px;
  color:#C0392B;
  margin-top:6px;
}
.tabani-cf7-render-engine .wpcf7-response-output{
  font-family:var(--tg-font-body);
  font-size:14px;
  border-radius:10px;
  padding:14px 18px;
  margin-top:20px;
  border-width:1.5px;
}

/*=====================================
RESPONSIVE
======================================*/

@media (max-width:1000px){
  .contact-form-grid{
    grid-template-columns:1fr;
    gap:48px;
  }
}

@media (max-width:640px){
  .tabani-contact-form-section{ padding:70px 0; }
  .contact-form-card{ padding:28px 22px; }
  .tabani-cf7-render-engine .wpcf7-submit{ width:100%; justify-content:center; }
}
/* End custom CSS */
/* Start custom CSS for e-flexbox, class: .elementor-1030 .elementor-element.elementor-element-28a5e79 */
/* End custom CSS */
/* Start custom CSS for e-flexbox, class: .elementor-1030 .elementor-element.elementor-element-0e12817 */
/* End custom CSS */