

:root {
    --white: #ffffff;
    --black: #000000;
    --primary-color: #592ef5;
    --primary-color-dark: #292978;
    --txt-color: #2d2d41;
    --txt-color-light: #91949f;
    --txt-color-dark: #2c3546;
    --border-color: rgba(208, 210, 229, 0.6);
    --twitter: #00b6f1;
    --facebook: #4c66a4;
    --instagram: #e1306c;
    --snapchat: #fffc00;
    --linkedin: #2867b2;
    --youtube: #ff0000;
    --dark-blue-color: #13005E;
    --rose-light-color : #FFF5F2;
    --alice-blue-color: #EFF2F4;
    --kashmir-blue-color: #5D6980;
    --hawkes-blue-color: #DCDEE6;
}

body {
  font-family: "Figtree" !important;
  font-weight: 300;
  font-size: 16px;
  color: var(--txt-color);
  line-height: 184.4%;
}

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

strong {
  font-weight: bold;
}

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

a,
a:hover {
  color: var(--primary-color);
  outline: none;
  font-weight: 500;
}

a:hover {
  text-decoration: none;
}

ul {
  margin-bottom: 0;
  list-style: none;
}

#mainCntr {
  width: 100%;
  overflow: hidden;
}

/** **/
.dataPlatform {
  width: 100%;
  padding: 47px 0 36px;
  background: url(../img/platform-bg.png) top center no-repeat var(--dark-blue-color);
  background-size: cover;

}
.leftdataPlatform {
  padding-right: 50px;
}
.dataPlatform h2 {
  font-size: 36px;
  color: var(--white);
  line-height: 42px;
  font-weight: 700;
  margin: 0px 0 20px;
}
.dataPlatform h4 {
  font-size: 20px;
  color: var(--white);
  line-height: 42px;
  font-weight: 700;
  margin: 74px 0 0px;
  text-transform: uppercase;
}
.dataPlatform h5 {
  font-size: 16px;
  color: var(--white);
  line-height: 184.4%;
  margin: 0;
}

.dataPlatform h5 + h5 {
    margin-top: 20px;
}
.dataPlatformImg {
  margin-top: 82px;
}
.platformText {
    display: none;
}
.platformAirCase {
    display: none;
}
/** **/
.tabDataSection {
  background: var(--alice-blue-color);
}
.tabDataSection .heading {
  font-size: 22px;
  line-height: 24px;
  color: var(--txt-color-dark);
  font-weight: 400;
  text-align: center;
  margin-top: 64px;
}
.tabDataSection .heading span {
  font-weight: bold;
}
.tabdetails .col-md-6 {
  display: flex;
}
.tabData {
  width: 100%;
  margin: 48px 0 24px;
}
.tabData .nav-item:not(:last-child) {
  margin-right: 25px;
}
.tabData a {
  display: flex;
  align-items: center;
  background: var(--white);
  font-size: 12px;
  color: var(--dark-blue-color);
  font-weight: 600;
  line-height: 14px;
  border-radius: 5px;
  padding: 8px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}
.tabData .tabIcon, .tabData .closeIcon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.tabData a .closeIcon {
  display: none;
}
.tabData .nav-link.active .tabIcon {
  display: none;
}
.tabData .nav-link.active .closeIcon {
display: block;
}
.tabData .nav-link:hover svg path {
    fill: var(--white);
}
.tabData .nav-link:hover .hover-tooltip {
  opacity: 1;
  visibility: visible;
}
.tabData .analyt-tab:hover, .tabData .analyt-tab.active {
  background: var(--primary-color);
  color: var(--white);
}
.tabData .crm-tab:hover, .tabData .crm-tab.active {
  background: #912EF5;
  color: var(--white);
}
.tabData .dmp-tab:hover, .tabData .dmp-tab.active {
  background: #F2C414;
  color: var(--white);
}
.tabData .adver-tab:hover, .tabData .adver-tab.active {
  background: #B52EF5;
  color: var(--white);
}
.tabData .loyalty-tab:hover, .tabData .loyalty-tab.active {
  background: #25A35C;
  color: var(--white);
}
.tabData .feedback-tab:hover, .tabData .feedback-tab.active {
  background: #C56F06;
  color: var(--white);
}
.tabData .location-tab:hover, .tabData .location-tab.active {
  background: #CC2222;
  color: var(--white);
}
.tabData .cms-tab:hover, .tabData .cms-tab.active {
  background: #F2A714;
  color: var(--white);
}
.tabData .customer-tab:hover, .tabData .customer-tab.active {
  background: #F28C14;
  color: var(--white);
}
.tabData .offline-tab:hover, .tabData .offline-tab.active {
  background: #39A2F4;
  color: var(--white);
}
.tabData .nav-link.disabled, .tabData .nav-link.disabled svg path {
  pointer-events: none;
  opacity: 0.7;
}

.hover-tooltip {
  width: 200px;
  position: absolute;
  left: 50%;
  bottom: 100%;
  z-index: 1;
  background: var(--white);
  border-radius: 4px;
  padding: 6px 10px;
  margin-bottom: 10px;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--black);
  font-weight: 400;
  line-height: 16px;
  text-transform: none;
  box-shadow: 0 2px 4px rgba(44, 53, 70, 0.30);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease-in-out;
}
.hover-tooltip::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0%;
  width: 10px;
  height: 10px;
  background: var(--white);
  margin-bottom: -5px;
  transform: rotate(45deg);
  margin-left: -5px;
  box-shadow: 1px 1px 2px rgba(44, 53, 70, 0.30);
}
.dataSection {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0px 4px 12px rgba(44, 53, 70, 0.08);
  margin-bottom: 48px;
}
.data-title {
  font-size: 18px;
  color: var(--txt-color-dark);
  line-height: 1.5;
  font-weight: 700;
  min-height: 54px;
  margin-bottom: 24px;
}
.data-subTitle {
  display: flex;
  flex: 1;
  font-size: 14px;
  color: var(--txt-color-dark);
  line-height: 26px;
  margin-bottom: 24px;
}
.data-status {
  display: flex;
  justify-content: space-between;
}
.badgeSection {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  margin-right: 14px;
}
.badge-data {
  display: flex;
  align-items: center;
  height: 24px;
  font-size: 13px;
  color: var(--kashmir-blue-color);
  font-weight: 500;
  line-height: 15px;
  background: var(--hawkes-blue-color);
  border-radius: 2px;
  padding: 4px 8px;
  margin: 0 8px 8px 0;
}
.analyt-badge {
  background: var(--primary-color);
  color: var(--white);
}
.crm-badge {
  background: #912EF5;
  color: var(--white);
}
.dmp-badge {
  background: #F2C414;
  color: var(--white);
}
.adver-badge {
  background: #B52EF5;
  color: var(--white);
}
.loyalty-badge {
  background: #25A35C;
  color: var(--white);
}
.feedback-badge {
  background: #C56F06;
  color: var(--white);
}
.location-badge {
  background: #CC2222;
  color: var(--white);
}
.cms-badge {
  background: #F2A714;
  color: var(--white);
}
.customer-badge {
  background: #F28C14;
  color: var(--white);
}
.offline-badge {
  background: #39A2F4;
  color: var(--white);
}
.data-check {
  display: flex;
}
.check-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 500;
  line-height: 32px;
}
.check-link svg {
  margin-left: 9px;
}
/** **/
.trusted-company {
  padding: 64px 0;
  background: var(--white);
}
.trusted-company .titleBox {
  font-size: 22px;
  line-height: 24px;
  color: var(--txt-color-dark);
  font-weight: 500;
  text-align: center;
}
.trusted-company .titleBox span {
  font-weight: bold;
}
.trusted-company-logo {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.trusted-company-logo li {
  width: 20%;
  margin-top: 48px;
  text-align: center;
}
.empty-data {
  text-align: center;
  margin: 12px 0 50px;
}
.empty-data img {
  height: 276px;
  margin-bottom: 26px;
}
.empty-details p {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  margin-bottom: 0;
}
.empty-detail-space {
  margin-top: 24px;
}
.empty-details a {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 24px;
}





/** **/
.customer-rated {
  background: var(--rose-light-color);
  padding: 48px 0 44px;
}
.customer-rated .title {
  font-size: 22px;
  line-height: 21px;
  color: var(--black);
  font-weight: 500;
  text-align: center;
  margin-bottom: 24px;
}
.customer-rated .title span {
  font-weight: bold;
}
.customer-rated-leader {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.customer-rated-leader li {
  padding: 0 22px;
}
.customer-rated-leader li img{
  width: 90px;
}
.customer-rated-leader li:nth-child(2) img{
  width: 99px;
}
/** **/
.schedule-demo {
  background: url(../img/schedule-demo-bg.png) center center no-repeat var(--dark-blue-color);
  background-size: cover;
  padding: 72px 0;
}
.schedule-data {
  text-align: center;
}
.schedule-demo .title {
  font-size: 22px;
  line-height: 26px;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.schedule-demo .subText {
  font-size: 22px;
  line-height: 26px;
  color: var(--white);
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}
.btnDemo {
  padding: 0 25px;
  border-radius: 5px;
  font-size: 14px;
  color: var(--txt-color-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  white-space: normal;
  background-color: var(--white);
  text-transform: uppercase;
}
/** **/
.popupUseCaseInfo {
    display: flex;
    width: 100%;
    background: var(--white);
}
.popupUseCaseData {
    width: 40%;
    background: #F7F9FA;
    padding: 40px 40px 12px;
    overflow-y: scroll;
}
.popupUseCaseImg {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 58px 40px;
}
.popupUseCaseImg img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#modal0 .popupUseCaseImg img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
}

.popupHeading {
    font-size: 18px;
    color: var(--txt-color-dark);
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 16px;
}
.popupSubtext {
    font-size: 13px;
    color: var(--txt-color-dark);
    line-height: 185%;
    padding-bottom: 4px;
}
.tagSection {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.tagRowInfo {
    width: 100%;
    display: flex;
}
.tagImgInfo {
    display: flex;
    margin-right: 40px;
}
.tagImgInfo img {
    width: 24px;
}
.tagRowInfo:not(:first-child) .tagDetails {
    border-top: 1px solid #E4E9EC;
}
.tagDetails {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 0 8px;
}
.tagLabel {
    font-size: 12px;
    color: var(--kashmir-blue-color);
    font-weight: 600;
    line-height: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.tagLabelData {
    display: flex;
    flex-wrap: wrap;
}
.tagBadgeInfo {
    display: flex;
    align-items: center;
    height: 24px;
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 2px;
    margin: 0 8px 12px 0;
}
.offlineCustomer {
    font-size: 13px;
    color: var( --txt-color-dark);
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 12px;
}
.techStackData {
  margin: -2px 0 0;
}
.techStackLogo {
  height: 40px;
  margin: 0 23px 0 0;
}
.techStackLogo img {
  height: 100%;
  display: flex;
}
.metricsBg {
    background: #EEEAFF;
    color: var(--primary-color);
}
.channelTab {
    display: flex;
    align-items: center;
    height: 24px;
    font-size: 13px;
    color: var(--txt-color-light);
    font-weight: 500;
    line-height: 15px;
    border-radius: 2px;
    padding: 4px 8px;
    margin: 0 8px 12px 0;
    background: var(--white);
}
.channelTab img {
    margin: 0 4px 0 0;
}
.channelTab:hover {
    color: var(--txt-color-light);
}
/** Footer Style **/
footer {
  padding: 80px 0 50px 0;
  background-color: #f7f7f7;
}
footer h6 {
  margin-top: 0;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
}
footer .links {
  margin-bottom: 40px;
}
footer .links li {
  margin: 4px 0;
}
footer .links a {
  color: var(--txt-color);
  font-weight: 400;
}
footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
footer .links .ins-hiring {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-color);
}

.subscribeNewsLetter label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}
.subscribeNewsLetter .form-control {
  border: 0;
  border-radius: 0;
  height: 45px;
  max-width: 440px;
  border-bottom: 1px solid var(--txt-color);
}
.subscribeNewsLetter .btn {
  margin-top: 20px;
  color: #fff;
  background-color: var(--primary-color);
}
.subscribeNewsLetter .checkbox input {
  margin-top: 6px;
}
.subscribeNewsLetter .checkbox label {
  margin-left: 10px;
  line-height: normal;
}
.subscribeNewsLetter .errorMsg {
  display: none;
}
.subscribeNewsLetter .invalid .errorMsg {
  display: block;
}
.subscribeNewsLetter .invalid .form-control {
  border-bottom-color: #dc3545;
}
.subscribeNewsLetter .valid .form-control {
  border-bottom-color: #28a745;
}
.subscribeNewsLetter .noteTxt {
  margin-top: 10px;
  font-size: 10px;
  line-height: normal;
}
.subscribeNewsLetter .noteTxt a {
  color: var(--txt-color);
  font-weight: 300;
}

.footerLogos {
  margin: 50px 0;
}
.footerLogos a {
  margin: 0 17px;
}
.footerLogos a img {
  width: 80px;
}
.footerLogos a:nth-child(2) img {
  width: 68px;
}
footer .icons a {
  margin-left: 20px;
}
footer .icons a:hover {
  text-decoration: none;
}
footer .icons a:hover svg {
  color: var(--primary-color);
}
footer .icons svg {
  fill: currentColor;
  color: var(--txt-color);
}
.footer .copyrightTxt {
  margin: 0 15px;
  font-weight: 400;
  flex: 1;
  text-align: center;
  line-height: normal;
}
/** Popup Style **/
.scenerioPopup .modal-dialog-centered {
  height: calc(100%);
}
.scenerioPopup .modal-dialog {
  margin: 0 auto;
  max-width: calc(1224px - (1.75rem * 2));
}
.scenerioPopup .modal-content {
  overflow: hidden;
  height: calc(100% - (1.75rem * 2));
  max-height: calc(744px - (1.75rem * 2));
  box-shadow: 0px 1px 11px rgba(15, 15, 78, 0.5);
}
.scenerioPopup .modal-body {
  padding: 0;
  display: flex;
  height: 0;
}

.subscribeNewsLetter .btn-submit {
    margin-top: 20px;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 999px;
    padding: 0 15px;

}
.scenerioPopup .popupClose {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    z-index: 10;
    font-size: 40px;
    color: var(--txt-color-dark);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    outline: none;
}
.whiteClose {
    color: var(--white) !important;
}
.casePopup .modal-dialog{
    max-width: 1160px;
}
.casePopup .modal-content {
    max-height: 650px;
}
/** Popup Form Style **/
.formPopup .modal-dialog {
    max-width: 416px;
}
.popupFormInfo {
    display: flex;
    flex-direction: column;
    background: #E5E5E5;
    overflow-y: scroll;
}
.formTopSection {
    padding: 64px 48px 56px;
    background: var(--dark-blue-color);
}
.formTopHeading {
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
    line-height: 37px;
    text-align: center;
    padding: 0 10px;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.formTopText {
    font-size: 15px;
    color: var(--white);
    line-height: 154%;
    text-align: center;
}
.formSection {
    background: #E5E5E5;
    padding: 32px 48px;
}
.formRow {
    display: flex;
    margin-bottom: 24px;
}
.formBox {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.formBox label {
    font-size: 12px;
    color: var(--txt-color-dark);
    line-height: 14px;
    padding: 0 0 4px;
    margin: 0;
}
.formBox input {
    border: 1px solid red;
}
.errorText {
    font-size: 10px;
    color: #DC2A2A;
    line-height: 14px;
}
/** media style **/
@media (min-width: 768px) and (max-width: 1024px) {
    .dataPlatform {
        padding: 48px 0 49px;
    }
    .leftdataPlatform {
      padding-right: 15px;
    }
    .dataPlatform h2{
        font-size: 28px;
        line-height: 32px;
        margin: 0px 20px 0 0;
    }
    .platformCase {
        display: none;
    }
    .platformAirCase {
        display: block;
        margin-top: 48px;
    }
    .dataPlatform h5{
        font-size: 16px;
        line-height: 30px;
        padding: 0;
        margin: 0;
    }
    .dataPlatform h5 + h5 {
        margin-top: 24px;
    }
    .dataPlatformImg {
        margin-top: 60px;
    }
    .data-title {
        font-size: 16px;
        min-height: 48px;
    }
    .data-subTitle {
        font-size: 13px;
        line-height: 24px;
    }
    .customer-rated-leader li {
      padding: 0 19px;
    }
    .customer-rated-leader li img{
      width: 81px;
    }
    .customer-rated-leader li:nth-child(2) img{
      width: 91px;
    }
    .tabDataSection .tabData .nav-item:not(:last-child) {
        margin-right: 25px;
    }
    .tabData .nav-link:hover .hover-tooltip {
      display: none;
    }
    .dataSection {
        margin-bottom: 24px;
    }
    .tabDataSection .tabData a {
        margin-bottom: 16px;
    }
    .data-status {
        flex-direction: column;
    }
    .badgeSection {
        margin-bottom: 16px;
    }
    .badge-data {
        margin-bottom: 8px;
    }
    .scenerioPopup .modal-dialog {
        max-width: 96%;
    }
}
@media (max-width: 767px) {
    .tabDataSection, .customer-rated {
        padding-left: 5px;
        padding-right: 5px;
    }
    .dataPlatform {
        padding: 48px 5px 48px;
        text-align: center;
        background: #051335;
    }
    .leftdataPlatform {
      padding-right: 15px;
    }
    .dataPlatform h2{
        font-size: 24px;
        line-height: 28px;
        margin: 0px 0px 34px 0px;
    }
    .dataPlatform h4{
      font-size: 18px;
    }
    .dataPlatform h5{
        font-size: 3.7vw;
        line-height: 1.8;
        padding: 0 20px;
        margin: 0;
    }
    .dataPlatform h5 + h5 {
        margin-top: 24px;
    }
    .dataPlatformImg {
        margin-top: 0;
        padding: 0;
    }
    .platformCase {
        display: none;
    }
    .platformText {
        display: block;
        padding-top: 32px;
    }
    .tabDataSection .tabData {
        margin: 50px 0 24px;
    }
    .tabDataSection .tabData .nav-item:not(:last-child) {
        margin-right: 16px;
    }
    .tabDataSection .tabData a {
        margin-bottom: 16px;
    }
    .tabData .nav-link:hover .hover-tooltip {
      display: none;
    }
    .trusted-company {
        padding: 122px 5px 42px;
    }
    .trusted-company .titleBox {
        margin-bottom: 40px;
    }
    .trusted-company-logo li {
        width: 50%;
        margin: 0;
    }
    .schedule-demo {
        padding: 58px 5px;
    }
    .data-status {
        flex-direction: column;
    }
    .badgeSection {
        margin-bottom: 16px;
    }
    .badge-data {
        margin-bottom: 8px;
    }
    .data-title {
        font-size: 16px;
        min-height: 48px;
    }
    .dataSection {
      margin-bottom: 24px;
    }
    .customer-rated-leader li {
      padding: 0 19px;
    }
    .customer-rated-leader li img{
      width: 58px;
    }
    .customer-rated-leader li:nth-child(2) img{
      width: 77px;
    }
    .popupUseCaseInfo {
        flex-direction: column-reverse;
        overflow-y: scroll;
    }
    .popupUseCaseData {
        width: 100%;
        overflow-y: initial;
    }
    .popupHeading {
      font-size: 16px;
    }
    .popupUseCaseImg {
      width: 100%;
      padding: 30px;
    }
    .popupUseCaseImg img {
        width: 96%;
    }
    .subscribeNewsLetter .btn-submit {
        border-radius: 6px;
    }
    footer .links {
        text-align: center;
    }
    .footerLogos a {
      margin: 0 14px;
    }
    .modal-content {
      max-height: 100%;
      height: 100%;
    }
    .scenerioPopup .popupClose {
      position: fixed;
    }
    .scenerioPopup .modal-body {
      display: block;
      overflow-y: auto;
    }
    .scenerioPopup .modal-content {
      height: 100%;
      max-height: inherit;
      border: 0;
      border-radius: 0;
    }
    .casePopup .modal-content {
        height: 100%;
    }
    .popupUseCaseData {
      padding: 26px 24px 4px;
    }
    .techStackLogo {
      height: 36px;
    }
    .popupSubtext {
      font-size: 14px;
      padding-bottom: 17px;
    }
    .tagDetails {
      padding: 20px 0 8px;
    }
    .tagLabel {
      margin-bottom: 18px;
    }
}

.magnify > .magnify-lens {
  background-color: #fff !important; /* Prevent adjacent image from appearing in lens */
}

.magnifying .scenerioPopup .modal-content {
  overflow: initial;
}

.magnify-mobile .lens-mobile img {
  position: relative;
  max-width: 200%;
  transform: translateY(-50%);
  top: 50%;
}

.hs-richtext img{
  display: none;
}

@media only screen and (min-width:600px){
  .hbspt-form{
    width: 100%;
    margin: auto;
  }
  #hsForm_95fab232-2237-4fe0-be6b-5cab90e52516 > div{
    width: 93%;
  }
  .hs-richtext h1:after{
    content: "👉";
  }
}

.hbspt-form input:not(#LEGAL_CONSENT\.subscription_type_7608382-95fab232-2237-4fe0-be6b-5cab90e52516){
  width: 100%!important;
  height: 40px;
}
.hbspt-form .input select{
  width: 100%!important;
  height: 40px;
}
.hbspt-form label {
  margin-top: 20px;
  margin-bottom: 0px;
}
.hs-richtext h1{
  font-size: 20px;
  margin-top: -30px;
  margin-bottom: 0px;
}



.hs-error-msg{
  font-size:10px;
  margin-top: -30px!important;
  color: red;
}
.hs-button{
  background-color: #592ef5!important;
  color: white;
  font-weight: 600;
  border:none;
  margin-top: 20px;
}

.hbspt-form p{
  font-size: 12px;
  line-height: 1.2;
  display: inline-block!important;
}
.hbspt-form .input{
  margin-right: 0px;
  width: 100%!important;
  padding-left: 5px;
  padding-right: 5px;
}
.hbspt-form form-columns-2, .hbspt-form form-columns-2{
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}

#modal0 .popupUseCaseImg{
  padding:0;
}
#modal0 .popupUseCaseData{
  padding-right: 0px;
}
#modal0 .popupUseCaseImg .popupUseCaseImg{
  width: 45%;
}

#modal0 .popupUseCaseImg .popupUseCaseData{
  width: 55%;
  padding: 0;
  background-color:white;
  padding-left: 30px;
  padding-right: 10px;
}

#modal0 .popupUseCaseImg .popupUseCaseData .popupHeading{
  font-size: 20px;
}
#modal0 .popupUseCaseImg .popupUseCaseData .popupSubtext{
  font-size: 10px;
  line-height: 1.2;
}

.sticky-top{
  background-color: rgba(5, 19, 53, 0.7)!important;
  backdrop-filter: blur(5px)!important;
  -webkit-backdrop-filter:blur(5px)!important;
  padding-top:10px!important;

}

.navbar-brand{
  /*margin-left: 10%!important;*/
}


@media only screen and (max-width:600px){
  #modal0 .popupUseCaseImg .popupUseCaseData {
    width: 100%;
  }


  #modal0 .popupUseCaseImg .popupUseCaseImg{
    width: 100%;
  }

  #modal0 .popupUseCaseImg {
    display: none;
  }

  #modal0 .tagImgInfo{
    margin-right: 26px!important;
  }
}

html { scroll-behavior: smooth; }
.navbar-logo {margin-left: -15px;}
.navbar-light {
}

.navbar-light .container{
}
#mainCntr{
  margin-top: -70px!important;
}
.dataPlatform {
  padding-top: 20px!important;
}
.hs-error-msg{
  display: none!important;
}
.hs_error_rollup .hs-error-msgs .hs-main-font-element{
  color: red!important;
  text-align: center!important;
  font-size: 12px!important;
}
.hs_error_rollup .hs-error-msgs{
  text-align: center;
}
.look-inside {
  margin-top: 30px;
}
.look-inside:hover{
    -moz-animation: enlarge 0.5s forwards;
    -ms-animation: enlarge 0.5s forwards;
    -o-animation: enlarge 0.5s forwards;
    animation: enlarge 0.5s forwards;
    cursor: pointer;
}


@-webkit-keyframes enlarge{
    100% {-webkit-transform: scale(1.05,1.05)}
}
@-ms-keyframes enlarge{
    100% {-ms-transform: scale(1.05,1.05)}
}
@-o-keyframes enlarge{
    100% {-o-transform: scale(1.05,1.05)}
}
@-moz-keyframes enlarge{
    100% {-moz-transform: scale(1.05,1.05)}
}
@keyframes enlarge{
    100% {transform: scale(1.05,1.05)}
}

#filter{
  margin-top: -60px;
  padding-top: 60px;
}
.dataPlatform{
  padding-bottom: 106px;
}

.subscribeNewsLetter .hbspt-form .legal-consent-container {
    margin-top: 60px;
}