@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

body {
  font-family: "Nunito Sans", sans-serif;
}

:root {
  --green: #2d7d32;
  --light-green: #e1ffe3;
  --orange: #ffa726;
  --dark-blue: #1f202f;
  --light-blue: #191e54;
  --black: #000000;
  --md-gray: #333333;
  --light-gray: #d9d9d9;
  --white: #ffffff;
  --bg-1: #f7f2eb;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none !important;
  outline: none;
}

.orange-button {
  background: var(--orange);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--white);
  padding: 0 30px;
  border: none;
}

.orange-button:hover {
  background: var(--orange);
}

.green-button {
  background: var(--green);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--white);
  padding: 0 30px;
}

.green-button:hover {
  background: var(--green);
}

.header-area {
  top: 0;
  z-index: 100;
  width: 100%;
  position: absolute;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.header-area.navbar-fixed {
  position: fixed;
  width: 100%;
  z-index: 200;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.header-area.navbar-fixed .header-top {
  /* display: none; */
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding: 5px 0;
}
.header-area.navbar-fixed .header-top{
  font-size: 14px;
}
.header-area.navbar-fixed .header-bottom {
  padding: 5px 0;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.header-area.navbar-fixed .header-bottom .navbar-brand {
  width: 180px;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.header-area.navbar-fixed .header-top-left, .header-area.navbar-fixed .hed-top-content li{
 font-size: 14px;
}
.header-area.navbar-fixed .hed-top-content li a .icon{
 width: 20px !important;
 display: inline-block;
}
.header-area.navbar-fixed .topjoinus{
  font-size: 13px;
  height: 25px;
}
.header-top {
  background: var(--orange);
  padding: 10px 0;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.header-top-left {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.hed-top-content {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.hed-top-content li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.hed-top-content li a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hed-top-content li a .icon {
  width: 25px;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.hed-top-content li a .icon img {
  width: 100%;
}
.topheader-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
.topjoinus{
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  padding: 0 15px;
  height: 28px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.header-bottom {
  background: var(--white);
  padding: 16px 0;
  width: 100%;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

.header-bottom .navbar {
  padding: 0;
}

.header-bottom .navbar-brand {
  width: 250px;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.header-bottom .navbar-brand img {
  width: 100%;
}

.header-bottom .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}

.navbar-nav {
  display: flex;
}

.header-bottom .navbar-nav .nav-item {
  margin-right: 30px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.header-bottom .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.header-bottom .navbar-nav .nav-link {
  padding: 0;
  display: flex;
  align-items: center;
  border-bottom: 5px solid transparent;
}

.header-bottom .navbar-nav .nav-link:hover {
  color: var(--light-blue);
  border-bottom: 5px solid var(--orange);
}

.header-bottom .navbar-nav .nav-link.active {
  color: var(--light-blue);
  border-bottom: 5px solid var(--orange);
}

.header-bottom .navbar-nav .nav-link span {
  width: 20px;
  display: inline-block;
  margin-right: 10px;
}

.header-bottom .navbar-nav .nav-link span img {
  width: 100%;
}
.header-bottom{
  padding: 8px 0;
}

.header-bottom .navbar-nav .nav-link{
  padding: 15px 0;
}
.banner-area {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 145px;
}

.banner-arrow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  margin: 0 auto;
  z-index: 50;
  width: 250px;
}

.banner-arrow img {
  width: 100%;
}

.banner-area img {
  width: 100%;
}

.banner-text {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 40%;
}

.banner-text h1 {
  font-style: normal;
  font-weight: 800;
  font-size: 75px;
  line-height: 80px;
  color: var(--white);
  margin-bottom: 20px;
}

.banner-text p {
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 33px;
  color: var(--white);
  margin-bottom: 50px;
}

.banner-button {
  display: flex;
  align-items: center;
  gap: 20px;
}

.powers-service-area {
  padding: 150px 0 130px 0;
}

.center-heading {
  text-align: center;
  width: 80%;
  margin: 0 auto 50px auto;
}

.center-heading h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: var(--green);
}
.center-heading h3 {
  font-style: normal;
  font-weight: 800;
  font-size: 25px;
  line-height: 30px;
  color: var(--black);
  margin-top: 20px;
}
.center-heading p {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--black);
  margin-top: 20px;
}

.powers-service-boxarea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.powers-service-boxs {
  background: #ffffff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 20px;
  width: 18%;
  margin-bottom: 10px;
  transition: 0.5s;
}

.powers-service-icon {
  width: 60px;
}

.powers-service-icon img {
  width: 100%;
}

.powers-service-boxs p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: var(--green);
  margin-top: 15px;
}

.powers-service-boxs:hover {
  background: var(--green);
}

.powers-service-boxs:hover p {
  color: var(--white);
}

.business-owners-area {
  background: url(../images/bg4.svg) left top no-repeat var(--bg-1);
  background-size: 100%;
  padding: 0 0 150px 0;
  position: relative;
}

.business-owners-top {
  margin-bottom: 50px;
}

.business-owners-top-left {
  padding: 100px 30px 0 0;
}

.business-owners-top-left h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 60px;
  color: var(--green);
  margin-bottom: 40px;
}

.business-owners-top-left p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
}

.business-owners-top-left img {
  width: 100%;
}

.business-owners-bottom {
  padding: 0 50px;
}

.business-owners-bottom-boxarea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.business-owners-bottom-boxs {
  background: var(--green);
  border: 1px solid #788d2e;
  border-radius: 14px;
  padding: 30px;
  width: 32%;
  margin-bottom: 25px;
  text-align: center;
  transition: 0.5s;
}

.business-owners-bottom-boxs:hover {
  background: var(--orange);
}

.business-owners-bottom-boxs h3 {
  font-style: normal;
  font-weight: 800;
  font-size: 25px;
  line-height: 30px;
  color: var(--white);
  margin: 15px 0;
}

.business-owners-bottom-boxs p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}

.business-owners-buttonarea {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.android-ios-area {
  padding: 150px 0;
  background: url(../images/bg3.svg) top center no-repeat var(--white);
}

.android-ios-area-left img {
  width: 100%;
}

.android-ios-area-left h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 60px;
  color: var(--green);
  margin-bottom: 40px;
}

.android-ios-area-left p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
}

.android-ioimg-area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.android-ioimg-area img {
  width: 200px;
}

.pricing-area {
  padding: 150px 0;
  background: var(--white);
}

.price-tab .nav-tabs {
  justify-content: center;
  border-bottom: 0;
}
.price-tab .nav-tabs .nav-link {
  border: none;
  color: var(--white);
  border-radius: 30px;
  padding: 8px 40px;
}
.price-tab .nav-item {
  background: var(--green) !important;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 29px;
  text-align: center;
  height: 65px;
  display: flex;
  align-items: center;
}
.price-tab .nav-item:first-child {
  border-radius: 50px 0 0 50px;
  padding: 0 0 0 15px;
}
.price-tab .nav-item:last-child {
  border-radius: 0 50px 50px 0;
  padding: 0 15px 0 0;
}
.price-tab .nav-tabs .nav-link.active {
  border-radius: 30px;
  color: var(--green);
}
.price-tab .tab-content {
  padding-top: 130px;
}

.pricing-cont-area {
  display: flex;
  border-top: 1px solid var(--light-gray);
  width: 80%;
  margin: 0 auto;
}
.price-row {
  padding: 20px;
  border-bottom: 1px solid var(--light-gray);
  border-left: 1px solid var(--light-gray);
  height: 80px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.price-colum:nth-child(1) {
  width: 40%;
}
.price-colum:nth-child(2),
.price-colum:nth-child(3) {
  width: 30%;
}
.price-whitearea .price-row:nth-child(2),
.price-light-green-area .price-row:nth-child(2),
.price-darkgreen .price-row:nth-child(2) {
  height: 100px;
}
.price-whitearea h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  color: var(--md-gray);
  line-height: 60px;
}
.greentxt {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--green);
}
.price-light-green-area .price-row {
  background: var(--light-green);
}
.price-light-green-area h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  color: var(--green);
  line-height: 35px;
  position: relative;
  z-index: 1;
}
.price-darkgreen {
  position: relative;
}
.price-darkgreen .price-row {
  background: var(--green);
}
.price-darkgreen h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  color: var(--white);
  line-height: 35px;
  position: relative;
  z-index: 1;
}
.price-row h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  text-align: center;
}
.price-row h1 sup {
  font-size: 24px;
  line-height: 29px;
  top: -0.7em;
}
.price-row p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
}
.price-row h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.price-light-green-area .price-row,
.price-darkgreen .price-row {
  text-align: center;
}
.price-darkgreen .price-row h1,
.price-darkgreen .price-row p,
.price-darkgreen .price-row h3 {
  color: var(--white);
}
.price-darkgreen .price-row img {
  filter: brightness(0) invert(1);
}
.premium {
  position: relative;
}
.premium::after {
  background: var(--orange);
  width: 105%;
  height: 100%;
  position: absolute;
  left: -2.5%;
  top: 0;
  content: "";
}
.price-whitearea .price-row,
.price-whitearea .price-row .greentxt {
  align-items: flex-start;
  text-align: left;
}
.price-light-green-area .price-row:last-child {
  border-left: 1px solid var(--light-gray);
}
.price-darkgreen .price-row {
  border-right: 1px solid var(--light-gray);
}
.mostpopuler {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: -40px;
  background: var(--green);
  height: 40px;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
}

.customers-saying-area {
  padding: 150px 0;
  overflow: hidden;
  position: relative;
}

.customers-saying-area::after {
  background: url(../images/bg2.svg) left top no-repeat;
  width: 280px;
  height: 74px;
  position: absolute;
  left: 0;
  top: -1px;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}

.customers-saying-area::before {
  background: url(../images/bg1.svg) left top no-repeat;
  width: 280px;
  height: 74px;
  position: absolute;
  left: 0;
  bottom: -1px;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}

.customers-saying-area .center-heading h2 {
  color: var(--white);
}

.customers-saying-txtarea {
  background: var(--white);
  padding: 30px;
  border-radius: 30px;
}

.customers-saying-txtarea h3 {
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--md-gray);
  margin-bottom: 20px;
}

.customers-saying-txtarea p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--md-gray);
  margin-bottom: 20px;
}

.customers-saying-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.customers-saying-bottom-left {
  width: 50%;
}

.customers-saying-bottom-left h6 {
  color: var(--md-gray);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}

.customers-saying-bottom-left p {
  color: var(--md-gray);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
}

.customers-saying-bottom .icon {
  text-align: right;
}

.customers-saying-sliderarea .owl-dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 10px 0;
}

.customers-saying-sliderarea .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--light-gray) !important;
}

.customers-saying-sliderarea .owl-dot.active {
  background: var(--green) !important;
}

.blog-area {
  width: 100%;
  background: url(../images/bg2.svg) top center no-repeat var(--bg-1);
  padding: 150px 0 120px 0;
}

.blog-big-img {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-small-img {
  width: 100%;
  height: 230px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-area-content {
  margin-bottom: 30px;
}

.blog-area-content h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 40px;
  color: var(--md-gray);
  margin-bottom: 30px;
}

.blog-area-content p {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--md-gray);
  margin-bottom: 20px;
}

.readmore {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--black);
  margin-bottom: 20px;
  transition: 0.5s;
}

.readmore:hover {
  color: var(--green);
}

.free-trial-area {
  width: 100%;
  background: var(--white);
  padding: 150px 0;
}

.free-trial-left h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 50px;
  color: var(--green);
  margin-bottom: 30px;
}

.free-trial-left p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  margin-bottom: 30px;
}

.free-trial-right {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
}

.free-trial-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-area {
  background: var(--dark-blue);
  padding: 100px 0 0 0;
}

.footer-top {
  padding-bottom: 30px;
}

.footer-top-inner {
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top-left img {
  filter: brightness(100);
}

.footer-top-right {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.footer-top-right h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}

.footer-top-right a {
  background: var(--orange);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--white);
  padding: 0 30px;
  margin-bottom: 20px;
}

.footer-top-right a:hover {
  background: var(--orange);
}

.footer-bottom {
  border-top: 1px solid #494a56;
  padding: 15px;
}

.footer-bottom p {
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: var(--white);
}

.banner-area.inner-banner .banner-text{
  width: 100%;
  text-align: center;
}
.contact-boxarea{
  width: 100%;
  padding:150px 0;
}
.contact-boxs{
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
.contact-box_{
  background: var(--green);
border-radius: 15px;
padding: 20px;
text-align: center;
width: 31%;
transition: 0.5s;
}
.contact-box_:hover{
  background: var(--orange);
}
.contact-box_ .icon{
  background: #FFFFFF;
box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
border-radius: 28px;
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
margin: -80px auto 20px auto;
padding: 25px;
}
.contact-box_ .icon img{
  width: 100%;
}
.contact-box_ h2{
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-box_ p{
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: var(--white);
}
.contact-box_ a{
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: var(--white);
  text-decoration: underline !important;
}
.contact-box_:last-child a{
  text-decoration: none !important;
}
.available-by-area{
  padding: 150px 0;
  background: var(--bg-1);
}
.available-by-area-form{
  background: #FFFFFF;
border: 1px solid #D9D9D9;
border-radius: 26px;
padding: 100px;
width: 80%;
margin: 0 auto;
}
.available-by-area-form .form-group{
  margin-bottom: 30px;
}
.available-by-area-form .form-group label{
  font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 20px;
text-transform: capitalize;
color: var(--md-gray);
margin-bottom: 10px;
}
.available-by-area-form .form-group .form-control{
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 4px 32px rgba(51, 32, 81, 0.1);
  border-radius: 10px;
  height: 50px;
  padding: 0 20px;
}
.available-by-area-form .textarea{
 height: 150px !important;
}
.submitnow{
  font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 26px;
text-transform: uppercase;
background: var(--orange);
display: inline-flex;
align-items: center;
justify-content: center;
height: 50px;
padding: 0 20px;
color: #fff;
border: none;
border-radius: 0px;
}
.submitnow:hover{
  background: var(--orange);
}
.different-digital-agency-area{
  padding: 150px 0;
}
.different-digital-agency-bottom{
  margin-top: 80px;
}
.different-digital-agency-left img{
  width: 100%;
}
.different-digital-agencybox{
  display: flex;
  border: 1px solid #788D2E;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 50px;
  justify-content: space-between;
}
.bgorange{
  background: var(--orange);
}
.bggreen{
  background: var(--green);
}
.different-digital-agencybox .left{
  width: 60px;
}
.different-digital-agencybox .left img{
  width: 100%;
}
.different-digital-agencybox .right{
  width: 85%;
}
.different-digital-agencybox .right h2{
  font-style: normal;
font-weight: 800;
font-size: 28px;
line-height: 50px;
color: var(--white);
margin-bottom: 10px;
}
.different-digital-agencybox .right p{
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
color: var(--white);
}
.the-future-area{
  background: var(--bg-1);
  padding: 150px 0;
  position: relative;
}

.the-future-left h2{
  font-style: normal;
    font-weight: 800;
    font-size: 48px;
    line-height: 60px;
    color: var(--green);
    margin-bottom: 40px;
}
.the-future-left p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  margin-top: 30px;
}
.the-future-right img{
  width: 100%;
}
.customer-factor-forarea{
  padding:180px 0 150px 0;
  position: relative;
}
.customer-factor-forarea:before {
  background: url(../images/bg3.svg) left top no-repeat;
  width: 280px;
  height: 74px;
  position: absolute;
  left: 0;
  top: -1px;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}
.customer-factor-content{
  width: 90%;
  margin: 0 auto;
  background: var(--white);
  padding: 100px;
  border-radius: 20px;
}
.customer-factor-list-area{
  display: flex;
  flex-wrap: wrap;
}
.customer-factor-lists{
  display: flex;
  align-items: center;
  width: 33.333%;
  gap:15px;
  padding: 10px;
}
.customer-factor-lists p{
  font-style: normal;
font-weight: 400;
font-size: 17px;
line-height: 25px;
color: var(--black);
}
.aboutcustomers-saying{
  background: var(--bg-1);
}
.aboutcustomers-saying::after, .aboutcustomers-saying::before{
  display: none
}
.aboutcustomers-saying .center-heading h2{
 color: var(--green);
}
.faq-area{
  padding: 150px 0;
  position: relative;
}
.faq-area:before {
  background: url(../images/bg3.svg) left top no-repeat;
  width: 280px;
  height: 74px;
  position: absolute;
  left: 0;
  top: -1px;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}
.faq-area:after {
  background: url(../images/bg7.svg) left top no-repeat;
  width: 280px;
  height: 74px;
  position: absolute;
  left: 0;
  bottom: -1px;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}
.faq-area-tab-area{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-area-tab-area .nav-tabs{
    width: 48%;
    border: 0px;
}
.faq-area-tab-area .nav-tabs .nav-item{
 width: 100%;
 margin-bottom: 30px !important;
}
.faq-area-tab-area .nav-tabs .nav-item:last-child{
  margin-bottom: 0 !important;
}
.faq-area-tab-area .nav-tabs .nav-item .nav-link {
  width: 100%;
  background: #FFFFFF;
border: 1px solid rgba(0, 0, 0, 0.13);
border-radius: 5px;
padding: 20px 15px;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 25px;
color: var(--md-gray);
}
.faq-area-tab-area .nav-tabs .nav-item .nav-link.active{
  background: #2D7D32;
border: 1px solid #2D7D32;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
border-radius: 5px;
color: var(--white);
}

.faq-area-tab-area .tab-content{
  width: 48%;
  padding: 50px;
  border: 1px solid var(--green);
border-radius: 5px;
background: var(--green);
}
.faq-area-tab-area .tab-content .tab-pane{
  border: none;
  background: none;
}
.faq-area-tab-area .tab-content .tab-pane p{
  font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 25px;
margin-bottom: 20px;
color: var(--white);
}
.faq-area-tab-area .accordion-body{
  padding: 0;
}
.welcome-content{
  padding: 150px 0 130px 0;
  background: var(--bg-1);
}
.welcome-content-inner{
  background: #FFFFFF;
border: 1px solid #D9D9D9;
border-radius: 26px;
padding: 50px 30px;
}
.welcome-content-left {
  padding: 25px;
  border: 1px solid #2D7D32;
border-radius: 15px;
}
.welcome-content-left img{
 width: 100%;
}
.welcome-content-right p{
  font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 25px;
color: var(--black);
margin-bottom: 20px;
}
.welcome-content-right img{
  margin-bottom: 20px;
}
.testimonial-tabarea{
  padding: 150px 0;
  background: var(--bg-1) ;
}
.testimonial-tabarea .nav-tabs{
  border: 0px;
  justify-content: center;
}
.testimonial-tabarea .nav-tabs .nav-link{
  background: none;
  border: 0px;
  font-style: normal;
font-weight: 400;
font-size: 20px;
color: var(--black);
border-radius: 30px;
}
.testimonial-tabarea .nav-tabs .nav-link.active{
  background: var(--orange);
  color: var(--white);
}

.testimonial-tabarea .tab-content .accordion-item{
  background: none;
  border: 0px;
  padding: 50px 0 0 0;
}
.testimonial-tabarea .tab-content .accordion-item .accordion-body{
  padding: 0;
}

.testimonial-tabarea-inner .customers-saying-sliderarea .owl-dot {
  background: transparent !important;
  border: 2px solid var(--black) !important; 
}
.testimonial-tabarea-inner .customers-saying-sliderarea .owl-dot.active{
  background: var(--orange) !important;
  border: 2px solid var(--orange) !important; 
}
.lightorange-area{
  padding: 150px 0;
  background: var(--bg-1);
}
.lightorange-area img{
  width: 100%;
}
.lightorange-area h2{
  font-style: normal;
    font-weight: 800;
    font-size: 50px;
    line-height: 60px;
    color: var(--green);
}
.lightorange-area p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: var(--black);
  margin-top: 30px;

}

.white-area{
  padding: 200px 0;
  background: var(--white);
  position: relative;
}
.white-area:before {
  background: url(../images/bg3.svg) left top no-repeat;
  width: 280px;
  height: 74px;
  position: absolute;
  left: 0;
  top: -1px;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}
.white-area:after {
  background: url(../images/bg7.svg) left top no-repeat;
  width: 280px;
  height: 74px;
  position: absolute;
  left: 0;
  bottom: -1px;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}
.white-area img{
  width: 100%;
}
.white-area h2{
  font-style: normal;
    font-weight: 800;
    font-size: 50px;
    line-height: 60px;
    color: var(--green);
}
.white-area p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: var(--black);
  margin-top: 30px;
}
.price-w-o-area .white-center img{
  width: 65%;
  margin:30px auto 0 auto;
  display: block;
}
.price-w-o-area .white-center h2, .price-w-o-area .white-center p{
  text-align: center;
}
.feature-contentarea{
  padding: 150px 0 0 0;
  background: var(--white);
}
.fetures-w-o-area-inner:first-child::before
{
 display: none;
}
.fetures-w-o-area-inner:first-child{
  padding: 100px 0 200px 0;
}
.fetures-w-o-area-inner:last-child::after
{
  background: url(../images/bg9.svg) left top no-repeat;
}
.feturegreen-area{
  padding: 150px 0 200px 0;
  background: var(--green);
  position: relative;
}
.feturegreen-area:after {
  background: url(../images/bg7.svg) left top no-repeat;
  width: 280px;
  height: 74px;
  position: absolute;
  left: 0;
  bottom: -1px;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}
.feturegreen-area h2{
  font-style: normal;
    font-weight: 800;
    font-size: 50px;
    line-height: 60px;
    color: var(--white);
}
.feturegreen-area p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--white);
  margin-top: 30px;
}
.feturegreen-area ul{
  margin: 30px 0 0 0;
  padding: 0 0 0 15px;
  list-style-type: disc;
}
.feturegreen-area ul li{
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--white);
  margin-top: 10px;
}
.feturegreen-area-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
.feturegreen-area-bottom .left{
  width: 68%;
}
.feturegreen-area-bottom .left h4{
  color: var(--white);
}
.feturegreen-area-bottom .right{
  width: 28%;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feturegreen-area-bottom .right img{
 width: 100%;
}
.joinus-cont-area{
  padding: 150px 0;
  background: var(--white);
}
.joinus-cont-left h2{
  font-style: normal;
    font-weight: 800;
    font-size: 50px;
    line-height: 60px;
    color: var(--green);
}
.joinus-cont-right h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
}
.joinus-cont-right ul{
  margin:30px 0 0 0;
  padding: 0;
  list-style-type: none;
}
.joinus-cont-right ul li{
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  margin-bottom: 20px;
  background: url(../images/i27.svg) left 5px no-repeat;
  padding-left: 40px;
}

.let-get-started-area{
  padding: 150px 0;
  background: var(--bg-1);
}
.let-get-started-area-inner{
  width: 80%;
  margin: 0 auto;
}
.let-get-started-area-inner h2{
  font-style: normal;
    font-weight: 800;
    font-size: 50px;
    line-height: 60px;
    color: var(--green);
    margin-bottom: 50px;
}
.let-get-started-formarea{

  padding: 50px;
  background: var(--white);
  border-top: 10px solid var(--green);
  border-bottom: 10px solid var(--green);
  border-left: 1px solid var(--light-gray);
  border-right: 1px solid var(--light-gray);
  border-radius: 26px;
}
.let-getformgroup{
  margin-bottom: 40px;
}
.let-getformgroup h3{
  font-style: normal;
font-weight: 600;
font-size: 25px;
line-height: 30px;
color: var(--green);
border-bottom: 1px solid #D0D0D0;
margin-bottom: 15px;
padding-bottom: 15px;
}

.let-getformgroup .form-group{
  margin-bottom: 30px;
}
.let-getformgroup .form-group label{
  font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 20px;
text-transform: capitalize;
color: var(--md-gray);
margin-bottom: 10px;
}
.let-getformgroup .form-group .form-control{
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 4px 32px rgba(51, 32, 81, 0.1);
  border-radius: 10px;
  height: 50px;
  padding: 0 20px;
}
.let-getformgroup p{
  font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 30px;
text-transform: capitalize;
color: var(--md-gray);
margin-bottom: 30px;
}
.let-getformgroup .form-check{
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.let-getformgroup .form-check-input{
  width: 20px;
  height: 20px;
  border: 1px solid var(--green);
}
.let-getformgroup .form-check-input:focus{
  box-shadow: none;
}
.let-getformgroup .form-check label{
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--md-gray);
  padding-left: 10px;
  width: 100%;
}
.let-getformgroup .form-check-input:checked[type=radio] {
  background-image: url(../images/ball.svg);
  background-size: 55%;
  background-color: var(--white);
}
.digitalagency-area{
  padding:200px 0 150px 0;
  background: var(--white);
  position: relative;
}
.digitalagency-area:before{
  background: url(../images/bg3.svg) left top no-repeat;
  width: 280px;
  height: 74px;
  position: absolute;
  left: 0;
  top: -1px;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}
.digitalagency-left img{
  width: 100%;
}
.digitalagency-right{
  padding-left: 50px;
}
.digitalagency-right h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 50px;
  line-height: 60px;
  color: var(--green);
}
.digitalagency-right p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--black);
  margin-top: 30px;
}
.digitalagency-right .different-digital-agency-eight{
  margin-top: 50px;
}
.digitalagency-right .different-digital-agencybox.bggreen, .digitalagency-right .different-digital-agencybox.bgorange{
 background: none;
 border: none;
 padding: 0;
}
.digitalagency-right .different-digital-agencybox .right h2, .digitalagency-right .different-digital-agencybox .right p{
 color: var(--black);
}
.digitalagency-right .different-digital-agencybox .right p{
  margin-top: 0 !important;
}
.digitalagency-right .different-digital-agencybox .left img{
  filter: brightness(0);
}

.accordion-button:focus{
  box-shadow: none;
}
.navbar-toggler:focus{
  box-shadow: none;
}
