@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;1,400&display=swap');
* {
  transition: all ease-in-out 0.15s;
}
body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
}
p {
  color: #000;
}
a {
  color: #F47A21;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.text-body-secondary {
  color: #000 !important;
}
h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 52px;
  margin-bottom: 30px;
}
h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 30px;
}
h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 30px;
}
h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 30px;
}
h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 30px;
}
h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 30px;
}
.h1 {
  font-size: 48px !important;
  font-weight: 600;
  line-height: 52px !important;
  margin-bottom: 30px;
}
.h2 {
  font-size: 36px !important;
  font-weight: 600;
  line-height: 40px !important;
  margin-bottom: 30px;
}
.h3 {
  font-size: 30px !important;
  font-weight: 600;
  line-height: 36px !important;
  margin-bottom: 30px;
}
.h4 {
  font-size: 24px !important;
  font-weight: 600;
  line-height: 28px !important;
  margin-bottom: 30px;
}
.h5 {
  font-size: 18px !important;
  font-weight: 600;
  line-height: 21px !important;
  margin-bottom: 30px;
}
.h6 {
  font-size: 16px !important;
  font-weight: 600;
  line-height: 18px !important;
  margin-bottom: 30px;
}
label {
  margin-top: 10px;
  margin-bottom: 5px;
}
ul.fancy li::marker {
  color: #F47A21;
}
ul {
  padding-left: 15px;
}
ul.fancy.check li {
  margin-left: -15px;
  list-style: none;
  background: url(../images/ico-check.png) no-repeat left 10px;
  background-size: 36px 30px;
  padding-left: 50px;
}
nav {
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
}
nav .navbar-brand {
  max-width: 190px;
}
nav .ico {
  width: 22px;
  height: 22px;
}
nav a.nav-link {
  color: #000;
  border-bottom: 3px solid #fff;
  text-decoration: none;
}
nav a:hover, .nav a:active {
  color: #000;
  border-bottom: 3px solid #F47A21;
  text-decoration: none;
}
nav .dropdown-item:focus, nav .dropdown-item:hover {
  color: var(--bs-dropdown-link-hover-color);
  background-color: none;
  border: 0;
  color: #f47a21;
}
.navbar-expand-xl .navbar-nav .dropdown-menu {
  position: absolute;
  border-radius: 0;
  border: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
nav a.dropdown-item {
  padding-left: 30px
}
nav a.dropdown-item:before {
  content: '';
  height: 2px;
  width: 10px;
  background: #F47A21;
  display: inline-block;
  margin: 10px 0 0 -20px;
  position: absolute;
}
.btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 10px 15px;
  margin-right: 10px;
}
.btn:hover {
  text-decoration: none;
}
.btn-primary {
  border: 1px solid #F47A21;
  background: #F47A21;
}
.btn-primary:hover {
  border: 1px solid #F6954D;
  background: #F6954D;
}
.btn-secondary {
  border: 1px solid #707070;
  background: #707070;
}
.btn-secondary:hover {
  border: 1px solid #999A9D;
  background: #999A9D;
}
section.banner .outline-logo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  opacity: 0.35;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}
section.banner .outline-logo img {
  width: auto;
  height: 150%;
  margin: -10% auto;
}
section.banner .container {
  position: relative;
  z-index: 10;
}
a.optout {
  font-size: 13px;
  position: absolute;
  top: -10px;
  right: 25px;
  color: #999;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    transform-origin: center center;
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    transform-origin: center center;
  }
}
.rotating {
  -webkit-animation: rotating 60s linear infinite;
  -moz-animation: rotating 60s linear infinite;
  -ms-animation: rotating 60s linear infinite;
  -o-animation: rotating 60s linear infinite;
  animation: rotating 60s linear infinite;
}
section.banner {
  overflow: hidden;
  position: relative;
  background: url("../images/background-gradient.jpg") no-repeat center center #fff;
  background-size: cover;
}
section.banner .card.form {
  border-radius: 10px;
  background: #fff;
  height: 100%;
  box-shadow: 0 0px 10px rgba(0, 0, 0, .1);
}
section.highlights {
  background: #F2F5FA;
}
section.highlights img {
  max-width: 64px;
  max-height: 64px;
  float: left;
  margin-right: 15px;
}
section.highlights h2 {
  margin-top: 15px;
}
section.highlights .col {
  background: #F2F5FA;
}
section.highlights .col:nth-child(2) {
  background: #E9EDF6;
}
section.intro {
  position: relative;
}
section.intro:before {
  content: '';
  background: url("../images/logo-mark-reverse.png") center center no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: 750px auto;
  left: 0%;
}
section.intro .container {
  position: relative;
  z-index: 1;
}
section.framed {
  overflow: hidden;
  position: relative;
  background: url("../images/background-gradient.jpg") no-repeat center center #fff;
  background-size: cover;
}
section.framed .card {
  border-radius: 10px;
  background: #fff;
  height: 100%;
  box-shadow: 0 0px 10px rgba(0, 0, 0, .1);
}
section.colored {
  background: #EEF1F8;
}
section.why-dynamicard {
  position: relative;
  overflow: hidden;
}
section.why-dynamicard:before {
  content: '?';
  font-size: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  text-shadow: 0 0px 2px rgba(0, 0, 0, .15);
  transform: translate(-50%, -50%) rotate(25deg);
}
section.why-dynamicard .container {
  position: relative;
  z-index: 2;
}
section.why-dynamicard h3 {
  color: #F47A21;
}
section.why-dynamicard .col {
  margin-bottom: 45px;
}
section.industries {
  background: #F2F3F3;
}
section.industries .card {
  border-radius: 5px;
  background: #1B235A;
  margin-bottom: 30px;
}
section.industries .card.active, section.industries .card:hover {
  background: #F47A21;
}
section.industries .card h3 {
  color: #fff;
  margin: 15px 0;
}
section.industries .datapoints .card {
  border-radius: 25px;
  background: #fff;
  margin-bottom: 30px;
  border: 0;
  border: 1px solid #fff;
}
section.industries .datapoints .card:hover {
  background: #E9EDF6;
}
section.industries .datapoints .card p {
  padding: 10px;
  margin: 0;
}
section.reviews .card {
  text-align: center;
  border-radius: 10px;
  background: url(../images/ico-google.png) no-repeat top right;
  background-size: 40px 40px;
}
section.reviews .card img {
  width: 214px;
  margin: 0px auto 30px auto;
  max-width: 100%;
}
section.twoxbetter ul strong {
  font-size: 24px;
}
section.twoxbetter ul li {
  margin-bottom: 10px;
}
section.twoxbetter .card {
  border-radius: 10px;
  overflow: hidden;
}
section.brandportals .product-demo {
  background: url(../images/product-demo.jpg) center center no-repeat;
  background-size: cover;
}
footer {
  background: #222222;
  color: #fff;
}
footer p {
  color: #fff;
}
footer .logo-brand {
  width: auto;
  max-height: 65px;
}
footer .list {
  margin-top: 80px;
}
footer a.connect {
  display: block;
  text-align: center;
  width: 64px;
  height: 64px;
  border-radius: 64px;
  background: #F47A21;
  line-height: 64px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}
footer a.connect img {
  width: 50%;
}
@media all and (max-width:1399px) {
  nav .btn {
    padding: 10px 10px;
  }
}
@media all and (max-width:1200px) {
  nav .btn {
    padding: 10px 15px;
  }
  header button {
    float: right;
  }
}
@media all and (max-width:1199px) {
  section.brandportals .product-demo {
    background: none;
  }
  header .navbar-nav {
    flex-direction: column;
    float: none;
    margin-top: 0;
  }
  header button {
    float: none;
  }
}
@media all and (max-width:992px) {
  section.twoxbetter .row {
    flex-direction: column-reverse;
  }
}
@media all and (max-width:768px) {
  h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .h1 {
    font-size: 36px !important;
    font-weight: 600;
    line-height: 40px !important;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 30px;
  }
  .lead {
    font-size: 1rem;
  }
  .col-xs-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  footer .list {
    margin-top: 15px;
  }
  section.brandportals .container {
    padding: 0 30px 3rem 30px;
  }
  section.why-dynamicard .col:last-child {
    margin-bottom: 0;
  }
  section.framed {
    padding: 30px !important;
  }
  section.reviews .card {
    margin-bottom: 30px;
  }
  .navbar-collapse {
    transition: none;
    opacity: 0;
  }
  .navbar-collapse.show {
    width: 100%;
    opacity: 1;
    position: fixed;
    top: 102px;
    right: 0px;
    background: white;
    z-index: 100;
    padding: 30px;
    height: 100% !important;
  }
  header.p-3 {
    padding: 0px !important;
  }
  section.p-5 {
    padding: 15px !important;
  }
  .card.p-5 {
    padding: 30px !important;
  }
}

.wpforms-required-label {
  color: #F47A21;
}
p.form-disclaimer {
  width: 50%;
  margin: -40px 0 0 0px;
}
form#wpforms-form-32457 .wpforms-field:nth-child(1), form#wpforms-form-32457 .wpforms-field:nth-child(3), form#wpforms-form-32457 .wpforms-field:nth-child(6) {
  padding-right: 7.5px;
}
form#wpforms-form-32457 .wpforms-field:nth-child(2), form#wpforms-form-32457 .wpforms-field:nth-child(4), form#wpforms-form-32457 .wpforms-field:nth-child(7) {
  padding-left: 7.5px;
}
form#wpforms-form-32457 .wpforms-field:nth-child(8) {
  width: 100%;
}
form#wpforms-form-32457 button {
  border: 1px solid #F47A21;
  background: #F47A21;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  float: right;
  margin: 15px 0 0 0;
}
form#wpforms-form-32457 input, form#wpforms-form-32457 select {
  width: 100%;
  color: #666;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  background: none;
  font-size: 1rem;
  padding: .375rem .75rem;
}
form#wpforms-form-32457 .wpforms-field {
  width: 50%;
  float: left;
}
.wpforms-field.wpforms-field-hp {
  display: none;
}
form#wpforms-form-32457 label {
  display: block;
}
video {
  border-radius: 10px;
}
.card:hover a {
  color: #000;
}
header {
  background: #fff;
}
a.optout {
  font-size: 13px;
  position: absolute;
  top: -10px;
  right: 25px;
  color: #999;
}
.whydynamicard {
  margin: -44px 0 0 5px;
  width: 234px;
}
h2 a, h2 a:hover, nav a.navbar-brand, nav a.navbar-brand:hover, nav a.nav-btn, nav a.nav-btn:hover {
  text-decoration: none;
  color: #000;
  border: 0;
}
section.industries .card.active {
  background: #F47A21;
}
section.industries .card.active a {
  color: #000;
}
#listdatadiv {
  display: none;
}
.samplevideomobile {
  display: none;
}
@media all and (max-width:768px) {
  .samplevideomobile {
    display: block;
  }
  .samplevideo {
    display: none;
  }
  form#wpforms-form-32457 .wpforms-field:nth-child(1), form#wpforms-form-32457 .wpforms-field:nth-child(3), form#wpforms-form-32457 .wpforms-field:nth-child(6) {
    padding-right: 0;
    width: 100%;
  }
  form#wpforms-form-32457 .wpforms-field:nth-child(2), form#wpforms-form-32457 .wpforms-field:nth-child(4), form#wpforms-form-32457 .wpforms-field:nth-child(7) {
    padding-left: 0;
    width: 100%;
  }
  form#wpforms-form-32457 .wpforms-field:nth-child(8) {
    width: 100%;
  }
}
.screen-reader-response {
  display: none;
}
.wpcf7-not-valid-tip, .wpcf7-response-output {
  color: #F47A21;
}
.wpcf7-not-valid-tip {
  font-size: 12px;
}
#searchform {
  background: #F47A21;
  position: fixed;
  top: 0;
  color: #fff;
  left: 0;
  width: 100%;
  height: 55px;
  text-align: center;
  padding: 9px 0;
  display: none;
}
#searchform.active {
  display: block;
}
#submit_s {
  width: 100px;
  display: inline-block;
  right: 90px;
  position: absolute;
  top: 4px;
  padding: 2px 5px;
}
#searchform div.cancel {
  width: 100px;
  display: inline-block;
  right: 6px;
  position: absolute;
  top: 4px;
  padding: 2px 5px;
  cursor: pointer;
  color: #F47A21;
}
.privacy-notification {
  width: 100%;
  text-align: center;
  background: #F47A21;
  color: #fff;
	padding:10px 0; 
	line-height:16px;
}
.privacy-notification a {
  display: inline-block;
  background: #fff;
  color: #F47A21;
  border: 1px solid #F47A21;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 5px 0;
  text-decoration: none;
}
.privacy-notification a:hover {
  background: #F47A21;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
}