/* Common Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap')

  @font-face {
    font-family: 'Inter';
    src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Inter/Inter-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Inter/Inter-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Inter/Inter-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Inter/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Inter/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Inter/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Inter/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Inter/Inter-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Inter/Inter-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Atlas';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Atlas%20Light/font.woff2') format('woff2'),
    url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Atlas%20Light/font.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Atlas';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Atlas%20Regular/font.woff2') format('woff2'),
    url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Atlas%20Regular/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Atlas';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Atlas%20Semi-Bold/font.woff2') format('woff2'),
    url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Atlas%20Semi-Bold/font.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Atlas';
  src: url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Atlas%20Bold/font.woff2') format('woff2'),
    url('https://80068.fs1.hubspotusercontent-na1.net/hubfs/80068/Digital%20Assets/Fonts/Atlas%20Bold/font.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;`
}

:root {
  --clrGray1: #f5f6f7;
  --clrGray2: #d9d9d9;
  --clrwht: #ffffff;
  --drkgry: #1D1D1F;
  --gry: #6B767F;
  --ltgry: #F4F8FB;
  --green: #00CC88;
  --greenLight: #99EBCF;
  --ffP: Inter,sans-serif;
  --ffS: Atlas,sans-serif;

  --fsBase: 18px;
  --scrolltop: 80px;
}

/* Common Style */

body{
  font-family: var(--ffP);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  color: var(--drkgry); 
}

*{
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html {
  /*   scroll-behavior: smooth; */
  scroll-padding-top: var(--scrolltop);
}
body, ul {
  padding: 0;
  margin: 0;
}

h1,h2,h3,h4,h5{
  font-family: var(--ffS);
}

ul:not([style]) li {
  list-style: none;
}

a, span {
  display: inline-block;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

span.hs_cos_wrapper {
  display: block;
}

a {
  text-decoration: none;
  outline: none;
}
.body-container a:not([class]),
main a:not([class]){
  color: #007b79;
}
h1{
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2{
  font-size: 44px;
  font-weight: 400;
  /*   line-height: 54px; */
  line-height: 1.23;
  color: var(--drkgry);
  margin-bottom: 24px;
}

h3{
  font-size: 36px;
  font-weight: 400;
  line-height: 1.27;
  /*   line-height: 46px; */
}

h4{
  font-size: 28px;
  font-weight: 700;
  line-height: 1.37;
  /*   line-height: 38px; */
} 

p{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--ffP) !important;
  color: var(--drkgry);
  line-height: 155.556%;
  margin-block: 0 32px;
}

p:last-child{
  margin-bottom: 0;
}
.text-white{
  color: var(--clrwht);
}
.bg-black{
  background-color: var(--drkgry);
}

.btn-wrapper{
  margin-top: 24px;
}
.btn{
  display: inline-block;
  padding: 17px 16px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ffS);
  line-height: 1;
  border: 1px solid;
  text-align: center;
  transition: all 0.3s ease 0s;
}
.btn-black{
  background: var(--drkgry);
  color: var(--clrwht);
  border-color:  var(--drkgry);
}
.btn-black:hover{
  background: var(--clrwht);
  color: var(--drkgry);
  border-color:  var(--drkgry);
}
.btn-green{
  background: var(--green);
  color: var(--drkgry);
  border-color:  var(--green);
}
.btn-green:hover{
  background: var(--greenLight);
  color: var(--drkgry);
  border-color:  var(--greenLight);
}
.btn-outline-white{
  background: transparent;
  color: var(--clrwht);
  border-color:  var(--clrwht);
}
.btn-outline-white:hover{
  background: var(--clrwht);
  border-color: var(--clrwht);
  color: var(--drkgry);
}
.row-fluid [class*="span"] {
  min-height: 0;
}

.oh {
  overflow: hidden;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}
.align-end {
  align-items: end;
}
.justify-center{
  justify-content: center;
}
.row-reverse{
  flex-direction: row-reverse;
}
.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}
.page-center {
  max-width: 1320px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.container-content{
  max-width: 1280px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.section-container .page-center{
  max-width: 1182px !important;
}
.st-container .container-content{
  max-width: 1152px;
}
.st__wrapper .container-content{
  max-width: 966px;
}
.sub--heading{
  display: inline-block;
  /*   font-size: 10px; */
  font-size: 12px;
  font-weight: 700;
  font-family: var(--ffP);
  line-height: 20px;
  color: var(--gry);
  text-transform: uppercase;
  /*   padding: 6px 12px; */
  /*   margin-block: 0 24px; */
  margin-block: 0 16px;
  letter-spacing: 1px;
  border-radius: 8px;
}
.tsp-subheading{
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  font-family: var(--ffP);
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;

}
.main--heading{
  font-size: 44px;
  font-weight: 400;
  font-family: var(--ffS);
  line-height: 1.22;
  color: var(--drkgry);
  margin-block: 0 32px;
}
.tg-title{
  margin-top: 0;
  margin-bottom: 32px;
}
.tsp-wrapper{
  padding-block: 90px;
}
.wrapper{
  padding-block: 180px;
}
.pt-banner{
  padding-top: 180px;
}
.seblogcat.new-cat {
  position: relative;
  z-index: 0;
}
.seblogcat__list li:not(.seblogcat__itemactive) {
  color: #002640;
}
.seblogcat__list li:after {
  background-color: var(--clrAccent) !important;
}
.cta-showmore{
  margin-bottom: 0 !important; 
}
.cta-showmore a{
  margin-block: 43px 88px;
  min-width: 228px;
}

/* blog */
.seblog__col:not(.seblog__col--first) .seblog__headerinner {
  padding-bottom: 0;
}

.seblog__col:not(.seblog__col--first) .absolute-full {
  position: relative;
  vertical-align: top;
}

.seblog__col:not(.seblog__col--first) .absolute-full img {
  height: 202px;
  object-fit: cover;
}

.seblog__body h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
  margin-top: 0;
  min-height: 128px;
}
.seblog__body h2 a{
  color: inherit !important;
}

.seblog__cell {
  background: #f4f8fb;
  border-radius: 16px;
  box-shadow: 4px 4px 18px 0 rgba(0,0,0,.12);
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: all .3s ease;
  border: 0;
}

.seblog__authdate {
  color: var(--drkgry);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}
.post-listing .seblog__col--first .seblog__col-featured-batch::before {
  right: 20px;
  top: 20px;
}
.seblog__header .seblog__topic {
  top: 20px;
}
.seblog__body {
  position: relative;
  background: transparent;
}
.seblog__body a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.seblog__topic li a {
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.55;
  /*   margin: 0 0 20px; */
  margin: 0 !important;
  text-transform: uppercase;
}

.top-single-header{ 
  padding-bottom: 30px !important;
}


/* End blog */
.st__content span,
.st__content p{
  opacity: .7;
}
@media (max-width: 1199px){
  .main--heading{
    font-size: 42px;
  }
}

@media (max-width: 991px){
  .main--heading{
    font-size: 38px;
  }
  .wrapper{
    padding-block: 50px;
  }
  .cta-showmore a{
    margin-bottom: 50px;
  }
  .tsp-wrapper{
    padding-block: 40px;
  }
}

@media (max-width: 767px){

  h1{
    font-size: 34px;
    line-height: 1.3;
  }
  h2{
    font-size: 32px;
  }
  h3{
    font-size: 30px;
  }
  p{
    font-size: 14px;
    line-height: 24px;
  } 
  .main--heading{
    font-size: 30px;
    line-height: 1.32; 
    margin-block: 0 24px;
  }
  .btn{
    font-size: 12px;
  }

}

.tp-convv2 .cnvrsn--logo {
  margin: 0 auto 48px;
}

.tp-convv2 .cnvrsn--header {
  max-width: 650px;
}

.tp-convv2 .cnvrsn--header .sub-txt {
  max-width: 600px;
  margin: 0 auto;
}

.tp-convv2 .convrsn--form {
  margin-top: 48px;
}

/* .tp-convv2 .convrsn--form form .hs-richtext {
padding-left: 14px;
} */

.tp-convv2 .convrsn--form form > div {
  margin-bottom: 16px;
}

.tp-convv2 .convrsn--form form>div.hs-fieldtype-select {
  margin-bottom: 24px;
}

.tp-convv2 .convrsn--form form .hs-richtext,
.tp-convv2 .convrsn--form form .hs-richtext p {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  letter-spacing: 0.25px;
}

.tp-convv2 .hs-fieldtype-textarea {
  margin-bottom: 24px;
}

.tp-convv2 .hs-fieldtype-textarea textarea {
  display: flex;
  max-width: 550px;
  width: 100%;
  height: 88px;
  padding: 15px 18px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: rgba(255, 255, 255, 0.10);
  font-family: Inter;
  font-size: 14.625px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px; /* 136.752% */
}

.tp-convv2 .hs-fieldtype-textarea textarea::placeholder {
  color: rgba(255, 255, 255, 0.50);
}

.tp-convv2 .hs-fieldtype-select select {
  font-family: Inter;
  font-size: 14.625px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  height: 50.5px;
  padding: 15px 17px;
}

.tp-convv2 .hs-fieldtype-select select option {
  background: #1d1d1f;
  padding: 4px 10px;
  color: rgba(255, 255, 255, 0.50);
}

.tp-convv2 .hs-form-checkbox {
  padding-left: 20px;
}

.tp-convv2 .hs-form-checkbox label {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.70);
  font-family: Inter;
  font-size: 14.625px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 136.752% */
}

.tp-convv2 .hs-form-checkbox label input {
  max-width: 16px;
}

.tp-convv2 .hs-form-checkbox label span {
  padding-left: 9px;
}

.tp-convv2 .hs-submit {
  margin-top: 48px;
}

/* Marketplace Page */

.ftrd__apps{
  padding-block: 90px;
}

.ftrd__apps .ftrd__hdr{
  margin-bottom: 24px;
}

.ftrd__apps .sub--text{
  margin-bottom: 0;
}

.ftrd__hdr .left--col{
  width: 55%;
}

.ftrd__hdr .right--col{
  width: 45%;
  text-align: right;
}

.ftrd__hdr .ftrd--btn{
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--ffP);
  line-height: 150%;
  color: #007B79;
}

.ftrd__apps-list{
  grid-gap: 16px;
}

.ftrd__apps-list > div{
  width: calc(100% / 4 - 12px);
  min-height: 274px;
  border-radius: 12px;
  border: 1px solid #A8C6DF;
  padding: 16px;
  grid-row-gap: 16px;
  background: #fff;
  flex-direction: column;
  position: relative;
}

.ftrd__apps .ftrd--pic{
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
}

.ftrd--pic img{
  width: 100%;
  height: 100%;
  /*   object-fit: cover; */
  object-fit: contain;
}

.ftrd__apps .ctgry{
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ffP);
  line-height: 200%;
  color: #6B767F;
  letter-spacing: 0.14px;
  text-transform: uppercase;
}

.ftrd__apps .title{
  width: 100%;
  font-size: 22px;
  font-weight: 600;
  font-family: var(--ffS);
  color: #1D1D1F;
  line-height: 127%;
  letter-spacing: 0.22px;
  text-transform: capitalize;
  margin: 0;
}

.ftrd__apps .title a{
  color: #1D1D1F;
}

.ftrd__apps .title a:hover{
  text-decoration: underline;
}

.ftrd__apps .title a:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ftrd__apps-col p{
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--ffP);
  color: #1D1D1F;
  line-height: 155%;
}

@media (max-width: 991px){
  .ftrd__apps-list > div{
    width: calc(100% / 3 - 11px);
  }
}

@media (max-width: 767px){
  .ftrd__apps{
    padding-block: 50px;
  }
  .ftrd__apps-list > div{
    width: calc(100% / 2 - 8px);
  }
  .ftrd__hdr .left--col{
    width: 100%;
  }
  .ftrd__hdr .right--col{
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
    text-align: left;
  }
}

@media (max-width: 640px){
  .ftrd__apps-list > div{
    width: 100%;
  }  
}

/* Marketplace Pages Common CSS */

.loadmore-apps-wrapper,
.loadmore-partners-wrapper{
  text-align: center;
}

.loadmore-apps-wrapper span,
.loadmore-partners-wrapper span{
  cursor: pointer;
}

/* End Marketplace Pages Common CSS */

.hero__popup-cnt .wistia_embed > div.w-chrome{
  width: 100% !important;
  height: 100% !important;
}

/* Sticky Header Style */

body.header-exist{
  padding-top: 80px;
}

body.hide__ancmt-bar{
  padding-top: 80px !important;
}

/* .header.main--header{
position: fixed !important;
top: 0; 
} */

.main__hdr-otr{
  transition: all .3s ease;
}

.header--UpDown{
  transform: none;
}
.header.header--sticky{
  background: rgba(29, 29, 31,100%) !important;
  box-shadow: none !important;
  z-index: 99999 !important;
}

@media (min-width: 1081px){
  .main__hdr-otr{
    width: 100%;
    position: fixed !important;
    top: 0; 
    z-index: 999;
  }
}

@media (max-width: 1080px){
  body.header-exist{
    padding-top: 0;
  }
  .header.main--header{
    position: static !important;
  } 
  body.hide__ancmt-bar{
    padding-top: 0 !important;
  }
}

/* .header.hdr--scrolled{
transform: translateY(-100%) !important;  
} */

.main__hdr-otr.hdr--scrolled{
  transform: translateY(-100%) !important;  
}

.blog-sidebar .back--link:after{
  display: none;
}
/* .tg__ready-section,
.tg--ftr{
position: relative;
z-index: 9999999 !important;
} */