:root {
  --color-dark: #222;
  --paragraph-gray: #222;
  --primary: #99cb24;
  --secondary: #729b12;
  --gray: #d3dfef;
  --primary-light: #a7cfe0;
  --color-white: white;
  --transparent: rgba(0, 0, 0, 0);
  --dark-gray: #afafaf;
  --light-blue: #ebeffd;
  --white: #fff;
  --second-primary: #8BC34A;
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-size: 14px;
  background-color: #fff;
  overflow-x: hidden !important;
  font-family: "Ubuntu", sans-serif;
  box-sizing: border-box !important;
}

div, section, footer {
  box-sizing: border-box;
}


body,
html {
  /* prevent horizontal scrolling */
}

html {
  /* scroll-behavior: smooth;*/
}

li,
ul,
ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-style: normal;
  color: #0c1f3f;
  font-weight:600;
  font-family: "Parkinsans", sans-serif;
}

p {
  font-size: 18px;
  color: var(--color-dark);
  font-style: normal;
  letter-spacing: -0.3px;
}
button,
button:hover,
a,
a:hover {
  transition: 0.4s;
}

a {
  color: var(--color-dark);
}

a:hover {
  color: #000;
}
a,
a:hover,
a:focus,
a:active,
button,
button:focus,
input,
textarea {
  outline: 0;
  text-decoration: none;
}

/* 02. COMMON STYLES */

.relative {
  position: relative !important;
}

/* line height */
.line-height-10 {
  line-height: 10px !important;
}
.line-height-13 {
  line-height: 13px !important;
}
.line-height-18 {
  line-height: 18px !important;
}
.line-height-20 {
  line-height: 20px !important;
}
.line-height-24 {
  line-height: 24px !important;
}
.line-height-22 {
  line-height: 22px !important;
}
.line-height-26 {
  line-height: 26px !important;
}
.line-height-28 {
  line-height: 28px !important;
}
.line-height-30 {
  line-height: 30px !important;
}
.line-height-35 {
  line-height: 35px !important;
}
.line-height-40 {
  line-height: 40px !important;
}
.line-height-45 {
  line-height: 45px !important;
}
.line-height-50 {
  line-height: 50px !important;
}
.line-height-55 {
  line-height: 55px;
}
.line-height-60 {
  line-height: 60px;
}
.line-height-65 {
  line-height: 65px;
}
.line-height-70 {
  line-height: 70px;
}
.line-height-75 {
  line-height: 75px;
}
.line-height-80 {
  line-height: 80px;
}
.line-height-85 {
  line-height: 85px;
}
.line-height-90 {
  line-height: 90px;
}
.line-height-95 {
  line-height: 95px;
}
.line-height-100 {
  line-height: 100px;
}
.line-height-110 {
  line-height: 110px;
}
.line-height-120 {
  line-height: 120px;
}

.font-size-11px {
  font-size: 11px !important;
}
.font-size-12px {
  font-size: 12px !important;
}
.font-size-13px {
  font-size: 13px !important;
}
.font-size-14px {
  font-size: 14px !important;
}
.font-size-15px {
  font-size: 15px !important;
}
.font-size-16px {
  font-size: 16px !important;
}
.font-size-17px {
  font-size: 17px !important;
}
.font-size-18px {
  font-size: 18px !important;
}
.font-size-19px {
  font-size: 19px !important;
}
.font-size-20px {
  font-size: 20px !important;
}
.font-size-21px {
  font-size: 21px !important;
}
.font-size-22px {
  font-size: 22px !important;
}
.font-size-23px {
  font-size: 23px !important;
}
.font-size-24px {
  font-size: 24px !important;
}
.font-size-25px {
  font-size: 25px !important;
}

.font-weight-200 {
  font-weight: 200 !important;
}
.font-weight-300 {
  font-weight: 300 !important;
}
.font-weight-400 {
  font-weight: 400 !important;
}
.font-weight-500 {
  font-weight: 500 !important;
}
.font-weight-600 {
  font-weight: 600 !important;
}
.font-weight-700 {
  font-weight: 700 !important;
}
.font-weight-800 {
  font-weight: 800 !important;
}

.bordernone {
  border: 0 !important;
}
.container {
  max-width: 1340px;
}

.h-auto {
  min-height: auto !important;
  resize: none;
}
.h-100vh {
  min-height: 100vh;
}

.mainBtn {
  background-color: var(--color-dark);
  border: 0;
  font-weight: 500;
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--white);
  font-size: 18px;
}
.mainBtn i{
  margin-left: 10px;
}

.mainBtn:hover {
  color: #fff;
  background-color:black;
}

.mainBtn:focus {
  color: #fff;
}

.mainBtn2 {
  background-color:var(--primary);
  border: 0;
  font-weight: 500;
  border-radius: 50px;
  padding: 0 55px;
  color: var(--white);
  font-size: 21px;
  height: 50px;
  line-height: 50px;
}
.mainBtn2:hover {
  color: #fff;
  background-color: var(--color-dark);
}
.mainBtn2:focus {
  color: #fff;
}

.mainBtn3 {
  background-color: var(--white);
  border: 0;
  font-weight: 700;
  border-radius: 25px;
  padding: 12px 30px;
  color: var(--primary);
  font-size: 18px;
}
.mainBtn3:hover {
  color: #fff;
  background-color: var(--color-dark);
}
.mainBtn3:focus {
  color: #fff;
}

@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

.hide {
  display: none;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}
.color-white {
  color: var(--white);
}

.wrapper {
  position: relative;
}


.read-more{font-size: 13px; color: #666666;transition: .4s;}
.read-more i{height: 28px; width: 28px; text-align: center; line-height: 28px; background-color: #e6e8eb; color: var(--primary); border-radius: 50%;margin-right: 4px;transition: .4s;}
.read-more:hover{ color: var(--primary);}
.read-more:hover i{background-color: var(--primary); color: #fff}

.read-more1{font-size: 13px; color: #fff !important;transition: .4s;}
.read-more1 i{height: 28px; width: 28px; text-align: center; line-height: 28px; background-color: #5e5b5c; color: #fff; border-radius: 50%;margin-right: 4px;transition: .4s;}
.read-more1:hover{ color: #0249d0;}
.read-more1:hover i{background-color: #0249d0; color: #fff}

.read-more2{font-size: 13px; color: #0147d0;transition: .4s; font-weight: 700}
.read-more2 i{height: 28px; width: 28px; text-align: center; line-height: 28px; background-color: #e6e8eb; color: #0147d0; border-radius: 50%;margin-right: 4px;transition: .4s;}
.read-more2:hover{ color: #0249d0;}
.read-more2:hover i{background-color: #0249d0; color: #fff}



.fixed-top {
  top: -40px;
  transform: translateY(40px);
  transition: transform 0.4s;
  background-color: #000 !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 0.3px;
}

.menubar {
  position: relative;
  padding: 0 25px;
  background-color: #000 !important;
  z-index: 9
}

.menubar {
  font-size: 17px;
}
.menubar .logo {
  max-width: 180px;
}
.menubar .navbar-brand {
  padding: 15px 0;
}
.menubar .nav-item {
  margin: 0 7px;
}
.menubar .nav-link {
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.5px;
  border-bottom:solid 2px transparent;
}
.menubar .nav-link:hover {
  color: var(--primary);
  border-bottom:solid 2px var(--primary);
}
.menubar .contactBtn {
  background-color: var(--primary);
  border: 0;
  font-weight: 500;
  border-radius: 25px;
  padding: 8px 25px;
  border: solid 2px var(--color-dark);
}

.menubar a.active{
  color: var(--primary) !important
}


.menubar .contactBtn:hover {
  background-color: var(--secondary);
}

.menubar .qouteBtn {
  background-color: var(--color-white);
  border: 0;
  font-weight: 500;
  border-radius: 25px;
  padding: 7px 25px;
  color: var(--color-dark);
  border: solid 2px var(--color-dark);
  margin-left: 20px;
}

.menubar .qouteBtn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--color-white);
}



.dropdown-toggle.dropdown-down::after {
  vertical-align: 0;
  font-family: "FontAwesome";
  margin: 0 0 0 5px;
  content: "\f078";
  border: none;
  font-size: 13px;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='lime' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.home-hero {
  position: relative;
  padding: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  margin-top: -85px;
}

.home-hero:after{
  position: absolute;
  top: 0;
  right:0;
  left: 0;
  bottom: 0;
  content: "";
  z-index: 1;
  width: 100%;
  height: 100%

}

.home-hero .hero-content {
  position: relative;
  z-index: 9;
  padding: 100px 0;
  min-height:100vh;
  z-index:2;
}



.home-hero .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}




.video-bg {
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

.video-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  background-image:linear-gradient(rgba(0, 0, 0, 0), #000);
}

.video-bg video {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vw;
}


@media (max-aspect-ratio: 16/9) {
    .video-bg{
      width: 100%;
      overflow: hidden;
    }

    .video-bg video{
      width: calc((100vh*16)/9);
      height: 100vh;
      }
  }







.home-hero h1 {
  font-weight: 700;
  font-size: 50px;
  letter-spacing: -1.5px;
  color: var(--white);
  background-size: cover;
  padding-top: 135px;
}

.home-hero p.paragraph-header{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.home-hero p {
  font-size: 19px;
  font-weight: 400;
  font-style: normal;
  color: var(--white)
}

.home-hero .startBtn {
  background-color: var(--primary);
  border: 0;
  font-weight: 500;
  border-radius: 50px;
  padding: 12px 50px 12px 50px;
  color: var(--color-white);
  position: relative;
  transition: 0.4s;
  font-family: "Parkinsans", sans-serif;
  font-size: 18px;
}

.home-hero .startBtn:hover {
  background-color: var(--secondary);
}


h1.section-header{
  letter-spacing: -1.5px;
  position: relative;
  font-size: 36px;
  color: #000;
  padding-bottom: 25px;
  text-align: ce6500
}

h1.section-header:after{
  height: 4px;
  width: 120px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--primary);
}

h1.section-header strong{
  font-weight: 800
}


.entry-features{
  position: relative;
  padding: 50px 0px;
}

.entry-features img{
  max-height: 75px;
  margin-bottom: 20px;
}

.entry-features .item{
  position: relative;
  border:solid 1px #f0f0f0;
  border-radius: 15px;
  padding:45px 35px;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  transition: 0.4s;
  text-align: center;
  overflow: hidden;
}

.entry-features .item:before{
  height: 500px;
  width: 500px;
  border-radius: 50%;
  background-color: #fcffed;
  content: "";
  position: absolute;
  top: -90%
}

.entry-features .item:hover{
  background-color: #f9ffdb;
  border-color: var(--primary)
}

.entry-features .icon{
  height: 70px;
  display:;
  width: 100%;
  text-align: center;
  margin: auto;
  margin-bottom: 10px;
  position: relative;
}

.entry-features h2{
  color: var(--primary);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.entry-features p{
  font-size: 17px;
  margin-bottom: 0
}

.brands{
  position: relative;
  padding: 40px 10px;
}


.industries-area{
  position: relative;
  padding: 100px 0;
  background-repeat: repeat-x;
  background-position: center top;
  background-color: #fcffeb
}

.industries-area .item{
  background-color: #455816;
  border-radius: 10px;
  overflow-x: hidden;
}

.industries-area h2{
  margin: 0;
  padding:6px 0 !important;
  font-size: 18px;
  color: var(--white);
  text-align: center;
  font-weight: 500
}

.industries-area .owl-dots{
  margin-top: 30px !important;
}

.industries-area .owl-dot span{
  background-color: #eaeaea !important;
  height: 6px !important;
  width: 6px !important;
}

.industries-area .active span{
  background-color: var(--primary) !important
}


/* Insight News start*/

.homeblog-area{padding: 95px 15px; position: relative;}
.homeblog-area h6{font-size: 25px; color: var(--primary); line-height: normal;padding-bottom: 5px; font-weight: 700; letter-spacing: -0.5px;}
.homeblog-area h1{font-weight: 900; font-size: 42px; color: #0d1f3f; line-height: 44px;padding-bottom: 5px;margin-bottom: 50px;}
.homeblog-area .push-right{padding-right: 25px;}
.homeblog-area .push-left{padding-left: 35px;}
.homeblog-area .half-tile{padding:0; margin: 0px; background-color: #fff; border-radius:10px;box-shadow: 20px 20px 43px -13px #d8ebf2; overflow: hidden;}
.homeblog-area .img-wrapper {width: 100%;height: auto;overflow: hidden;}
.homeblog-area .inner-img {transition: 0.3s; width: 100% !important;}
.homeblog-area .half-tile:hover .inner-img { transform: scale(1.1);}
.homeblog-area .content-wrap{padding: 20px;}
.homeblog-area h2{font-size: 25px; color: #0c1f3f}
.homeblog-area p{font-size: 14px; line-height: 22px;}

.homeblog-area .strech-tile{position: relative;margin-bottom: 23px}
.homeblog-area .img-wrapper-small {width: 100%;height: auto;overflow: hidden; border-radius: 10px;box-shadow: 20px 20px 43px -13px #d8ebf2;margin-bottom: 15px; }
.homeblog-area h3{font-size: 20px; color: #0c1f3f}
.homeblog-area .strech-tile:hover .inner-img { transform: scale(1.1);}

.cta-1{
  position: relative;
  background-color: #293d4f;
  padding: 100px 15px;
  background-image: url(../img/cta-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.cta-1 h1{
  color: var(--white);
  font-size: 55px;
  letter-spacing: -1.5px;
}

.cta-1 .chatBtn{
  background-color: var(--primary);
  color: var(--white);
  font-family: "Parkinsans", sans-serif;
  font-size: 18px;
  border-radius: 35px;
  padding-left: 35px;
  padding-right: 35px;
}

.cta-1 .chatBtn:hover{
  background-color: var(--secondary)
}

.cta-1 .contactBtn{
  background-color: var(--white);
  color: var(--primary);
  font-family: "Parkinsans", sans-serif;
  font-size: 18px;
  border-radius: 35px;
  padding-left: 35px;
  padding-right: 35px;
}

.cta-1 .contactBtn:hover{
  background-color: var(--secondary);
  color: var(--white)
}

.services-section{
  position: relative;
  padding: 75px 15px;
  background-image: url(../img/about_shape02.png);
  background-repeat: no-repeat;
  background-repeat: repeat-x;
}


.services-section:before{
  background-image: url(../img/about_shape02.png);
  background-repeat: no-repeat;
  background-position: right top;
}

.services-section h1{font-weight: 900; font-size: 42px; color: #0d1f3f; line-height: 44px;padding-bottom: 5px;margin-bottom: 50px;}
.services-section  h6{font-size: 25px; color: var(--primary); line-height: normal;padding-bottom: 5px; font-weight: 600; letter-spacing: -0.5px;}
.services-section h1{font-weight: 900; font-size: 42px; color: #0d1f3f; line-height: 44px;padding-bottom: 5px;margin-bottom: 50px;}

ul.content-list{padding: 0; margin: 0;font-size: 16px; font-weight: 600; color: #000}
ul.content-list li{display: block;padding: 4px 0; position: relative; padding-left: 38px; margin-bottom: 5px;}
ul.content-list li:before{font-family: 'FontAwesome';content: "\f061"; height: 28px; width: 28px; font-size: 12px;text-align: center; line-height: 28px; color: var(--color-dark); background-color: #e6e8eb; position: absolute;top: 0; left: 0; border-radius: 50%;}



.cta-2{
  position: relative;
  background-color: #293d4f;
  padding: 70px 15px;
  background-image: url(../img/cta-bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.cta-2 h1{
  color: var(--white);
  font-size: 48px;
  letter-spacing: -1.5px;
  margin-bottom: 30px;
}

.cta-2 p{
  color: #fff;
  font-size: 17px;
}


.cta-2 .getStartedBtn{
  background-color: var(--primary);
  color: var(--white);
  font-family: "Parkinsans", sans-serif;
  font-size: 20px;
  border-radius: 45px;
  padding-left: 45px;
  padding-right: 45px;
}

.cta-2 .getStartedBtn:hover{
  background-color: var(--secondary)
}


.our-mission{
  position: relative;
  padding:  0px 15px 40px 15px;
}

.our-process{
  position: relative;
  background-repeat: repeat-x;
  background-position: center top;
  padding-top: 50px;
  padding-bottom: 75px;
}

.our-process span.number{
  height: 65px;
  width: 65px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 3px #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  font-size: 35px;
  color:var(--primary);
  font-weight: 700;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: -60px;
  margin-bottom: 15px;
}

.our-process .item{
  background-color: #fcffed;
  border-radius: 45px;
  padding: 20px 15px;
  border: solid 3px #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.our-process p{
  font-size: 15px;
  font-weight: 500
}

.our-process .icon{
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 8px;
}

.our-process h2{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.5px;
}




.cta-3{
  position: relative;
  background-color: #293d4f;
  padding: 70px 15px;
  background-image: url(../img/cta-bg3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.cta-3 h1{
  color: var(--white);
  font-size: 42px;
  letter-spacing: -1.5px;
  margin-bottom: 30px;
}

.cta-3 p{
  color: #fff;
  font-size: 16px;
}


.cta-3 .contactBtn{
  background-color:var(--primary);
  color: var(--white);
  font-family: "Parkinsans", sans-serif;
  font-size: 18px;
  border-radius: 45px;
  padding-left: 45px;
  padding-right: 45px;
}

.cta-3 .contactBtn:hover{
  background-color: var(--secondary);
}



.company-features{
  position: relative;
  padding: 70px 15px;
}


.company-features .item{
  position: relative;
  border:solid 1px #f0f0f0;
  border-radius: 15px;
  padding:25px 35px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  transition: 0.4s;
  min-height: 270px;
}

.company-features .item img{
  max-height: 70px;
}


.company-features .icon{
  height: 70px;
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.company-features h2{
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.company-features p{
  font-size: 16px;
  margin-bottom: 0;
}


.pricing{
  position: relative;
  background-color: #0c1b26;
  padding: 75px 15px;
  background-image: url(../img/pricing-bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover
}





.pricing .content{
  position: relative;
  z-index: 9
}

.pricing table.pricingtable{
  background-color: transparent;
  width: 100%;
  min-width: 1280px;
}

.pricing h1{
  color: #fff
}

.pricing h2{
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #fff

}

.pricing h3{
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--white)
}


.pricing-header-box{
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  margin: 0 7px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  font-weight: normal;
  overflow-x: hidden;
}

.pricing-header-box .header{
  font-size: 22px;
  font-weight: 700;
  color: var(--white)
}

.pricing-header-box p sub{
  color: #fff;
  position: relative;
  top: -1px !important;
  font-weight: 500
}

.pricing-header-box p img{
  max-width: 24px;
  margin: auto;
}


.pricing-header-box .getStartedBtn{
  background-color: var(--white);
  color: var(--color-dark);
  font-size: 16px;
  border-radius: 45px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600
}

.pricing-header-box  .getStartedBtn:hover{
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.pricing .feature-row{
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 15px;

}

.pricing .feature-row td{
  padding: 15px 0;
  border-bottom: solid 1px #f1f1f1;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.pricing .feature-row .check-arrow{
  max-width: 28px;
}


.gettouch{
  background-color: #475524;
  padding: 75px 15px;
  color: var(--white)
}

.gettouch h1.section-header{
  color: #fff
}

.gettouch p{
  color: var(--white)
}

.gettouch label{
  font-size: 15px;
}
.gettouch .form-control{
  background-color: transparent;
  border-color: rgba(255,255,255,0.2);
  box-shadow: none;
  padding: 10px;
  color: #fff;
  resize: none;
}


.campaign-manager{
  position: relative;
  background-color: #475524;
  padding: 75px 10px;
  color: var(--white)
}

.campaign-manager h1{
  color: var(--white);
  margin-bottom: 15px;
}

.campaign-manager .item{
  border:solid 1px rgba(255,255,255,0.5);
  padding: 50px 25px;
  background-color: rgba(0,0,0,0.3);
  border-radius: 35px;
}

.campaign-manager .item img{
  max-width: 70px;
}

.campaign-manager h2{
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 0
}

.campaign-manager p{
  color: var(--white);
}


.campaign-manager h3{
  color: var(--white);
  font-size: 28px;
  margin-bottom: 0
}


.manage-services{
  position: relative;
  padding: 75px 10px;
}


.manage-services h1{
  font-size: 42px;
  letter-spacing: -1.5px;
  margin-bottom: 30px;
}

.manage-services .item{
  border:solid 1px rgba(0,0,0,0.1);
  padding: 30px;
  border-radius: 35px;
}

.manage-services .item img{
  max-width: 70px;
}


.manage-services .item h2{
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 20px
}

.manage-services .item p{
  font-size: 16px;
}



ul.list-1{
  margin: 0;
  padding: 0;
  font-size: 18px;
  letter-spacing: -0.5px;
}

ul.list-1 li{
  margin-bottom: 20px;
  margin-top: 5px;
  position: relative;
  padding-left: 35px;
  color: var(--color-dark)
}

ul.list-1 li:before{
  width: 3px;
  background-color: var(--primary);
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  content: "";
}


.register{
  padding: 75px 10px;
  position: relative;
}

.register p.headertxt{
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--color-dark);
  font-size: 16px;
}

.register .form-area{
  border-radius: 15px;
  border: solid 1px #f5f5f5;
  overflow-x: hidden;
}

.register .left-col{
  min-height: 600px;
}

.register h1{
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.6px;
  margin-bottom: 25px;
}

.register h1 span{
  font-weight: 700;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: -1.5px;
}

.register .left-col p{
  color: #fff;
  font-size: 15px;
}

.register .right-col{
  min-height: 600px;
  width: 100%;
}

.register .field{
  position: relative;
}

.register .field i{
  position: absolute;
  top: 14px;
  left: 15px;
}

.register .form-control{
  padding-left: 40px;
  font-size: 15px;
  color: var(--color-dark);
  letter-spacing: -0.3px;
  box-shadow: none;
  padding-top: 8px;
  padding-bottom: 8px;
}

.register .registerBtn{
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 25px;
  font-size: 17px;
  font-weight: 600
}



.register .registerBtn:hover{
  background-color: var(--color-dark);
  color: var(--white)
}


.launchBg{
  background-color: #0284c7;
  color: var(--white)
}
.launchBg-launch{
  background-color: #0284c7;
}
.launchBg-starter{
  background-color: #79b75e;
}
.launchBg-growth{
  background-color: #664282;
}
.launchBg-scale{
  background-color: #29b997;
}
.launchBg-miqwhitelabel{
  background-color: #d4af37;
}



.starterBg{
  background-color: #86b568;
  color: var(--white)
}

.growthBg{
  background-color: #61447e;
  color: var(--white)
}

.scaleBg{
  background-color: #5bb698;
  color: var(--white)
}

.whiteLableBg{
  background-color: #ceb04e;
  color: var(--white)
}



.footer{
  background-color: #000;
  color: var(--white);
  padding: 50px 0;
}

.footer .logo{
  max-width: 180px;
}

.footer h3{
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}

.footer p, .footer a{
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.footer ul.social{padding: 0; margin: 0; text-align: right; font-size: 22px;}
.footer ul.social li{display: inline-block;margin: 0 4px;}
.footer ul.social li a{color: #85858c; font-size: 20px;}
.footer ul.social li a:hover{color: #fff}