@font-face {
    font-family: 'Mont-Bold';
    src: url('Mont/Mont-Bold.woff')format('woff');
    font-weight:bold;
}
@font-face {
    font-family: 'Mont-SemiBold';
    src: url('Mont/Mont-SemiBold.woff')format('woff');
    font-weight:bold;
}
@font-face {
    font-family: 'Mont-Book';
    src: url('Mont/Mont-Book.woff')format('woff');
    font-weight:bold;    
}
@font-face {
    font-family: 'Mont-Light';
    src: url('Mont/Mont-Light.woff')format('woff');
    font-weight:300;        
}
@font-face {
    font-family: 'Mont-Heavy';
    src: url('Mont/Mont-Heavy.woff')format('woff');
    font-weight:300;        
}
:root {
    /* color */
    --black:#000000;
    --white:#ffffff;
    --codgray:#1a1a1a;
    --sunshade:#ffa92d;
    --eastbay:#28365a;
    --seashell:#f2f2f2;
    --mercury:#e6e6e6;
    --orangepeel:#ffa001;
    --gallary:#ececec;  
    --athensgrey:rgba(228, 232, 237, 0.8);
    --tundora:rgb(78 78 78 / 21%);
    --red:#FF0000;  
    /* font-family */
    --Mont-SemiBold:'Mont-SemiBold';
    --Mont-Bold:'Mont-Bold';
    --Mont-Book:'Mont-Book';
    --Mont-Light:'Mont-Light';
}
body {
    padding: 0;
    margin: 0;
    font-family: var(--Mont-Book);
    font-size: 20px;
    line-height: 24px; 
}
.container-fluid {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    box-sizing: border-box;
}
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;   
    box-sizing: border-box; 
}
.highlight {
    color: var(--sunshade)!important;
}
/* header css start here */
header > .container-fluid {
    background-image: url(../images/header/SVG/web-page.jpg);
    background-position: 0px -200px;
    height: 100vh;
    overflow: hidden;
    width: 100%;
    background-size: calc(100% + 200px);
    background-repeat: no-repeat;    
}
header > .container-fluid:before {
    content: "";
    background-image: url(../images/dots/vector-01.svg);
    position: absolute;
    top: 30%;
    background-position: left;
    width: 320px;
    height: 230px;
    z-index: 9;
    left: -10%;
    background-repeat: no-repeat;
    transform: translateY(-30%);
}
.header.row {
    display: flex;
    flex-wrap: wrap;
    padding: 25px 0 0 0;
}
.header.column.logo {
    flex: 0 0 auto;
}
.header.column.menu {
    flex: 1;
    max-width: unset;
}
.header.column {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
    position: relative;
}
.header.description {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.header.nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    justify-content: flex-end;
}
.header.nav ul li {
    padding: 15px 20px 0 20px;
}
.header.nav ul li a {
    text-decoration: none;
    font-size: 18px;
    font-family: var(--Mont-SemiBold);    
    color: var(--black);
    position: relative;
    padding: 0 0 5px 0;
}
.header.nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    border-bottom: 3px solid var(--sunshade);
    transition:ease-out 0.3s;
}
.header.nav ul li a:hover:after {
    width: 100%;
}
.header.description h1 {
    font-size: 48px;
    line-height: 60px; 
    font-family: var(--Mont-Bold);
}
.header.description span {
    color: var(--white);
    padding-bottom: 20px;
}
.header.description p {
    color: var(--codgray);
    font-size: 20px;
    line-height: 34px;
    padding-bottom: 50px;
    font-family: var(--Mont-Book);  
}
.header.description a {
    font-size: 24px;
    font-family: var(--Mont-SemiBold);
    color: var(--primaryblack);
    background-color: var(--white);
    text-decoration: none;
    padding:  20px 25px;
    border-radius: 40px;    
    transition: all ease-out 0.3s;
}
.header.description a:hover {
    box-shadow: 0 10px 15px 0 var(--tundora);
}
.header.nav nav ul li:nth-child(3)  {
    background-color: var(--sunshade);
    padding: 15px 25px;
    border-radius: 40px;
    margin-left: 20px;
    transition: all ease-out 0.3s;
}
.header.nav ul li:nth-child(3):hover {
    box-shadow: 0 10px 15px 0 var(--tundora);
}
.header.logo img {
    max-width: 220px;
    max-height: 50px;
}
.header.img {
    display: flex;
    justify-content: flex-end;
    /* padding: 50px 0 0 0; */
}
.header.row.title {
    display: flex;
    padding: 5rem 0px;
}
.videoblock {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100vh;
    z-index: 9;
    padding: 3rem 5rem;
    overflow: hidden;
    box-sizing: border-box;
} 
.videoinner {
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%;
}
iframe.demovideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;    
}
.closebutton {
    position: absolute;
    left: auto;
    right: 50px;
    top: 20px;
    bottom: auto;
    z-index: 100;
    margin-bottom: 0px;
    padding: 0px 10px;
    color: var(--white);
    font-size: 32px!important;
    line-height: 1!important;
    text-align: left;
    cursor: pointer;
    background: var(--tundora);
    border-radius: 100%;
}
.closebutton i.fa.fa-close {
    font-size: 24px;    
}
/* header css end here */
/* upgrade css start here */
.upgradebg .container-fluid{
    position: relative;
}
.upgradebg .container-fluid::after{
    content: "";
    background-image: url(../images/dots/yellowdot.png);
    position: absolute;
    bottom: -50%;
    right: 0;
    background-position: center;
    width: 150px;
    height: 230px;
    z-index: 5;
    background-repeat: no-repeat;
    transform: translateY(-100%);   
}
.upgrade.row {
    display: flex;
    margin: 0 -10px;
}
.upgrade.content {
    padding: 5rem 0;
}
.upgrade.column {
    flex: 0 0 calc(100% / 6 - 22px);
    max-width: calc(100% / 6 - 22px);
    margin: 0 10px;
    text-align: center;
    border: solid var(--mercury);
    border-width: 1px 1px 0 1px;
    border-radius: 10px;
    box-shadow: 0px 10px 0 0 var(--sunshade);
    transition: all ease-out 0.3s;
}
.upgrade.column:hover {
    box-shadow: 0px 10px 0 0 var(--eastbay);
    transition: transform ease .6s;
    transform: translateY(-5px);
}
.upgrade.description h2 {
    font-size: 37px;
    line-height: 46px; 
    color: var(--eastbay);    
    font-family: var(--Mont-Bold);
    text-align: center;
    margin: 0;
    padding: 0 0 25px 0;   
}
.upgrade.description p {
    font-size: 20px;
    line-height: 35px;
    color: var(--black);
    font-family: var(--Mont-Book);
    text-align: justify;
    text-align-last: center;
    margin: 0;
    padding: 20px 0 40px 0;
}
.upgrade.column p {
    font-size: 14px;
    color: var(--black);
    font-family: var(--Mont-SemiBold);
    text-align: center;
}
.upgrade.column img {
    width: 80px;
    height: 80px;
} 
.carddata {
    padding: 30px;
}
/* upgrade css end here */
/* ourbenefits css start here */
.ourbenefitsbgcolor .container-fluid {
    position: relative;
}
.ourbenefitsbgcolor .container-fluid::before {
    content: "";
    background-image: url(../images/dots/lightdot.png);
    position: absolute;
    top: 92%;
    left: 0;
    width: 150px;
    height: 230px;
    background-position: center;
    z-index: 5;
    background-repeat: no-repeat;
    transform: translateY(-5%);
}
.ourbenefitsbgcolor .container-fluid::after {
    content: "";
    background-image: url(../images/dolightdot.png);
    position: absolute;
    bottom: -8%;
    right: 0;
    background-position: center;
    width: 160px;
    height: 230px;
    z-index: 2;
    background-repeat: no-repeat;
    transform: translateY(2%);
}
.ourbenefits.content {
    padding: 5rem 0 0;
}
.ourbenefits.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 5rem 0;
    margin: 0 -1rem;
}
.ourbenefits.column {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 1rem 0;
}
.ourbenefitsbgcolor {
    background-color: var(--seashell);
}
.ourbenefits.description {
    text-align: center;
    padding: 0 0 6rem 0;
}
.ourbenefits.description p {
    font-size: 24px;
    line-height: 30px;
    font-family: var(--Mont-Light);
    color: var(--black);
    margin: 0 auto;
    max-width: 1100px;
    padding: 15px 0 0 0;
}
.ourbenefits.description h2 {
    font-size: 48px;
    line-height: 33px;
    color: var(--eastbay);
    font-family: var(--Mont-Bold); 
    margin: 0; 
    padding: 0 0 30px 0;
}
.ourbenefits.column h5 {
    font-size: 24px;
    line-height: initial;
    color: var(--eastbay);
    font-family: var(--Mont-Bold);   
    padding: 15px 0 10px 0;
    margin: 0 auto;
    max-width: 360px;
}
.ourbenefits.column p {
    font-size: 16px;
    font-family: var(--Mont-Book);
    margin: 0 auto;
    padding: 0 20px;
}
.ourbenefits.column img {
    width: 100px;
    height: 100px;
}
.hexagonal .img {
    text-align: center;
}
.hexagonal .description {
    text-align: center;
}
.hexagonal {
    position: relative;
    max-width: 450px;
    min-height: 325px;
    background-color: var(--white);
    padding: 3rem 2rem;
    margin: 1rem;
    border-top: 10px solid var(--eastbay);
    border-bottom: 10px solid transparent;    
    transition: all ease-out 0.6s;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hexagonal:hover {
    border-bottom: 10px solid var(--sunshade);
    border-top: 10px solid transparent;
    transition: all ease-out 0.3s;
    transform: translateY(-8px);
}
/* ourbenefits css end here */
/* withnessgrowth css start here */
.witnessgrowth.content {
    padding: 5rem 0;
}
.witnessgrowth.row {
    display: flex;
    margin: 0 -20px;
}
.witnessgrowth.column {
    flex: 0 0 calc(100% / 2 - 40px);
    max-width: calc(100% / 2 - 40px);
    padding: 0 20px;
}
.witnessgrowthmobilemain {
    display: flex;
    flex-flow: column;
    /* padding: 5rem 0; */
}
.witnessgrowth.img {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}
.witnessgrowth.img img {
    max-width: 480px;
}
.witnessgrowthmobilemain .description h2 {
    font-size: 32px;
    font-family: var(--Mont-Bold);
    color: var(--eastbay);
    padding: 0 0 25px 0;
}
.witnessbg .container-fluid {
    position: relative;
}
.witnessbg .container-fluid::before{
    content: "";
    background-image: url(../images/dots/-3.png);
    position: absolute;
    bottom: 10%;
    right: 0;
    background-position: center;
    width: 160px;
    height: 230px;
    z-index: 25;
    background-repeat: no-repeat;
    transform: translateY(-10%);  
}
.desc {
    flex: 0 1 auto;
    max-width: calc(100%);
    padding: 0 0 0 20px;
}
.witnessgrowth h4 {
    color: var(--eastbay);
    font-size: 24px;
    line-height: 28px;
    font-family: var(--Mont-Bold);
    margin: 0;
}
.witnessgrowth p {
    font-size: 20px;
    line-height: 24px; 
    margin: 0;
    padding: 15px 0;   
}
.mediaobject {
    display: flex;
    padding: 25px 5px;
}
.mediaobject:hover > .cardsmallimage.borderleft {
    box-shadow: 5px 5px 2px 1px var(--orangepeel);
    border-left-color:var(--mercury);
}
.mediaobject:hover > .cardsmallimage.borderright {
    border-right-color: var(--mercury);
    box-shadow: -5px 5px 2px 1px var(--orangepeel);    
}
.cardsmallimage {
    flex: 20%;
    width: 100%;
    height: 100%;
    padding: 25px;
    border-radius: 10%;
    border-color: var(--mercury);
    border-style: solid;
    transition: all ease-out 0.3s;
    text-align: center;
    max-width: 80px;
}
.cardsmallimage.borderleft {
    border: 1px solid var(--mercury);
    border-bottom-color: transparent;
    border-left-color: transparent;
    box-shadow: -5px 5px 2px 1px var(--eastbay);
}
.borderright{
    border: 1px solid var(--mercury);
    border-bottom-color: transparent;
    border-right-color: transparent;
    box-shadow: 5px 5px 2px 1px var(--eastbay);
}
.mediaobject img {
    width: 80px;
    height: 80px;
}
/* withnessgrowth css end here */
/* createbrand css start here */
.createbrandbg .container-fluid {
    position: relative;
}
.createbrandbg .container-fluid::before {
    content: "";
    background-image: url(../images/dots/-3.png);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 160px;
    height: 230px;
    background-position: center;
    z-index: 25;
    background-repeat: no-repeat;
    transform: translateY(0%);
}
.createbrandbg .container-fluid::after {
    content: "";
    background-image: url(../images/dots/yellowround.png);
    position: absolute;
    right: 0;
    bottom: 30%;
    width: 250px;
    height: 400px;
    background-position: left;
    z-index: 5;
    background-repeat: no-repeat;
    transform: translateY(-30%);
}
.createbrand.content {
    padding: 5rem 0;
}
.createbrand.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.createbrand.column {
    flex: 0 0 calc(100% / 2 - 40px);
    max-width: calc(100% / 2 - 40px);
    padding: 0 20px;
}
.createbrand.img {
    display: flex;
    justify-content: flex-start;    
}
.createbrandawareness .description h2 {
    font-size: 32px;
    font-family: var(--Mont-Bold);
    color: var(--eastbay);
}

.createbrandawareness h4 {
    color: var(--eastbay);
    font-size: 24px;
    line-height: 28px;
    font-family: var(--Mont-Bold);
    margin: 0;
}
.createbrandawareness p {
    font-size: 20px;
    line-height: 24px; 
    margin: 0;
    padding: 15px 0;   
}
/* createbrand css end here */
/* innovative css start here */
.innovativebg .container-fluid {
    position: relative;
}
.innovativebg .container-fluid::before {
    content: "";
    background-image: url(../images/dots/yellowround.png);
    position: absolute;
    left: 0;
    top: 50%;
    width: 250px;
    height: 400px;
    background-position: right;
    z-index: 5;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}
.innovative.row {
    display: flex;
    margin: 0 -20px;
}
.innovative.column {
    flex: 0 0 calc(100% / 2 - 40px);
    max-width: calc(100% / 2 - 40px);
    padding: 0 20px;
}
.innovative.img img {
    max-width: 660px;
}
.innovative.img {
    display: flex;
    justify-content: flex-end;
}
.innovativeadaptable h4 {
    color: var(--eastbay);
    font-size: 24px;
    line-height: 28px;
    font-family: var(--Mont-Bold);
    margin: 0;    
}
.innovativeadaptable p {
    font-size: 20px;
    line-height: 24px; 
    margin: 0;
    padding: 15px 0;   
}
.innovativeadaptable h3 {
    font-size: 31px;
    font-family: var(--Mont-Bold);
    color: var(--eastbay);
    margin: 0;
    padding: 0 0 15px 0;
}
.innovative.content {
    padding: 5rem 0;
}
/* innovative css end here */
/* willing css start here */
.willing.row {
    display: flex;
}
.willing.column {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
}
.willing.img img {
    max-width: 500px;
}
.willing.img {
    display: flex;
    justify-content: flex-end;
}
section.willingbgcolor {
    background-color: var(--mercury);
}
.willingtointegrate .description h2 {
    font-size: 32px;
    font-family: var(--Mont-Bold);
    color: var(--eastbay);
    line-height: 40px;
}
.willingtointegrate p {
    line-height: 36px;
    font-size: 22px;
    padding: 0 0 20px 0;
}
.willingtointegrate .description a {
    font-size: 24px;
    font-family: var(--Mont-SemiBold);
    color: var(--primaryblack);
    background-color: var(--sunshade);
    text-decoration: none;
    padding: 20px 25px;
    border-radius: 40px;
    transition: all ease-out 0.3s;
}
.willingtointegrate .description a:hover {
    box-shadow: 0 10px 15px 0 var(--tundora);
}
.willingtointegrate .description {
    padding: 4rem 0;
}
.willing.content {
    padding: 5rem 0;
}
.willingbgcolor .container-fluid {
    position: relative;
}
.willingbgcolor .container-fluid::before {
    content: "";
    background-image: url(../images/dots/yellowdot.png);
    position: absolute;
    top: 85%;
    background-position: center;
    width: 150px;
    height: 230px;
    z-index: 5;
    background-repeat: no-repeat;
    transform: translateY(-10%);
}
.willingbgcolor .container-fluid::after {
    content: "";
    background-image: url(../images/dots/-3.png);
    position: absolute;
    top: -15%;
    right: 0;
    background-position: center;
    width: 160px;
    height: 230px;
    z-index: 25;
    background-repeat: no-repeat;
    transform: translateY(-10%);
}
/* willing css end here */
/* incredible css start here */
.incredible.row {
    display: flex;
    justify-content: space-between;
    margin: 0 -20px;
}
.incredible.column {
    flex: 0 0 calc(100% / 2 - 40px);
    max-width: calc(100% / 2 - 40px);
    position: relative;
    padding: 0 20px;
}
section.incrediblebgcolor {
    background-color: var(--seashell);
}
.incredible.content {
    padding: 5rem 0;
}
.incredible.description { 
    text-align: center;
    padding: 0 0 6rem 0;
}
.incredible.description h2,.havequestiontitle h2 {
    line-height: 40px;
    font-size: 48px;
    color: var(--eastbay);
    font-family: var(--Mont-Bold);  
    margin: 0;
    padding: 0 0 30px 0; 
}
.incredible.description p {
    font-size: 24px;
    line-height: 30px;
    font-family: var(--Mont-Light);
    color: var(--black);
    margin: 0 auto;
    max-width: 1100px;
}
.incredible.column h4 {
    color: var(--eastbay);
    font-size: 20px;
    line-height: 28px;
    font-family: var(--Mont-Bold);
    margin: 0;
    text-align: left;
}
.incredible.column p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    text-align: left;
}
.incredibledefeatures2 {
    text-align: end;
}
.incredible.column .media.border_right:hover, .incredible.column .media.border_left:hover{
    border-color: var(--sunshade);
}
.incredible.column .media.border_right{
    border-right: 5px solid var(--eastbay);
}
.incredible.column .media.border_left{
    border-left: 5px solid var(--eastbay);
}
.incredible.column .media {
    display: flex;
    padding: 18px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 35px;
    min-height: 125px;
    transition: all ease .6s;   
}
.incredible.column .media.border_right:hover{
    transition: all ease .6s;
    transform: translateX(10px);
    box-shadow: 0 20px 15px -10px rgba(183,183,183,.4);
}
.incredible.column .media.border_left:hover {
    transition: all ease .6s;
    transform: translateX(-10px);
    box-shadow: 0 20px 15px -10px rgba(183,183,183,.4);
}
.incredibledefeatures2 .description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.incredible.img {
    width: 80%;
    margin: 0 auto;
}
.incredible .media .images {
    display: flex;
    justify-content: flex-end;
}
.incredible .media .img img {
    width: 60px;
}
.incredible .media .img {
    max-width: 60px;
    max-height: 60px;
    padding: 0 15px 0 0;
    border-radius: 20%;
    background-color: var(--white);
}
section.incrediblebgcolor {
    position: relative;
}
 .incredible .media .img:hover {
  background-color: transparent;
  border-radius: 20%;
}
.incrediblebgcolor .container-fluid {
    position: relative;
}
.incrediblebgcolor .container-fluid::before {
    content: "";
    background-image: url(../images/dots/yellowdot.png);
    position: absolute;
    bottom: -5%;
    right: 0;
    background-position: center;
    width: 150px;
    height: 230px;
    z-index: 5;
    background-repeat: no-repeat;
    transform: translateY(-5%);
 
}
/* incredible css end here */
/* review css start here */
.review.content {
    padding: 5rem 0;
}
.review.row {
    display: flex;
    margin: 0 -20px;
}
.review.column {
    flex: 0 0 calc(100% / 2 - 40px);
    max-width: calc(100% / 2 - 40px);
    padding: 0 20px;
}
.readmorereview.images {
    display: flex;
    margin: 0;
    padding: 50px 0 0 0;
    justify-content: space-between;   
}
.review.column h2 {
    font-size: 32px;
    font-family: var(--Mont-Bold);
    color: var(--black);
    line-height: 38px;
    margin: 0;
    padding: 0 0 50px 0;
}
.review.column span {
    font-size: 32px;
    font-family: var(--Mont-Heavy);
    color: var(--eastbay);
}
.readmorereview a {
    font-size: 24px;
    line-height: 30px;
    font-family: var(--Mont-SemiBold);
    color: var(--black);
    text-decoration: none;
    padding: 0 0 5px 0;
    border-bottom: 3px solid var(--sunshade);
}
.cardimage1 img {
    width: 70px;    
}
.reviewcarousel {
    border: 2px solid var(--athensgrey);
    border-radius: 10px;
    padding: 35px 35px 65px;
    box-shadow: 3px 3px 6px 6px var(--athensgrey);
    background-color: var(--white);
}
.reviewstar img {
    width: 100px;
    height: 35px;
    text-align: right;
    padding: 10px 0 0 0;
}
.cardimages {
    display: flex;
}
.cardimage1 {
    flex: 0 0 auto;
}
.customername {
    flex: 1;
    padding: 20px 0 0 15px;
}
.review.column p {
    font-size: 18px;
    line-height: 22px;
    font-family: var(--Mont-Book);
    text-align: unset;   
}
.review.column .customername .customer {
    margin: 0;
    font-family: var(--Mont-SemiBold);
}

section.reviewbg {
    background-image: url(../images/reviews/SVG/Asset_39.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 225px) calc(100% - 0px);
    background-size: 40%;
}
.reviewcarousel button.owl-dot {
    margin-right: 5px;
} 
.reviewcarousel button.owl-dot.active {
    border: 2px solid var(--eastbay)!important;
    border-radius: 50%!important;
    padding: 2px !important;
}
.reviewcarousel .owl-carousel .owl-item img {
    width: 70px!important;
}
.reviewcarousel .owl-theme .owl-dots .owl-dot span {
    background: var(--eastbay)!important;
    margin: 0;
}
.reviewcarousel .owl-carousel button:focus {
    outline: none !important;     
}

/* review css end here */
/* havequestion css start here */
.havequestion.row {
    display: flex;
}
.havequestion.column {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
}
.havequestionbgcolor {
    background-image: url(../images/footer/web-page-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
}
.havequestion.img {
    display: flex;
    justify-content: flex-end;
}
.havequestion.content {    
    margin: 0;
    padding: 6rem 0;
}
.havequestiontitle h2 {
    text-align: center;
}
.havequestion.form form {
    display: flex;
    flex-direction: column;
    max-width: 100%;   
    
}
.havequestion.column form legend {
    font-size: 32px;
    font-family: var(--Mont-Bold);
    line-height: 36px;
    padding: 10px 0 0 0;
}
.havequestion form .control input, form .control textarea {
    width: 70%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--white); 
    outline: none;   
}
.havequestion form input {
   padding: 25px 0 10px 0;
   margin: 0 0 20px 0;
}  
label.error {
    color: var(--red) !important;
    font-size: 1rem !important;
    display: block;
}  
.havequestion form button {
    width: 70%;
    padding: 15px 25px;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    font-family: var(--Mont-SemiBold);
    color: var(--primaryblack);
    margin: 30px 0 0 0;
    transition: all ease-out 0.3s;
    background-color: var(--white);
}
.havequestionbgcolor .container-fluid {
    position: relative;
}
.havequestionbgcolor .container-fluid::after {
    content: "";
    background-image: url(../images/dots/vector-01.svg);
    position: absolute;
    bottom: -5%;
    left: 0;
    background-position: center;
    width: 160px;
    height: 220px;
    z-index: 2;
    background-repeat: no-repeat;
    transform: translateY(-10%);
}
.havequestion form button:hover {
    box-shadow: 0 10px 15px 0 var(--tundora);
}
form button:focus {
    outline: none;
}
.havequestion form label {
    font-size: 16px;
    color: var(--white);
    width: 70%;
    position: relative;
}
.control {
    position: relative;
    padding-bottom: 20px;
}
label.error.fail-alert{
    position: absolute;
    bottom: 0;
}
#instantform label.error.fail-alert {
    bottom: -30px;
    left: 10px;
}
input#checkbox {
    margin-top: 20px;
}
label#emails-error
{
    width: unset !important;
}
label#message-error{
    bottom: -10px;
}
label#checkbox-error {
    bottom: -20px;
}
#privacy {
    text-align: center;     
}
.havequestion form ::placeholder {
    color: var(--white);
    font-size: 20px;
    font-family: var(--Mont-Book);    
}
#termscondition {
    padding-right: 10px;
}
.havequestion.img img {
    max-width: 600px;
}
/* havequestion css end here */
/* getinstanceaccess css start here */
#emailidalert {
    display: block;
}
.getinstanceaccessform span {
    color: var(--red);
    font-size: 16px;
    font-family: var(--Mont-Book);
    text-align: left;
    padding: 10px 0 0 20px;
}
.getinstanceaccessbgcolor {
    background-color: var(--mercury);
}
.getinstanceaccess.content {
    padding: 5rem 0;
}
.getinstanceaccessdescription {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.getinstanceaccessform {
    text-align: center;
}
.getinstanceaccessdescription h1{
    padding: 0rem 0 3rem 10px;
    margin: 0;
    line-height: 60px;
    font-size: 48px;
    color: var(--eastbay);
    font-family: var(--Mont-Bold);
}   
.getinstanceaccess form {
    margin: 0 auto;
    position: relative;
    max-width: 500px;
}
.getinstanceaccessform input {
    border-radius: 40px;
    border: 0;
    width: 100%;
    outline: none;
    box-sizing: border-box;
    padding: 0 25px;
    height: 56px;
}
.getinstanceaccessform button {
    padding: 17px 25px;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    font-family: var(--Mont-SemiBold);
    color: var(--primaryblack);
    background-color: var(--sunshade);
    position: absolute;
    right: 0;
    cursor: pointer;
    line-height: 1;
}
.getinstanceaccessform button i {
    margin-left: 10px;
}
.getinstanceaccessform button:hover {
    box-shadow: 0;
}
.getinstanceaccessform form ::placeholder {
    color: var(--eastbay);
    font-size: 16px;
    font-family: var(--Mont-Book);    
}
.getinstanceaccessform input:focus {
    outline: none;
}
.getinstanceaccessdescription p {
    margin: 0;
}
/* newsletter css end here */
/* footer css start here */
.footer.row {
    display: flex;
    color: var(--white);
    padding: 4rem 0;
    justify-content: space-between;
}
footer {
    position: relative;
    background-color: var(--black);
}
.footer p {
    max-width: 350px;
    margin: 0;
    font-size: 15px;
    font-family: var(--Mont-Book);
}
.footer img{
    width: 300px;
}
.footer h5 {
    margin: 0;
    font-size: 18px;
    font-family: var(--Mont-SemiBold);
    line-height: 24px;
}    
.footer h1 {
    font-size: 40px;
    font-family: var(--Mont-Bold);
    margin-top: 0;
    padding: 10px 0 0 0;
}
.support {
    padding: 0 0 20px 0;
}
.contact {
    padding: 0 0 20px 2rem;
    position: relative;
}
.contact a {
    text-decoration: none;
    color: var(--white);
}
.contact i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
}
a.social_icon {
    display: inline-block;
    text-decoration: none;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    font-size: 24px;
    margin: 10px 10px 0px 0;
    color: var(--white);
    transition: 0.2s;
}
a.social_icon:hover {
    color: var(--sunshade);
}
a.social_icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}
.copyright {
    padding: 10px 0px;
    border-top: 1px solid var(--gallary);
}
.copyright p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
    color: var(--white);
    text-align: center;
}
.footerlinks ul {
    padding: 0;
    list-style: none;
}
li.footeritem {
    padding-bottom: 5px;
}
li.footeritem a {
    font-family: 'Mont-SemiBold';
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    position: relative;
}
li.footeritem a:after {
    content: "";
    width: 0%;
    height: 2px;
    background: var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width ease-in-out 0.4s;
}
li.footeritem a:hover:after {
    width: 100%;
}
/* footer css end here */
.scroll_top {
    position: fixed;
    background: var(--sunshade);
    right: 20px;
    bottom: 30px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    animation: slide-up 0.4s;
}
.scroll_top:after {
    content: "";
    width: 17px;
    height: 17px;
    border-left: 2px solid var(--eastbay);
    border-top: 2px solid var(--eastbay);
    transform: rotate(45deg);
    position: relative;
    top: 5px;
}
p.email_msg {
    position: fixed;
    text-align: center;
    width: 100%;
    margin: 0px;
    padding: 10px 20px;
    box-sizing: border-box;
    bottom: 0;
}
p.email_msg.suceess {
    background: #e5efe5;
    color: #006400;  
}
p.email_msg.error {
    background: #fae5e5;
    color: var(--red);
}

@keyframes slide-up {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
/* moblie Css Start */
@media(min-width:768px){
    .menuicon,.menucolse {
        display: none;
    }
}
@media screen and (max-width:767px){
    .container{
    overflow: hidden;
    }
    header > .container-fluid {
    background-position: -270px 60px !important;
    height: unset;
    overflow: unset;
    width: 100%;
    background-size: cover;
    }
    .header.nav ul {
    align-items: center;
    padding: 0;
    justify-content: unset;
    }
    .header.nav {
        padding-left: 5px;
    }
    .header.row.sticky {
        padding: 12px 5px;
        position: fixed;
        background-color: var(--sunshade);
        width: 100%;
        left: 0;
        z-index: 33;
    }
    .header.column {
    flex: 0 0 calc(100% / 1);
    max-width: calc(100% / 1);
    }
    .header.nav ul li {
    padding: unset;
    padding-right: 10px;
    }
    .header.nav ul {
    align-items: center;
    margin: 0 auto;
    padding: 0;
    justify-content: unset;
    }
    .header.nav ul li a {
        font-size: 16px;
        padding: unset;
    }
    .header.nav ul li:nth-child(3) {
    padding: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    background-color:unset !important;
    }
    .header.description p {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: unset;
    padding: 5px 0;
    max-width: unset !important;
    }
    .header.description h1 {
    font-size: 23px !important;
    line-height: 30px !important;
    max-width: unset !important;
    }
    .header.description a {
    font-size: 16px;
    padding: 10px 15px;
    }
    .header.description {
    position: unset;
    top: unset;
    transform: unset;
    }
    .header.row.title {
    padding: 40px 0px !important;
    }
    .header.row.title .header.column:first-child ,
    .witnessgrowth.column:first-child ,
    .innovative.column:first-child,
    .willing.column:first-child,
    .havequestion.column:first-child {
    order: 2;
    }
    .review.column p {
    font-size: 16px;
    line-height: 22px;
    }
    .upgrade.content {
    padding: 3rem 0;
    }
    .upgrade.description h2 {
    font-size: 26px;
    line-height: 38px;
    text-align: unset;
    padding: 15px 0;
    }
    .upgrade.description p {
    font-size: 16px;
    line-height: 28px;
    text-align: unset;
    text-align-last: unset;
    padding: 10px 0 20px;
    }
    .upgrade.column {
    flex: 0 0 calc(100% / 2 - 52px) !important;
    max-width: calc(100% / 2 - 52px) !important;
    margin: 15px 5px !important;
    padding: 0 20px;
    }
    .upgrade.row {
    flex-wrap: wrap !important;
    margin: 0 0px !important;
    }
    .carddata {
    padding: 20px 0 0;
    }
    .upgrade.column p {
    font-size: 16px;
    }
    .ourbenefits.description p {
    font-size: 18px;
    line-height: 26px;
    }
    .ourbenefits.description {
    padding: 2rem 0;
    }
    .ourbenefits.description h2 {
    font-size: 36px;
    line-height: 24px;
    }
    .ourbenefits.column {
    flex: 0 0 calc(100% / 1) !important;
    max-width: calc(100% / 1) !important;
    padding: unset !important;
    }
    .ourbenefits.row{
    padding: 0 0 2rem 0;
    }
    .hexagonal {
    max-width: unset;
    padding: 1rem 2rem;
    min-height: unset !important;
    }
    .readmorereview .description {
        text-align: unset !important;
    }
    .witnessgrowth.column {
    flex: 0 0 calc(100% / 1);
    max-width: calc(100% / 1);
    }
    .witnessgrowth.content {
    padding: 2rem 0;
    }
    .witnessgrowthmobilemain .description h2 {
    font-size: 30px;
    line-height: 34px;
    margin: 0;
    padding: 2rem 0 10px;
    text-align: unset  !important;
    }
    .cardsmallimage {
    padding: 10px;
    }
    .witnessgrowth p {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0;
    }
    .mediaobject {
    padding: 10px 5px;
    }
    .witnessgrowth.img{
    padding-top: unset;    
    }
    .createbrand.content {
    padding: 2rem 0;
    }
    .createbrand.img img,.willing.img img {
    max-width: 100%;
    }
    .createbrand.column {
    flex: 0 0 calc(100% / 1);
    max-width: calc(100% / 1);
    }
    .createbrandawareness .description h2 {
    font-size: 30px;
    line-height: 34px;
    margin: 0;
    padding: 2rem 0 10px;
    text-align: unset  !important;
    }
    .createbrandawareness p {
    font-size: 16px;
    padding: 10px 0;
    line-height: 24px;
    text-align: unset !important;
    }
    .witnessgrowth h4 {
    font-size: 22px;
    }
    .createbrandawareness h4 {
    font-size: 22px;
    }
    .createbrandawareness .cardsmallimage:first-child {
    order: 1;
    }
    .createbrandawareness .description.desc {
    padding: 0 10px 0 0;
    }
    .innovative.content {
    padding: 3rem 0;
    }
    .innovative.row {
    flex-wrap:wrap;
    margin: 0 -20px;
    }
    .innovative.column {
    flex: 0 0 calc(100% / 1 - 40px);
    max-width: calc(100% / 1 - 40px);
    }
    .innovativeadaptable h3 {
    font-size: 30px;
    line-height: 32px;
    padding: 2rem 0 10px;
    text-align: unset !important;
    }
    .innovativeadaptable h4 {
    font-size: 22px;
    }
    .innovativeadaptable p {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0;
    }
    .willing.column {
    flex: 0 0 calc(100% / 1);
    max-width: calc(100% / 1);
    }
    .willing.row {
    flex-wrap: wrap;
    }
    .willing.content {
    padding: 3rem 0;
    }
    .willingtointegrate .description{
        text-align: unset !important;
        padding: unset;
    }
    .willingtointegrate .description h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 0;
    padding: 20px 0;
    }
    .willingtointegrate p {
    line-height: 30px;
    font-size: 18px !important;
    padding: 0 0 25px;
    margin: 0;    
    }
    .willingtointegrate .description a {
    font-size: 18px;
    padding: 10px 15px;
    }
    .incredible.column {
    flex: 0 0 calc(100% / 1 - 40px);
    max-width: calc(100% / 1 - 40px);
    }
    .incredible.content {
    padding: 3rem 0;
    }
    .incredible.row {
    flex-wrap: wrap;
    }
    .incredible.description {
    padding: unset;
    }
    .incredible.description h2, .havequestiontitle h2 {
    line-height: 38px;
    font-size: 30px;
    }
    .incredible.description p {
    font-size: 18px;
    line-height: 26px;
    }
    .incredible.column .media {
    margin: 25px 0;
    }
    .review.column {
    flex: 0 0 calc(100% / 1);
    max-width: calc(100% / 1);
    }
    .createbrand.row,.review.row {
    flex-wrap: wrap !important;
    }
    .review.content {
    padding: 3rem 0;
    }
    .readmorereview.images {
    display: flex;
    margin: 0 -10px;
    padding: 2rem 0  !important;
    }
    .readmorereview.images .img {
    padding: 0 10px;
    }
    .readmorereview.images img {
    width: 100%;
    }
    .havequestion.row {
    flex-wrap: wrap;
    }
    .havequestion.form form {
    max-width: 100%;
    }
    .havequestion.column {
    flex: 0 0 calc(100% / 1);
    max-width: calc(100% / 1);
    }
    .havequestionbgcolor {
    background-position: -800px 0px;
    background-size: cover;
    }
    .havequestion.content {
    padding: 3rem 0;
    }
    .havequestion form label {
        padding: 10px 0px;
        width: 100%;
    }
    .havequestion form .control input, form .control textarea {
        width: 100%;
    }
    .havequestion form button{
        width: 100%;
    }
    .getinstanceaccessdescription h1 {
    padding: 0rem 0 2rem 10px;
    line-height: 40px;
    font-size: 32px !important;
    max-width: unset;
    text-align: unset !important;
    }
    .getinstanceaccess form {
    max-width: unset;
    }
    .getinstanceaccessform input {
    padding: 0 15px;
    height: 40px;
    }
    .getinstanceaccessform button {
    padding: 13px 10px;
    font-size: 14px;
    }
    .getinstanceaccessform button i {
    margin-left: 5px;
    }
    .getinstanceaccessform form ::placeholder {
    font-size: 13px;
    }
    .footer p{
    font-size: 14px;
    }
    .footer.column {
    padding: 15px 0;
    }
    .footer.row {
    display: block;
    padding: 3rem 0;
    }
    li.footeritem a {
    font-size: 14px;
    padding-left: 5px;
    }
    .footer h1 {
    margin-top: 5px;
    padding: unset;
    font-size: 30px;
    }
    .footer img {
    width: 240px;
    }
    .support{
    padding: unset;
    }
    .contact a {
    font-size: 14px;
    }
    .header.column.menu {
        position: absolute;
        background: var(--sunshade);
        left: 110%;
        height: 50px;
        top: 0;
        display: flex;
        padding: 0 10px;
        align-items: center;
        transition: left 0.4s ease-in-out;
        width: 100%;
        line-height: 0;
    }
    .header.column.menu.active{
        left: 0;
    }
    .header.logo img {
        max-width: 130px;
    }
    .header.logo {
        padding-left: 7px;
        line-height: 0;

    }
    .menuicon,.menucolse {
    position: absolute;
    right: 25px;
    top: 50%;
    display: block;
    transform: translateY(-50%);
    }
    .menucolse{
        right: 40px !important;
    }
    .videoblock{
    padding: 0 20px;
    }
    .videoinner {
    top: 50%;
    transform: translateY(-50%);
    }
    .closebutton {
    right: 0;
    top: 32%;
    transform: translateY(-32%);
    }
}
@media(min-width:560px) and (max-width:767px) {
    .footer.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    }
    .footer.column {
    padding: 15px 10px;
    max-width: calc(100% / 2 - 20px);
    flex: 0 0 calc(100% / 2 - 20px);
    }
    .closebutton {
    right: 0;
    top: 25%;
    transform: translateY(-25%);
    }
}
/* moblie Css End */

/* media query star here */
@media (max-width:1024px){ 
    .upgrade.row {
        margin: 0 -20px 0 0;
        flex-wrap: wrap;       
    }    
    .upgrade.column {
        flex: 0 0 calc(100% / 3 - 22px);
        max-width: calc(100% / 3 - 22px);
        margin: 0 20px 30px 0;
    }     
    header > .container-fluid {
        background-position: 0px bottom;
        background-size: cover;  
        height: unset;
        overflow: unset;      
    }
    .header.column {
        flex: 0 0 calc(100% / 1);
        max-width: calc(100% / 1);
        position: unset;        
    }
    .header.row.title {
        display: flex;
        padding: 5rem 0px 2rem 0;
    }
    .header.description {
        position: unset; 
        top: 0;
        transform: unset;       
    }
    .header.description h1 {
        font-size: 32px;
        line-height: 40px;
        max-width: 455px;
    }
    .header.description p {
        max-width: 650px;
    }
    .header.img {
        display: block;
        padding: 3rem 0 0 0;
        text-align: center;
    }
    .videoinner {
        top: 50%;
        transform: translateY(-50%);
    }
    .closebutton {
        top: 25%;
    }
    .ourbenefits.description {
        padding: 0 0 2rem 0;
    }
    .ourbenefits.column {
        flex: 0 0 calc(100% / 2);
        max-width: calc(100% / 2);
    }
    .witnessgrowth.row {
        flex-wrap: wrap;
    }
    .witnessgrowth.column {
        flex: 0 0 calc(100% / 1 - 40px);
    max-width: calc(100% / 1 - 40px);
    }
    .hexagonal {
        min-height: 360px;
    }
    .createbrandawareness .description h2, .innovativeadaptable h3, .witnessgrowthmobilemain .description h2, .willingtointegrate .description, .ipedtextcenter, .innovativeadaptable .innov.description p {
        text-align: center;
    }
    .witnessgrowth.img {
        justify-content: center;
    }
    .readmorereview,.reviewcard {
        max-width: unset!important;
    }              
    .createbrand.row {
        flex-wrap: wrap-reverse;
        margin: 0;
    }
    .createbrand.column,.innovative.column,.incredible.column,.willing.column,.review.column {
        flex: 0 0 calc(100% / 1);
        max-width: calc(100% / 1);
        padding: 0;
    }
    .innovative.row,.incredible.row,.willing.row, .review.row  {
        flex-wrap: wrap;
        margin: 0;
    }
    .willingtointegrate p {
        font-size: 22px;
    }
    .willing.img {
        justify-content: center;        
    }
    .createbrand.img img {
        max-width: 480px;
    }
    .innovative.img img {
        max-width: 480px;
    }
    .header.img img {
        max-width: 480px;
    }     
    .createbrand.img,.innovative.img {        
        justify-content: center;
    }    
    .willingtointegrate .description,.readmorereview .description {
        text-align: center;
    }     
    .readmorereview.images{
        padding: 50px 0;
    }
    section.reviewbg {
        background-position: calc(100% - -5px) calc(100% - -7px);
        background-size: 100% 60%;
    }    
    .getinstanceaccessdescription h1 {
        font-size: 42px;
        text-align: center;
    }
    li.footeritem a {
        font-size: 14px;
    }
    .footer h1 {
        font-size: 30px;
    }
    .contact a {
        font-size: 16px;
    }
    a.social_icon {
        font-size: 22px;
        width: 30px;
        height: 30px;
    }
    .footer img {
        width: 200px;
    }
    .footer p {
        max-width: 250px;
    }    
}
@media screen and (max-width:1280px){
    header > .container-fluid:before,
    .upgradebg .container-fluid::after,
    .ourbenefitsbgcolor .container-fluid::before,
    .ourbenefitsbgcolor .container-fluid::after,
    .witnessbg .container-fluid::before ,
    .createbrandbg .container-fluid::before,
    .createbrandbg .container-fluid::after,
    .innovativebg .container-fluid::before ,
    .willingbgcolor .container-fluid::before ,
    .willingbgcolor .container-fluid::after ,
    .incrediblebgcolor .container-fluid::before ,
    .incrediblebgcolor .container-fluid::before ,
    .havequestionbgcolor .container-fluid::after {
        content: unset;
    }   
}
@media (min-width:1280px) and (max-width:1440px) {
    header > .container-fluid:before {
        width: 270px;
        left: -15%;
    }
    .upgradebg .container-fluid::after {
        width: 55px;
        height: 160px;
        bottom: -35%;
    }
    .ourbenefitsbgcolor .container-fluid::before {
        width: 55px;
        height: 160px;
        top: 95%;
    }
    .ourbenefitsbgcolor .container-fluid::after {
        width: 55px;
        height: 160px;
        transform: translateY(-1%);
        bottom: -6%;
    }
    .witnessbg .container-fluid::before {
        width: 55px;
        height: 160px;
        bottom: 0;
    }
    .createbrandbg .container-fluid::before {
        width: 55px;
        height: 160px;
    }
    .createbrandbg .container-fluid::after,.innovativebg .container-fluid::before {
        width: 100px;
    }   
    .willingbgcolor .container-fluid::before {
        width: 55px;
        top: 90%;
        height: 160px;
    }
    .willingbgcolor .container-fluid::after {
        top: -10%;
        height: 160px;
        width: 55px;
    }
    .incrediblebgcolor .container-fluid::before {
        width: 55px;
        height: 160px;
        bottom: -4%;
    }
    .havequestionbgcolor .container-fluid::after {
        width: 185px;
        height: 275px;
        bottom: -10%;
        left: -8%;
    }
}