/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: "Poppins";
  src: url("https://www.thanksweb.in/assets/fonts/Poppins-Regular.eot");
  src: url("https://www.thanksweb.in/assets/fonts/Poppins-Regular.ttf")
      format("truetype"),
    url("https://www.thanksweb.in/assets/fonts/poppins-regular-webfont.woff2")
      format("woff2"),
    url("https://www.thanksweb.in/assets/fonts/poppins-regular-webfont.woff")
      format("woff"),
    url("https://www.thanksweb.in/assets/fonts/Poppins-Regular.svg")
      format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-bold";
  src: url("https://www.thanksweb.in/assets/fonts/Poppins-Bold.eot");
  src: url("https://www.thanksweb.in/assets/fonts/Poppins-Bold.ttf")
      format("truetype"),
    url("https://www.thanksweb.in/assets/fonts/poppins-bold-webfont.woff2")
      format("woff2"),
    url("https://www.thanksweb.in/assets/fonts/poppins-bold-webfont.woff")
      format("woff"),
    url("https://www.thanksweb.in/assets/fonts/Poppins-Bold.svg")
      format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("https://www.thanksweb.in/assets/fonts/Poppins-Medium.eot");
  src: url("https://www.thanksweb.in/assets/fonts/Poppins-Medium.ttf")
      format("truetype"),
    url("https://www.thanksweb.in/assets/fonts/poppins-medium-webfont.woff2")
      format("woff2"),
    url("https://www.thanksweb.in/assets/fonts/poppins-medium-webfont.woff")
      format("woff"),
    url("https://www.thanksweb.in/assets/fonts/Poppins-Medium.svg")
      format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url("https://www.thanksweb.in/assets/fonts/Poppins-SemiBold.eot");
  src: url("https://www.thanksweb.in/assets/fonts/Poppins-SemiBold.ttf")
      format("truetype"),
    url("https://www.thanksweb.in/assets/fonts/poppins-semibold-webfont.woff2")
      format("woff2"),
    url("https://www.thanksweb.in/assets/fonts/poppins-semibold-webfont.woff")
      format("woff"),
    url("https://www.thanksweb.in/assets/fonts/Poppins-SemiBold.svg")
      format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Light";
  src: url("https://www.thanksweb.in/assets/fonts/Poppins-Light.eot");
  src: url("https://www.thanksweb.in/assets/fonts/Poppins-Light.ttf")
      format("truetype"),
    url("https://www.thanksweb.in/assets/fonts/poppins-light-webfont.woff2")
      format("woff2"),
    url("https://www.thanksweb.in/assets/fonts/poppins-light-webfont.woff")
      format("woff"),
    url("https://www.thanksweb.in/assets/fonts/Poppins-Light.svg")
      format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: #000;
}
a {
  color: #ff6300;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: none;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 100;
  font-size: 15px;
  line-height: 1.7em;
  /*font-family: 'Poppins-Light';*/
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins-Medium", serif;
  font-weight: 500;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 35px;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 25px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 15px;
}
h6 {
  font-size: 12px;
}
:focus {
  outline: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}
.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background: #ff642d;
  color: #fff;
  transition: all 0.4s;
}
.back-to-top i:hover {
  background: #1a1a1a;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
  background: #106eea;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
}
#topbar.topbar-scrolled {
  top: -40px;
}
#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  text-decoration: underline;
}
#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}
#topbar .contact-info i:first-child {
  margin-left: 0;
}
#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}
#topbar .social-links a:hover {
  color: #fff;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* Header base */
/* New Code */
#header {
  position: fixed;
  top: 5px;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: all 0.5s ease;
  box-shadow: none;
  border: 1px solid transparent;
  padding:0px;
}

/* Sticky header style */
#header.header-sticky {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 5px 0;
  width: 60%;
  justify-self: center;
  border-radius: 50px;
  border: 1px solid #e3e3e3;
}

/* Logo visibility control */
.logo img {
  max-height: 55px;
  transition: all 0.5s ease;
}

.logo .logo-sticky {
  display: none;
  max-height: 50px;
}

#header.header-sticky .logo .logo-default {
  display: none;
}

#header.header-sticky .container-fluid {
  width: 100% !important;
  justify-content: space-between;
  padding-right: 10px;
  padding-left: 10px;
}
#header.header-sticky .logo .logo-sticky {
  display: inline-block;
}
@media (max-width: 767px) {
  .logo a .logo-default {
    display: none !important;
  }
  .logo a .logo-sticky {
    display: inline-block !important;
  }
      .industry-section .industry-tag {
        width: 100%;
         padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Adjust spacing for nav */
.nav-menu > ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu ul li a {
  transition: all 0.5s ease;
}

.nav-menu ul li a:hover {
  color: #ff642d; /* theme accent */
}

.client_logos img {
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

/* Restore color + slight zoom on hover */
.client_logos img:hover {
  filter: grayscale(0%);
  transform: scale(1);
}
/* #header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	padding: 11px 0px 5px;
	top: 0px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.header-scrolled {
	top: 0;
	padding: 15px 0px;
}
#header .logo {
	font-size: 32px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.8px;
	font-family: "Poppins", sans-serif;
}
#header .logo a {
	color: #222222;
}
#header .logo a span {
	color: #106eea;
}
#header .logo img {
	max-height: 60px;
} */
@media (max-width: 992px) {
  #header {
    padding: 15px;
    top: 0;
	background: #fff;
  display: flex;
  }
  #header .logo {
    font-size: 28px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul {
  display: flex;
  align-items: center;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 20px;
}
.nav-menu a {
  display: block;
  position: relative;
  color: #1c1c1c;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 400;
  padding: 0 3px;
  font-family: "Poppins", sans-serif;
}
/*.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #231f20;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}*/
/*.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}*/

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #ff642d;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}
.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  color: #1c1c1c;
}
.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: #ff642d;
}
.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}
@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}
/* Mobile Navigation */

.mobile-nav-toggle {
  position: relative;
  /* right: 15px;
	top: 25px; */
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  padding-right: 20px;
}
.mobile-nav-toggle i {
  color: #1a1a1a;
}
.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  padding: 10px 0;
  height: 350px;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}
.mobile-nav .topbar-btn {
  margin-top: 15px;
  border-radius: 0;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #1a1a1a;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  /* background:#FFFDFB; */
  /* background: #fff6ef; */
  background: #fffbf8;
  background-size: cover;
  position: relative;
  padding-top: 120px;
  padding-bottom: 0;
}
#hero p {
  color: #5a5a5a;
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "Poppins";
  font-weight: 400;
}
#hero p b {
  color: #333;
}
#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/*#hero .container p{ margin-top: 20px; padding-bottom: 40px;}*/
/* #hero .container .justify-content-center{ margin-top: 50px;} */
#hero .container ul.slider-list {
  margin-top: -40px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
    padding-bottom: 10px;
  }
  .slider-clients .col-lg-2 {
    width: 33.33%;
  }
}
#hero h1 {
  margin: 0;

  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: #000000;
  font-family: "Poppins-bold", serif;
}
#hero span {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: #ff642d;
  font-family: "Poppins-bold", serif;
}
#hero h2 {
  color: #fff;
  margin: 5px 0 30px 0;
  font-size: 35px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: -webkit-linear-gradient(55deg, #3f38ad, #231f20);
}
#hero .btn-get-started:hover {
  background: #ff6300;
}
#hero .btn-get-started img {
  width: 22px;
  margin-top: -3px;
}
#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 25px 8px 40px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  position: relative;
  font-weight: 600;
}
#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}
#hero .btn-watch-video:hover {
  color: #106eea;
}
#hero .btn-watch-video:hover i {
  color: #3b8af2;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  .topbar-btn {
    font-size: 12px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    line-height: 35px !important;
  }
  #header {
    display: flex;
  }
  #header .container-fluid {
    width: 100% !important;
  }
  #header.header-sticky {
    display: flex;
    width: 80%;
  }
  #hero {
    width: 100%;
    height: auto;
    background: #fffdfb;
    /*background:#231f20 url(../img/slide-mobile.webp) top left;*/
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
  }

  #hero .container {
    height: auto;
    padding-top: 40px;
  }
  #hero .container p {
    margin-top: 10px;
    padding-bottom: 10px;
  }

  #hero p {
    color: #5a5a5a;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 400;
  }
  #hero h1 {
    font-size: 24px;
    line-height: 36px;
  }
  #hero span {
    font-size: 24px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 34px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
  .section-title h3 {
    font-size: 30px;
  }
}
@media (max-height: 500px) {
  #hero {
    width: 100%;
    height: auto;
    /* background:#FFFDFB; */
    background: #fff1ec;
    /*background: url(../img/slide.webp) top left;*/
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
  }
  .client-box {
    height: 188px;
    padding: 17px 20px;
    cursor: pointer;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 100px 0 100px;
  overflow: hidden;
}
/*section.faq-section {*/
/*    padding: 0 0 100px;*/
/*}*/
section#clients {
  padding: 50px 0 0px;
}
section.about-block {
  padding: 130px 0;
}
.section-bg {
  background-color: #f6f9fe;
  background-color: #f8f8f8;
}
.section-title {
  text-align: center;
  padding-bottom: 0px;
  margin: 0;
}
.section-title h2 {
  font-family: "Poppins-Medium", serif;
  font-size: 31px;
  font-weight: 500;
  padding: 8px 20px;
  margin: 0;
  background: transparent;
  color: #231f20;
  display: inline-block;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 30px;
  font-weight: 300;
  color: #231f20;
  text-transform: capitalize;
}
.section-title h3 span {
  color: #106eea;
}
.section-title p.title-set {
  font-family: "Poppins-Medium", serif;
  font-weight: 500;
  letter-spacing: -0.5px;
  font-size: 20px;
  color: #000;
}
.section-title p {
  margin: 15px auto 25px auto;
  font-weight: 500;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
  margin-top: 134px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}
.breadcrumbs h2 {
  font-size: 35px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
@media only screen and (max-width: 1680px) {
  .ftr-pad {
    padding-left: 150px;
    padding-right: 150px;
  }
}
.ftr-pad {
  padding-left: 150px;
  padding-right: 150px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/

.featured-services .icon-box {
  padding: 49px 50px;
  position: relative;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #ff6300;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  height: 0;
  transition: all 0.3s;
  z-index: -1;
  opacity: 0;
}
/* .featured-services .icon-box:hover::before {
 background: #FF6300;
 top: 0;
 opacity: 1;
 border-radius: 15px;
 height: 100%;
 -webkit-box-shadow: 0px 4px 15px 0px rgba(234, 117, 15, 0.2);
 -moz-box-shadow: 0px 4px 15px 0px rgba(234, 117, 15, 0.2);
 -ms-box-shadow: 0px 4px 15px 0px rgba(234, 117, 15, 0.2);
 box-shadow: 0px 4px 15px 0px rgba(234, 117, 15, 0.2);
}*/
.featured-services .icon {
  margin-bottom: 31px;
}
.featured-services .icon img {
  width: auto;
  height: 90px;
}
.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}
.featured-services .title {
  font-family: "Poppins-SemiBold", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: #231f20;
}
.featured-services .title a {
  color: #231f20;
  font-weight: 600;
  font-size: 20px;
}
.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
/*.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
	color: #fff;
}
.featured-services .icon-box:hover .icon i {
	color: #fff;
}
.icon-box:hover .title {
	color: #fff;
}*/
.featured-services .bx-1:hover::before {
  background: none;
  top: 0;
  opacity: 1;
  border-radius: 15px;
  height: 100%;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(234, 117, 15, 0.2);
  -moz-box-shadow: 0px 0px 0px 0px rgba(234, 117, 15, 0.2);
  -ms-box-shadow: 0px 0px 0px 0px rgba(234, 117, 15, 0.2);
  box-shadow: 0px 0px 0px 0px rgba(234, 117, 15, 0.2);
  transition: unset;
}
.bx-1 .icon i {
  transition: unset;
}
.featured-services .bx-1::before {
  transition: unset;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
  position: relative;
  /* background: linear-gradient(55deg, #57b4b6, #231f20);
	background: -webkit-linear-gradient(55deg, #57b4b6, #231f20);
	background: -moz-linear-gradient(55deg, #57b4b6, #231f20);
	background: -o-linear-gradient(55deg, #57b4b6, #231f20);
	background: -ms-linear-gradient(55deg, #57b4b6, #231f20); */
  background-color: #1a1a1a;
  overflow: hidden;
}
.about .content h3 {
  font-family: "Poppins-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}
.about .content ul li:first-child {
  margin-top: 35px;
}
.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}
.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}
.about .content ul p {
  font-size: 15px;
}
.about .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/

.skills .progress {
  height: 50px;
  display: block;
  background: none;
}
.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins-SemiBold", sans-serif;
  color: #222222;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #e2eefd;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #106eea;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
  padding: 70px 0 60px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}
.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #106eea;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  border: 5px solid #fff;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-family: "Poppins-SemiBold", sans-serif;
  font-weight: 600;
  color: #062b5b;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}
.clients img:hover {
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
  .section-title h3 {
    font-size: 28px;
  }
  .featured-services .icon-box {
    padding: 42px 23px;
    border-radius: 33px;
  }
  .featured-services .title a {
    font-size: 20px;
  }
  #about::before {
    height: 150px !important;
  }
  .about h3 {
    font-size: 25px;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  font-family: "Poppins-bold", sans-serif;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}
.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #106eea;
}
.services .icon-box:hover .icon {
  border-color: #106eea;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
  padding: 80px 0;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-family: "Poppins-bold", sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}
.testimonials .owl-nav,
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}
.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}
.testimonials .owl-dot.active {
  background-color: #106eea !important;
}
@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  font-family: "Poppins-SemiBold", sans-serif;
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #106eea;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
  padding-top: 30px;
}
.portfolio-details .portfolio-details-container {
  position: relative;
}
.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}
.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}
.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}
.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #106eea !important;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.portfolio-details .portfolio-info h3 {
  font-family: "Poppins-bold", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 50px;
}
.portfolio-details .portfolio-description h2 {
  font-family: "Poppins-bold", sans-serif;
  width: 50%;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}
@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
  padding: 60px 0;
}
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}
.team .member .social a:hover {
  background: #3b8af2;
}
.team .member .social i {
  font-size: 18px;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-family: "Poppins-bold", sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.pricing .box h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}
.pricing .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins-SemiBold", sans-serif;
  margin-bottom: 20px;
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing .box ul li {
  padding-bottom: 16px;
}
.pricing .box ul i {
  color: #106eea;
  font-size: 18px;
  padding-right: 4px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}
.pricing .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .btn-buy:hover {
  background: #3b8af2;
}
.pricing .featured h3 {
  color: #fff;
  background: #106eea;
}
.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq {
  padding: 60px 0;
}
.faq .faq-list {
  padding: 0;
  list-style: none;
}
.faq .faq-list li {
  padding: 0 0 20px 25px;
}
.faq .faq-list a {
  font-family: "Poppins-Medium", sans-serif;
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  font-weight: 500;
}
.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}
.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}
.faq .faq-list a.collapse {
  color: #106eea;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #106eea;
}
.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}
.contact .info-box h3 {
  font-family: "Poppins-bold", sans-serif;
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  font-family: "Poppins-SemiBold", sans-serif;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #106eea;
}
.contact .php-email-form input {
  padding: 20px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type="submit"] {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #3b8af2;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #fffdfb;
  padding: 0;
  color: #1c1c1c;
  font-size: 15px;
}
#footer p a {
  color: #1c1c1c;
  display: flex;
  justify-content: start;
  align-items: center;
}
#footer p a:hover {
  color: #ff642d;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0d58ba;
}
#footer .footer-top {
  padding: 77px 0 48px 0;
  /*background: #231f20 url(../img/footer-bg-logo.png) no-repeat;*/
  background: #fffdfb;
  background-position: left 0 center;
}
/*.about-block{
	background: #f7f7f7 url(../img/footer-bg-logo.png) no-repeat;
    background-position:left -168px bottom;
	background-repeat:no-repeat;
}*/
/*
#footer .footer-top::before {
    content: "";
    display: block;
    background: url(../img/logo-trans.png) no-repeat;
    width: 350px;
    height: 350px;
    background-size: 100% auto;
	background-position:left bottom;
}*/

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-family: "Poppins-bold", sans-serif;
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 19px;
  font-weight: 400;
  color: #000;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #1c1c1c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ff642d;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: right;
  font-size: 14px;
  font-weight: 200;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
  #footer .credits {
    float: left;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }
  body.home .container {
    /* max-width: 90%;*/
  }
}
.featured-services {
  background: #fff;
}
.font-blue {
  color: #231f20;
}
.font-orange {
  color: #ff6300;
}
.btn-orange,
.btn-blue {
  padding: 8px 16px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
.btn-orange-small,
.btn-blue-small {
  padding: 8px 16px;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-orange-small {
  background: #ff6300;
}
.btn-orange-small:hover {
  /* background-color: #1a1a1a; */
  color: #fff;
  /* -webkit-box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
	-moz-box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
	-ms-box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
	box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%); */
}
.btn-blue-small {
  background-color: #1a1a1a;
}
.btn-blue-small:hover {
  background-color: #ff6300;
  color: #fff !important;
  -webkit-box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
  -moz-box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
  -ms-box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
  box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
}
.btn-orange {
  background: #ff6300;
  font-weight: 400;
  font-size: 16px;
  /* transition: all 0.5s ease-in-out; */
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid #ff6300;
}
.btn-orange:hover {
  color: #fff;
  /* background-color: #fff; */
}
.btn-orange::after {
  /* content: "";
  background: #fff;
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  border-radius: 50%;
  left: -50%;
  right: -50%;
  top: -150%;
  bottom: -150%;
  line-height: 8.34em;
  transform: scale(0, 0);
  transition: all 0.5s ease; */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}
/* .btn-orange:hover::after {
  transform: scale(1, 1);
  transition: all 0.5s ease-out;
} */
/* .btn-orange:hover {
	background-color: #1a1a1a;
	color: #fff;
	text-decoration: none;
	-webkit-box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
	-moz-box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
	-ms-box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
	box-shadow: 0px 17px 19px 0px rgb(60 64 152 / 36%);
} */
.btn-cta {
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  color: #1a1a1a;
  border-radius: 0px;
  padding: 15px 18px;
  border: 2px solid #1a1a1a;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
}
.btn-cta:hover {
  background-color: #ff6300;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0px 15px 15px -15px rgb(0 0 0 / 50%);
  -moz-box-shadow: 0px 15px 15px -15px rgb(0 0 0 / 50%);
  -ms-box-shadow: 0px 15px 15px -15px rgb(0 0 0 / 50%);
  box-shadow: 0px 15px 15px -15px rgb(0 0 0 / 50%);
}
.btn-blue {
  background-color: #1a1a1a;
  text-decoration: none;
}
.btn-blue:hover {
  background-color: #ff6300;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0px 10px 19px 0px rgb(88 44 7 / 28%);
  -moz-box-shadow: 0px 10px 19px 0px rgb(88 44 7 / 28%);
  -ms-box-shadow: 0px 10px 19px 0px rgb(88 44 7 / 28%);
  box-shadow: 0px 10px 19px 0px rgb(88 44 7 / 28%);
}
.heading-title {
  font-weight: 500;
  font-size: 36px;
  position: relative;
}
/* .heading-title:before {
	content: '';
	position: absolute;
	background: #FF6300;
	right: 0;
	left: 0;
	bottom: 0;
	width: 0;
	height: 50%;
	transition: all 0.3s;
	z-index: -1;
	opacity: 0;
}
.heading-title:hover:before {
	width: 50%;
	opacity: 1;
} */
/*.globe-image{
	position:relative;
	height:448px;
}*/

.globe-image {
  position: relative;
  height: auto;
  width: 100%;
  text-align: center;
}
.logo-img {
  width: 75%;
  position: relative;
  z-index: 0;
  /*-webkit-box-shadow: 0px 10px 19px 0px rgb(2 2 2 / 36%);
    -moz-box-shadow: 0px 10px 19px 0px rgb(60 64 152 / 36%);
    -ms-box-shadow: 0px 10px 19px 0px rgb(60 64 152 / 36%);
    box-shadow: 0px 10px 19px 0px rgb(0 0 0 / 36%);*/
  border-radius: 5px;
  overflow: hidden;
}
/*.logo-img{
	width:450px;
	position:relative;
	z-index:0;
	
}*/

.globe-center {
  position: absolute;
  z-index: 1;
  top: 104px;
  left: 155px;
  width: 192px;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 7s linear infinite;
  -moz-animation: rotating 7s linear infinite;
  -ms-animation: rotating 7s linear infinite;
  -o-animation: rotating 7s linear infinite;
  animation: rotating 7s linear infinite;
}
.pr-10 {
  padding-right: 10%;
}
/*#about::before {
    content: "";
    display: block;
    background: url(../img/about-before.png) no-repeat;
    width: auto;
    height: 510px;
    max-width: 100%;
    background-size: 100% auto;
}
#about::after {
    content: "";
    display: block;
    background: url(../img/about-after.png) no-repeat;
    width: auto;
    height: 167px;
    max-width: 100%;
    background-size: 100% auto;
}*/

@media only screen and (max-width: 1359px) and (min-width: 1280px) {
  #about::after {
    height: 110px;
  }
}
/*.circle-img-about{
	position:relative;
	top:-150px;
}
*/

.about-bg {
  position: absolute;
  bottom: -276px;
  right: 21px;
  z-index: 0;
}
/*.about-bg img{
	width:350px;
}*/

.about h2 {
  font-size: 35px;
  margin-bottom: 20px;
}
.bg-grey {
  background: #f7f7f7 !important;
}
/*--------------------------------------------------------------
# Website Work
--------------------------------------------------------------*/

.website-work {
  position: relative;
  background: #fff;
  padding: 80px 0 80px;
}
.website-work2 {
  padding: 50px 0;
}
.clients-block {
  position: relative;
  /* background: linear-gradient(55deg, #57b4b6, #231f20);
	background: -webkit-linear-gradient(55deg, #57b4b6, #231f20);
	background: -moz-linear-gradient(55deg, #57b4b6, #231f20);
	background: -o-linear-gradient(55deg, #57b4b6, #231f20);
	background: -ms-linear-gradient(55deg, #57b4b6, #231f20); */
  background-color: #f8f8f8;
  overflow: hidden;
}
.clients-block .section-title {
  text-align: center;
  padding-bottom: 0px;
  margin: 0;
}
/*#clients-block::before {
    content: "";
    display: block;
    background: url(../img/clients-before.png) no-repeat;
    width: auto;
    height: 310px;
    max-width: 100%;
    background-size: 100% auto;
}
#clients-block::after {
    content: "";
    display: block;
    background: url(../img/about-after.png) no-repeat;
    width: auto;
    height: 167px;
    max-width: 100%;
    background-size: 100% auto;
}*/

.featured-on-block {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.featured-on-block img {
  margin: 0 15px 10px;
  width: 170px;
}
.technologies .featured-on-block img {
  margin: 0 15px 10px;
  width: 55px;
}
.testimonial-block {
  /* background: #fff; */
  padding-left: 15px;
}
.testimonial-title {
  padding: 0;
  display: block;
  width: 100%;
}
.testimonial-title h2 {
  font-size: 35px;
  color: #1a1a1a;
}
.testimo-block h3 {
  color: #ff6600;
  font-size: 15px;
}
.testimo-block {
  width: 350px;
  height: 370px;
  background: #fff;
  border-color: #fff;
  box-shadow: 0px 0 15px 0 rgb(4 4 4 / 5%);
  padding: 40px 25px;
  margin: 20px 11px 0;
  border-radius: 10px;
  position: relative;
}
/* .testimo-block:before {
	content: '';
	position: absolute;
	width: 65px;
	height: 52px;
	top: -20px;
	right: 40px;
	background: url(../img/quote-icon2.png);
} */
p.testi-discription {
  min-height: 200px;
}
.faq-box {
  width: auto;
  height: 100%;
  background: #fff;
  border-color: #fff;
  box-shadow: 0px 0 15px 0 rgb(4 4 4 / 5%);
  padding: 45px 20px;
  margin: 0;
  border-radius: 10px;
  position: relative;
}
.faq-box-title {
  padding: 0 20px 0 55px;
}
.faq-box h3 {
  color: #ff6300;
  font-size: 20px;
  font-weight: 300;
}
.faq-box p {
  margin-bottom: 0;
  text-align: justify;
}
.client-name {
  font-size: 14px;
  font-family: "Poppins", serif;
  font-weight: 400;
  color: #231f20;
}
.client-post {
  font-size: 12px;
  font-family: "Poppins", serif;
  font-weight: 300;
  color: #333;
}
.bg-yellow {
  background: #fff !important;
}
.faq-block {
  overflow: visible !important;
  background: #f7f7f7;
  /* padding: 16px 0 80px; */
}
.slick-prev,
.slick-next {
  background: #1a1a1a;
}
#footer .contact-info i {
  padding-right: 6px;
  margin-left: 0px;
  font-size: 20px;
  color: #000;
}
.ftr-logo {
  float: left;
  margin-right: 20px;
}
.ftr-logo img {
  width: 60px;
}
#footer .social {
  float: left;
  margin-top: 15px;
}
#footer .social .social-links a {
  color: #1a1a1a;
  font-size: 23px;
  margin-right: 16px;
}
#footer .social a {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 200;
}
#footer .social-links a:hover,
#footer .social a:hover {
  color: #ff642d;
}
/* 3D Slick Slider */

.slick-slider3d {
  margin-left: -12%;
  margin-right: -12%;
}
.slick-list3d {
  padding-top: 10% !important;
  padding-bottom: 10% !important;
  padding-left: 15% !important;
  padding-right: 15% !important;
}
.slick-dots3d {
  text-align: right;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.slick-track3d {
  max-width: 100% !important;
  transform: translate3d(0, 0, 0) !important;
  perspective: 100px;
}
.slick-slide3d {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  width: 100% !important;
  transform: translate3d(0, 0, 0);
  transition: transform 1s, opacity 1s;
}
.slick-snext3d,
.slick-sprev3d,
.slick-snext23d,
.slick-sprev23d {
  display: block;
}
.slick-current3d {
  opacity: 1;
  position: relative;
  display: block;
  z-index: 2;
}
.slick-snext3d {
  opacity: 1;
  transform: translate3d(10%, 0, -10px);
  z-index: 1;
  perspective: 1000px;
}
.slick-snext23d {
  opacity: 1;
  transform: translate3d(20%, 0, -20px);
  z-index: 0;
  perspective: 1000px;
}
.slick-sprev3d {
  opacity: 1;
  transform: translate3d(-10%, 0, -10px);
}
.slick-sprev23d {
  opacity: 1;
  transform: translate3d(-20%, 0, -20px);
}
.test3d {
  display: block;
  width: 100%;
  height: 300px;
  background: #c00;
  box-shadow: inset 0px 0px 0px 3px #000;
}
.web-img {
  width: 100%;
  text-align: center;
}
.web-img img {
  width: 90%;
  margin: 0 auto;
}
.web-img2 {
  width: 100%;
  text-align: center;
}
.web-img2 img {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) and (min-width: 320px) {
  .call-to-action-block {
    padding: 75px 0 !important;
  }
  h3 {
    font-size: 21px;
  }
  ul.two-col li {
    width: 100% !important;
  }
  .process-inner img {
    width: 50px !important;
    height: 50px !important;
  }
  .slider__nav {
    text-align: center;
  }
  .network_icons img {
    height: 38px !important;
  }
  .management_services .ppc_management {
    position: relative;
    padding: 15px !important;
    margin-bottom: 30px;
    text-align: center;
  }
  .management_services .ppc_management .ppc_management_icon {
    position: relative !important;
  }
  .management_services .ppc_management .ppc_management_icon img {
    margin: 0 auto 10px;
  }
  .two-column-data h3 {
    text-align: center;
  }
  .featured-on-block {
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .block-margin-top {
    margin-top: 0 !important;
  }
  .featured-on-block img {
    width: 120px;
    margin: 0 15px 18px !important;
  }
  .inner-sub-header .header-sub-title {
    font-size: 22px;
  }
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    width: 95% !important;
  }
  #hero {
    padding-top: 80px;
    padding-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
  #hero h2 {
    font-size: 21px;
  }
  .section-title {
    padding-bottom: 5px;
    margin: 15px 0;
  }
  .section-title h2 {
    font-size: 23px;
    font-weight: 600;
  }
  .section-title h4 {
    font-size: 15px;
  }
  .heading-title {
    font-size: 24px;
    margin-top: 15px;
  }
  .about-text-blue {
    text-align: center;
  }
  .featured-services .icon {
    margin-bottom: 14px;
  }
  .featured-services .icon img {
    width: auto;
    height: 72px;
  }
  .featured-services .title a {
    font-size: 18px;
  }
  #about::after {
    display: none;
  }
  .about h2 {
    font-size: 25px;
  }
  .btn-orange,
  .btn-blue {
    padding: 14px 20px 14px 20px;
  }
  .globe-center {
    display: none;
  }
  .globe-image {
    width: 100%;
    height: auto;
    text-align: center;
  }
  .globe-image .logo-img {
    width: 80%;
  }
  #clients-block::after {
    display: none;
  }
  .circle-img-about {
    margin: 25px 0;
  }
  .ftr-pad {
    padding-left: 15px;
    padding-right: 15px;
  }
  section {
    padding: 25px 0;
    overflow: hidden;
  }
  section.about-block {
    padding: 130px 0 40px;
  }
  .slider-wrap {
    overflow: hidden;
  }
  .testimonial-block {
    padding: 30px 15px;
  }
  .testimonial-wrap {
    padding: 0 !important;
    width: 100%;
  }
  .testimonial-title h2 {
    font-size: 24px;
  }
  #footer .footer-top {
    padding: 50px 0 50px 0;
  }
  #header {
    padding: 15px 0;
    top: 0;
    background: #fffdfb;
  }
  #header.header-scrolled {
    padding: 15px 0;
  }
  .inner-pages-section .circle-img-about {
    width: 80%;
  }
  .inner-sub-header {
    padding: 55px 0px 15px 0px!important;
  }
  .client-box {
    height: 188px !important;
    padding: 17px 20px !important;
    cursor: pointer;
  }
  .get-quote-image {
    width: 50% !important;
    margin-top: 30px;
  }
  .not-four {
    font-size: 50px;
  }
  .left-title-team {
    height: auto;
    display: block;
    margin: 50px 0;
  }
  .left-title-team img {
    width: 200px;
  }
  .nav-tabs .nav-item {
    margin-bottom: -1px;
    width: 100%;
  }
  .nav-tabs .nav-link {
    border-radius: 0;
    border-bottom: 0 !important;
    margin: 5px 0 !important;
    display: block;
  }
  .tab-content ul li {
    text-align: left;
  }
  .mb-100 {
    margin-bottom: 50px;
  }
  .ecommerce-client-wrap img {
    width: 63% !important;
  }
  .feature-block-new figure {
    background: #fff !important;
  }
}

/* 2532x1170 pixels at 460ppi */
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
  .ecommerce-service-section.left-section .service-content {
    padding: 15px 15px;
  }
  .ecommerce-service-section.right-section .service-content {
    padding: 15px 15px;
  }
}
/* 2778x1284 pixels at 458ppi */
@media only screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
  .ecommerce-service-section.left-section .service-content {
    padding: 15px 15px;
  }
  .ecommerce-service-section.right-section .service-content {
    padding: 15px 15px;
  }
}

/* 1792x828px at 326ppi */
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  .ecommerce-service-section.left-section .service-content {
    padding: 15px 15px;
  }
  .ecommerce-service-section.right-section .service-content {
    padding: 15px 15px;
  }
}
.get-quote-image {
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .not-four {
    font-size: 50px !important;
  }
  h1 {
    font-size: 36px;
  }
  .inner-sub-header-wihout-header .back-link {
    font-size: 11px;
    background: rgb(232 169 169 / 88%) !important;
  }
}
@media only screen and (max-width: 640px) {
  .ecommerce-service-section.left-section .service-content {
    padding: 15px 15px !important;
  }
  .ecommerce-service-section.right-section .service-content {
    padding: 15px 15px !important;
  }
  .not-four {
    font-size: 50px !important;
  }
  h1 {
    font-size: 36px;
  }
  .network_icons img {
    height: 38px !important;
  }
  .header-widget-area > .bottom-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgb(255 255 255 / 87%);
    padding: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    z-index: 999;
    display: block;
    box-shadow: 0 0 15px rgb(0 0 0 / 30%);
  }
  .back-to-top {
    bottom: 82px;
  }
  .header-widget-area {
    display: block !important;
  }
  .header-widget-area .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    height: 37px;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #ff642d;
  }
  .header-widget-area .btn-get-started.blue {
    background: #1a1a1a;
  }
  .btn-whatsapp {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    height: 37px;
    width: 37px;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #1ba549;
  }
  .header-widget-area .btn-get-started:hover {
    background: -webkit-linear-gradient(55deg, #3f38ad, #231f20);
  }
  .form-inquiry {
    padding: 8px !important;
  }
}
.header-widget-area {
  display: none;
}
@media only screen and (max-width: 767px) {
  .ftr-pad {
    padding: 0;
  }
  .inner-pages-section .circle-img-about {
    width: 80% !important;
  }
  .form-icon {
    display: block !important;
    transform: rotate(270deg);
  }
  .form-text-block {
    display: none !important;
  }
}
.form-icon {
  display: none;
}
.form-text-block {
  display: block;
  font-size: 16px;
}
.cta-btn {
  background: #000000;
  border: 2px solid #000000;
}
.cta-btn:hover {
  color: #fff;
  /* background-color: #fff; */
}
.cta-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}
.cta-btn:hover::after {
  transform: scale(1, 1);
  transition: all 0.5s ease-out;
}
.topbar-btn,
.cta-btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  /* background: #FF642D; */
  border-radius: 30px;
  color: #fff;
  padding-left: 18px;
  padding-right: 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.topbar-btn:hover {
  color: #fff;
  /* background-color: #fff; */
}
.topbar-btn:after,
.btn-orange-small::after,
.btn-blue-small::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}
.topbar-btn:hover:not(:active)::after,
.cta-btn:hover:not(:active)::after,
.btn-orange:hover:not(:active)::after,
.btn-orange-small:hover:not(:active)::after,
.btn-blue-small:hover:not(:active)::after {
  animation: ripple 1s ease-out;
}
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }

  20% {
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}
/* .topbar-btn::after {
  content: "";
  background: #fff;
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  border-radius: 50%;
  left: -50%;
  right: -50%;
  top: -150%;
  bottom: -150%;
  line-height: 8.34em;
  transform: scale(0, 0);
  transition: all 0.5s ease;
} */
.topbar-btn:hover::after {
  transform: scale(1, 1);
  transition: all 0.5s ease-out;
}
/* Topbar Button */
.topbar-btn {
  background-color: #ff642d;
  border: 2px solid #ff642d;
}
/* .topbar-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease, background-color 0.8s ease;
	z-index: 0;
}

.topbar-btn:hover::after {
	width: 220%;
	height: 220%;
	opacity: 0;
} */

.item {
  opacity: 0.4;
  transition: 0.4s ease all;
  margin: 0 20px;
  transform: scale(0.8);
}
@media (max-width: 1000px) {
  .item {
    margin: 0;
    transform: scale(0.9);
  }
}
.active .item {
  opacity: 1;
  transform: scale(1);
}

.owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.inner {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
}
.inner a {
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transition: 0.3s ease border-color;
}
.inner a:hover {
  border-color: #fff;
}
.black .inner a {
  color: #000;
  border-color: rgba(0, 0, 0, 0.4);
}
.black .inner a:hover {
  border-color: #000;
}

/* .owl-carousel:after{content:""; display:block; position:absolute; width:8%; top:0; bottom:0; left:50%; margin-left:-4%; pointer-events: none; background:url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/43033/aett_logo_slider.png) no-repeat center 50%; background-size:100% auto;
} */

.owl-controls {
  position: absolute;
  margin-top: 300px;
}

@media only screen and (min-width: 2560px) {
  #about::after,
  #clients-block::after {
    height: 225px;
  }
  #about::before {
    height: 685px;
  }
}
@media only screen and (min-width: 1680px) and (max-width: 1919px) {
  /*.bgimg-bgimg {top: -123px; left: -85px; width: 40%; }*/
  #about::before {
    height: 445px;
  }
  #about::after,
  #clients-block::after {
    height: 146px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1679px) {
  /*.bgimg-bgimg {top: -115px; left: -125px; width: 40%; }*/
  #about::before {
    height: 440px;
  }
  #about::after,
  #clients-block::after {
    height: 145px;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
  /*.bgimg-bgimg {top: -65px; left: -155px; width: 40%; }*/
  #about::before {
    height: 380px;
  }
  #about::after,
  #clients-block::after {
    height: 126px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1439px) {
  /*.bgimg-bgimg {top: -65px; left: -155px; width: 40%; }*/
  #about::before {
    height: 380px;
  }
  #about::after,
  #clients-block::after {
    height: 123px;
  }
}
@media only screen and (min-width: 1366px) and (max-width: 1399px) {
  /*.bgimg-bgimg {top: -105px; left: -220px; width: 45%; }*/
  #about::before {
    height: 355px;
  }
  #about::after {
    height: 118px;
  }
  #clients-block::after {
    height: 118px;
  }
}
@media only screen and (min-width: 1360px) and (max-width: 1365px) {
  /*.bgimg-bgimg {top: -105px; left: -220px; width: 45%; }*/
  #about::before {
    height: 355px;
  }
  #about::after,
  #clients-block::after {
    height: 119px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
  /*.bgimg-bgimg {top: -80px; left: -220px; width: 45%; }*/
  #about::before {
    height: 340px;
  }
  #about::after,
  #clients-block::after {
    height: 112px;
  }
}
@media only screen and (min-width: 1224px) and (max-width: 1279px) {
  #about::after,
  #clients-block::after {
    height: 107px;
  }
}
@media only screen and (min-width: 1152px) and (max-width: 1223px) {
  .gredient-main:after,
  .gredient-life-main:after {
    height: 101px;
  }
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
  /*.bgimg-bgimg {top: -105px; left: -200px; width: 50%; }*/
  #about::before {
    height: 300px;
  }
  #about::after,
  #clients-block::after {
    height: 107px;
  }
}
@media only screen and (max-width: 992px) {
  #about::after,
  #clients-block::after {
    height: 87px;
  }
}
@media only screen and (max-width: 991px) {
  #about::before {
    height: 265px;
  }
  #about::after,
  #clients-block::after {
    height: 86px;
  }
}
@media only screen and (max-width: 980px) {
  #about::before {
    height: 265px;
  }
  #about::after,
  #clients-block::after {
    height: 86px;
  }
}
@media only screen and (max-width: 960px) {
  #about::before,
  #about::after {
    display: none;
  }
  #clients-block::after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #about::before {
    height: 205px;
  }
  #about::after,
  #clients-block::after {
    height: 66px;
  }
}
.mb-150 {
  margin-bottom: 120px;
}
.wrap-faq {
  padding-left: 15px;
  padding-right: 15px;
  height: 100%;
}
.social-links {
  display: block;
}
.slider__nav {
  display: block;
  width: 100%;
  margin-top: 20px;
}
.slider__arrows {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.testimonials--style-2 .slider__next,
.testimonials--style-2 .slider__prev {
  color: #000;
  border: 2px solid #000;
}
.slider__next,
.slider__prev {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  height: 45px;
  width: 45px;
  border: 2px solid #231f20;
  border-radius: 50%;
  background: #231f20;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.slider__prev:before {
  content: "\ea1a";
  font-family: "boxicons" !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-size: 42px;
}
.slider__next:before {
  content: "\ea1d";
  font-family: "boxicons" !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-size: 42px;
}
.slider__prev:before,
.slider__next:before {
  font-family: "slick";
  font-size: 39px;
  line-height: 1;
  opacity: 0.75;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slider__prev {
  margin-right: 17px;
}
.inner-sub-header-wihout-header {
  position: relative;
  background: #fff;
  padding: 30px 0px;
  margin: 0;
}
.inner-sub-header-wihout-header .logo {
  position: relative;
  z-index: 1;
  width: 200px !important;
}
.inner-sub-header-wihout-header .back-link {
  color: #000;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
}
.inner-sub-header-wihout-header .back-link:hover {
  color: #ff6300;
  background: rgba(255, 255, 255, 0.2);
}
.inner-sub-header {
  position: relative;
  background: #fff8f2;

  padding: 91px 0px 82px 0px;
  margin: 68px 0px 0px;
}
.inner-sub-header:before {
  content: "";
  position: absolute;
  /*background: url(../img/logo-header-sub.png);*/
  width: 400px;
  height: 400px;
  bottom: -176px;
  background-size: 400px;
  left: 110px;
}
.inner-sub-header .header-sub-title {
  padding: 0;
  margin: 0;
  /* color:#FF642D; */
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  padding: 0.75rem 0;
  background-color: transparent;
  position: relative;
  z-index: 1;
}
.breadcrumb-item a {
  color: #5a5a5a;
  font-size:12px;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #ff642d;
  content: "/";
}
.breadcrumb-item a:hover {
  color: #ff642d;
}
.breadcrumb-item.active {
  color: #5a5a5a;
  font-size:12px;
}
.inner-pages-section .circle-img-about {
  width: 85%;
  max-width: 500px;
}
.text-justify {
  text-align: justify;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.9rem;
}
.client-box {
  height: 260px;
  /*border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;*/
  padding: 50px 20px;
  cursor: pointer;
}
.client-box .client-logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 150px;
  background: #fff;
  border-radius: 75px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: lighter;
  letter-spacing: 2px;
  -webkit-transition: 1s -webkit-box-shadow;
  transition: 1s -webkit-box-shadow;
  transition: 1s box-shadow;
  transition: 1s box-shadow, 1s -webkit-box-shadow;
}
.client-box .client-logo-box:hover {
  -webkit-box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
}
.client-box .client-logo-box:hover:after,
.client-box .client-logo-box:hover:before {
  display: block;
  content: "";
  position: absolute;
  width: 250px;
  height: 150px;
  background: #ff6300;
  border-radius: 75px;
  z-index: -1;
  -webkit-animation: 1s infinite clockwise;
  animation: 1s infinite clockwise;
}
.client-box .client-logo-box:hover:after {
  background: #231f20;
  -webkit-animation: 2s infinite counterclockwise;
  animation: 2s infinite counterclockwise;
}
.client-box .client-logo-box img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  width: 200px;
}
@-webkit-keyframes clockwise {
  0%,
  100% {
    top: -5px;
    left: 0;
  }
  12% {
    top: -2px;
    left: 2px;
  }
  25% {
    top: 0;
    left: 5px;
  }
  37% {
    top: 2px;
    left: 2px;
  }
  50% {
    top: 5px;
    left: 0;
  }
  62% {
    top: 2px;
    left: -2px;
  }
  75% {
    top: 0;
    left: -5px;
  }
  87% {
    top: -2px;
    left: -2px;
  }
}
@keyframes clockwise {
  0%,
  100% {
    top: -5px;
    left: 0;
  }
  12% {
    top: -2px;
    left: 2px;
  }
  25% {
    top: 0;
    left: 5px;
  }
  37% {
    top: 2px;
    left: 2px;
  }
  50% {
    top: 5px;
    left: 0;
  }
  62% {
    top: 2px;
    left: -2px;
  }
  75% {
    top: 0;
    left: -5px;
  }
  87% {
    top: -2px;
    left: -2px;
  }
}
@-webkit-keyframes counterclockwise {
  0%,
  100% {
    top: -5px;
    right: 0;
  }
  12% {
    top: -2px;
    right: 2px;
  }
  25% {
    top: 0;
    right: 5px;
  }
  37% {
    top: 2px;
    right: 2px;
  }
  50% {
    top: 5px;
    right: 0;
  }
  62% {
    top: 2px;
    right: -2px;
  }
  75% {
    top: 0;
    right: -5px;
  }
  87% {
    top: -2px;
    right: -2px;
  }
}
@keyframes counterclockwise {
  0%,
  100% {
    top: -5px;
    right: 0;
  }
  12% {
    top: -2px;
    right: 2px;
  }
  25% {
    top: 0;
    right: 5px;
  }
  37% {
    top: 2px;
    right: 2px;
  }
  50% {
    top: 5px;
    right: 0;
  }
  62% {
    top: 2px;
    right: -2px;
  }
  75% {
    top: 0;
    right: -5px;
  }
  87% {
    top: -2px;
    right: -2px;
  }
}
/* .testimonial-wrap {
	padding: 0 20px 0 55px;
} */
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  width: 90%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.breadcrumb-wrap {
  display: inline-block;
  width: auto;
}
[class~="testimonial-inner"] [class*="col-"] {
  margin-bottom: 50px;
}
[class~="testimonial-inner"] .testimonial-title {
  padding: 0;
  display: block;
  width: 100%;
}
[class~="testimonial-inner"] .testimonial-title h2 {
  font-size: 35px;
  color: #ff6300;
}
[class~="testimonial-inner"] .testimo-block h5 {
  color: #ff6600;
}
[class~="testimonial-inner"] .testimo-block {
  width: 100%;
  height: auto;
  background: #fff;
  border-color: #fff;
  box-shadow: 0px 0 15px 0 rgb(4 4 4 / 5%);
  padding: 56px 25px 23px;
  margin: 0;
  border-radius: 10px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
[class~="testimonial-inner"] .testimo-block:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 25px -15px rgba(0, 0, 0, 0.5);
}
[class~="testimonial-inner"] .testimo-block:before {
  content: "";
  position: absolute;
  width: 65px;
  height: 52px;
  top: -20px;
  right: 40px;
  background: url(../img/quote-icon2.png);
}
.social-wrap {
  margin: 15px 0;
}
.social-wrap a {
  font-size: 18px;
  display: inline-block;
  background: #231f20;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.social-wrap a:hover {
  background: #ff6300;
  color: #fff;
  text-decoration: none;
}
.form-contact .form-control {
  border-radius: 7px;
  height: 50px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #89acc2;
  color: #fff;
}
.form-contact textarea.form-control {
  border-radius: 7px;
  height: 181px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #89acc2;
  color: #fff;
}
.form-contact .form-control:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
  box-shadow: none;
}
.form-control::-webkit-input-placeholder {
  color: #fff;
  font-weight: 100;
}
.form-contact .form-control:-moz-placeholder {
  color: #fff;
  font-weight: 100;
}
.form-contact .form-control::-moz-placeholder {
  color: #fff;
  font-weight: 100;
}
.form-contact .form-control::placeholder {
  color: #fff;
  font-weight: 100;
}
.form-contact .form-control:-ms-input-placeholder {
  color: #fff;
  font-weight: 100;
}
.get-quote-section {
  height: auto;
  min-height: calc(100vh - 104px);
  background: linear-gradient(0deg, #ff6300, #231f20);
  background: -webkit-linear-gradient(0deg, #ff6300, #231f20);
  background: -moz-linear-gradient(0deg, #ff6300, #231f20);
  background: -o-linear-gradient(0deg, #ff6300, #231f20);
  background: -ms-linear-gradient(0deg, #ff6300, #231f20);
}
.form-inquiry {
  padding: 50px;
}
.form-control {
  border-radius: 7px;
  height: 50px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #89acc2;
  color: #000;
}
textarea.form-control {
  border-radius: 7px;
  height: 181px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #89acc2;
  color: #000;
}
.form-control:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
  box-shadow: none;
}
.form-control::-webkit-input-placeholder {
  color: #878787;
  font-weight: 100;
  font-size: 14px;
}
.form-control:-moz-placeholder {
  color: #878787;
  font-weight: 100;
  font-size: 14px;
}
.form-control::-moz-placeholder {
  color: #878787;
  font-weight: 100;
  font-size: 14px;
}
.form-control::placeholder {
  color: #878787;
  font-weight: 100;
  font-size: 14px;
}
.form-control:-ms-input-placeholder {
  color: #878787;
  font-weight: 100;
  font-size: 14px;
}
.area-interest {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.area-interest .form-check {
  margin-right: 25px;
  margin-bottom: 10px;
}
.text-primary {
  color: #231f20 !important;
}
.text-secondary {
  color: #ff6300 !important;
}
.opening-wrap {
  background: #fff;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.opening-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #a3a3a3;
  color: #231f20;
}
.opening-content {
  width: 100%;
  display: block;
  margin: 0;
  padding: 20px 0;
}
.content-sub p {
  margin-bottom: 5px;
}
.opening-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.opening-content ul li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.9em;
  color: #676767;
}
.opening-content ul li:before {
  content: "\ea0f";
  font-family: "boxicons" !important;
  position: absolute;
  top: 0;
  left: 0;
  color: #ff6300;
}
.opening-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 15px 0 0;
  border-top: 1px solid #000;
}
.marketing-circle-img {
  width: 80%;
  max-width: 400px;
}
.winning-stratagy {
  background: #fff5ee;
}
.strategy-inner {
  margin-bottom: 10px;
  height: 100%;
}
.strategy-inner h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.strategy-inner p {
  text-align: justify;
  line-height: 1.5em;
}
.bg-white-cardbox {
  background: #fff;
  padding: 25px 20px;
  height: 100%;
  -webkit-box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  -moz-box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  -ms-box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  border-radius: 15px;
}
.strategy-inner img {
  width: auto;
  height: 67px;
  margin-bottom: 12px;
  margin-top: 15px;
}
.our-process {
  /* background: linear-gradient(55deg, #57b4b6, #231f20);
	background: -webkit-linear-gradient(55deg, #57b4b6, #231f20);
	background: -moz-linear-gradient(55deg, #57b4b6, #231f20);
	background: -o-linear-gradient(55deg, #57b4b6, #231f20);
	background: -ms-linear-gradient(55deg, #57b4b6, #231f20); */
  background-color: #1a1a1a;
}
.process-inner {
  margin: 20px 0;
  text-align: center;
}
.process-inner h3 {
  font-size: 16px;
  color: #231f20;
  font-weight: 600;
  letter-spacing: 0;
}
.process-inner h4 {
  font-size: 16px;
  color: #231f20;
  font-weight: 600;
  letter-spacing: 0;
}
.process-inner img {
  margin-bottom: 25px;
  width: 75px;
  height: 75px;
  position: relative;
}
.process-inner svg {
  fill: #000;
}
.why-choose-us {
  /* background: linear-gradient(55deg, #57b4b6, #231f20);
	background: -webkit-linear-gradient(55deg, #57b4b6, #231f20);
	background: -moz-linear-gradient(55deg, #57b4b6, #231f20);
	background: -o-linear-gradient(55deg, #57b4b6, #231f20);
	background: -ms-linear-gradient(55deg, #57b4b6, #231f20); */
  background-color: #1a1a1a;
}
.why-choose-us-inner {
  margin: 0px 0 20px;
  height: 100%;
  text-align: center;
  padding: 25px 15px;
  background: #fff;
  -webkit-box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  -moz-box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  -ms-box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
.why-choose-us-inner.big-pad {
  padding: 50px 31px 20px;
}
.why-choose-us-inner h4 {
  font-family: "Poppins-SemiBold";
  font-size: 17px;
  color: #231f20;
  font-weight: 600;
  letter-spacing: 0;
}
.why-choose-us-inner p {
  font-size: 14px;
  color: #676767;
  margin: 0;
}
.why-choose-us-inner img {
  margin-bottom: 20px;
  width: 90px;
  height: 90px;
  position: relative;
  filter: grayscale(1);
}
/* WHY CHOOSE US 2*/

.why-choose-us-2 {
  background: #f4f4f4;
}
.why-choose-us-2-inner {
  display: flex;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 0px 0 20px;
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 25px 15px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
.why-choose-us-2-inner.big-pad {
  padding: 30px;
}
.why-choose-us-2-inner h4 {
  font-size: 17px;
  color: #231f20;
  font-weight: 600;
  letter-spacing: 0;
}
.why-choose-us-2-inner p {
  font-size: 14px;
  color: #676767;
  margin: 0;
}
.why-choose-us-2-inner img {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  position: relative;
}
.block-margin-top {
  margin-top: 3rem;
}
.management_services h2 {
  font-family: "Poppins-SemiBold";
  color: #231f20;
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 90px;
  padding: 0;
  text-align: center;
}
.management_services h2 span {
  color: #ff6300;
}
.management_services .ppc_management {
  position: relative;
  padding: 0 30px 0 114px;
  margin-bottom: 30px;
}
.management_services .ppc_management .ppc_management_icon {
  position: absolute;
  left: 0;
  top: 0;
}
.management_services .ppc_management .ppc_management_icon img {
  width: 80px;
  height: auto;
}
.management_services .ppc_management h3 {
  font-family: "Poppins-SemiBold";
  color: #231f20;
  font-size: 20px;
  font-weight: 600;
}
.management_services .ppc_management h6 {
  font-family: "Poppins-SemiBold";
  color: #231f20;
  font-size: 20px;
  font-weight: 600;
}
.management_services .ppc_management p {
  color: #747582;
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}
.network_icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.network_icons img {
  width: auto;
  height: 95px;
  margin: 30px 0;
}
.form-group label {
  font-weight: 500;
}
.form-check-label {
  font-weight: 300;
  font-size: 14px;
}
.call-to-actio-section {
  padding: 70px 0;
  background: #1a1a1a;
}
.call-to-actio-section.light {
  background: #fff5ee;
}
.call-to-actio-section h4 {
  font-weight: 300;
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.8em;
}
.img-smm {
  width: 130px !important;
  height: 130px !important;
}
.why-choose-us-inner h3 {
  font-size: 22px;
  color: #ff6300;
  font-weight: 600;
  letter-spacing: 0;
}
.why-choose-us__SMM {
  /* background: #fff5ee; */
  background: #ffffff;
}
.list-1 {
  padding-left: 20px;
}
.list-1 li {
  font-weight: 100;
  font-size: 14px;
  line-height: 1.7em;
}
.service-points {
  margin-bottom: 30px;
}
.service-points ul {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.service-points li {
  font-weight: 100;
  font-size: 14px;
  line-height: 1.7em;
  color: #fff;
  list-style: inside;
}
.service-points ul.two-col li {
  width: 50%;
}
.technology-icon {
  margin-top: 25px;
  margin-bottom: 15px;
}
.technology-icon ul {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
}
.technology-icon ul li {
  list-style: none;
  margin: 0 8px 8px 0;
}
.technology-icon ul li a {
  padding: 3px 8px;
  border: 1px solid #eee;
  background: #fff;
  width: auto;
  height: 64px;
  border-radius: 5px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  color: red;
}
.technology-icon ul li a img {
  width: auto;
  height: 56px;
}
.bg-white {
  background-color: #fff !important;
  background: #fff !important;
}
.web-work-thumb {
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.web-work-thumb:hover {
  background: #fff;
  box-shadow: 0 5px 35px -15px rgba(0, 0, 0, 0.2);
  margin-top: -10px;
}
.work-img-thumb {
  background: #e6e0ff;
}
.work-img-thumb.red {
  background: #ffd4af;
}
.work-img-thumb.blue {
  background: #a6c0fc;
}
.work-img-thumb img {
  width: 100%;
}
.work-title {
  padding: 15px 15px;
}
.work-title h4 {
  margin-bottom: 10px;
  color: #000;
}
.work-title p {
  margin-bottom: 0px;
  color: #333333;
}
.casestudy-info {
  padding: 0px 80px 80px;
  background: #fff;
}
ul.two-col {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  margin-left: 0;
  padding-left: 0;
}
ul.two-col li {
  width: 50%;
  list-style: inside;
  padding-right: 5px;
}
.font-17 {
  font-size: 17px;
}
/*BLOG*/

.blog-img {
  width: 100%;
  height: 224px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
}
.blog-content {
  padding: 15px;
}
.blog-content h5 {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  color: #ea750f;
  font-weight: 600;
  font-size: 19px;
}
.blog-content h5 a {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
}
.blog-content h5 a:hover,
.blog-content h5 a:hover h5 {
  color: #231f20;
}
.blog-content p {
  width: 100%;
  color: #555555;
}
.date-blog {
  font-size: 14px;
  color: #7b7b7b;
  margin-bottom: 15px;
}
.common-read-more-text {
  color: #ea750f;
  font-size: 15px;
  font-weight: 400;
  position: relative;
}
.tags a {
  color: #231f20;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  margin-bottom: 10px;
}
.blog-card2 {
  width: 100%;
  box-shadow: 0px 0 15px 0 rgb(4 4 4 / 5%);
}
.bg-light-orange {
  background: #fff5ee;
}
.text-blue {
  color: #231f20 !important;
}
.services-white h3,
.services-white h4,
.services-white p {
  color: #fff !important;
}
.slider__next:hover,
.slider__prev:hover {
  border: 2px solid #ff6300;
  border-radius: 50%;
  background: #ff6300;
}
.contact-details {
  box-shadow: 3px 9px 30px -28px rgb(36 38 90);
}
.contact-details h3 {
  font-weight: 600;
}
.address,
.phone,
.email {
  color: #353960;
}
.area-interest .form-check {
  min-width: 214px;
}
.blog-details {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-top: 10px;
}
.blog-details .blog-by,
.blog-details .blog-date,
.blog-details .blog-catagories {
  font-size: 14px;
  color: #171717;
  margin-right: 20px;
  min-width: 110px;
}
.blog-details .blog-by span,
.blog-details .blog-date span,
.blog-details .blog-catagories span {
  font-weight: 500;
  color: #828282;
}

.sidebar-widget {
  display: block;
  margin-bottom: 25px;
  padding: 15px;
}
.sidebar-widget h4 {
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 12px;
}
.sidebar-widget ul {
  padding: 0;
  margin: 0;
}
.sidebar-widget ul li {
  list-style: none;
}
.sidebar-widget ul li a {
  padding: 10px 0;
  line-height: 2.5em;
  color: #231f20;
}
.sidebar-widget ul li a:hover {
  color: #ff6300;
}
.recent-post-block ul li a {
  font-weight: 600;
  font-size: 14px;
}
.help-block {
  background: #f4f4f4;
  display: block;
  padding: 20px;
  text-align: center;
}
.share-block {
  float: left;
}
.share-block .social-links a {
  color: #cccbff;
  margin-right: 16px;
}
.share-block .social-links a i {
  color: #231f20;
  font-size: 22px;
}
.share-block .social-links a:hover i {
  color: #ff6300;
}
.card-white {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 0.25rem;
  margin-bottom: 25px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.card-white-2 {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 0.25rem;
  margin-bottom: 25px;
  padding: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.card-white ul {
  padding-left: 21px;
  height: 100%;
}
.card-white .two-col {
  padding-left: 0px;
  height: 100%;
}
.card-white ul li {
  line-height: 1.9em;
  font-size: 15px;
}
.digital-marketing-course-inner {
  margin-bottom: 25px;
}
.digital-marketing-course-inner h4 {
  color: #1a1a1a;
  border-bottom: 1px solid #cbcade;
  padding-bottom: 15px;
}
.row-flex {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
}
.row-flex [class*="col-"] {
  margin-bottom: 0px;
}
.round-corner-img {
  border-radius: 30px;
}
.mobile-app-section {
  margin: 90px 0;
}
.mobile-app-section:last-child {
  margin: 90px 0 0;
}
.privacy-policy-wrapper {
  margin-bottom: 50px;
  padding-bottom: 20px;
}
.privacy-policy-wrapper h3 {
  font-size: 24px;
  line-height: 30px;
  color: #ea750f;
  font-weight: 400;
  margin-bottom: 18px;
}
.privacy-policy-wrapper h2 {
  border-bottom: 1px solid rgb(0, 0, 0, 0.2);
  padding-bottom: 17px;
  margin-bottom: 23px;
}
.feedback-form {
  position: fixed;
  top: 15%;
  right: 0;
  z-index: 100;
  min-height: 450px;
}
.feedback-form .form-group label {
  font-weight: 500;
  font-size: 13px;
}
.feedback-form-show {
  right: 0 !important;
}
.feedback_form_area {
  position: relative;
  display: none;
  overflow: hidden;
  background: rgb(255 255 255 / 97%);
}
.feedback_form_area_inner {
  width: 300px;
  min-height: 450px;
  color: #000;
  padding: 15px;
}
.feedback_form_area h3 {
  margin-top: 0;
}
.custom-inp {
  width: 100%;
  height: 35px;
  padding-left: 5px;
  color: #000;
  border: 1px #969696 solid;
  background: transparent;
}
.custom-inp-txt {
  width: 100%;
  height: 100px;
  padding: 5px;
  color: #000;
  border: 1px #969696 solid;
  background: transparent;
}
.feedback-form-btn {
  position: absolute;
  left: -93px;
  color: #fff;
  width: 144px;
  transform: rotate(270deg);
  top: 55%;
  border-radius: 0;
}
.btn-warning2:hover {
  color: #fff;
  background-color: #ce6912;
  border-color: #ff6300;
}
.btn-warning2 {
  color: #fff;
  background-color: #ff6300;
  border-color: #ff6300;
}
.btn-warning2.focus,
.btn-warning2:focus {
  outline: 0;
  box-shadow: none;
}
@media only screen and (max-width: 320px) {
  .feedback_form_area_inner {
    width: 260px;
    min-height: 450px;
    color: #fff;
    padding: 15px;
  }
  .testimo-block {
    width: 300px;
    height: auto;
    padding: 56px 15px;
  }
  .client-box .client-logo-box {
    width: 100% !important;
  }
}
@media only screen and (max-width: 800px) {
  .feedback-form-btn {
    position: absolute;
    left: -48px;
    color: #fff;
    width: 49px !important;
    transform: rotate(90deg);
    top: 46%;
    border-radius: 0;
  }
}
.mt-50 {
  margin-top: 50px;
}
#main .page-404 .bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
#main .page-404 .bottom .bottom_wr {
  padding: 70px 95px;
  background: #101834;
}
#main .page-404 .bottom h1 {
  padding: 0;
  margin: 0 0 0 -11px;
  font-size: 230px;
  line-height: 132px;
  color: #101834;
}
#main .page-404 .bottom .bottom_wr .media h3 {
  color: #fff;
  padding: 0;
  margin: 0;
}
.whatsapp-sticky {
  position: fixed;
  left: 10px;
  bottom: 80px;
  z-index: 99;
  width: 64px;
  height: 64px;
  display: block;
  background: url(../img/whatsapp-icon.webp) center no-repeat;
  background-size: 64px;
}
body.error404 {
  background-image: url(../img/page_404.webp) !important;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-color: linear-gradient(0deg, #ff6300, #231f20);
  background-color: -webkit-linear-gradient(0deg, #ff6300, #231f20);
  background-color: -moz-linear-gradient(0deg, #ff6300, #231f20);
  background-color: -o-linear-gradient(0deg, #ff6300, #231f20);
  background-color: -ms-linear-gradient(0deg, #ff6300, #231f20);
  background-size: cover !important;
}
.not-four {
  display: block;
  font-size: 250px;
  line-height: 1.2;
  color: #1d3d7f;
  font-weight: 900;
  text-shadow: 1px 19px 46px rgb(0 0 0 / 40%);
  padding: 90px 0 0;
}
.form-group label.error {
  color: #e21717;
  margin: 0;
  font-weight: 400;
  font-size: 12px;
}
.carrer-link {
  display: inline-flex;
  align-items: center;
}
#formResponse {
  text-align: center;
  color: #fff;
  margin: 20px 0;
  display: block;
}
.bx-1 {
  background: #231f20 !important;
  color: #fff;
}
.bx-1:hover {
  background: #231f20 !important;
  color: #fff;
}
.bx-1 .title a {
  color: #fff;
}
.bx-1 .title {
  color: #fff;
}
.bx-1 strong {
  font-weight: bold;
}
.about-in .accordion-list {
  padding: 30px 0px 0px 0px;
  font-family: "Poppins", sans-serif;
}
.about-in .accordion-list ul {
  padding: 0;
  list-style: none;
}
.about-in .accordion-list li + li {
  margin-top: 15px;
}
.about-in .accordion-list li {
  background: #fff;
  border: 1px solid #f3f5f8;
  border-radius: 4px;
}
.about-in .accordion-list span {
  display: block;
  position: relative;
  font-family: "Poppins-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
  padding-right: 30px;
  outline: none;
  background: #f3f5f8;
  padding: 15px;
  color: #231f20;
  cursor: pointer;
}
.about-in .accordion-list span:not(.collapsed) {
  color: white;
  background-color: #231f20;
}
.about-in .accordion-list span:not(.collapsed) i {
  color: #ff6300;
}
.about-in.accordion-list span div {
  color: #231f20;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}
.about-in .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 8px;
  top: 15px;
}
.about-in .accordion-list p {
  margin-bottom: 0;
  padding: 10px;
}
.about-in .accordion-list p div {
  display: unset;
  background: none;
  padding: 0px;
}
.about-in .accordion-list .icon-show {
  display: none;
}
.about-in .accordion-list span.collapsed {
  color: #231f20;
}
.about-in .accordion-list span.collapsed:hover {
  color: #231f20;
}
.about-in .accordion-list span.collapsed .icon-show {
  display: inline-block;
}
.about-in .accordion-list span.collapsed .icon-close {
  display: none;
}
.about-in .accordion-list ul li ul li {
  list-style: disc;
  margin-left: 10px;
  border: none !important;
}
#website-work1 {
  position: relative;
}
#website-work1:before {
  content: "";
  position: absolute;
  background: url(../img/logo-header-sub.png);
  width: 400px;
  height: 400px;
  bottom: -50px;
  background-size: 400px;
  left: -160px;
  opacity: 0.2;
}

.about-in .accordion-list ul li ul {
  margin-left: 30px;
}

/* #testimonial-block{
	background: #fff6ed;
	padding: 130px 0 130px;
} */

/* last-new-styles */
.ggl-rating-block {
  padding: 30px 0;
}
.float-left {
  float: left;
}
.top-4 {
  display: flex;
  margin-bottom: -15px;
}
p.top-p {
  font-family: "Poppins-bold", sans-serif;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0 !important;
}
.rating {
  padding: 0 15px;
  margin-top: 10px;
  color: #ff9c00;
}
.gray-bg-padd ul.rating {
  padding: 0 15px;
  margin-top: 10px;
  font-size: 25px;
}
.no-review {
  font-family: "Poppins-Medium", serif;
  margin-top: 10px;
}
.fa-star {
  color: #ffb400 !important;
}
.float-right {
  float: right;
}
a.google-btn {
  font-family: "Poppins-bold", sans-serif;
  width: 150px;
  height: 50px;
  line-height: 30px;
  padding: 9px 20px;
  border-radius: 3px;
  background-color: #1c91ff;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  display: inline-flex;
  text-transform: uppercase;
  margin: 10px 0;
}
.gray-bg-padd {
  background: #fafafa;
  padding: 21px 25px;
  border-radius: 10px;
}
.website-name {
  font-size: 17px !important;
  border-radius: 3px 3px 0 0;
  border-top: 0 !important;
  border-bottom: none !important;
  border-left: none !important;
  /* background: linear-gradient(45deg, #343285, #f1801f); */
  background-color: #1a1a1a;
  height: 60px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border-bottom: none !important;
}
.result-table thead {
  background: #fff3d7;
  color: rgb(78, 78, 78);
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgb(209 226 255 / 13%);
}
.table thead th {
  vertical-align: bottom;
  border-bottom: none;
  font-weight: 600;
}
.portfolio-item .item {
  /*width:303px;*/
  float: left;
  margin-bottom: 10px;
}
.portfolio-item .item .fancylight {
  float: left;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 15px;
  position: relative;
  border: 1px solid #ff6300;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.portfolio-item .item .fancylight:hover {
  box-shadow: 5px 11px 15px rgba(0, 0, 0, 0.2);
}
.portfolio-item .item .fancylight:before {
  content: "";
  background: url(../img/corner-certi-2.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  width: 100%;
  height: 80px;
  top: 3px;
  left: 0;
}
.portfolio-item .item .fancylight:after {
  content: "";
  background: url(../img/corner-certi-3.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  width: 100%;
  height: 70px;
  bottom: 0px;
  left: 0;
}
.seo-results {
  background: #fff6ed;
}
.table {
  background: #fff;
}
.ftr-logo-links-wrap a {
  margin: 10px;
  max-width: 95px;
}
.ftr-logo-links-wrap a img {
  width: 100%;
}
.form-response {
  text-align: center;
  margin: 20px 0;
  display: block;
  color: green;
}
.scc-response-box {
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px 0px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 15px 0px rgb(0 0 0 / 20%);
  border-radius: 10px;
}
.scc-response-box h4,
.scc-response-box strong {
  color: #ff6300;
  font-weight: 700;
}
.sccalculator-btn,
.wccalculator-btn {
  height: 0px;
  position: fixed;
  right: -72px;
  top: 45%;
  z-index: 99;
  font-size: 16px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.sccalculator-btn a,
.wccalculator-btn a {
  padding: 8px 22px;
  background: #ff642d;
  animation: gradient 15s ease infinite;
  color: white;
  font-family: "Poppins-SemiBold", sans-serif;
}

.team-name-main a:hover .team-wrap img {
  filter: none;
  -webkit-filter: grayscale(0);
  -webkit-transform: scale(1.01);
}
.team-name-main a:hover {
  color: #231f20;
}
.team-wrap {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  background-color: #ffffff;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 5px 25px 0px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 25px 0px rgb(0 0 0 / 10%);
  overflow: hidden;
}
.team-wrap img {
  border-radius: 50px 50px 0px 0px;
  -webkit-border-radius: 50px 50px 0px 0px;
  -ms-border-radius: 50px 50px 0px 0px;
  -moz-border-radius: 50px 50px 0px 0px;
  width: 100%;
  filter: gray; /* IE5+ */
  -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
  -webkit-transition: all 0.6s ease-in-out;
}
.team-wrap .team-name {
  padding: 20px 20px;
  display: block;
  text-align: center;
}
.team-wrap .team-name h3 {
  margin-bottom: 5px;
  font-size: 22px;
}
.team-wrap .team-name p {
  color: #696a6a;
  margin-bottom: 0.5rem;
}
.left-title-team {
  height: calc(100% - 50px);
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.left-title-team img {
  width: 250px;
  margin-bottom: 20px;
}
/* -- TABBING STYLES -- */
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
  text-align: center;
  justify-content: center;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  background: #fff;
  color: #000;
  margin: 0 5px;
  padding: 14px 15px;
  line-height: 1.2em;
  font-size: 15px;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: #ff642d;
  border-color: #ff642d #ff642d #fff;
}
.tab-content > .active {
  display: block;
  padding: 41px 20px 20px;
  color: #000;
  background: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.tab-content ul li {
  line-height: 1.9rem;
  font-size: 15px;
}
/*  -- Counter Styles  --*/
.counter-wrap {
  padding: 25px;
  color: #fff;
  text-align: center;
}
.counter-wrap h3 {
  font-size: 30px;
}
.counter-wrap h4 {
  font-weight: 100;
}
.mb-100 {
  margin-bottom: 100px;
}
.ecommerce-service-section.left-section .service-content {
  padding: 30px 40px 0px 0px;
}
.ecommerce-service-section.right-section .service-content {
  padding: 30px 0px 0px 40px;
}
.ecommerce-service-section .service-img img {
  width: 100%;
}
.ecommerce-client-wrap {
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
}
.ecommerce-client-wrap img {
  width: 90%;
  margin: 10px auto;
  padding: 25px;
  color: #fff;
  text-align: center;
}
/* seo outsource form styles */
.seo-outsource-form {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
}
.seo-outsource-form .form-group label {
  font-weight: 500;
  font-size: 13px;
}
.seo-outsource-form textarea.form-control {
  border-radius: 7px;
  height: 102px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #89acc2;
  color: #000;
  resize: none;
}
.seo-outsource-form .form-control {
  border-radius: 7px;
  height: 46px;
  padding: 12px 12px;
  background: transparent;
  border: 1px solid #89acc2;
  color: #000;
}
.why-seo-outsource {
  margin: 0px 0 20px;
  height: 100%;
  text-align: center;
  padding: 25px 15px 20px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.why-seo-outsource.first {
  background: #ffeee6;
}
.why-seo-outsource.second {
  background: #e1e3ff;
}
.why-seo-outsource.third {
  background: #daf3ff;
}
.why-seo-outsource.fourth {
  background: #ffe5e8;
}
.why-seo-outsource h4 {
  font-size: 17px;
  color: #231f20;
  font-weight: 600;
  letter-spacing: 0;
}
.why-seo-outsource p {
  font-size: 14px;
  color: #000;
  margin: 0;
  line-height: 21px;
}
.why-seo-outsource img {
  margin: 20px 0 25px;
  width: auto;
  height: 180px;
  position: relative;
}
.readmore__content {
  max-width: 100%;
  width: 100%;
  /*display: flex;*/
}
button.readmore__toggle {
  display: inline-block;
  font-weight: 400;
  color: #fff;
  background: #ff642d;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 30px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/* button.readmore__toggle:hover {
	background: #1a1a1a;
	outline: none;
}
button.readmore__toggle:active, button.readmore__toggle:focus {
	outline: none;
} */
.outsourcing-seo-box {
  margin: 0px 0 20px;
  height: 100%;
  text-align: center;
  padding: 25px 20px;
  background: #fff;
  -webkit-box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  -moz-box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  -ms-box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  box-shadow: 2px 4px 25px -15px rgb(74 50 33 / 72%);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
.outsourcing-seo-box h3 {
  font-size: 21px;
  color: #ff642d;
  font-weight: 500;
  letter-spacing: 0;
}
.outsourcing-seo-box p {
  font-size: 14px;
  color: #676767;
  margin: 0;
}
.outsourcing-seo-box .img-box {
  margin: 20px auto 25px;
  width: 130px;
  height: 130px;
  position: relative;
  border-radius: 50%;
  background: #231f20;
  padding: 30px;
}
.outsourcing-seo-box .img-box img {
  width: 100%;
  height: auto;
  margin: auto;
}
.outsourcing-seo-box .img-box > .svg {
  fill: #fff !important;
  filter: brightness(100);
}
/* FEATURE BLOCK NEW */
.feature-block-new {
  text-align: center;
  place-items: center;
}
.feature-block-new figure {
  display: flex;
  vertical-align: middle;
  line-height: 96px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 0 20px;
  /* width: 60px; */
  margin: 0;
}
.feature-block-new figure img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  height: auto;
  margin: 13px auto;
}
.multiple-items-2 .slick-track {
  align-items: center;
}
/* .feature-block-new figure {
	display: inline-block;
	vertical-align: middle;
	line-height: 96px;
 -webkit-transition: all .3s ease;
 -o-transition: all .3s ease;
 transition: all .3s ease;
	cursor: pointer;
	margin-bottom: 15px;
	background: #ebebeb;
	border-radius: 10px;
	width: 198px;
	height: 83px;
	padding: 0 20px;
}
.feature-block-new figure img {
 -webkit-transition: all .3s ease;
 -o-transition: all .3s ease;
 transition: all .3s ease;
	opacity: 1;
	width: 80%;
	height: auto;
	margin: 13px auto;
} */
/* .feature-block-new figure:hover {
	background: #fff;
	box-shadow: 0 5px 30px -3px rgb(0 0 0 / 35%);
}
.feature-block-new figure:hover img {
	opacity: 1;
} */
.feature-block-new span {
  line-height: 20px;
  display: block;
  text-align: center;
  color: #fff;
}
#webdesign .feature-block-new figure {
  width: 100px;
  height: 100px;
  padding: 0 20px;
}
#webdesign .feature-block-new figure img {
  width: 96%;
  height: auto;
  margin: 22px auto;
}

@media only screen and (max-width: 767px) and (min-width: 320px) {
  #hero .banner-logo {
    width: 100%;
  }
}
.btn-orange i {
  font-size: 25px;
  float: right;
  margin-left: 5px;
}

#submitsccForm p.titleset {
  font-family: "Poppins-Medium", serif;
  padding-left: 12px;
  font-size: 16px;
}

h2.setblue {
  color: #231f20;
}

.website-work-content .slick-prev,
.website-work-content .slick-next {
  display: none !important;
}

ul.level-0 {
  border-left: solid 2px #231f20;
  margin-bottom: 40px;
  margin-left: 0;
  padding-left: 32px;
}

ul.level-0 li:before {
  content: "";
  border: solid 2px #231f20;
  width: 15px;
  height: 15px;
  position: absolute;
  left: -40px;
  top: 4px;
  border-radius: 20px;
  background: #fff;
}

ul.level-0 li {
  list-style: none;
  padding-bottom: 20px;
  position: relative;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  position: relative;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  left: 0;
  bottom: 0px;
  right: 0;
  opacity: 0;
  text-align: center;
}

.team .member:hover .member-info {
  opacity: 1;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
}

.team .member .member-info {
  padding: 15px 15px;
}

.team .member .member-info h3 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 22px;
  letter-spacing: 1px;
  color: #ff642d;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
}

ul.slider-list {
  padding-bottom: 20px;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
ul.slider-list li {
  list-style: none;
  font-size: 18px;
  color: #1a1a1a;
  padding-left: 18px;
  padding-right: 18px;
  font-weight: bold;
  display: inline-block;
  padding-bottom: 15px;
}
ul.slider-list li i {
  color: #ff642d;
  font-size: 21px;
  font-weight: bold;
  display: inline-block;
  float: left;
  margin-top: 3px;
  margin-right: 4px;
}

.numbers-section {
  background: #1a1a1a;
  color: #fff;
}

.section-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-desc {
  color: #ffffff;
  max-width: 500px;
}

.stat-box p {
  border-top: 2px solid #ff6600;
  padding-top: 10px;
  padding-bottom: 10px;
}

.stat-box i {
  color: #ff6600;
  font-size: 36px;
  margin-bottom: 10px;
  display: inline-block;
}
.stat-box img {
  width: 100px;
}
.stat-box-gp {
  display: flex;
  justify-content: space-between;
}
.stat-box h2 {
  font-weight: 500;
  margin: 10px 0 5px;
  font-size: 60px;
}

.stat-box p {
  color: #ffffff;
  margin: 0;
  font-size: 18px;
}
.client-logos img {
  max-height: 100px;
  width: 80%;
  object-fit: scale-down;
  transition: transform 0.3s ease;
}
.client-logos img:hover {
  transform: scale(1.05);
}
/* .case-card
{
height: 400px;
    background-size: cover;
	background-position: center;
} */
.case-card {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.case-card .overlay {
  position: relative;
  z-index: 2;
  width: 600px;
}

.approach-slider {
  margin: 0 -12px;
}

.approach-card {
  padding: 0 12px;
  transition: all 0.3s ease;
}

.approach-inner {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

/* Unique Backgrounds */
.card-1:hover .approach-inner {
  background: #fff4e6;
  border: 2px solid #ffcf92;
}
.card-2:hover .approach-inner {
  background: #e6f7ff;
  border: 2px solid #a7e3ff;
}
.card-3:hover .approach-inner {
  background: #f3f0ff;
  border: 2px solid #cdc0ff;
}
.card-4:hover .approach-inner {
  background: #e8fff4;
  border: 2px solid #a5ffd4;
}
.card-5:hover .approach-inner {
  background: #fff0f3;
  border: 2px solid #ffb2c1;
}
.card-6:hover .approach-inner {
  background: #fef6e4;
  border: 2px solid #fddc91;
}
.card-7:hover .approach-inner {
  background: #e9f4ff;
  border: 2px solid #b2d9ff;
}
.card-8:hover .approach-inner {
  background: #f4f9f0;
  border: 2px solid #d2ffaf;
}
.card-9:hover .approach-inner {
  background: #fef0ff;
  border: 2px solid #fbbcff;
}
.card-10:hover .approach-inner {
  background: #fff8eb;
  border: 2px solid #ffde9f;
}
.card-11:hover .approach-inner {
  background: #fff4e6;
  border: 2px solid #ffd197;
}
.card-12:hover .approach-inner {
  background: #e6f7ff;
  border: 2px solid #a7e3ff;
}
.card-13:hover .approach-inner {
  background: #f3f0ff;
  border: 2px solid #cdc0ff;
}
.card-14:hover .approach-inner {
  background: #e8fff4;
  border: 2px solid #a5ffd4;
}

/* Hover Effects */
.approach-card:hover .approach-inner {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.approach-inner h5 {
  font-size: 1.1rem;
  color: #000;
}

.approach-inner p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}
/* .faq-section{
	padding: 0;
} */
@media screen and (min-width: 1500px) and (max-width: 1920px) {
  ul.slider-list {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 1280px) and (max-height: 720px) and (min-height: 300px) {
  #hero {
    padding-top: 80px;
  }

  #hero p {
    padding-top: 0px;
  }
}

.case-study-wrapper {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Left Side with Image */
.case-left {
  flex: 0 0 45%;
  min-height: 100%;
  padding: 20px;
}

.case-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

/* Overlay tint */
.case-left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 60, 70, 0.5);
}

/* Heading on image */
.case-left-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

/* Right Side Text */
.case-right h2 {
  font-size: 26px;
  line-height: 1.3;
}

/* Stats box */
.stat-box-new {
  background: #f8f9fc;
  padding: 15px;
  border-radius: 16px;
  text-align: center;
}
.stat-box-new p {
  border-top: 2px solid #ff6600;
  padding-top: 10px;
  padding-bottom: 10px;
}
.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #002e5b;
}

.stat-text {
  font-size: 11px;
  color: #555;
  margin-top: 8px;
}

/* Buttons */
.btn-dark,
.btn-info {
  border-radius: 10px;
  padding: 10px 20px;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: #ff6300;
}

ul.list-inline.services-offered {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}
.services-offered li {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  background-color: #FFF3EB;
    padding: 5px 10px;
        border-radius: 5px;
    color: black;
    font-weight: 600;
}
.list-inline-item:not(:last-child) {
    margin-right: 0;
}
.services-offered img {
  width: 24px;
  margin-right: 8px;
}
.results-section .col-md-3:nth-child(odd) .result-box
{
background-color: #ff642d;
}
.results-section .col-md-3:nth-child(even) .result-box
{
background-color: #000000;
}
.result-box {
  transition: 0.3s ease;
  padding: 2rem 0;

}
.result-box h3
{
font-weight: 800;
font-style: "ExtraBold";
font-size: 44px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
margin:0 0 5px 0;
}
.result-box p
{
margin:0;
}
.result-box:hover {
  transform: translateY(-5px);
}
.full-height
{
    /* min-height: 600px; */
    padding:150px 0;
}
.success-story .img-box img
{
  border-radius: 20px;
  border: 1px solid #D9D9D9;
  backdrop-filter: blur(54px);
  box-shadow: 0 10px 10px 0px rgba(0, 0, 0, .15);

}

.custom-keyword-table {
  background-color: #fff9f5;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.custom-keyword-table table {
  margin-bottom: 0;
  border-collapse: collapse;
  min-width: 400px;
      border-radius: 10px;
    overflow: hidden;
        background: inherit;
}

.custom-keyword-table thead {
  background-color: #ff5e14;
  color: #ffffff;
  font-weight: 600;
}

.custom-keyword-table th,
.custom-keyword-table td {
  padding: 10px;
  font-size: 14px;
  border-right: 1px solid #eee;
}

.custom-keyword-table th:last-child,
.custom-keyword-table td:last-child {
  border-right: none;
}

.custom-keyword-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.bg-orange
{
    background-color: #EC5C19;
}
/*---- Portfolio Styles ----*/

.portfolio-block {
	width: 100%;
	height:420px;
}
.port-top-color {
	text-align: center;
	width: 100%;
	height: 330px;
	margin-bottom: 20px;
}
.port-img {
	width: 80%;
	height: 100%;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	top: 60px;
	box-shadow: 0 4px 30px 2px rgba(0, 0, 0, 0.08);
}
.port-img img {
	width: 100%;
	object-fit: cover;
	object-position: top;
	height: 362px;
	transition: 25s all ease;
}
.port-img:hover img {
	object-position: bottom;
}

.industry-section .industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.industry-section .industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.logos-slider {
    overflow: hidden;
    width: 160px; /* control visible area */
    border-radius: 30px;
}

/* .logos-track {
    display: flex;
    animation: scroll 5s linear infinite;
} */

.logos-track {
    display: flex;
    align-items: center;
    will-change: transform;
    animation: marquee 10s linear infinite; /* changed from 18s */
}

@keyframes marquee {
    0%   { transform: translate3d(0,0,0); }
    100% { transform: translate3d(-100%,0,0); }
}

.logos-img {
    width: 60px;
    margin-right: -10px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 767.98px) {
  .custom-keyword-table table {
    min-width: 700px;
  }
}
.instagram-posts{
    background-color: #F1F1F1;
}
/* Responsive */
@media (max-width: 768px) {
  .case-left {
    flex: 0 0 100%;
    min-height: 0;
  }
  .about-in .accordion-list {
    padding: 0;
  }
  .digital-marketing-section {
    min-height: 400px !important;
  }
  .digital-marketing-section h2 {
    font-size: 24px !important;
  }
  .digital-marketing-section p {
    font-size: 15px !important;
  }
  .case-right .d-flex
  {
justify-content: center;
  }
}
@media (max-width: 1440px) {
	#header.header-sticky
	{
		width: 70%;
	}
}
@media (min-width: 768px) and (max-width: 1025px) { 
	.logo img
	{
		max-height: 40px;
	}
	.nav-menu a
	{
		font-size: 13px;
	}
	.topbar-btn, .cta-btn
	{
		font-size: 14px;
	}
	    #header.header-sticky {
        width: 90%;
    }
}