:root {
  --font-family-sans: "ZohoPuvi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --color-primary: #3B73F2;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-blue: #274EA3;
  --text-color: #262e3e;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-family-sans);
  color: var(--text-color);
  font-weight: 300;
  min-height: 100vh;
  line-height: 1.5;
}

.npm-main-wrapper *,
.npm-main-wrapper *::before,
.npm-main-wrapper *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.npm-main-wrapper h1,
.npm-main-wrapper h2,
.npm-main-wrapper h3,
.npm-main-wrapper h4,
.npm-main-wrapper h5,
.npm-main-wrapper h6,
.npm-main-wrapper p {
  color: var(--text-color);
}
.npm-main-wrapper h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.npm-main-wrapper h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
}
.npm-main-wrapper h5 {
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 14px;
}
.npm-main-wrapper h6 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
}
.npm-main-wrapper p {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 24px;
}
.npm-main-wrapper a {
  color: var(--color-primary);
}
.npm-main-wrapper .m-0 {
  margin: 0 !important;
}
.npm-main-wrapper .mb-0 {
  margin-bottom: 0 !important;
}
.npm-main-wrapper .mb-2 {
  margin-bottom: 8px !important;
}
.npm-main-wrapper .mb-3 {
  margin-bottom: 12px !important;
}
.npm-main-wrapper .mt-3 {
  margin-top: 12px !important;
}
.npm-main-wrapper .mt-4 {
  margin-top: 32px !important;
}
.npm-main-wrapper .mb-4 {
  margin-bottom: 32px !important;
}
.npm-main-wrapper .text-center {
  text-align: center;
}
.npm-main-wrapper .text-white {
  color: var(--color-white) !important;
}
.npm-main-wrapper .btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.npm-main-wrapper .btn.btn-lg {
  height: 54px;
  padding: 0 24px;
  line-height: 52px;
  font-size: 16px;
}
.npm-main-wrapper .btn.btn-md {
  height: 42px;
  padding: 0 16px;
  line-height: 40px;
  font-size: 15px;
}
.npm-main-wrapper .btn.btn-round {
  border-radius: 100px;
}
.npm-main-wrapper .btn.btn-primary {
  background: var(--color-primary);
  color: #fff;
  -webkit-transition: background 0.15s ease;
  transition: background 0.15s ease;
  border: 1px solid var(--color-primary);
}
.npm-main-wrapper .btn.btn-primary:hover, .npm-main-wrapper .btn.btn-primary:focus, .npm-main-wrapper .btn.btn-primary:focus-within, .npm-main-wrapper .btn.btn-primary:active {
  background: #1171ae;
}
.npm-main-wrapper .btn.btn-black {
  color: var(--color-white);
  background: #010101;
  border: 1px solid #010101;
}
.npm-main-wrapper .btn.btn-black:hover {
  background: #FFCE26;
  border-color: #FFCE26;
  color: #010101;
  border-color: #FFCE26;
  text-decoration: none;
}
.npm-main-wrapper .btn.btn-outline-primary {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color-white);
}
.npm-main-wrapper .btn.btn-outline-primary:hover, .npm-main-wrapper .btn.btn-outline-primary:focus, .npm-main-wrapper .btn.btn-outline-primary:focus-within, .npm-main-wrapper .btn.btn-outline-primary:active {
  background: var(--color-primary);
  color: var(--color-white);
}
.npm-main-wrapper .container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.npm-main-wrapper .sec-padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.npm-main-wrapper .sec-padding-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.npm-main-wrapper .sec-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 840px;
  margin: auto auto 32px;
  text-align: center;
}
.npm-main-wrapper .sec-header .sec-title {
  text-align: center;
  margin-bottom: 20px;
}
.npm-main-wrapper .sec-header .sec-title-break {
  display: block;
}
.npm-main-wrapper .sec-header .sec-title-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 24px;
}
.npm-main-wrapper .npm-banner-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#274EA3), to(#1A47B0));
  background: linear-gradient(#274EA3, #1A47B0);
  padding: 120px 0;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 -12px;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content {
  color: var(--color-white);
  width: 62%;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content h1 {
  color: var(--color-white);
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-subtitle {
  color: #C3D5FB;
  font-size: 20px;
  line-height: 32px;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-subtitle span {
  display: block;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, 200px);
  margin-top: 35px;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid .banner-achieve-card {
  background: #3860B7;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid .banner-achieve-card h6 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--color-white);
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid .banner-achieve-card .bannner-achieve-icon {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background: #456BBD;
  margin: 0 auto 12px;
  overflow: hidden;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid .banner-achieve-card .bannner-achieve-icon .achieve-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  background: url("../images/npm-sprite-images.svg") no-repeat scroll;
  background-size: 350%;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid .banner-achieve-card .bannner-achieve-icon .achieve-icon.trophy {
  background-position: 32.5% 105%;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid .banner-achieve-card .bannner-achieve-icon .achieve-icon.star {
  background-position: 67.5% 110%;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid .banner-achieve-card .bannner-achieve-icon .achieve-icon.user-group {
  background-position: -3.5% 108%;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid .banner-achieve-card p {
  color: #C3D5FB;
  margin-bottom: 0;
  line-height: 24px;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-form {
  width: 38%;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-form .npm-form-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-form .npm-form-card input {
  max-width: 100% !important;
  width: 100% !important;
  border-radius: 4px !important;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-form .npm-form-card h5 {
  text-align: center;
}
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content,
.npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-form {
  padding: 0 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.npm-main-wrapper .core-feature-section .core-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.npm-main-wrapper .core-feature-section .core-feature-grid .core-feature-item {
  border-radius: 4px;
  padding: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 246, 255, 0.7)), to(rgba(242, 246, 255, 0.7)));
  background: linear-gradient(rgba(242, 246, 255, 0.7), rgba(242, 246, 255, 0.7));
}
.npm-main-wrapper .core-feature-section .core-feature-grid .core-feature-item h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
  font-weight: 500;
}
.npm-main-wrapper .core-feature-section .core-feature-grid .core-feature-item p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.npm-main-wrapper .core-feature-section .core-feature-grid .core-feature-item .core-feature-icon {
  margin-bottom: 8px;
}
.npm-main-wrapper .core-feature-section .core-feature-grid .core-feature-item .core-feature-icon .feature-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: url("../images/npm-sprite-images.svg") no-repeat scroll;
  background-size: 450%;
}
.npm-main-wrapper .core-feature-section .core-feature-grid .core-feature-item .core-feature-icon .feature-icon.monitor {
  background-position: 2% 8%;
}
.npm-main-wrapper .core-feature-section .core-feature-grid .core-feature-item .core-feature-icon .feature-icon.alert {
  background-position: 98% 10%;
}
.npm-main-wrapper .core-feature-section .core-feature-grid .core-feature-item .core-feature-icon .feature-icon.visualize {
  background-position: 66.5% 10%;
}
.npm-main-wrapper .core-feature-section .core-feature-grid .core-feature-item .core-feature-icon .feature-icon.automate {
  background-position: 34% 8.5%;
}
.npm-main-wrapper .how-section {
  position: relative;
  background-color: #F7F9FC;
  z-index: 1;
}
.npm-main-wrapper .how-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../images/npm-wave-1940.svg") no-repeat scroll center bottom;
  background-size: 100%;
  z-index: -1;
}
@media only screen and (min-width: 1920px) {
  .npm-main-wrapper .how-section::before {
    background: url("../images/npm-wave-2560.svg") no-repeat scroll center bottom;
  }
}
.npm-main-wrapper .how-section .how-product-screen {
  max-width: 940px;
  margin: auto;
  -webkit-box-shadow: 0px 12px 32px #cdd0d6;
          box-shadow: 0px 12px 32px #cdd0d6;
  border-radius: 6px;
}
.npm-main-wrapper .how-section .how-product-screen img {
  border-radius: 6px;
  max-width: 100%;
  height: auto;
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list {
  list-style-type: none;
  padding-left: 0;
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item {
  border-bottom: 1px solid #E5E7EB;
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item .accordian-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item .accordian-header h5 {
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item .accordian-header img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item .accordian-header .accordian-chevron-arrow {
  min-width: 24px;
  height: 24px;
  display: inline-block;
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item .accordian-body {
  height: 0px;
  -webkit-transition: height 0.2s ease-out;
  transition: height 0.2s ease-out;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item .accordian-body .feature-image-block {
  margin-bottom: 42px;
  display: none;
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item .accordian-body .feature-image-block img {
  margin: auto;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 32px #cdd0d6;
          box-shadow: 0px 2px 32px #cdd0d6;
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item.active .accordian-header .accordian-chevron-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item.active .accordian-body {
  height: auto;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: height 0.2s ease-out;
  transition: height 0.2s ease-out;
}
.npm-main-wrapper .download-cta-section {
  background: #F7F9FC;
  position: relative;
  z-index: 1;
}
.npm-main-wrapper .download-cta-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../images/npm-wave-1940.svg") no-repeat scroll center bottom;
  background-size: 100%;
  z-index: -1;
  opacity: 0.5;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media only screen and (min-width: 1920px) {
  .npm-main-wrapper .download-cta-section::before {
    background: url("../images/npm-wave-2560.svg") no-repeat scroll center bottom;
  }
}

.feature-image-wrapper {
  position: relative;
}
.feature-image-wrapper .feature-image-item {
  -webkit-box-shadow: 0 12px 32px #cdd0d6;
          box-shadow: 0 12px 32px #cdd0d6;
  position: sticky;
  top: 150px;
  border-radius: 6px;
}
.feature-image-wrapper .feature-image-item img {
  border-radius: 6px;
  margin: auto;
}
.feature-image-wrapper .feature-image-item::before {
  content: "";
  background-image: radial-gradient(circle at center, #dddddd 0, #dddddd 3px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 100%);
  background-repeat: repeat;
  background-position: left center;
  background-size: 18px 18px;
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: -12%;
  right: -4%;
  z-index: -1;
}

.feature-mobile-mockup {
  max-height: 380px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}

.edi-btn inputgroup.error .error-field,
.edi-btn inputgroup.error1 .error-field1,
.edi-btn inputgroup.error2 .error-field2 {
  color: red !important;
  top: 4px;
}

.edi-btn {
  margin: 0 !important;
}
.edi-btn inputgroup input,
.edi-btn inputgroup select,
.edi-btn inputgroup textarea,
.edi-btn .field-valid input,
.edi-btn .field-valid select,
.edi-btn .field-valid textarea,
.edi-btn .field-error input,
.edi-btn .field-error select,
.edi-btn .field-error textarea {
  font-weight: 400 !important;
  max-width: 100% !important;
  width: 100% !important;
  border-radius: 4px !important;
  background: #fff !important;
  font-size: 15px !important;
  border: 1px solid #E5E7EB !important;
  padding: 0px 12px !important;
  height: 48px;
  line-height: 48px !important;
  outline: unset;
}
.edi-btn inputgroup input:focus,
.edi-btn inputgroup select:focus,
.edi-btn inputgroup textarea:focus,
.edi-btn .field-valid input:focus,
.edi-btn .field-valid select:focus,
.edi-btn .field-valid textarea:focus,
.edi-btn .field-error input:focus,
.edi-btn .field-error select:focus,
.edi-btn .field-error textarea:focus {
  border-color: var(--color-primary) !important;
}
.edi-btn inputgroup {
  margin-bottom: 2px !important;
}
.edi-btn inputgroup.focus label {
  color: var(--text-color) !important;
  font-weight: 300 !important;
  -webkit-transform: translate(0px, 0px) scale(1) !important;
          transform: translate(0px, 0px) scale(1) !important;
}
.edi-btn inputgroup label {
  color: #6C758A !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

input#downloadSubmit.download {
  width: 100% !important;
  background: #3b73f2 !important;
  color: var(--color-white);
  margin: 0 !important;
  padding: 0px 12px !important;
  font-size: 18px !important;
  border-radius: 4px !important;
}

.edi-btn inputgroup select[data-countrygdpr=MECountryListing] {
  margin: 24px 0 16px !important;
  padding: 0px 12px !important;
  height: 48px !important;
  line-height: 48px !important;
}

.dwn-priv.tac {
  font-size: 14px !important;
  text-align: left !important;
  color: var(--text-color) !important;
  margin: 0 0 16px !important;
  line-height: 20px;
  max-width: 100% !important;
  font-weight: 300 !important;
}

.dwn-priv a {
  color: var(--color-primary) !important;
}

#meGDPRMessage {
  margin: 0 0 6px !important;
  width: 100% !important;
}

#meGDPRMessage .checkmarkgdpr.enableCheckgdpr:before {
  width: 6px !important;
  height: 12px !important;
  top: 0px !important;
  left: 4px !important;
}

#meGDPRMessage .checkmarkgdpr {
  width: 16px !important;
  height: 16px !important;
}

.opm-review-section {
  padding: 40px 0;
}
.opm-review-section .slide-content .slide-title h2 {
  text-align: center;
  margin-bottom: 24px;
}
.opm-review-section .slide-content .slide-box {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #ffffff;
}
.opm-review-section .slide-content .slide-review-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 30px;
}
.opm-review-section .slide-content .slide-review-title a {
  color: inherit;
  text-decoration: none;
}
.opm-review-section .slide-content .slide-review-industry {
  margin-bottom: 8px;
  font-style: italic;
}
.opm-review-section .slide-content .slide-review-description p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.opm-review-section .slide-content .slide-review-industry {
  margin-bottom: 8px;
  font-style: italic;
}
.opm-review-section .slide-content .slide-review-details {
  margin: 8px 0 16px 0;
}
.opm-review-section .slide-content .slide-review-details .slide-review-rev-role {
  background: #faefef;
}
.opm-review-section .slide-content .slide-review-details .slide-review-company-size {
  background: #eef3fd;
}
.opm-review-section .slide-content .slide-review-details span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4px 12px;
  border-radius: 8px;
  margin: 4px 4px 4px 0;
  font-weight: 300;
}
.opm-review-section .slide-content .slide-review-logo img {
  max-width: 200px;
}
.opm-review-section .slide-content .slide-box-badge-title {
  background: #ececec;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 13px;
}
.opm-review-section .slide-content .slide-box-border-title {
  font-weight: 300;
  font-size: 16px;
  border-bottom: 3px solid #e8e8e8;
  display: inline-block;
  margin-bottom: 12px;
}
.opm-review-section .swiper-button-next,
.opm-review-section .swiper-button-prev {
  color: #707070 !important;
}
.opm-review-section .swiper-button-next {
  right: 0;
}
.opm-review-section .swiper-button-prev {
  left: 0;
}
.opm-review-section .swiper-slide {
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.opm-review-section .award-card-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.opm-review-section .award-card-wrapper .award-card {
  height: 100%;
}
.opm-review-section .award-card-wrapper .award-card a {
  text-decoration: none;
  color: inherit;
  border: 1px solid #f2f1f1;
  border-radius: 6px;
  background: #ffffff;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.opm-review-section .award-card-wrapper .award-card a:hover {
  color: inherit;
  -webkit-box-shadow: 2px 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.opm-review-section .award-card-wrapper .award-card .award-description {
  margin-bottom: 0;
  text-align: center;
  padding: 20px;
  font-size: 15px;
  display: block;
  line-height: 1.7;
  font-weight: 300;
}
.opm-review-section .award-card-wrapper .award-card .award-img {
  padding: 15px 0;
  height: 120px;
  border-bottom: 1px solid #f2f1f1;
  overflow: hidden;
  position: relative;
  display: block;
}
.opm-review-section .award-card-wrapper .award-card .award-img img {
  position: absolute;
  max-width: 75%;
  max-height: 75%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 4px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -12px;
}
.row > * {
  padding-left: 12px;
  padding-right: 12px;
}

.col_5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66%;
}

.col_6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col_7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33%;
}

.col_12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .col_md_4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33%;
  }
  .col_md_5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66%;
  }
  .col_md_6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col_md_7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33%;
  }
}
@media only screen and (min-width: 992px) {
  .col_lg_5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66%;
  }
  .col_lg_7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33%;
  }
}
@media only screen and (max-width: 1079.98px) {
  .npm-main-wrapper .npm-banner-section .npm-banner-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content {
    width: 100%;
    text-align: center;
  }
  .npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-form {
    width: 100%;
    max-width: 420px;
    margin: 80px auto 0;
  }
}
@media only screen and (max-width: 991.98px) {
  .npm-main-wrapper h5 {
    margin: 0 0 8px;
  }
  .npm-main-wrapper h1 {
    font-size: 46px;
    line-height: 58px;
  }
  .npm-main-wrapper h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .npm-main-wrapper .core-feature-section .core-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .npm-main-wrapper .top-feature-section .feature-accordian-grid {
    grid-template-columns: auto;
    grid-gap: 0;
  }
  .npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-accordian-list .feature-accordian-item .accordian-body .feature-image-block {
    display: block;
  }
  .npm-main-wrapper .top-feature-section .feature-accordian-grid .feature-image-item {
    display: none;
  }
  .npm-main-wrapper .sec-header .sec-title-break {
    display: inline;
  }
}
@media only screen and (max-width: 767.98px) {
  .npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-form {
    margin: 60px auto 0;
  }
  .npm-main-wrapper .sec-padding-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .npm-main-wrapper .edi-btn {
    padding: 0 !important;
  }
  .npm-main-wrapper .npm-banner-section {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .npm-main-wrapper .core-feature-section .core-feature-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .sec-padding-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 475.98px) {
  .npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-content .banner-achieve-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 425.98px) {
  .npm-main-wrapper .npm-banner-section .npm-banner-grid .npm-banner-form {
    margin: 40px auto 0;
  }
}