/* #Media Queries
================================================== */
@media (min-width:1400px) and (max-width:1499px) {
} 

/* END__ */

@media (min-width:1200px) and (max-width:1399px) {
.header .logo{  min-height: auto;}
.header { padding: 15px;}
} 
/* END__ */

@media (min-width:992px) and (max-width:1199px) {
.section{ padding: 60px 0;}
.header .header-menu{ display: none;}
.header .logo{ width: 100%; min-height: auto;}
.header { padding: 15px;}
} 
/* END__ */

@media (min-width:768px) and (max-width:991px) {
.section{ padding: 48px 0;}
.header .header-menu{ display: none;}
.header .logo{ width: 100%; min-height: auto;}
.header { padding: 15px;}
} 
/* END__ */

@media only screen and (max-width:767px) {
.section{ padding: 24px 0;}
.header .header-menu{ display: none;}
.footer-top .menu{ flex-direction: row; column-gap: 24px; row-gap: 8px; flex-wrap: wrap;}
.header .logo{ width: 100%; min-height: auto;}
.header { padding: 15px;}
} 
/* END__ */

@media only screen and (max-width:374px) {
} 
/* END__ */





/* =========================
   HEADER FIX
========================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 5px solid #ec1d25;
}

/* =========================
   LOGO WRAPPER
========================= */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* LOGO IMAGE */
.logo img {
  width: 150px;
  height: auto;
}

/* =========================
   LOGO TEXT
========================= */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* FIRST LINE */
.logo-text .title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* SECOND LINE */
.logo-text .sub-title {
  font-size: 18px;

}

/* =========================
   DESKTOP MENU ALIGN
========================= */
.header-menu {
  display: flex;
  align-items: center;
}

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

/* TABLET */
@media (max-width: 992px) {

  .header-menu {
    display: none;
  }

  .logo img {
    width: 60px;
  }

  .logo-text .title {
    font-size: 16px;
  }

  .logo-text .sub-title {
    font-size: 13px;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .logo {
    gap: 8px;
  }

  .logo img {
    width: 50px;
  }

  .logo-text .title {
    font-size: 14px;
  }

  .logo-text .sub-title {
    font-size: 12px;
  }
}










.inner-page-banner {
    position: relative;
    width: 100%;
    height: 400px !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    margin-top: 9%;
}


/* Overlay */

.inner-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(38, 52, 137, 0.6);
    z-index: 1;
}


/* Make content above overlay */

.inner-page-banner .container {
    position: relative;
    z-index: 2;
}


/* ✅ Mobile */

@media (max-width: 576px) {
    .inner-page-banner {
        height: 200px !important;		
        margin-top: 0px;
    }
    .inner-page-banner h1 {
        font-size: 22px !important;
    }
}


/* ✅ Tablet */

@media (min-width: 577px) and (max-width: 991px) {
    .inner-page-banner {
        height: 300px !important;
        margin-top: 0px;
    }
    .inner-page-banner h1 {
        font-size: 32px;
    }
}


/* ✅ Desktop */

@media (min-width: 992px)and (max-width: 1024px) {
    .inner-page-banner {
        height: 400px !important;
        margin-top: 0px;
    }
    .inner-page-banner h1 {
        font-size: 42px;
    }
}
@media (min-width: 1025px) {
    .inner-page-banner {
        height: 400px !important;
        margin-top: 0px;
    }
    .inner-page-banner h1 {
        font-size: 42px;
    }
}
.inner-page-banner .container {
    position: relative;
    z-index: 2;
}

.inner-page-banner h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}






















