/* @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700,900|Open+Sans:300,400,600,700'); */

#jqcheck {
  background: #fff9d7;
  text-align: center;
  color: #333;
  padding: 10px 0px;
  font-size: 13px;
  font-weight: bold;
  position: fixed;
  z-index: 9991;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
* {
  margin: 0px;
  padding: 0px;
}

/* text selection color */
::-moz-selection {
  background: var(--primary-color);
  color: var(--theme-white);
  text-shadow: none;
}
::selection {
  background: var(--primary-color);
  color: var(--theme-white);
  text-shadow: none;
}

/* browser scroller style */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}
::-webkit-scrollbar-track-piece {
  background-color: #ecedf1;
  -webkit-border-radius: 0px;
  border-left: 1px solid #888;
}
::-webkit-scrollbar-thumb:vertical {
  -webkit-border-radius: 0px;
  background: var(--primary-color);
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select {
    -webkit-appearance: none !important;
    line-height: 28px !important;
  }
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--default-color);
  font-size: var(--base-font-size);
  position: relative;
}

/* font family */
.ff-primary {
  font-family: "Poppins", sans-serif;
}
.ff-secondary {
  font-family: "Poppins", sans-serif;
}

/* font colors */
.fc-primary {
  color: var(--primary-color);
}
.fc-secondary {
  color: var(--secondary-color);
}
.fc-dark {
  color: var(--theme-dark);
}
.fc-lite {
  color: var(--theme-lite);
}

/* buttons */
.primary-btn,
.secondary-btn {
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 8px 15px;
  position: relative;
  display: table;
  border-radius: 3px;
}
.primary-btn:after,
.secondary-btn:after {
  content: "\e957";
  font-family: "icomoon" !important;
  font-size: 13px;
  color: white;
  padding-left: 10px;
  display: table-cell;
  vertical-align: middle;
}
.primary-btn {
  background: var(--primary-color);
  color: white;
}
.primary-btn:hover {
  background: var(--primary-color-dark);
  color: white;
}
.secondary-btn {
  background: var(--secondary-color);
  color: white;
}
.secondary-btn:hover {
  background: var(--secondary-color-dark);
  color: white;
}

.banner-btn {
  text-transform: capitalize;
  display: inline-block;
  transform: translateY(0rem);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: #fff !important;
  background-color: transparent;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid #fff !important;
}

.secpad-100 {
  padding: 100px 0;
}

.sm-btn {
  font-size: 14px;
}
.md-btn {
  font-size: 16px;
}
.lg-btn {
  font-size: 18px;
}
.xl-btn {
  font-size: 20px;
}

/* headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
  margin: 0;
  padding: 0;
}
h1,
.h1,
h2,
.h2 {
  font-family: "Poppins", sans-serif;
}
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Poppins", sans-serif;
  padding-bottom: 10px;
  color: var(--theme-dark);
}

h2,
.h2 {
  font-size: 6.7vmin;
}
h3,
.h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
}
h4,
.h4 {
  font-size: var(--font-size-h4);
}
h5,
.h5 {
  font-size: var(--font-size-h5);
}
h6,
.h6 {
  font-size: var(--font-size-h6);
}

p {
  font-weight: 400;
  line-height: 1.4;
  padding: 0 0 20px;
  margin: 0px;
  color: #687087;
}

/*** theme sections padding ***/
.sec-padding-100 {
  padding: 100px 0;
}
.sec-padding-90 {
  padding: 90px 0;
}
.sec-padding-80 {
  padding: 80px 0;
}
.sec-padding-70 {
  padding: 70px 0;
}
.sec-padding-60 {
  padding: 60px 0;
}
.sec-padding-xlarge {
  padding: 50px 0;
}
.sec-padding-large {
  padding: 40px 0;
}
.sec-padding-medium {
  padding: 30px 0;
}
.sec-padding-small {
  padding: 25px 0;
}
.sec-padding-xsmall {
  padding: 10px 0;
}

/*** theme sections margin ***/
.sec-margin-100 {
  margin: 100px 0;
}
.sec-margin-90 {
  margin: 90px 0;
}
.sec-margin-80 {
  margin: 80px 0;
}
.sec-margin-70 {
  margin: 70px 0;
}
.sec-margin-60 {
  margin: 60px 0;
}
.sec-margin-xlarge {
  margin: 50px 0;
}
.sec-margin-large {
  margin: 40px 0;
}
.sec-margin-medium {
  margin: 30px 0;
}
.sec-margin-small {
  margin: 25px 0;
}
.sec-margin-xsmall {
  margin: 10px 0;
}

/*** no padding, no marging ***/
.p-0 {
  padding: 0;
}
.pt-0 {
  padding-top: 0px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pl-0 {
  padding-left: 0px;
}
.pr-0 {
  padding-right: 0px;
}
.m-0 {
  margin: 0;
}
.mt-0 {
  margin-top: 0px;
}
.mb-0 {
  margin-bottom: 0px;
}
.ml-0 {
  margin-left: 0px;
}
.mr-0 {
  margin-right: 0px;
}

.tt-uppercase {
  text-transform: uppercase;
}
.tt-capitalize {
  text-transform: capitalize;
}

p strong {
  color: black;
}
p span {
  color: black;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}
img {
  border: 0px;
  outline: none;
}
/*img { max-width: 100%;  }*/
ul,
li {
  list-style-type: none;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

h2,
.h2 {
  color: #171717;
  line-height: 1.2;
  padding: 0 0 15px 0;
  position: relative;
  letter-spacing: -1px;
}
h2 span,
.h2 span {
  color: var(--primary-color);
}

a {
  text-decoration: none;
}
.list-simple {
  list-style: none;
  margin: 0 0 15px 0;
  width: 100%;
  display: inline-block;
}
.list-simple li {
  color: var(--default-color);
  padding: 0 0 10px 16px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}
.list-simple li:before {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 13px;
  color: var(--secondary-color);
  content: "\e93a";
  font-family: "icomoon" !important;
}

/*** morefull block link ***/
.moreFull {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}

/*** transition ***/
.transition {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*** scale with transition ***/
.scale-with-transition {
  -webkit-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}

header .container-fluid {
  padding: 0 30px;
}

p {
  padding: 0;
  margin: 0;
}

/* From Uiverse.io by Sergestra */

.floatbtn {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.floatbtn button span p {
  padding: 0 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.floatbtn button span p i {
  padding-left: 10px;
}

button {
  outline: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: max-content;
  height: 50px;
  overflow: hidden;
}

button div {
  transform: translateY(0px);
  width: 100%;
}

button,
button div {
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

button div span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 20px 25px;
}

button div:nth-child(1) {
  background-color: #000000;
}

button div:nth-child(2) {
  background-color: #f7ad19;
}

button:hover div {
  transform: translateY(-50px);
}

button p {
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
}

button:active {
  transform: scale(0.95);
}

/*////////////////////*/

/* header 
------------------------------------*/

ul {
  margin: 0;
}
.topbar {
  background: #000;
  padding: 15px 0;
}

.topbar .call span a {
  font-size: 17px;
  color: #fff;
}

.topbar .call span a i {
  padding-right: 25px;
}

.topbar .swiper h2 {
  font-size: 17px;
  color: #fff;
  text-align: center;
  padding: 0;
}

.topbar .social {
  text-align: end;
}

.topbar .social ul {
  display: flex;
  justify-content: end;
  gap: 25px;
  margin: 0;
}

.topbar .social ul li a {
  color: #fff;
  font-size: 17px;
}

.topbar a:hover {
  color: #f7ad19 !important;
}

/*/////////////////////////////*/

header {
  padding: 30px 0;
  width: 100%;
  z-index: 9999;
}

header .logo img {
  width: 50%;
}

header .menu {
  display: flex;
  justify-content: end;
}

header .menu ul {
  display: flex;
  /* justify-content: end; */
  gap: 30px;
  margin-right: 50px;
  align-items: center;
}

header .menu ul li {
  position: relative;
  transition: 0.4s;
}

header .menu ul li .dropdown {
  position: absolute;
  top: 100px;
  left: 0;
  width: 310px;
  opacity: 0;
  transition: 0.4s;
  transform: rotateX(90deg);
  background: #fff;
  z-index: 1;
}

header .menu ul li .dropdown ul {
  flex-direction: column;
  text-align: left;
  margin: 0;
  gap: 10px;
  box-shadow: 0px 0px 2px 0px #000000b0;
  border-radius: 10px;
  padding: 20px;
  align-items: start;
}

header .menu ul li:hover .dropdown {
  opacity: 1;
  top: 30px;
  transform: rotateX(0);
}

header .menu .headbtn {
  display: flex;
  gap: 30px;
}

header .menu a {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

header .menu .headbtn a {
  padding: 12px;
  color: #fff;
  border-radius: 10px;
  width: 175px;
  text-align: center;
  transition: 0.4s;
}

header .menu .headbtn a.btn1 {
  background: #f7ad19;
}

header .menu .headbtn a.btn2 {
  background: #000;
}

header .menu .headbtn a.btn1:hover {
  background: #000;
}

header .menu .headbtn a.btn2:hover {
  background: #f7ad19;
  color: #fff !important;
}

/*/////////////Footer///////////////////*/

.info {
  padding: 50px 0;
  border-bottom: 2px solid #f4ac1b;
}

footer {
  padding: 50px 0 30px;
  border-bottom: 2px solid #f4ac1b;
}

/*.gredient-ling img {
  width: 100%;
}*/

.info p {
  font-size: 16px;
  color: #000;
  line-height: 28px;
  font-weight: 500;
  width: 77%;
}

.info .col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.info h4 {
  font-size: 20px;
}

footer .logo img {
  width: 100%;
}

footer .otherServices {
  display: flex;
  align-items: center;
}

footer .link {
  padding-left: 50px;
}

footer .link h2 {
  font-size: 20px;
}

footer .link ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

footer .link ul li a {
  color: #5c5c5c;
  font-size: 15px;
}

.copy {
  padding: 15px 0 20px;
}

.copy p {
  font-size: 16px;
  color: #000;
  line-height: 28px;
  font-weight: 500;
}

.copy ul {
  display: flex;
  justify-content: end;
  gap: 20px;
}

.copy ul li a {
  font-weight: 500;
  font-size: 15px;
}

.copy ul li {
  border-left: 1px solid #000;
  padding-left: 20px;
}

.copy ul li:first-child {
  border: unset;
}

footer .link ul li a i {
  color: #f7ad19;
}

.people-say .review-slider1 .slick-slider .slick-prev {
    left: -13px;
}

.people-say .review-slider2 .slick-slider .slick-next {
    right: -13px;
}



/*///////////////////*/

section.home-banner {
  height: 80vh;
  display: flex;
  align-items: center;
  background-color: #fff0;
  background-image: linear-gradient(180deg, #ffffff 0%, #f7ad1929 100%);
}

section.home-banner .banner-txt .subtitle {
  color: #fff;
  font-size: 0;
  margin-bottom: 15px;
}

section.home-banner .banner-txt .subtitle .span1 {
  background: #f7ad19;
  padding: 7px 15px;
  font-size: 14px;
}

.homebannerimg img {
  width: 100%;
}

section.home-banner .banner-txt .subtitle .span2 {
  background: #000000;
  padding: 7px 15px;
  font-size: 14px;
}

section.home-banner .banner-txt h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}

section.home-banner .banner-txt h2 span {
  color: #f7ad19;
}

section.home-banner .banner-txt p {
  padding-bottom: 15px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

section.home-banner .banner-txt a {
  font-size: 15px;
}

section.home-banner .banner-txt a.a1 {
  padding-right: 10px;
}

section.home-banner .banner-txt a.a2 {
  border-left: 1px solid #000;
  padding-left: 10px;
}

section.home-banner .achieve {
  text-align: center;
}

section.home-banner .achieve ul {
  display: inline-block;
  font-size: 0;
  width: 100%;
}

section.home-banner .achieve ul li {
  text-align: center;
  display: inline-block;
  width: 31.3333%;
  padding: 20px 10px;
  transition: 0.4s;
  border: 1px solid #00000000;
  border-radius: 10px;
  background: #fff;
  margin: 6px;
}

section.home-banner .achieve ul li * {
  font-size: initial;
}

section.home-banner .achieve ul li i {
  background: #f7ad19;
  color: #fff;
  border-radius: 100px;
  padding: 30px;
  position: relative;
  border: 1px solid #f7ad1900;
}

section.home-banner .achieve ul li i::before {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

section.home-banner .achieve ul li h4 {
  font-size: 21px;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
}

section.home-banner .achieve ul li p {
  font-size: 13px;
}

section.home-banner .achieve ul li:hover {
  border: 1px solid #f7ad19;
}

section.home-banner .achieve ul li:hover i {
  background: #fff;
  color: #f7ad19;
  border: 1px solid #f7ad19;
}

section.home-banner .achieve ul li:hover {
  animation: float 2s infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}

.service-logos {
  background: #000;
  padding: 50px 0;
}

.service-logos .logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background: #000;
  padding: 20px 0;
}

.service-logos .logo-marquee .logos {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

.service-logos .logo-marquee img {
  height: 60px;
  margin: 0 40px;
  vertical-align: middle;
}

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

.marquee {
  --gap: 80px; /* space between items */
  --speed: 25s; /* lower = faster */
  /* item/logo height */
  width: 100%;
  user-select: none;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  width: max-content; /* shrink-to-fit so translate works correctly */
  animation: marquee-scroll var(--speed) linear infinite;
}

.marquee__item {
  flex: 0 0 auto; /* prevent shrinking */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.marquee__item img {
  height: var(--height);
  width: auto;
  display: block;
  filter: grayscale(0); /* set to 1 for gray logos */
  transition: transform 0.2s ease;
}
.marquee__item img:hover {
  transform: scale(1.05);
}

/* Soft fade at edges */

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* because we duplicated items once */
}

/*/////////////////////////////*/

section.people-say {
  padding: 50px 0;
}

section.people-say .head {
  padding-bottom: 50px;
}

section.people-say .head h2 {
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}

section.people-say .head h2 span {
  color: #f7ad19;
}

section.people-say .review-slider1 ul.review-slide1 li {
  box-shadow: 0px 0px 7px -1px #000;
  margin: 0 10px;
  padding: 20px;
  border-radius: 10px;
}

section.people-say .review-slider1 ul.review-slide1 li .profile {
  align-items: center;
  display: flex;
  gap: 10px;
}

section.people-say .review-slider1 ul.review-slide1 li .profile .profile-img {
  width: 15%;
}

section.people-say
  .review-slider1
  ul.review-slide1
  li
  .profile
  .profile-img
  img {
  border-radius: 100px;
  width: 100%;
}

section.people-say
  .review-slider1
  ul.review-slide1
  li
  .profile
  .profile-name
  h4 {
  padding: 0;
  font-size: 16px;
}

section.people-say
  .review-slider1
  ul.review-slide1
  li
  .profile
  .profile-name
  span {
  font-size: 12px;
}

section.people-say .review-slider1 ul.review-slide1 li ul {
  padding: 10px 0;
  display: flex;
  gap: 8px;
}

section.people-say .review-slider1 ul.review-slide1 li ul li {
  margin: 0;
  padding: 0;
  box-shadow: unset;
}

section.people-say .review-slider1 ul.review-slide1 li ul li i {
  color: #fb8e28;
}

section.people-say .review-slider1 ul.review-slide1 li p {
    color: #000;
    height: 90px;
    overflow: auto;
}

section.people-say .review-slider1 ul.partners {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

section.people-say .review-slider1 ul.partners li img {
  width: 70%;
}

section.people-say .review-slider1 ul.review-slide1 .slick-track {
  margin: 10px 0;
}

section.people-say .slick-prev:before,
section.people-say .slick-next:before {
  color: #000000;
}

section.people-say .review-slider2 ul.review-slide2 li img {
  width: 100%;
}

/* Speak Expert */

section.speakexpert .achieve ul {
  display: grid;
  grid-template-columns: auto auto;
}
section.speakexpert .achieve ul li {
  text-align: center;
  display: inline-block;
  padding: 20px 10px;
  transition: 0.4s;
  border: 1px solid #00000000;
  border-radius: 10px;
  background: #fff;
  margin: 6px;
}
section.speakexpert {
  background-color: #fff0;
  background-image: linear-gradient(180deg, #ffffff 0%, #f7ad1929 100%);
  padding: 100px 0px 100px 0px;
}
section.speakexpert .achieve ul li i {
  background: #f7ad19;
  color: #fff;
  border-radius: 100px;
  padding: 35px;
  position: relative;
  border: 1px solid #f7ad1900;
}
section.speakexpert .achieve ul li i::before {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
}
section.speakexpert .achieve ul li h4 {
  margin: 10px 0 5px 0;
  padding: 0 0 0 0;
  color: #000;
  font-size: 22px;
  font-weight: 500;
}
section.speakexpert .achieve ul li:hover {
  animation: float 2s infinite ease-in-out;
  border: 1px solid #f7ad19;
}
section.speakexpert .achieve ul li:hover i {
  background: #fff;
  color: #f7ad19;
  border: 1px solid #f7ad19;
}
section.speakexpert .container .col-md-7 .txt h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}
section.speakexpert .container .col-md-7 .txt h2 span {
  color: #f7ad19;
}
section.speakexpert .container .col-md-7 .txt p {
  padding-bottom: 15px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
section.speakexpert .container .col-md-7 .txt ul {
  display: flex;
  gap: 10px;
}
section.speakexpert .container .col-md-7 .txt ul li {
  border-right: 1px solid #f7ad19;
  color: #f7ad19;
  padding-right: 9px;
}

section.speakexpert .container .row .col-md-7 {
  display: flex;
  align-items: center;
}

/* Success Stories  */

section.successStories .container .col-md-12 .txt {
  text-align: center;
}
section.successStories {
  background-color: #fff0;
  background-image: linear-gradient(180deg, #ffffff 0%, #f7ad1929 100%);
  padding: 100px 0px 100px 0px;
}
section.successStories .container .col-md-12 .txt h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}
section.successStories .container .col-md-12 .txt h2 span {
  color: #f7ad19;
}
section.successStories .container .col-md-12 .txt p {
  padding-bottom: 15px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
section.successStories .container .col-md-12 .tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-direction: column;
  width: 100%;
  margin: 0px auto;
}
section.successStories .container .col-md-12 .tab-btn {
  border: 2px solid #f7ad19;
  border-radius: 25px;
  background: transparent;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  max-width: 250px;
  padding: 0px;
  display: flex;
  justify-content: center;
  font-size: 16px;
}
section.successStories .container .col-md-12 .tab-btn.active {
  background: #f7ad19;
  color: #fff;
}
section.successStories .container .col-md-12 .tab-content {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
section.successStories .container .col-md-12 .tab-content.active {
  display: grid;
}
section.successStories .container .col-md-12 .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
  height: 450px;
}
section.successStories .container .col-md-12 .card img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
  height: 260px;
  object-fit: cover;
}
section.successStories .container .col-md-12 .card:hover img {
  transform: scale(1.05);
}
section.successStories .container .col-md-12 .card h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  color: #000;
  line-height: 29px;
  font-weight: 500;
}
section.successStories .container .col-md-12 .card:hover h3 {
  color: #f7ad19;
}
section.successStories .container .col-md-12 .card p {
  font-size: 16px;
  color: #67768e;
}
section.successStories .container .col-md-12 .tabs-header {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Online Growth  */

section.onlineGrowth {
  background-color: #fff0;
  background-image: linear-gradient(180deg, #ffffff 0%, #f7ad1929 100%);
  padding: 100px 0px 100px 0px;
}
section.onlineGrowth .container .col-md-6 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
section.onlineGrowth .container .col-md-6 button div span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0.75em 2.125em;
}
section.onlineGrowth .container .col-md-6 .txt h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}
section.onlineGrowth .container .col-md-6 .txt h2 span {
  color: #f7ad19;
}
section.onlineGrowth .container .col-md-6 .txt p {
  padding-bottom: 15px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
section.onlineGrowth .container .col-md-6 .txt ul {
  display: flex;
  gap: 10px;
}
section.onlineGrowth .container .col-md-6 .txt ul li {
  border-right: 1px solid #000000;
  color: #000000;
  padding-right: 9px;
}
section.onlineGrowth .container .col-md-6 .label-box {
  display: inline-flex;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
section.onlineGrowth .container .col-md-6 .label-box .part1 {
  background: #f7ad19; /* pink */
  padding: 8px 15px;
}

section.onlineGrowth .container .col-md-6 .label-box .part2 {
  background: #000; /* black */
  padding: 8px 15px;
}

/* Creativity Setion  */

section.creativitySection {
  display: flex;
  justify-content: space-between;
  padding: 100px 10%;
  align-items: flex-start;
  transition: background 0.8s ease-in-out;
  overflow: hidden;
  background: #4951f2; /* default bg */
}
section.creativitySection .left-content h2 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
section.creativitySection .left-content p {
  line-height: 26px;
  color: #fff;
  font-size: 16px;
}
section.creativitySection .btn {
  background: #fff;
  color: #000;
  padding: 12px 22px;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  font-weight: bold;
}
section.creativitySection .image-box {
  position: relative;
  width: 100%;
  height: -webkit-fill-available;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}
section.creativitySection .image-box img {
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 10px;
  opacity: 0;
  transition: all 1s ease;
}
section.creativitySection .image-box img.active {
  top: 0;
  opacity: 1;
}
section.creativitySection .tab {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 20px 10px;
  cursor: pointer;
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
section.creativitySection .tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #000; /* default slide color */
  z-index: 0;
  transition: height 1s ease;
}
section.creativitySection .tab:hover::before {
  height: 100%;
}
section.creativitySection .tab-content,
section.creativitySection .arrow {
  position: relative;
  z-index: 1;
}

section.creativitySection .tab-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
section.creativitySection .tab-content img {
  width: 30px;
  height: 30px;
}
section.creativitySection .tab-text h3 {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
}
section.creativitySection .tab-text p {
  font-size: 16px;
  font-weight: 400;
  color: #ddd;
  width: 85%;
}
section.creativitySection .arrow {
  font-size: 30px;
  transition: transform 0.3s;
}
section.creativitySection .tab:hover .arrow {
  animation: arrowfloat 1s infinite ease-in-out;
}
section.creativitySection .tab:hover .arrow {
  transform: translateX(5px);
}
@keyframes arrowfloat {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-10px);
  }
}
section.creativitySection .tab-content svg {
  width: 80px;
}

/* Grow Setion  */

section.growSection {
  display: flex;
  justify-content: space-between;
  padding: 100px 10%;
  align-items: flex-start;
  transition: background 0.8s ease-in-out;
  overflow: hidden;
  background: #21242f; /* default bg */
}
section.growSection .left-content h2 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
section.growSection .left-content p {
  line-height: 26px;
  color: #fff;
  font-size: 16px;
}
section.growSection .btn {
  background: #fff;
  color: #000;
  padding: 12px 22px;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  font-weight: bold;
}
section.growSection .image-box-second {
  position: relative;
  width: 100%;
  height: -webkit-fill-available;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}
section.growSection .image-box-second img {
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 10px;
  opacity: 0;
  transition: all 1s ease;
  width: 58%;
}
section.creativitySection .image-box img {
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 10px;
  opacity: 0;
  transition: all 1s ease;
  width: 58%;
}
section.growSection .image-box-second img.active {
  top: 0;
  opacity: 1;
}
section.growSection .growTab {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 20px 10px;
  cursor: pointer;
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
section.growSection .growTab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #f7ad19; /* default slide color */
  z-index: 0;
  transition: height 1s ease;
}
section.growSection .growTab:hover::before {
  height: 100%;
}
section.growSection .tab-content,
section.growSection .arrow {
  position: relative;
  z-index: 1;
}
section.growSection .tab-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
section.growSection .tab-content img {
  width: 30px;
  height: 30px;
}
section.growSection .tab-text h3 {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
}
section.growSection .tab-text p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  width: 85%;
}
section.growSection .arrow {
  font-size: 30px;
  transition: transform 0.3s;
}
section.growSection .growTab:hover .arrow {
  animation: arrowfloat 1s infinite ease-in-out;
}
section.growSection .growTab:hover .arrow {
  transform: translateX(5px);
}
@keyframes arrowfloat {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-10px);
  }
}
section.growSection .tab-content svg {
  width: 80px;
}

/* Portfolio Setion  */

section.portfolioSection {
  padding: 80px 0px 80px 0px;
}
section.portfolioSection .container .row .portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 60px auto;
}
section.portfolioSection .container .row .portfolio .card {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}
section.portfolioSection .container .row .portfolio .card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #0000008f, transparent);
}
section.portfolioSection .container .row .portfolio .card:hover::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffffff00 0%, #f7ad19 100%);
}
section.portfolioSection .container .row .portfolio .card img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
}
section.portfolioSection .container .row .portfolio .card-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
section.portfolioSection .container .row .portfolio .card-info h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
section.portfolioSection .container .row .portfolio .card-info p {
  font-size: 14px;
  color: #fff;
}
section.portfolioSection .container .row .more-link {
  display: flex;
  justify-content: center;
}
section.portfolioSection .container .row .more-link a {
  font-size: 25px;
}
section.portfolioSection .container .row .more-link a:hover {
  text-decoration: none;
  letter-spacing: 15px;
  transition: 1s ease-in-out;
}

/* Corporate Website page  */

section.inner-banner {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #000 65%, #e2e2e2 35%);
  padding: 100px 0px;
}

section.inner-banner .banner-txt .subtitle {
  color: #fff;
  font-size: 0;
  margin-bottom: 15px;
}

section.inner-banner .banner-txt h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
  color: #fff;
}

section.inner-banner .banner-txt h3 {
  font-weight: 500;
  color: #fff;
}

section.inner-banner .banner-txt h2 span {
  color: #f7ad19;
}

section.inner-banner .banner-txt p {
  padding-bottom: 15px;
  color: #d5d5d5;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

section.inner-banner .banner-img {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

section.inner-banner .banner-txt a.banner-p-2 {
  color: #ffff00;
}

/* section one  */

section.inner-sec-1 .banner-txt .subtitle {
  color: #000;
  font-size: 0;
  margin-bottom: 15px;
}

section.inner-sec-1 .banner-txt h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 60px;
  color: #000;
}

section.inner-sec-1 .banner-txt h3 {
  font-weight: 500;
  color: #000;
  padding: 0;
}

section.inner-sec-1 .banner-txt h2 span {
  color: #f7ad19;
}

section.inner-sec-1 .banner-txt p {
  color: #5c5c5c;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
}

section.inner-sec-1 .container-fluid .col-md-6 button div span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0.75em 2.125em;
}

section.inner-sec-1 .container-fluid .image-section {
  padding: 0px;
}

section.inner-sec-1 .container-fluid .image-section img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

section.inner-sec-1 .container-fluid .banner-txt {
  padding: 0px 80px;
}

section.inner-sec-2 .container-fluid .image-section-2 img {
  width: 100%;
  object-fit: cover;
}

section.inner-sec-1 .container-fluid .banner-txt ul li {
  list-style: disc;
  font-size: 15px;
}

section.inner-sec-1 .container-fluid .banner-txt ul {
  margin-top: 10px;
  margin-left: 30px;
}

section.inner-sec-2 .container-fluid .banner-txt .feature-icon {
  display: flex;
  gap: 10px;
  align-items: center;
}

section.inner-sec-2 .container-fluid .banner-txt .feature-icon i {
  font-size: 30px;
  color: #f7ad19;
}
section.inner-sec-2 .container-fluid .banner-txt .feature-icon h3 {
  font-size: 26px;
  color: #f7ad19;
  font-weight: 400;
}

section.inner-sec-2 .banner-txt .feature-content p {
  color: #5c5c5c;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  padding-left: 47px;
  margin-top: 10px;
  width: 90%;
}

section.inner-sec-2 .banner-txt .feature-box {
  margin-top: 10px;
  margin-bottom: 20px;
}

section.inner-sec-2 .banner-txt h2 {
  font-size: 45px;
  font-weight: 500;
  line-height: 60px;
  color: #000;
}
section.inner-sec-2 .banner-txt h2 span {
  color: #f7ad19;
}

section.inner-sec-2 .container-fluid .banner-txt {
  padding: 0px 80px;
}

section.inner-sec-2 {
  padding: 80px 0px;
}

section.inner-sec-2 .banner-txt h3 {
  font-weight: 500;
  color: #000;
  padding: 0;
}

/* Our Process */

section.ourProcess .container .col-md-12 .feature-box .feature-icon i {
  font-size: 30px;
  color: #f7ad19;
}
section.ourProcess .container .col-md-12 .feature-box .feature-icon h3 {
  font-size: 17px;
  color: #f7ad19;
  font-weight: 400;
}

section.ourProcess .container .col-md-12 h2 {
  font-size: 45px;
  font-weight: 500;
  line-height: 60px;
  color: #000;
  text-align: center;
  margin-bottom: 45px;
}
section.ourProcess .container .col-md-12 h2 span {
  color: #f7ad19;
}

section.ourProcess .container .col-md-12 .feature-box .feature-icon {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

section.ourProcess .container .col-md-12 .feature-box {
  background: #fff;
  padding: 24px;
  box-shadow: -3px 2px 8px 3px #00000024;
  width: 90%;
  height: 180px;
}
section.ourProcess .container .col-md-12 .col-md-4 {
  padding: 0;
}

section.ourProcess .container .col-md-12 .row {
  margin: 10px;
}

section.ourProcess {
  padding: 50px 0px;
}

/* Section Who  */

section.sectionWho .banner-txt h2 {
  font-size: 45px;
  font-weight: 500;
  line-height: 60px;
  color: #000;
}
section.sectionWho .banner-txt h2 span {
  color: #f7ad19;
}
section.sectionWho .banner-txt h4 {
  color: #f7ad19;
  font-size: 20px;
}

section.sectionWho .banner-txt .feature-icon p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

section.sectionWho .banner-txt p {
  color: #000;
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 30px;
}

section.sectionWho .container-fluid .col-md-6 .feature-box .feature-icon {
  display: flex;
  gap: 10px;
  align-items: center;
}

section.sectionWho .container-fluid .col-md-6 .feature-box .feature-icon i {
  font-size: 30px;
  color: #f7ad19;
}

section.sectionWho .container-fluid .col-md-6 .feature-box {
  margin-top: 10px;
  margin-bottom: 20px;
}

section.sectionWho .container-fluid .col-md-6 img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

section.sectionWho .container-fluid .banner-txt {
  padding: 0px 80px;
}

/* Amazon Automation */

section.amazonAutomation .container .col-md-12 .feature-box .feature-icon i {
  font-size: 30px;
  color: #f7ad19;
}
section.amazonAutomation .container .col-md-12 .feature-box .feature-icon h3 {
  font-size: 17px;
  color: #f7ad19;
  font-weight: 400;
  text-align: center;
}

section.amazonAutomation .container .col-md-12 h2 {
  font-size: 45px;
  font-weight: 500;
  line-height: 60px;
  color: #000;
  text-align: center;
}
section.amazonAutomation .container .col-md-12 h2 span {
  color: #f7ad19;
}

section.amazonAutomation .container .col-md-12 .feature-box .feature-icon {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}

section.amazonAutomation .container .col-md-12 .feature-box {
  background: #fff;
  padding: 24px;
  box-shadow: -3px 2px 8px 3px #00000024;
  width: 100%;
  height: 260px;
}
section.amazonAutomation .container .col-md-12 .col-md-4 {
  padding: 0;
}

section.amazonAutomation .container .col-md-12 .row {
  margin: 50px 10px;
}

section.amazonAutomation {
  padding: 50px 0px;
}

section.amazonAutomation .container .col-md-12 p {
  font-size: 16px;
  color: #000;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
}
section.amazonAutomation .container .col-md-12 .col-md-3 p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

section.amazonAutomation .container .col-md-12 button {
  max-width: 190px;
}

section.amazonAutomation .container .col-md-12 .floatbtn {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

section.amazonAutomation .container .col-md-12 .feature-box {
  background: #fff;
  padding: 24px;
  box-shadow: -3px 2px 8px 3px #00000024;
  width: 90%;
  height: 260px;
}

section.amazonAutomation .container .col-md-12 .row-btn button {
  max-width: 160px;
}

/* Section Get Started */

section.getStarted .container {
  background: #f7ad19;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 1px -1px 16px 12px #00000033;
  margin-top: 30px;
  width: 1130px;
}

section.getStarted .container h2 {
  color: #ffff;
  padding: 0;
  font-size: 30px;
}

section.getStarted .container .col-md-7 p {
  color: #fff;
  font-size: 15px;
  margin-top: 8px;
}

section.getStarted .container .floatbtn {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

section.getStarted .container .floatbtn button div:nth-child(2) {
  background-color: #ffffff;
}

section.getStarted .container .floatbtn button div:nth-child(2) span p {
  color: #000 !important;
}

/* About Us page  */

section.about-banner {
  display: flex;
  align-items: center;
  background: #e2e2e2;
  padding: 80px 0px 30px 0px;
}

section.about-banner .banner-txt .subtitle {
  color: #000;
  font-size: 0;
  margin-bottom: 15px;
}

section.about-banner .banner-txt h2 {
  font-size: 55px;
  font-weight: 700;
  line-height: 63px;
  color: #000;
}

section.about-banner .banner-txt h3 {
  font-weight: 500;
  color: #000;
}

section.about-banner .banner-txt h2 span {
  color: #f7ad19;
}

section.about-banner .banner-txt p {
  padding-bottom: 15px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
}

section.about-btn-banner {
  display: flex;
  align-items: center;
  background: #f7ad19;
  padding: 40px 0px;
}

section.about-btn-banner .banner-txt .floatbtn {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

section.about-btn-banner .banner-txt .floatbtn button span p {
  padding: 0 !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  letter-spacing: 2px;
}

section.about-btn-banner .banner-txt .floatbtn button {
  outline: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  height: 50px;
  overflow: hidden;
}

section.about-btn-banner .banner-txt .floatbtn button div span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0.75em 1.125em;
}

/* About Process  */

section.aboutSection2 {
  background-color: #fff0;
  background-image: linear-gradient(180deg, #ffffff 0%, #fffcf1 100%);
  padding: 100px 0px 100px 0px;
}
section.aboutSection2 .container .col-md-6 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
section.aboutSection2 .container .col-md-6 button div span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0.75em 2.125em;
}
section.aboutSection2 .container .col-md-6 .txt h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}
section.aboutSection2 .container .col-md-6 .txt h2 span {
  color: #f7ad19;
}
section.aboutSection2 .container .col-md-6 .txt p {
  padding-bottom: 15px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

section.aboutSection2 .container .col-md-6 .aboutAccordian .accordion {
  margin: auto;
}

section.aboutSection2 .container .col-md-6 .aboutAccordian .accordion-item {
  border-bottom: 1px solid #000;
}

section.aboutSection2 .container .col-md-6 .aboutAccordian .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  padding: 15px 0;
  color: #000;
}

section.aboutSection2
  .container
  .col-md-6
  .aboutAccordian
  .accordion-header
  span {
  font-size: 20px;
  font-weight: normal;
}

section.aboutSection2 .container .col-md-6 .aboutAccordian .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #000000;
}

section.aboutSection2
  .container
  .col-md-6
  .aboutAccordian
  .accordion-content
  p {
  margin: 15px 0;
  color: #000;
}

section.aboutSection2
  .container
  .col-md-6
  .aboutAccordian
  .accordion-item.active
  .accordion-content {
  max-height: 200px; /* adjust if more text */
}

section.aboutSection2
  .container
  .col-md-6
  .aboutAccordian
  .accordion-item.active
  .accordion-header
  span {
  content: "-";
}

section.aboutSection3 {
  background-color: #000;
  padding: 100px 0px 100px 0px;
}
section.aboutSection3 .container .col-md-6 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
section.aboutSection3 .container .col-md-6 button div span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0.75em 2.125em;
}
section.aboutSection3 .container .col-md-6 .txt h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 55px;
  color: #fff;
}
section.aboutSection3 .container .col-md-6 .txt h2 span {
  color: #f7ad19;
}
section.aboutSection3 .container .col-md-6 .txt p {
  padding-bottom: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 46px;
}

section.aboutSection3 .container .col-md-6 .txt img {
  width: 100%;
}

section.privacy-banner {
  background-color: #000;
  padding: 100px 0px 100px 0px;
}

section.privacy-banner h1 {
  text-align: center;
  color: #fff;
  font-size: 50px;
}

.privacy-content h1 {
  font-size: 40px;
  color: #000;
}

.privacy-content h2 {
  font-size: 30px;
  color: #000;
  padding: 15px 0px;
}

.privacy-content p {
  color: #000;
  font-size: 17px;
  margin: 5px 0px;
}

section.privacy-content {
  padding: 50px 20px;
}

.privacy-content li {
  color: #000;
  font-size: 17px;
  margin: 3px 20px;
  list-style: disc;
}

section.contact-section {
  display: flex;
  align-items: center;
  background: #000;
  padding: 50px 0px 50px 0px;
}

section.contact-section h2 {
  font-size: 22px;
  color: #fff;
  text-align: center;
}

section.contact-section h3 {
  color: #ffffff;
  text-align: center;
}

section.contact-section h2 a {
  color: #f7ad19;
}

section.contact-section .container .contact-form input,
textarea {
  padding: 16px 20px;
  width: 100%;
  border-radius: 10px;
  border: none;
  box-shadow: 2px 4px #f7ad19;
  color: #000000;
}

section.contact-section .container .contact-form form {
  width: 50%;
  margin: 0px auto;
}

section.contact-section .container .contact-form button {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 15px 20px;
  background: #f7ad19;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  border-radius: 40px;
}

section.contact-section .container .contact-form button:hover {
  background: #fff;
  color: #000;
  box-shadow: 2px -2px 20px 0px #f7ad19;
}

.popup .contact-form input,
textarea {
  padding: 16px 20px;
  width: 100%;
  border-radius: 10px;
  border: none;
  box-shadow: 2px 4px #f7ad19;
  color: #000000;
}

.popup .contact-form form {
  width: 100%;
  margin: 0px auto;
}

.popup .contact-form button {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 15px 20px;
  background: #f7ad19;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  border-radius: 40px;
}

.popup .contact-form button:hover {
  background: #fff;
  color: #000;
  box-shadow: 2px -2px 20px 0px #f7ad19;
}

.popup h2 {
  font-size: 34px;
  color: #fff;
  text-align: center;
  text-shadow: 2px 1px 0px #f7ad19;
}

.popup h4 {
  font-size: 17px;
  text-align: center;
  color: #f7ad19;
}

/* popup */

/* Popup Background */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-content {
  background: #000;
  padding: 20px;
  border-radius: 10px;
  width: 600px;
  max-width: 90%;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.popup .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  opacity: unset;
}
.popup .close:hover {
  color: #f7ad19;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

section.inner-banner .banner-img img {
  width: 100%;
}

/*///////////////Responsive////////////////////*/

@media (max-width: 1920px) {
  .container {
    max-width: 1440px;
    overflow: hidden;
  }
}

@media (max-width: 1600px) {
  header .logo img {
    width: 70%;
  }

  header {
    padding: 20px 0;
  }

  section.home-banner .banner-txt h2 {
    font-size: 38px;
  }

  section.creativitySection {
    padding: 100px 4%;
  }

  section.growSection {
    padding: 100px 4%;
  }

  section.inner-sec-1 .banner-txt h2 {
    font-size: 36px;
  }

  section.inner-sec-1 .container-fluid .banner-txt {
    padding: 0px 40px;
  }

  section.inner-sec-1 .banner-txt p {
    font-size: 15px;
    line-height: 24px;
  }

  section.about-banner .banner-txt h2 {
    font-size: 50px;
  }

  section.about-banner .banner-txt p {
    line-height: 30px;
    font-size: 17px;
  }

  section.about-banner .banner-txt h3 {
    font-size: 22px;
  }
  section.creativitySection .left-content p {
    line-height: 21px;
  }
}

@media (max-width: 1440px) {
  header {
    padding: 20px 0;
  }

  header .menu ul {
    gap: 20px;
    margin-right: 30px;
  }

  header .menu .headbtn a {
    width: 180px;
  }

  header .logo img {
    width: 80%;
  }

  section.home-banner .banner-txt h2 {
    font-size: 35px;
    line-height: 45px;
  }

  header .container-fluid .row .col-md-3 {
    padding: 0px;
  }

  section.home-banner {
    padding: 20px;
  }

  section.home-banner .achieve ul li {
    width: 31.3333%;
    padding: 20px 6px;
    margin: 4px;
  }

  section.home-banner .achieve ul li p {
    font-size: 11px;
  }

  .homebannerimg img {
    width: 100%;
  }

  section.people-say {
    padding: 50px 20px;
  }

  section.speakexpert {
    padding: 70px 20px 70px 20px;
  }

  section.speakexpert .container .col-md-7 .txt h2 {
    font-size: 40px;
  }

  section.people-say .head h2 {
    font-size: 40px;
    line-height: 49px;
  }

  section.creativitySection .tab-text h3 {
    font-size: 23px;
  }

  section.creativitySection .left-content h2 {
    font-size: 40px;
  }

  section.creativitySection .tab-text p {
    font-size: 15px;
  }
  section.growSection .tab-text h3 {
    font-size: 23px;
  }

  section.growSection .left-content h2 {
    font-size: 40px;
  }

  section.growSection .tab-text p {
    font-size: 15px;
  }

  section.onlineGrowth {
    padding: 100px 20px 100px 20px;
  }

  .info {
    padding: 30px 20px;
  }

  section.inner-banner {
    padding: 100px 20px;
  }

  section.inner-sec-1 .banner-txt h2 {
    font-size: 28px;
    letter-spacing: 0;
    line-height: 44px;
  }

  section.inner-sec-1 .container-fluid .banner-txt {
    padding: 0px 30px;
  }

  section.inner-sec-1 .banner-txt p {
    font-size: 14px;
    line-height: 22px;
  }

  section.about-banner {
    padding: 80px 20px 30px 20px;
  }

  section.about-banner .banner-txt h2 {
    font-size: 50px;
  }

  section.about-banner .banner-txt p {
    line-height: 30px;
    font-size: 17px;
  }

  section.about-banner .banner-txt h3 {
    font-size: 22px;
  }

  section.aboutSection2 {
    padding: 100px 20px 100px 20px;
  }

  section.aboutSection3 {
    background-color: #000;
    padding: 100px 20px 100px 20px;
  }

  section.aboutSection3 .container .col-md-6 .txt p {
    line-height: 36px;
  }

  section.growSection .tab-text p {
    width: 95%;
  }
}

@media (max-width: 1366px) {

  footer .link {
    padding-left: 0px;
}
    
}


@media (max-width: 1280px) {
    
}


@media (max-width: 1200px) {
    
}

@media (max-width: 1140px) {

      section.inner-sec-1 .banner-txt h2 {
        font-size: 24px;
        line-height: 34px;
    }
    
}


@media (max-width: 1024px) {
    header .menu .headbtn a {
        width: 145px;
    }

        section.inner-sec-1 .banner-txt h2 {
        font-size: 23px;
        line-height: 33px;
    }

}


@media (max-width: 992px) {
    header .menu ul {
        gap: 12px;
    }
}

@media (max-width: 991px) {

  .topbar {
    display: none;
}

.mobile-nav-btn span {
    background: #000000;
}

.mobile-nav-btn span:before, .mobile-nav-btn span:after {
    background: #000000;
}

.mobile-nav-btn {
    top: 30px;
}

header .menu {
    display: none;
}

.mobile-nav-btn.active {
    right: 22px !important;
}

.mobile-nav-btn {
    position: absolute;
}


    
}


@media (max-width: 800px) {

  section.home-banner .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

section.home-banner .homebannerimg {
    display: none;
}

section.home-banner .achieve {
    display: none;
}

section.people-say .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

section.people-say .review-slider2 {
    margin-top: 50px;
}


section.people-say .slick-next {
    right: -10px;
}

section.people-say .slick-prev {
    left: -10px;
}

section.speakexpert .col-md-7, section.speakexpert .col-md-5 {
    flex: 0 0 100%;
    max-width: 100%;
}



section.successStories .container .col-md-12 .tab-btn {
    max-width: 200px;
}


section.successStories .tab-content {}

section.successStories .tab-content .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
}

section.successStories .tab-content .row {
    justify-content: center;
}

section.successStories .tab-content .card {
    margin-bottom: 40px;
    height: 500px;
}

section.creativitySection .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

section.creativitySection div#imageBox {
    display: none;
}

section.creativitySection .left-content {
    margin-bottom: 50px;
}

section.onlineGrowth .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

section.growSection .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

section.creativitySection .left-content {
    margin-bottom: 50px;
}

section.onlineGrowth .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

section.growSection .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

.info .col-md-8, .info .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
}

.info p {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.info h4 {
    width: 100%;
    text-align: center;
}

footer .col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
}

.copy .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

.copy p {
    text-align: center;
}

.copy ul {
    justify-content: center;
    margin-top: 10px;
}

section.growSection div#imageBoxSecond {
    display: none;
}

section.growSection .left-content {
    margin-bottom: 50px;
}


section.inner-sec-1 {
    padding: 50px 0 0;
}

section.inner-sec-1 .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

section.inner-sec-1 .banner-txt {
    margin-bottom: 50px;
}


section.inner-sec-1.sec2 .row, section.inner-sec-1.sec4 .row, section.inner-sec-1.sec6 .row {
    flex-direction: column-reverse;
}

    section.inner-sec-1 .banner-txt h2 {
        font-size: 28px;
        line-height: 38px;
    }

section.inner-sec-1 .container-fluid .image-section img {
    height: 440px;
}

section.about-banner h2 {
    font-size: 38px !important;
    line-height: 48px !important;
}

    section.aboutSection2 {
        padding: 50px 20px 50px 20px;
    }

    section.aboutSection2 .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

section.aboutSection2 .txt {
    margin-bottom: 30px;
}

    section.aboutSection3 {
        padding: 50px 20px 50px 20px;
    }

    section.aboutSection3 .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

section.aboutSection2 .container .col-md-6 .txt h2 {
    font-size: 38px;
    line-height: 48px;
}

section.aboutSection3 .txt {
    margin-top: 20px;
}


    
}


@media (max-width: 768px) {
  .marquee {
    --gap: 1.5rem;
    --height: 48px;
    --speed: 20s;
  }
}


@media (max-width: 767px) {

  header a.logo img {
    width: 30%;
}

section.home-banner .banner-txt {
    text-align: center;
}

section.home-banner .floatbtn {
    justify-content: center;
    margin-top: 10px;
}

section.home-banner .banner-txt .subtitle .span1 {
    line-height: 34px;
}

.marquee__track {
    gap: 100px;
}

    section.people-say .head h2 {
        font-size: 32px;
        line-height: 42px;
    }

    section.people-say .head {
    padding-bottom: 20px;
}

    section.speakexpert {
        padding: 0px 20px 70px 20px;
    }

        section.speakexpert .container .col-md-7 .txt h2 {
        font-size: 32px;
        line-height: 42px;
    }

        section.successStories .tab-content .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

        section.successStories .tab-content .card {
        height: auto;
    }

    section.successStories {
    padding: 50px 0px 20px 0px;
}

    section.creativitySection {
        padding: 50px 4%;
    }

        section.onlineGrowth {
        padding: 50px 20px 50px 20px;
    }

        section.speakexpert {
        text-align: center;
    }

    section.successStories .container .col-md-12 .txt h2 {
    font-size: 32px;
    line-height: 42px;
}

section.onlineGrowth .container .col-md-6 .txt h2 {
    font-size: 32px;
    line-height: 42px;
}

    section.growSection .left-content h2 {
        font-size: 32px;
    }

        section.creativitySection .left-content h2 {
        font-size: 32px;
    }


footer .col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    footer .logo img {
    width: 40%;
}

    
}

@media (max-width: 560px) {

  section.successStories .container .col-md-12 .txt p br {
    display: none;
}

section.successStories .container .col-md-12 .txt h2 {
    font-size: 24px;
    line-height: 34px;
}

section.onlineGrowth .container .col-md-6 .txt h2 {
      font-size: 24px;
      line-height: 34px;
}

    section.growSection .left-content h2 {
        font-size: 24px;
        line-height: 34px;
    }

        section.creativitySection .left-content h2 {
        font-size: 24px;
        line-height: 34px;
    }


    section.speakexpert .container .col-md-7 .txt h2 {
        font-size: 24px;
        line-height: 34px;
    }


    section.people-say .head h2 {
        font-size: 24px;
        line-height: 34px;
    }

    section.successStories .container .col-md-12 .tabs-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

       .copy ul {
        flex-direction: column;
        align-items: center;
    } 

    .copy ul li {
    border-left: unset;
    padding-left: 0px;
}

section.inner-banner .banner-txt {
    text-align: center;
}


section.inner-banner .banner-txt h3 {
    font-size: 21px;
}


section.inner-banner .banner-txt h2 {
    font-size: 32px;
    line-height: 42px;
}

    section.inner-sec-1 .banner-txt h2 {
        font-size: 24px;
        line-height: 34px;
    }

    section.inner-sec-1 .container-fluid .image-section img {
    height: 300px;
}

    section.about-banner h2 {
        font-size: 24px !important;
        line-height: 34px !important;
    }

        section.aboutSection2 .container .col-md-6 .txt h2 {
        font-size: 24px;
        line-height: 34px;
    }

    section.aboutSection3 .container .col-md-6 .txt h2 {
    font-size: 24px;
    line-height: 34px;
}


section.contact-section .banner-txt {}

section.contact-section .banner-txt h3 {
    font-size: 21px;
}

section.contact-section .banner-txt h2 {
    font-size: 16px;
    padding-bottom: 10px;
}

section.contact-section .contact-form {
    margin-top: 20px;
}

section.contact-section .contact-form form#quoteForm {
    width: 100%;
}



    
}

@media (max-width: 480px) {

      section.home-banner .banner-txt h2 {
        font-size: 24px;
        line-height: 34px;
    }

    section.home-banner .banner-txt .subtitle .span1 {
    padding: 5px 5px;
}

section.home-banner .banner-txt .subtitle .span2 {
    padding: 5px 15px;
}

section.home-banner .banner-txt p {
    font-size: 14px;
    line-height: 24px;
}


section.creativitySection .tab-text h3 {
        font-size: 18px;
    }

        section.growSection .tab-text h3 {
        font-size: 18px;
    }

    section.growSection .tab-content {
    flex-direction: column;
}

section.creativitySection .tab-content {
    flex-direction: column;
}

    section.inner-banner .banner-txt h2 {
        font-size: 24px;
        line-height: 34px;
    }

        section.inner-banner .banner-txt h3 {
        font-size: 18px;
    }

        section.inner-sec-1 .banner-txt h2 {
        font-size: 21px;
        line-height: 31px;
    }

        section.inner-sec-1 .container-fluid .banner-txt {
        padding: 0px 0px;
    }

    section.about-banner .banner-txt p {
        line-height: 24px;
        font-size: 14px;
    }

        .info {
        padding: 30px 0px;
    }

    .info p {
    font-size: 14px;
    line-height: 24px;
}

    .info h4 {
        font-size: 14px;
    }

        section.aboutSection3 .container .col-md-6 .txt p {
        line-height: 24px;
        font-size: 14px;
        font-weight: 400;
    }

    .mobile-nav.active a.logo-main img {
    width: 80%;
}




    
}

@media (max-width: 430px) {

      section.inner-banner .banner-txt h2 {
        font-size: 22px;
        line-height: 32px;
    }

        section.inner-banner {
        padding: 50px 20px 20px;
    }

        section.about-banner h2 {
        font-size: 21px !important;
        line-height: 31px !important;
    }

        section.aboutSection2 .container .col-md-6 .txt h2 {
        font-size: 21px;
        line-height: 31px;
    }

    section.aboutSection2 .container .col-md-6 .txt p {
    font-size: 14px;
    line-height: 24px;
}

    section.aboutSection2 {
        padding: 50px 0px 50px 0px;
    }

        section.about-banner {
        padding: 80px 0px 30px 0px;
    }

    section.aboutSection2 .container .col-md-6 .aboutAccordian .accordion-header {
    font-size: 15px;
}

    section.aboutSection3 .container .col-md-6 .txt h2 {
        font-size: 21px;
        line-height: 31px;
    }

        section.aboutSection3 {
        padding: 30px 0px 30px 0px;
    }

        header a.logo img {
        width: 50%;
    }


    .popup h4 {
    font-size: 13px;
}

    .popup h2 {
    font-size: 24px;
}





    
}


@media (max-width: 428px) {
    
}


@media (max-width: 412px) {

  section.home-banner .banner-txt .subtitle span {
    display: block;
}

section.home-banner .banner-txt .subtitle span.span1 {
    line-height: normal;
}

section.onlineGrowth .container .col-md-6 .label-box {
    flex-direction: column;
    width: 100%;
}

section.growSection .growTab {
    flex-direction: column;
}

section.creativitySection .tab {
    flex-direction: column;
}
    
}

@media (max-width: 375px) {

  button div span {
    padding: 15px 18px;
}

    section.inner-banner .banner-txt h2 {
        font-size: 19px;
        line-height: 29px;
    }

    section.inner-banner .banner-txt p {
    font-size: 13px;
    line-height: 23px;
    padding-bottom: 35px;
}

    .popup h2 {
        font-size: 20px;
    }

    .popup h4 {
        font-size: 11px;
    }

    
}

@media (max-width: 360px) {
    
}






/*///////////////////////*/



.slick-prev, .slick-next {
    z-index: 2;
}