```css
/* =========================================
   USER.CSS — QMS INTERNATIONAL
   Corporate / Business / Consulting Style
========================================= */

/* ================================
   BASE
================================ */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: #2f3438;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

/* ================================
   DISABLE BOOTSTRAP / ELIXIR
   AGGRESSIVE FONT UTILITIES
================================ */

.fs-1,
.fs-2,
.fs-3,
.fs-4,
.fs-5,
.fs-6,
.fs-sm-1,
.fs-sm-2,
.fs-sm-3,
.fs-sm-4,
.fs-sm-5,
.fs-sm-6,
.fs-md-1,
.fs-md-2,
.fs-md-3,
.fs-md-4,
.fs-md-5,
.fs-md-6,
.fs-lg-1,
.fs-lg-2,
.fs-lg-3,
.fs-lg-4,
.fs-lg-5,
.fs-lg-6,
.fs-xl-1,
.fs-xl-2,
.fs-xl-3,
.fs-xl-4,
.fs-xl-5,
.fs-xl-6 {
  font-size: inherit !important;
  line-height: inherit !important;
}

/* ================================
   HEADINGS
   Premium corporate scale
================================ */

h1,
.h1,
h1[class*="fs-"] {
  font-size: 2.1rem !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em;
  color: #1f2933;
  margin: 0 0 .9rem;
}

h2,
.h2,
h2[class*="fs-"] {
  font-size: 1.7rem !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: #1f2933;
  margin: 0 0 .8rem;
}

h3,
.h3,
h3[class*="fs-"] {
  font-size: 1.4rem !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em;
  color: #26313d;
  margin: 0 0 .7rem;
}

h4,
.h4,
h4[class*="fs-"] {
  font-size: 1.2rem !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  color: #26313d;
  margin: 0 0 .6rem;
}

h5,
.h5,
h5[class*="fs-"] {
  font-size: 1.05rem !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  color: #26313d;
  margin: 0 0 .5rem;
}

h6,
.h6,
h6[class*="fs-"] {
  font-size: .92rem !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
   letter-spacing: .04em;
  color: #4b5563;
  margin: 0 0 .45rem;
}

/* ================================
   TEXT
================================ */

p,
li {
  font-size: 1rem;
  line-height: 1.75;
  color: #444b53;
  text-align: left;
}

.text-center p,
.text-center li {
  text-align: center;
}

.lead {
  font-size: 1.08rem !important;
  line-height: 1.7 !important;
  font-weight: 400;
  color: #4b5563;
}

.text-500 {
  color: #6b7280 !important;
}

small,
.small {
  font-size: .875rem;
  line-height: 1.55;
}

/* ================================
   LINKS
================================ */

a {
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  text-decoration: none;
}

/* ================================
   NAVBAR
================================ */

.navbar-elixir {
  margin: 0 !important;
  padding: 0 !important;
  min-height: auto !important;
}

.sticky-top.navbar-elixir {
  top: 0;
  z-index: 1050;
}

.navbar-brand img {
  max-height: 56px;
  width: auto;
}

.navbar-nav .nav-link {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ================================
   HERO / BACKGROUND
================================ */

.bg-holder,
.bg-holder.overlay {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* ================================
   CARDS
================================ */

.card {
  border: 0 !important;
  border-radius: 1rem !important;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, .055);
}

.card-body {
  padding: 1.4rem;
}

.card-title {
  font-size: 1.15rem !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}

/* ================================
   ICONS
   Only affects assets/img/icons/
================================ */

img[src*="/icons/"] {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain;
  display: inline-block;
  border-radius: 0 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ================================
   IMAGES
================================ */

.card img,
figure img,
main img:not(.navbar-brand img):not(.footer img):not([src*="logo"]):not([src*="/icons/"]) {
  border-radius: 1rem;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.card img:hover,
figure img:hover,
main img:not(.navbar-brand img):not(.footer img):not([src*="logo"]):not([src*="/icons/"]):hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.navbar-brand img,
.footer img,
img[src*="logo"],
img[src*="/icons/"] {
  transform: none !important;
  box-shadow: none !important;
}

/* ================================
   BUTTONS
================================ */

.btn {
  border-radius: 999px !important;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

/* ================================
   SPACING
================================ */

section {
  position: relative;
}

.py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.pt-6 {
  padding-top: 4.5rem !important;
}

.pb-6 {
  padding-bottom: 4.5rem !important;
}

/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

  h1,
  .h1,
  h1[class*="fs-"] {
    font-size: 1.9rem !important;
    line-height: 1.23 !important;
  }

  h2,
  .h2,
  h2[class*="fs-"] {
    font-size: 1.55rem !important;
  }

  h3,
  .h3,
  h3[class*="fs-"] {
    font-size: 1.3rem !important;
  }

  h4,
  .h4,
  h4[class*="fs-"] {
    font-size: 1.12rem !important;
  }

  h5,
  .h5,
  h5[class*="fs-"] {
    font-size: 1rem !important;
  }

  h6,
  .h6,
  h6[class*="fs-"] {
    font-size: .9rem !important;
  }

  .lead {
    font-size: 1.02rem !important;
  }

  .navbar-brand img {
    max-height: 50px;
  }

  img[src*="/icons/"] {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px;
    min-height: 36px;
    max-width: 36px !important;
    max-height: 36px !important;
  }

  .py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .pt-6 {
    padding-top: 4rem !important;
  }

  .pb-6 {
    padding-bottom: 4rem !important;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 575px) {

  body {
    font-size: 15.5px;
  }

  h1,
  .h1,
  h1[class*="fs-"] {
    font-size: 1.62rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em;
  }

  h2,
  .h2,
  h2[class*="fs-"] {
    font-size: 1.38rem !important;
    line-height: 1.28 !important;
  }

  h3,
  .h3,
  h3[class*="fs-"] {
    font-size: 1.2rem !important;
  }

  h4,
  .h4,
  h4[class*="fs-"] {
    font-size: 1.08rem !important;
  }

  h5,
  .h5,
  h5[class*="fs-"] {
    font-size: 1rem !important;
  }

  h6,
  .h6,
  h6[class*="fs-"] {
    font-size: .86rem !important;
  }

  p,
  li {
    font-size: .95rem;
    line-height: 1.7;
  }

  .lead {
    font-size: .98rem !important;
    line-height: 1.65 !important;
  }

  .navbar-brand img {
    max-height: 46px;
  }

  .card-body {
    padding: 1.2rem;
  }

  .py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .pt-6 {
    padding-top: 3.5rem !important;
  }

  .pb-6 {
    padding-bottom: 3.5rem !important;
  }

  img[src*="/icons/"] {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px !important;
    max-height: 32px !important;
  }
}
```
.ceo-image-column{display:flex;overflow:hidden;}.ceo-image{width:100%;height:100%;object-fit:cover;object-position:center top;display:block;}@media(max-width:991.98px){.ceo-image-column{display:block!important;}.ceo-image{width:100%!important;height:auto!important;object-fit:contain!important;}}