/* =====================================================
   GLOBAL PAGE CONTAINER WIDTH FIX
   Har page me left-right space same rahega
====================================================== */

.wrap,
.container,
.page-wrap,
.section-wrap {
  width: min(1840px, calc(100% - 80px)) !important;
  max-width: 1840px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Large screen */
@media (min-width: 1600px) {
  .wrap,
  .container,
  .page-wrap,
  .section-wrap {
    width: min(1900px, calc(100% - 90px)) !important;
    max-width: 1900px !important;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .wrap,
  .container,
  .page-wrap,
  .section-wrap {
    width: calc(100% - 44px) !important;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .wrap,
  .container,
  .page-wrap,
  .section-wrap {
    width: calc(100% - 28px) !important;
  }
}