.row-fluid [class*=span] {
    min-height: inherit !important;
}
.header-container-wrapper {
    top: 0;
    position: fixed;
    float: left;
    width: 100%;
    z-index: 99999;
    background: transparent;
}
.header-container-wrapper.fixed {
    background: #2e2e2e;
}
.header-section{
  width:100%;
  float:left;
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  position: relative;
  z-index: 999;
  padding:0 20px;
}
.header-wrapper{
  width:100%;
  float:left;
  max-width:1560px;
  padding:0;
}
.main-header{
  width:100%;
  float:left;
  display:flex;
  align-items:center;
}
.main-header-logo{
  width:100%;
  float:left;
  max-width:100px;
  padding:13px 0;
  transform: translateY(-5px);
}
.main-header-logo-dark{
  width:100%;
  float:left;
  display:block;
}
.main-header-logo-light{
  width:100%;
  float:left;
  display:none;  
}

.header-container-wrapper.fixed .main-header-logo-dark{
  display:none;   
}
.header-container-wrapper.fixed .main-header-logo-light{
  display:block;   
}


.main-header-logo img{
  width:100%;
  float:left;
  max-width:100%;
  height:auto;
}

/* -------------------------------------------- */
/*   Main navigation button secion            */
/* -----------------------------------------*/

.request-a-demo-sec>a {
	float: right;
	width: 100%;
	background: transparent;
	text-align: center;
	cursor: pointer;
	color: #ffffff;
  background:#f0832b;
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 36px;
	border-radius: 55px;
/* 	max-width: 180px; */
  border:1px solid #f0832b;
	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in
}
.transparent .request-a-demo-sec>a{
  background-color:#f0832b;
  border:1px solid #f0832b;
  color:#fff;
}
.request-a-demo-sec>a:hover{
	background-color:#d86d25;
  border:1px solid #d86d25;
  color:#fff;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out
}

.start-free-trial-sec>a {
    float: right;
    width: 100%;
    background:#1483f3;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 38px;
    border-radius: 55px;
    max-width: 218px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 5px;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.start-free-trial-sec>a:hover {
	background-color: #076DD5;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out
}
.start-free-trial-sec>a img {
    transform: translateX(7px); 
  -webkit-transform: translateX(7px); 
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out  
}
.start-free-trial-sec>a:hover img {
    transform: translateX(12px);
  -webkit-transform: translateX(12px);
      -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}


/* -------------------------------------------- */
/*   Main navigation button secion            */
/* -----------------------------------------*/

.main-header-navigation{
  width:100%;
  float:left;
  padding:0 0 0 30px;
  max-width: calc(100% - 400px);
}
.main-header-navigation ul{
  list-style:none;
  padding:0;
  margin:0;
}
.main-header-navigation>ul {
  float: left;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 52px;
  padding-top:25px; 
}
.main-header-navigation>ul>li {
    float: left;
    width: auto;
    position: relative;
    padding: 0 0 25px; 
}
.main-header-navigation>ul>li.has-submenu {
    padding-right: 16px;
}
.main-header-navigation>ul>li.has-submenu:before {
    content: "";
    width: 46px;
    height: 25px;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -webkit-transition: all 0s linear;
    -moz-transition: all 0s linear;
    -ms-transition: all 0s linear;
    -o-transition: all 0s linear;
    transition: all 0s linear;
    background: url(../arrow-submenu.html);
}
.main-header-navigation>ul>li.has-submenu.open:before { 
    visibility:visible;
    opacity:1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.main-header-navigation>ul>li>a {
    float: left;
    width: auto;
    font-size: 16px;
    color: #2e2e2e;
    font-weight: 600;
    font-family: Nunito;
    cursor: pointer;
    position:relative;
  text-decoration:none;
}
.main-header-navigation>ul>li>a:after {
    content: "";
    height: 3px;
    background: #1483f3;
    position: absolute;
    bottom: -2px;
    left: 0;
    width:0;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
.main-header-navigation>ul>li:hover>a:after {
     width: 100%;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear; 
}
.main-header-navigation>ul>li.has-submenu:after {
    content: "";
    width: 6px;
    height: 6px;
    border-left: 2px solid #2e2e2e;
    border-bottom: 2px solid #2e2e2e;
    position: absolute;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 9px;
    right: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.main-header-navigation>ul>li.has-submenu.open:after {
    transform: rotate(136deg);
    -webkit-transform: rotate(136deg);
    top: 12px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.header-container-wrapper.fixed .main-header-navigation>ul>li.has-submenu:after {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.sub-menu-wrapper {
    position: absolute;
    width: 100vw;
    background: #fff;
    top: 100%;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    max-width: 1400px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -webkit-transition: opacity 0.2s ease-in;
    -moz-transition: opacity 0.2s ease-in;
    -ms-transition: opacity 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
}
.main-header-navigation>ul>li.has-submenu.open .sub-menu-wrapper {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -webkit-transition: opacity 0.2s ease-in;
    -moz-transition: opacity 0.2s ease-in;
    -ms-transition: opacity 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
}
.sub-menu-sec {
    float: left;
    width: 100%;
    display: flex;
    padding: 28px 0 0 50px;
    position:relative;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    opacity: 0;
/*     -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; */
}
.main-header-navigation>ul>li.has-submenu.open .sub-menu-sec {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; 
}
.sub-menu {
    float: left;
    width: 100%;
    max-width: 25%;
}
.sub-menu>h3 {
    color: #1483f3;
    font-size: 18px;
    margin: 0 0 20px;
    float: left;
    width: 70%;
    border-bottom: 1px solid rgb(112 112 112 / 15%);
    clear: both;
  padding-bottom:10px;
  font-family: 'Nunito';
  font-weight: 700;
}
.sub-menu>span.hs_cos_wrapper {
    float: left;
    width: 100%;
    clear: both;
    margin-bottom:20px;
}
.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper {
    display: flex;
    float: left;
    width: 100%;
}
.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul{
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
}
.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul li{
    width: 100%;
    float: left;
  margin-bottom:15px;
}
.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul li a{
    float: left;
    width: auto;
    font-size: 16px;
    line-height: 19px;
    color: #2e2e2e;
    position: relative;
    cursor:pointer;
    font-weight: normal;
    text-decoration:none;
    font-family: Roboto,sans-serif;
    -webkit-transition: all 0s ease-in;
    -moz-transition: all 0s ease-in;
    -ms-transition: all 0s ease-in;
    -o-transition: all 0s ease-in;
    transition: all 0s ease-in;   
}
.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul li a:hover{
    color: #1483f3;
    -webkit-transition: all 0s ease-in;
    -moz-transition: all 0s ease-in;
    -ms-transition: all 0s ease-in;
    -o-transition: all 0s ease-in;
    transition: all 0s ease-in;  
}
.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul li a span{
    float: left;
    width: auto; 
    position: relative;
}
.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul li a span:after {
    content: "";
    width: 12px;
    height: 10px;
    background: url(../svg/arrow-blue-1.svg);
    opacity: 0;
    display: inline-block;
    position: absolute;
    bottom: 4px;
    transform: translateX(15px);
    -webkit-transform: translateX(15px);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;  
}
.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul li a:hover span:after {
    opacity: 1;
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;  
}
.platform .sub-menu-blog,
.solutions .sub-menu-blog,
.resources .sub-menu-blog{
    padding: 48px 80px;
    float: left;
  -webkit-border-top-left-radius: 25px;
-moz-border-radius-topleft: 25px;
border-top-left-radius: 25px;
}
.platform .sub-menu-blog .sub-menu-blog-img,
.solutions .sub-menu-blog .sub-menu-blog-img,
.resources .sub-menu-blog .sub-menu-blog-img{
    float: left;
    width: 100%;
    margin-bottom: 14px;
}
.platform .sub-menu-blog .sub-menu-blog-img img,
.solutions .sub-menu-blog .sub-menu-blog-img img,
.resources .sub-menu-blog .sub-menu-blog-img img{
    float: left;
    max-width: 100%;
  height:auto;
}
.sub-menu-blog-text {
    float: left;
    width: 100%;
    font-size: 16px;
    color: #2e2e2e;
    font-weight:600;
  line-height: 22px;
      -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.sub-menu-blog-text span {
    float: left;
    width: auto;
}
.sub-menu-blog-text span>img {
    margin-left: 10px;
}
.platform .sub-menu-blog>a,
.solutions .sub-menu-blog>a,
.resources .sub-menu-blog>a{
    float: left;
    width: 100%;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.platform .sub-menu-blog:hover>a .sub-menu-blog-text,
.solutions .sub-menu-blog:hover>a .sub-menu-blog-text,
.resources .sub-menu-blog:hover>a .sub-menu-blog-text{
   color: #1483f3;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
#by-initiative-submenu {
    max-width:45%;
}
#by-initiative-submenu.sub-menu>h3{
    width: 90%;
}
#by-initiative-submenu.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul li {
    max-width: 45%;
}
#by-initiative-submenu.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul {
    justify-content: space-between;
}
.main-header-navigation>ul>li.customers li.hs-menu-item a {
    float: left;
    width: auto;
    font-size: 16px;
    color: #2e2e2e;
    font-weight: 600;
    font-family: Nunito;
    cursor: pointer;
    position: relative;
  text-decoration:none;
}
.main-header-navigation>ul>li.customers li.hs-menu-item a:after {
    content: "";
    height: 3px;
    background: #1483f3;
    position: absolute;
    bottom: -2px;
    left: 0;
    width:0;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
.main-header-navigation>ul>li.customers li.hs-menu-item:hover a:after {
     width: 100%;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear; 
}
.main-header-navigation>ul>li.company .sub-menu-wrapper {
    max-width: 1156px;
}
.main-header-navigation>ul>li.company .sub-menu-sec {
    padding: 0 0 0 50px;
}
.main-header-navigation>ul>li.company .sub-menu {
    max-width: 33.33%;
    padding-top: 28px;
}
.main-header-navigation>ul>li.company .news-updates {
    padding: 30px 44px;
    min-height: 300px;
}
.main-header-navigation>ul>li.company .news-updates h3 {
    float: left;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
.main-header-navigation>ul>li.company .news-updates>span.hs_cos_wrapper, 
.main-header-navigation>ul>li.company .news-updates .hs-menu-wrapper {
    float: left;
    width: 100%;
}
.main-header-navigation>ul>li.company .news-updates .hs-menu-wrapper>ul {
    float: left;
    width: 100%;
}
.main-header-navigation>ul>li.company .news-updates .hs-menu-wrapper>ul>li {
    float: left;
    width: 100%;
  margin-bottom: 12px;
}
.main-header-navigation>ul>li.company .news-updates .hs-menu-wrapper>ul>li>a {
    font-size: 16px;
    line-height: 19px;
    color: #2e2e2e;
    display:inline-block;
    text-decoration: none;
    font-weight: normal;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; 
}
.main-header-navigation>ul>li.company .news-updates .hs-menu-wrapper>ul>li>a:hover {
  color:#1483f3;
  text-decoration: underline;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; 
}
.main-header-navigation>ul>li.customers.sign-in li.hs-menu-item a {
    font-weight: 300;
}
.main-header-navigation>ul>li.customers.sign-in .hs_cos_wrapper {
    float: left;
    width: 100%;
    padding-left: 45px;
}

.main-header-navigation>ul>li.resources .sub-menu-wrapper {
    max-width: 1170px;
}
.main-header-navigation>ul>li.resources .sub-menu {
    max-width: calc((100% - 40%) / 2);
}
.main-header-navigation>ul>li.resources .blog-post-resources {
    float: right;
    width: 100%;
    max-width: 40%;
}
.main-header-navigation>ul>li.resources .blog-post-resources h3 {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 33px;
    font-weight: bold;
    color: #2e2e2e;
    padding: 0 50px 5px;
    margin-bottom: 0;
}

.header-container-wrapper.fixed .main-header-navigation>ul>li>a, 
.header-container-wrapper.fixed .main-header-navigation>ul>li.customers li.hs-menu-item a {
    color: #fff;
}

.main-header-btn-section {
    float: right;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: end;
}
.main-header-btn-wrap {
    float: left;
    width: 100%;
    display: flex;
    column-gap: 26px;
    flex-direction: row-reverse;
}
.request-a-demo-sec {
    float: left;
    width: 100%;
    max-width: 200px;
/*    visibility: hidden;
    opacity: 0;
     -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    -ms-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear; */
}
.header-container-wrapper.fixed .request-a-demo-sec {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    -ms-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}
.start-free-trial-sec {
    float: left;
    width: 100%;
    max-width: 218px;
    visibility: hidden;
    opacity: 0;
}
.contact-us-cta-header{
    float: left;
    width: 100%;
    max-width: 218px;
    visibility: hidden;
    opacity: 0;
    display:none;
}
.header-container-wrapper.fixed .start-free-trial-sec,
.header-container-wrapper.fixed .contact-us-cta-header{
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    -ms-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}
li.hs-menu-item a.new {
  position: relative;
  margin-top:20px;
}
li.hs-menu-item a.new:before { 
    content: "NEW"; 
    font-size: 10px;
    background: #f0832b; 
    color: #fff;
    padding: 2px 6px;
    letter-spacing: 1px;
    position: absolute;
    top: -18px;
    left: 0;
    line-height: 10px;
}

@media(min-width:1200px){
  #overview ul li a {
      font-weight: 500;
  }
  .solutions .sub-menu-wrapper,
  .platform .sub-menu-wrapper{
      max-width: 1280px;
  }
  .solutions #by-industry-submenu {
      max-width: 20%;
  }
  .solutions #by-industry-submenu>h3 {
      width: 80%;
  }
  .solutions #blog-post{
      float: left;
      width: 100%;
      max-width: 35%;
  }
  .platform #blog-post{
      float: left;
      width: 100%;
      max-width: 37%;
  }
  .platform #architecture {
      max-width: 14%;
  }
}

@media(max-width:1520px){
/*   .main-header-navigation>ul>li.platform .sub-menu-wrapper,
  .main-header-navigation>ul>li.solutions .sub-menu-wrapper{
      max-width: 1200px;
  } */
  .platform .sub-menu-blog, 
  .resources .sub-menu-blog, 
  .solutions .sub-menu-blog {
      padding: 48px 60px;
  }
  .sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul {
      max-width: 70%;
  }
  .sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul li a:hover:after {
      right: -18px;
  }
  #by-initiative-submenu span.hs_cos_wrapper .hs-menu-wrapper ul {
      max-width: inherit;
  }
}

@media(max-width:1380px){
  .main-header-navigation>ul>li.customers.sign-in .hs_cos_wrapper {
      padding-left: 0;
  }
}

@media(max-width:1366px){
  .main-header-navigation>ul {
      column-gap: 35px;
  }
  .main-header-btn-section {
      max-width: 430px;
  }
  .main-header-navigation {
      padding: 0 0 0 25px;
      max-width: calc(100% - 430px);
  }
  .main-header-navigation>ul>li.resources .sub-menu {
      max-width: calc((100% - 38%) / 2);
  }
  .main-header-navigation>ul>li.resources .blog-post-resources {
      max-width: 38%;
  }
}

@media(max-width:1340px){
  .main-header-navigation>ul>li.company .sub-menu-wrapper,
  .main-header-navigation>ul>li.resources .sub-menu-wrapper{
      max-width: 1070px;
  }
  .platform .sub-menu-blog, 
  .resources .sub-menu-blog, 
  .solutions .sub-menu-blog {
      padding: 40px 40px;
  }
  .main-header-btn-wrap {
      column-gap: 10px;
  }
  #by-initiative-submenu.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul li {
      max-width: 50%;
      padding-right: 40px;
  }
  #by-initiative-submenu.sub-menu>span.hs_cos_wrapper .hs-menu-wrapper ul{
      max-width: 100%;
  }
}

@media(max-width:1280px){
  .start-free-trial-sec a.cta_button.free-trial-btn-email-border {
      padding: 0px 26px !important;
      font-size: 16px !important;
  }
  .request-a-demo-sec>a {
      font-size: 16px;
      padding: 0 30px;
      width: auto;
  }
  .main-header-btn-section {
      max-width: 368px;
  }
  .main-header-navigation {
      max-width: calc(100% - 368px);
  }  
}


/* ------------------------------ */
/*         Mobile Menu          */
/* ----------------------------*/

.mobile-header-section {
	display: none;
	float: left;
	width: 100%;
	justify-content: center;
	background: #fff;
	padding: 0;
	flex-wrap: wrap;
	border-bottom: 1px solid #bebebe;
	position: relative;
	z-index: 999
}

.mobile-menu-collapse li.hs-menu-item a.new {
    display: inline-block;
}
#platform li.hs-menu-item a.new:before {
    top: -5px;
    left: 22px;
}

@media(max-width:1199px) {
	.header-section {
		display: none;
	}
	.mobile-header-section {
		display: flex;
	}
  .m-parent-item.m-news-menu a.sub-menu-btn-arrow {
      background: none;
    color: #f0832b;
  }
}

.mobile-menu-collapse {
	float: left;
	width: 100vw;
	position: absolute;
	top: calc(100%+1px);
	left: 0;
	height: calc(100vh - 69px);
	background: #fff;
	display: none;
	overflow-y: auto;
	overflow-x: hidden;
  top: 69px; 
}

.mobile-menu-collapse-inner {
	float: left;
	width: 200vw;
	display: flex;
	height: 100%
}

.m-header-wrapper {
	float: left;
	width: 100%;
	padding: 15px 15px;
	position: relative
}

.m-header-main-row {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.m-logo-sec {
    float: left;
    width: 100%;
    display: flex;
    justify-content: start;
    padding-left: 0;
    max-width: 100px;
}

.m-logo-sec img {
	max-width: 100px;
	max-height: auto;
	float: left
}

.mobile-menu-toggle {
	float: left;
	width: 100%;
	max-width: 40px;
	display: flex;
	align-items: center
}

.mobile-menu-toggle span {
	position: relative;
	width: 40px;
	border-bottom: 2px solid #2e2e2e;
	height: 23px;
	display: inline-block;
	cursor: pointer
}

.mobile-menu-toggle span:after {
	content: "";
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 2px;
	background: #2e2e2e;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear
}

.mobile-menu-toggle span:before {
	content: "";
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	height: 2px;
	background: #2e2e2e;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear
}

.mobile-menu-toggle span.active {
	border: 0
}

.mobile-menu-toggle span.active:before {
	content: "";
	width: 100%;
	position: absolute;
	top: 50%;
	left: 5px;
	height: 2px;
	background: #2e2e2e;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear
}

.mobile-menu-toggle span.active:after {
	content: "";
	width: 100%;
	position: absolute;
	top: 11px;
	left: 10%;
	height: 2px;
	background: #2e2e2e;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear
}

.m-main-menu {
	float: left;
	width: 100vw;
	padding: 0;
	margin: 0;
	max-width: inherit
}

.m-main-menu ul {
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap
}

.m-main-menu ul li {
	float: left;
	width: 100%;
	border-bottom: 1px solid #bebebe
}

.m-main-menu ul li a {
	float: left;
	width: 100%;
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	font-size: 20px;
	color: #1483f3;
	padding: 12px 40px;
	position: relative;
	cursor: pointer;
	line-height: 30px;
	background: url(../arrow-orange.html) no-repeat center center
}

.m-main-menu ul li a:hover {
	color: #f0832b
}

.m-main-menu ul li a.no-submenu {
    background: no-repeat;
}

.m-submenu {
	float: left;
	width: 100vw
}

.m-submenu-wrap {
	float: left;
	width: 100%;
	padding: 12px 0 0;
	display: none
}

.m-submenu-wrap span.back-to-main {
	float: left;
	width: auto;
	padding: 10px 30px;
	font-size: 20px;
	line-height: 30px;
	color: #1483f3;
	font-family: 'Nunito', sans-serif;
	font-weight: bold;
	cursor: pointer;
	background: url(../arrow-2.html) no-repeat left center;
	margin-bottom: 10px
}

.m-submenu-wrap>a.orange-link {
	float: left;
	width: 100%;
	color: #2e2e2e;
	font-size: 17px;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	border-bottom: 1px solid #bebebe;
	padding: 0 40px 10px;
	display: inline-block
}

.m-submenu-wrap>a.orange-link>* {
	display: none
}

.m-submenu-wrap>a.orange-link>h2 {
	float: left;
	color: #2e2e2e;
	font-size: 17px;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	display: block;
	margin-bottom: 0;
	width: 100%
}

.m-submenu-level-3 {
	float: left;
	width: 100%
}

.back-to-main-outer {
	float: left;
	width: 100%;
	padding: 0 40px
}

.m-parent-item {
	float: left;
	width: 100%
}

.submain-toggle {
	float: left;
	width: 100%;
	padding: 12px 40px;
	border-bottom: 1px solid #bebebe;
	font-size: 17px;
	color: #2e2e2e;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	cursor: pointer;
	position: relative
}

.m-submain-collapse {
	float: left;
	width: 100%;
	display: none
}

.m-submain-collapse>span.hs_cos_wrapper,
.m-submain-collapse>span.hs_cos_wrapper>div {
	float: left;
	width: 100%
}

.m-submain-collapse>span.hs_cos_wrapper>div>ul {
	list-style: none;
	float: left;
	width: 100%;
	margin: 0;
	padding: 0
}

.m-submain-collapse>span.hs_cos_wrapper>div>ul li {
	float: left;
	width: 100%;
	border-bottom: 1px solid #bebebe;
	background-color: #efefef
}

.m-submain-collapse>span.hs_cos_wrapper>div>ul li a {
	float: left;
	width: 100%;
	font-size: 18px;
	font-weight: 300;
	padding: 12px 40px;
	line-height: 30px;
	color: #2e2e2e
}

.m-submain-collapse>span.hs_cos_wrapper>div>ul li a:hover {
	color: #f0832b
}

.submain-toggle:after {
	content: "";
	width: 20px;
	position: absolute;
	left: 50%;
	top: 50%;
	height: 4px;
	background: #f0832b;
	border-radius: 18px;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%)
}

.submain-toggle:before {
	content: "";
	height: 20px;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	background: #f0832b;
	border-radius: 50px;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%)
}

.submain-toggle.active:before {
	display: none
}

.m-parent-item>ul {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none
}

.m-parent-item>ul li {
	float: left;
	width: 100%
}

.m-parent-item>ul a {
	float: left;
	width: 100%;
	padding: 12px 40px;
	border-bottom: 1px solid #bebebe;
	font-size: 17px;
	color: #2e2e2e;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	cursor: pointer;
	position: relative
}

.m-parent-item>ul a>* {
	display: none
}

.m-parent-item>ul a>h2 {
	display: block;
	font-size: 17px;
	color: #2e2e2e;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	margin: 0
}

.active-menu {
	overflow: hidden
}

.m-parent-item.m-news-menu ul {
    float: left;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.m-parent-item.m-news-menu ul li {
    padding: 12px 20px;
    border-bottom: 1px solid #bebebe;
    font-size: 17px;
    color: #2e2e2e;
    font-family: Nunito,sans-serif;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}
.m-parent-item.m-news-menu ul li a {
    font-size: 17px;
    color: #2e2e2e;
    font-family: Nunito,sans-serif;
    font-weight: 700;
}
.all-news-updates-wrap {
    padding: 12px 20px;
    border-bottom: 1px solid #bebebe;
    cursor: pointer;
    position: relative;
    float: left;
    width: 100%;
}
.all-news-updates-wrap a.sub-menu-btn-arrow {
    font-size: 17px;
    font-family: Nunito,sans-serif;
    font-weight: 700;
}
.m-header-left {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: calc(100% - 50px);
    padding-left:0;
    align-items: center;
}

.mobile-header-section .get-a-demo-btn a.cta_button, 
.mobile-header-section .get-started-free-btn-light a.cta_button {
    font-size: 16px;
    line-height: 24px;
    min-width: 140px;
}
.mobile-header-section .get-started-free-btn-light a.cta_button {
    color: #1483f3;
    border-color: #1483f3;
}
.mobile-header-section .get-started-free-btn-light a.cta_button:hover {
    color: #ffffff;
    background-color: #1483f3;
    border-color: #1483f3;
}
.header-container-wrapper .mobile-header-section .start-free-trial-sec {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    -ms-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}
.header-container-wrapper .start-free-trial-sec,
.header-container-wrapper .request-a-demo-sec,
.header-container-wrapper .main-header-btn-wrap{
    width: auto;
}

.mobile-header-section .main-header-btn-section {
    max-width: calc(100% - 63px) !important;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media(max-width:600px) {
  .mobile-header-section .get-a-demo-btn a.cta_button, 
  .mobile-header-section .get-started-free-btn-light a.cta_button {
      font-size: 14px;
      line-height: 24px;
      min-width: 100px;
  }
  .mobile-header-section .get-a-demo-btn a.cta_button:after{
    display:none;
  }
}
@media(max-width:480px) {
	.m-main-menu ul li a {
		background: url(../arrow-orange.html) no-repeat 90% center;
		padding: 12px 20px
	}
	.m-parent-item>ul a,
	.submain-toggle {
		padding: 12px 20px
	}
	.m-submenu-wrap>a.orange-link {
		padding: 0 20px 10px
	}
	.back-to-main-outer {
		padding: 0 20px
	}
	.submain-toggle:after,
	.submain-toggle:before {
		left: 90%
	}
	.m-submain-collapse>span.hs_cos_wrapper>div>ul li a {
		padding: 12px 20px
	}
  .m-logo-sec {
      max-width: 75px;
  }
  .m-logo-sec img {
      max-width: 100%;
      height: auto;
  }
  .mobile-menu-toggle {
      max-width: 30px;
  }
  .mobile-menu-toggle span {
      height: 20px;
  }
  .mobile-header-section .get-a-demo-btn a.cta_button, 
  .mobile-header-section .get-started-free-btn-light a.cta_button {
      padding: 4px 14px;
  }
  .mobile-header-section .main-header-btn-wrap {
      column-gap: 5px;
  }
  .m-header-wrapper {
      padding: 15px 12px;
      min-height: 68px;
  }
  .mobile-menu-toggle span.active:before {
      top: 60%;
      left: 5px;
  }
  .mobile-menu-toggle span.active {
      margin-top: -10px;
  }
}


/* ------------------------------ */
/*         Mobile Menu          */
/* ----------------------------*/
