/*
============================
Name:  TechXen Technology & It Solution Template
Version: 1.0.0
Description:
Author:  VikingLab
Author URI: https://themeforest.net/user/vikinglab/portfolio
Location:
============================
*/
/*

CSS LIST

=<::::::::::::::::::::::::::=>
  HEADER AREA CSS
=<::::::::::::::::::::::::::=>
  NAV MENU AREA CSS
=<::::::::::::::::::::::::::=>
  WELCOME AREA CSS
=<::::::::::::::::::::::::::=>
  ABOUT AREA CSS
=<::::::::::::::::::::::::::=>
  SERVICE AREA CSS
=<::::::::::::::::::::::::::=>
  ACCOUNT AREA CSS
=<::::::::::::::::::::::::::=>
  FEATURES AREA CSS
=<::::::::::::::::::::::::::=>
  BRAND AREA CSS
=<::::::::::::::::::::::::::=>
  CHOOSE AREA CSS
=<::::::::::::::::::::::::::=>
  PRRELOADER AREA CSS
=<::::::::::::::::::::::::::=>
  PRICING AREA CSS
=<::::::::::::::::::::::::::=>
  TEAM AREA CSS
=<::::::::::::::::::::::::::=>
  TESTIMONIAL AREA CSS
=<::::::::::::::::::::::::::=>
  WORK AREA CSS
=<::::::::::::::::::::::::::=>
  OTHERS AREA CSS
=<::::::::::::::::::::::::::=>
  CONMMON AREA CSS
=<::::::::::::::::::::::::::=>
  BLOG AREA CSS
=<::::::::::::::::::::::::::=>
  CTA AREA CSS
=<::::::::::::::::::::::::::=>
 ANIMATION AREA CSS
=<::::::::::::::::::::::::::=>
  BUTTONS AREA CSS
=<::::::::::::::::::::::::::=>
  TYPOGRAPHY AREA CSS
=<::::::::::::::::::::::::::=>
  FOOTER AREA CSS
=<::::::::::::::::::::::::::=>
*/
/*
::::::::::::::::::::::::::
 TYPOGRAPHY AREA CSS
::::::::::::::::::::::::::
*/
/* @import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/*
 ::::::::::::::::::::::::::
  ANIMATION AREA CSS
 ::::::::::::::::::::::::::
 */
@keyframes round-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1000deg);
  }
}
@keyframes round-circle2 {
  0% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
@keyframes animate1 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes animate2 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}
@keyframes animate3 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes animate4 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-25px);
  }
}
@keyframes animate5 {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animate6 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.round-circle {
  position: relative;
  animation-name: round-circle;
  animation-duration: 92s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

.animate1 {
  position: relative;
  animation-name: animate1;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.animate2 {
  position: relative;
  animation-name: animate2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.animate3 {
  position: relative;
  animation-name: animate3;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.animate4 {
  position: relative;
  animation-name: animate4;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.animate5 {
  position: relative;
  animation-name: animate5;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.animate6 {
  position: relative;
  animation-name: animate6;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.round-circle2 {
  position: relative;
  animation-name: round-circle2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

/*
::::::::::::::::::::::::::
ANIMATION AREA CSS
::::::::::::::::::::::::::
*/
body.body, html {
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6{
  font-weight: 800;
}

@media screen and (max-width: 769px) {
  body.body, html {
    overflow-x: hidden !important;
  }
}
.img100 img {
  width: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: var(--f-fs-font-fs16);
  overflow-x: hidden !important;
}

@media screen and (min-width: 769px) {
  body.body.body5 {
    overflow-x: initial !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
textarea,
select,
option {
  max-width: 100%;
}

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

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

p {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a,
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

body.body {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  overflow-x: hidden;
  z-index: -33;
  position: relative;
}

.sp {
  padding: 100px 0px;
}

.sp2 {
  padding: 120px 0px;
}

.pt100 {
  padding-top: 100px;
}

.pt140 {
  padding-top: 140px;
}

.pb120 {
  padding-bottom: 120px;
}

.pl60 {
  padding-left: 60px;
}

.pb40 {
  padding-bottom: 40px;
}

.pr60 {
  padding-right: 60px;
}

@media (max-width: 768px) {
  .sp {
    padding: 50px 0px;
  }
  .pt100 {
    padding-top: 50px;
  }
  .pt140 {
    padding-top: 70px;
  }
  .pb120 {
    padding-bottom: 60px;
  }
  .sp2 {
    padding: 60px 0px;
  }
  .pl60 {
    padding-left: 0;
  }
  .pr60 {
    padding-right: 0;
  }
}
.space4 {
  height: 4px;
}

.space6 {
  height: 6px;
}

.space28 {
  height: 28px;
}

.space8 {
  height: 8px;
}

.space12 {
  height: 12px;
}

.space14 {
  height: 14px;
}

.space16 {
  height: 16px;
}

.space24 {
  height: 24px;
}

.space32 {
  height: 32px;
}

.space10 {
  height: 10px;
}

.space5 {
  height: 5px;
}

.space5 {
  height: 5px;
}

@media (max-width: 767px) {
  .space10 {
    height: 5px;
  }
  .sp5 {
    padding-bottom: 50px;
  }
}
.space20 {
  height: 20px;
}

@media (max-width: 767px) {
  .space20 {
    height: 10px;
  }
}
.space30 {
  height: 30px;
}

@media (max-width: 767px) {
  .space30 {
    height: 15px;
  }
}
.space40 {
  height: 40px;
}

@media (max-width: 767px) {
  .space40 {
    height: 20px;
  }
}
.space50 {
  height: 50px;
}

.space45 {
  height: 45px;
}

@media (max-width: 768px) {
  .space50 {
    height: 25px;
  }
  .space60 {
    height: 30px !important;
  }
}
.space60 {
  height: 60px;
}

.space55 {
  height: 55px;
}

.space70 {
  height: 70px;
}

.space80 {
  height: 80px;
}

.space90 {
  height: 90px;
}

.space100 {
  height: 100px;
}

.space120 {
  height: 120px;
}

.text-right {
  text-align: right;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
}
.section-padding2 {
  padding: 120px 0 90px;
}

@media (max-width: 991px) {
  .section-padding2 {
    padding: 60px 0 30px;
  }
}
.padding-bottom {
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .padding-bottom {
    padding-bottom: 60px;
  }
}
.padding-bottom2 {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .padding-bottom2 {
    padding-bottom: 30px;
  }
}
.padding-top {
  padding-top: 120px;
}

@media (max-width: 991px) {
  .padding-top {
    padding-top: 60px;
  }
}
.padding-top2 {
  padding-top: 90px;
}

@media (max-width: 991px) {
  .padding-top2 {
    padding-top: 30px;
  }
}
.padding-90 {
  padding: 90px 0;
}

@media (max-width: 991px) {
  .padding-90 {
    padding: 50px 0;
  }
}
.w-full {
  width: 100%;
}

@media (min-width: 992px) {
  .w-lg-full {
    width: 100%;
  }
}
.text-center {
  text-align: center;
}

@media (min-width: 992px) {
  .text-lg-center {
    text-align: center;
  }
}
.text-left {
  text-align: left !important;
}

.weight-400 {
  font-weight: 400 !important;
}

.weight-500 {
  font-weight: 500 !important;
}

.weight-600 {
  font-weight: 600 !important;
}

.weight-700 {
  font-weight: 700 !important;
}

.weight-800 {
  font-weight: 800 !important;
}

.weight-900 {
  font-weight: 900 !important;
}

.font-f-1 {
  font-family: "Hind", sans-serif !important;
}

.font-f-2 {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.font-f-3 {
  font-family: "Spline Sans", sans-serif !important;
}

.font-f-4 {
  font-family: "Catamaran", sans-serif !important;
}

.font-12 {
  font-size: 12px;
}

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

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

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

.font-22 {
  font-size: 22px;
}

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

.font-26 {
  font-size: 26px;
}

.font-28 {
  font-size: 28px;
}

.font-30 {
  font-size: 30px;
}

.font-32 {
  font-size: 32px;
}

.font-34 {
  font-size: 34px;
}

.font-36 {
  font-size: 36px;
}

.font-40 {
  font-size: 40px;
}

.font-42 {
  font-size: 42px;
}

.font-44 {
  font-size: 44px;
}

.font-46 {
  font-size: 48px;
}

.font-48 {
  font-size: 48px;
}

.font-50 {
  font-size: 60px;
}

.font-52 {
  font-size: 52px;
}

.font-54 {
  font-size: 54px;
}

.font-56 {
  font-size: 56px;
}

.font-58 {
  font-size: 58px;
}

.font-60 {
  font-size: 60px;
}

.font-62 {
  font-size: 62px;
}

.font-70 {
  font-size: 70px;
}

.font-72 {
  font-size: 72px;
}

.font-74 {
  font-size: 74px;
}

.font-76 {
  font-size: 76px;
}

.font-78 {
  font-size: 78px;
}

.font-80 {
  font-size: 80px;
}

.font-82 {
  font-size: 82px;
}

.font-84 {
  font-size: 84px;
}

.font-86 {
  font-size: 86px;
}

.font-88 {
  font-size: 88px;
}

.font-90 {
  font-size: 90px;
}

.font-92 {
  font-size: 92px;
}

.font-94 {
  font-size: 94px;
}

.font-96 {
  font-size: 96px;
}

.font-98 {
  font-size: 98px;
}

.font-100 {
  font-size: 100px;
}

@media screen and (min-width: 1024px) {
  .text-md-right {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-left {
    text-align: left;
  }
  .font-lg-12 {
    font-size: 12px;
  }
  .font-lg-14 {
    font-size: 14px;
  }
  .font-lg-16 {
    font-size: 16px;
  }
  .font-lg-18 {
    font-size: 18px;
  }
  .font-lg-20 {
    font-size: 20px;
  }
  .font-lg-22 {
    font-size: 22px;
  }
  .font-lg-24 {
    font-size: 24px;
  }
  .font-lg-26 {
    font-size: 26px;
  }
  .font-lg-28 {
    font-size: 28px;
  }
  .font-lg-30 {
    font-size: 30px;
  }
  .font-lg-32 {
    font-size: 32px;
  }
  .font-lg-34 {
    font-size: 34px;
  }
  .font-lg-36 {
    font-size: 36px;
  }
  .font-lg-40 {
    font-size: 40px;
  }
  .font-lg-42 {
    font-size: 42px;
  }
  .font-lg-44 {
    font-size: 44px;
  }
  .font-lg-45 {
    font-size: 45px;
  }
  .font-lg-46 {
    font-size: 48px;
  }
  .font-lg-48 {
    font-size: 48px;
  }
  .font-lg-50 {
    font-size: 60px;
  }
  .font-lg-52 {
    font-size: 52px;
  }
  .font-lg-54 {
    font-size: 54px;
  }
  .font-lg-56 {
    font-size: 56px;
  }
  .font-lg-58 {
    font-size: 58px;
  }
  .font-lg-60 {
    font-size: 60px;
  }
  .font-lg-62 {
    font-size: 62px;
  }
  .font-lg-66 {
    font-size: 66px;
  }
  .font-lg-70 {
    font-size: 70px;
  }
  .font-lg-72 {
    font-size: 72px;
  }
  .font-lg-74 {
    font-size: 74px;
  }
  .font-lg-76 {
    font-size: 76px;
  }
  .font-lg-78 {
    font-size: 78px;
  }
  .font-lg-80 {
    font-size: 80px;
  }
  .font-lg-82 {
    font-size: 82px;
  }
  .font-lg-84 {
    font-size: 84px;
  }
  .font-lg-86 {
    font-size: 86px;
  }
  .font-lg-88 {
    font-size: 88px;
  }
  .font-lg-90 {
    font-size: 90px;
  }
  .font-lg-92 {
    font-size: 92px;
  }
  .font-lg-94 {
    font-size: 94px;
  }
  .font-lg-96 {
    font-size: 96px;
  }
  .font-lg-98 {
    font-size: 98px;
  }
  .font-lg-100 {
    font-size: 100px;
  }
  .line-height-lg-14 {
    line-height: 14px;
  }
  .line-height-lg-16 {
    line-height: 16px;
  }
  .line-height-lg-18 {
    line-height: 18px;
  }
  .line-height-lg-20 {
    line-height: 20px;
  }
  .line-height-lg-22 {
    line-height: 22px;
  }
  .line-height-lg-24 {
    line-height: 24px;
  }
  .line-height-lg-26 {
    line-height: 26px;
  }
  .line-height-lg-28 {
    line-height: 28px;
  }
  .line-height-lg-30 {
    line-height: 30px;
  }
  .line-height-lg-32 {
    line-height: 32px;
  }
  .line-height-lg-34 {
    line-height: 34px;
  }
  .line-height-lg-36 {
    line-height: 36px;
  }
  .line-height-lg-38 {
    line-height: 38px;
  }
  .line-height-lg-40 {
    line-height: 40px;
  }
  .line-height-lg-42 {
    line-height: 42px;
  }
  .line-height-lg-44 {
    line-height: 44px;
  }
  .line-height-lg-48 {
    line-height: 48px;
  }
  .line-height-lg-50 {
    line-height: 50px;
  }
  .line-height-lg-52 {
    line-height: 52px;
  }
  .line-height-lg-54 {
    line-height: 54px;
  }
  .line-height-lg-56 {
    line-height: 56px;
  }
  .line-height-lg-58 {
    line-height: 58px;
  }
  .line-height-lg-60 {
    line-height: 60px;
  }
  .line-height-lg-62 {
    line-height: 62px;
  }
  .line-height-lg-64 {
    line-height: 64px;
  }
  .line-height-lg-66 {
    line-height: 66px;
  }
  .line-height-lg-68 {
    line-height: 68px;
  }
  .line-height-lg-70 {
    line-height: 70px;
  }
  .line-height-lg-72 {
    line-height: 72px;
  }
  .line-height-lg-74 {
    line-height: 74px;
  }
  .line-height-lg-76 {
    line-height: 76px;
  }
  .line-height-lg-78 {
    line-height: 78px;
  }
  .line-height-lg-80 {
    line-height: 80px;
  }
  .line-height-lg-82 {
    line-height: 82px;
  }
  .line-height-lg-84 {
    line-height: 84px;
  }
  .line-height-lg-86 {
    line-height: 86px;
  }
  .line-height-lg-88 {
    line-height: 88px;
  }
  .line-height-lg-90 {
    line-height: 90px;
  }
  .line-height-lg-92 {
    line-height: 92px;
  }
  .line-height-lg-94 {
    line-height: 94px;
  }
  .line-height-lg-96 {
    line-height: 96px;
  }
  .line-height-lg-98 {
    line-height: 98px;
  }
  .line-height-lg-100 {
    line-height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .font-md-12 {
    font-size: 12px;
  }
  .font-md-14 {
    font-size: 14px;
  }
  .font-md-16 {
    font-size: 16px;
  }
  .font-md-18 {
    font-size: 18px;
  }
  .font-md-20 {
    font-size: 20px;
  }
  .font-md-22 {
    font-size: 22px;
  }
  .font-md-24 {
    font-size: 24px;
  }
  .font-md-26 {
    font-size: 26px;
  }
  .font-md-28 {
    font-size: 28px;
  }
  .font-md-30 {
    font-size: 30px;
  }
  .font-md-32 {
    font-size: 32px;
  }
  .font-md-34 {
    font-size: 34px;
  }
  .font-md-36 {
    font-size: 36px;
  }
  .font-md-40 {
    font-size: 40px;
  }
  .font-md-42 {
    font-size: 42px;
  }
  .font-md-44 {
    font-size: 44px;
  }
  .font-md-46 {
    font-size: 48px;
  }
  .font-md-48 {
    font-size: 48px;
  }
  .font-md-50 {
    font-size: 60px;
  }
  .font-md-52 {
    font-size: 52px;
  }
  .font-md-54 {
    font-size: 54px;
  }
  .font-md-56 {
    font-size: 56px;
  }
  .font-md-58 {
    font-size: 58px;
  }
  .font-md-60 {
    font-size: 60px;
  }
  .font-md-62 {
    font-size: 62px;
  }
  .font-md-74 {
    font-size: 74px;
  }
  .font-md-76 {
    font-size: 76px;
  }
  .font-md-78 {
    font-size: 78px;
  }
  .font-md-80 {
    font-size: 80px;
  }
  .font-md-82 {
    font-size: 82px;
  }
  .font-md-84 {
    font-size: 84px;
  }
  .font-md-86 {
    font-size: 86px;
  }
  .font-md-88 {
    font-size: 88px;
  }
  .font-md-90 {
    font-size: 90px;
  }
  .font-md-92 {
    font-size: 92px;
  }
  .font-md-94 {
    font-size: 94px;
  }
  .font-md-96 {
    font-size: 96px;
  }
  .font-md-98 {
    font-size: 98px;
  }
  .font-md-100 {
    font-size: 100px;
  }
  .line-height-md-12 {
    line-height: 12px;
  }
  .line-height-md-14 {
    line-height: 14px;
  }
  .line-height-md-16 {
    line-height: 16px;
  }
  .line-height-md-18 {
    line-height: 18px;
  }
  .line-height-md-20 {
    line-height: 20px;
  }
  .line-height-md-22 {
    line-height: 22px;
  }
  .line-height-md-24 {
    line-height: 24px;
  }
  .line-height-md-26 {
    line-height: 26px;
  }
  .line-height-md-28 {
    line-height: 28px;
  }
  .line-height-md-30 {
    line-height: 30px;
  }
  .line-height-md-32 {
    line-height: 32px;
  }
  .line-height-md-34 {
    line-height: 34px;
  }
  .line-height-md-36 {
    line-height: 36px;
  }
  .line-height-md-38 {
    line-height: 38px;
  }
  .line-height-md-40 {
    line-height: 40px;
  }
  .line-height-md-42 {
    line-height: 42px;
  }
  .line-height-md-44 {
    line-height: 44px;
  }
  .line-height-md-48 {
    line-height: 48px;
  }
  .line-height-md-50 {
    line-height: 50px;
  }
  .line-height-md-52 {
    line-height: 52px;
  }
  .line-height-md-54 {
    line-height: 54px;
  }
  .line-height-md-56 {
    line-height: 56px;
  }
  .line-height-md-58 {
    line-height: 58px;
  }
  .line-height-md-60 {
    line-height: 60px;
  }
  .line-height-md-62 {
    line-height: 62px;
  }
  .line-height-md-64 {
    line-height: 64px;
  }
  .line-height-md-66 {
    line-height: 66px;
  }
  .line-height-md-68 {
    line-height: 68px;
  }
  .line-height-md-70 {
    line-height: 70px;
  }
  .line-height-md-72 {
    line-height: 72px;
  }
  .line-height-md-74 {
    line-height: 74px;
  }
  .line-height-md-76 {
    line-height: 76px;
  }
  .line-height-md-78 {
    line-height: 78px;
  }
  .line-height-md-80 {
    line-height: 80px;
  }
  .line-height-md-82 {
    line-height: 82px;
  }
  .line-height-md-84 {
    line-height: 84px;
  }
  .line-height-md-86 {
    line-height: 86px;
  }
  .line-height-md-88 {
    line-height: 88px;
  }
  .line-height-md-90 {
    line-height: 90px;
  }
  .line-height-md-92 {
    line-height: 92px;
  }
  .line-height-md-94 {
    line-height: 94px;
  }
  .line-height-md-96 {
    line-height: 96px;
  }
  .line-height-md-98 {
    line-height: 98px;
  }
  .line-height-md-100 {
    line-height: 100px;
  }
}
@media screen and (min-width: 576px) {
  .font-sm-12 {
    font-size: 12px;
  }
  .font-sm-14 {
    font-size: 14px;
  }
  .font-sm-16 {
    font-size: 16px;
  }
  .font-sm-18 {
    font-size: 18px;
  }
  .font-sm-20 {
    font-size: 20px;
  }
  .font-sm-22 {
    font-size: 22px;
  }
  .font-sm-24 {
    font-size: 24px;
  }
  .font-sm-26 {
    font-size: 26px;
  }
  .font-sm-28 {
    font-size: 28px;
  }
  .font-sm-30 {
    font-size: 30px;
  }
  .font-sm-32 {
    font-size: 32px;
  }
  .font-sm-34 {
    font-size: 34px;
  }
  .font-sm-36 {
    font-size: 36px;
  }
  .font-sm-40 {
    font-size: 40px;
  }
  .font-sm-42 {
    font-size: 42px;
  }
  .font-sm-44 {
    font-size: 44px;
  }
  .font-sm-46 {
    font-size: 48px;
  }
  .font-sm-48 {
    font-size: 48px;
  }
  .font-sm-50 {
    font-size: 60px;
  }
  .font-sm-52 {
    font-size: 52px;
  }
  .font-sm-54 {
    font-size: 54px;
  }
  .font-sm-56 {
    font-size: 56px;
  }
  .font-sm-58 {
    font-size: 58px;
  }
  .font-sm-60 {
    font-size: 60px;
  }
  .font-sm-62 {
    font-size: 62px;
  }
  .font-sm-74 {
    font-size: 74px;
  }
  .font-sm-76 {
    font-size: 76px;
  }
  .font-sm-78 {
    font-size: 78px;
  }
  .font-sm-80 {
    font-size: 80px;
  }
  .font-sm-82 {
    font-size: 82px;
  }
  .font-sm-84 {
    font-size: 84px;
  }
  .font-sm-86 {
    font-size: 86px;
  }
  .font-sm-88 {
    font-size: 88px;
  }
  .font-sm-90 {
    font-size: 90px;
  }
  .font-sm-92 {
    font-size: 92px;
  }
  .font-sm-94 {
    font-size: 94px;
  }
  .font-sm-96 {
    font-size: 96px;
  }
  .font-sm-98 {
    font-size: 98px;
  }
  .font-sm-100 {
    font-size: 100px;
  }
  .line-height-sm-12 {
    line-height: 12px;
  }
  .line-height-sm-14 {
    line-height: 14px;
  }
  .line-height-sm-16 {
    line-height: 16px;
  }
  .line-height-sm-18 {
    line-height: 18px;
  }
  .line-height-sm-20 {
    line-height: 20px;
  }
  .line-height-sm-22 {
    line-height: 22px;
  }
  .line-height-sm-24 {
    line-height: 24px;
  }
  .line-height-sm-26 {
    line-height: 26px;
  }
  .line-height-sm-28 {
    line-height: 28px;
  }
  .line-height-sm-30 {
    line-height: 30px;
  }
  .line-height-sm-32 {
    line-height: 32px;
  }
  .line-height-sm-34 {
    line-height: 34px;
  }
  .line-height-sm-36 {
    line-height: 36px;
  }
  .line-height-sm-38 {
    line-height: 38px;
  }
  .line-height-sm-40 {
    line-height: 40px;
  }
  .line-height-sm-42 {
    line-height: 42px;
  }
  .line-height-sm-44 {
    line-height: 44px;
  }
  .line-height-sm-48 {
    line-height: 48px;
  }
  .line-height-sm-50 {
    line-height: 50px;
  }
  .line-height-sm-52 {
    line-height: 52px;
  }
  .line-height-sm-54 {
    line-height: 54px;
  }
  .line-height-sm-56 {
    line-height: 56px;
  }
  .line-height-sm-58 {
    line-height: 58px;
  }
  .line-height-sm-60 {
    line-height: 60px;
  }
  .line-height-sm-62 {
    line-height: 62px;
  }
  .line-height-sm-64 {
    line-height: 64px;
  }
  .line-height-sm-66 {
    line-height: 66px;
  }
  .line-height-sm-68 {
    line-height: 68px;
  }
  .line-height-sm-70 {
    line-height: 70px;
  }
  .line-height-sm-72 {
    line-height: 72px;
  }
  .line-height-sm-74 {
    line-height: 74px;
  }
  .line-height-sm-76 {
    line-height: 76px;
  }
  .line-height-sm-78 {
    line-height: 78px;
  }
  .line-height-sm-80 {
    line-height: 80px;
  }
  .line-height-sm-82 {
    line-height: 82px;
  }
  .line-height-sm-84 {
    line-height: 84px;
  }
  .line-height-sm-86 {
    line-height: 86px;
  }
  .line-height-sm-88 {
    line-height: 88px;
  }
  .line-height-sm-90 {
    line-height: 90px;
  }
  .line-height-sm-92 {
    line-height: 92px;
  }
  .line-height-sm-94 {
    line-height: 94px;
  }
  .line-height-sm-96 {
    line-height: 96px;
  }
  .line-height-sm-98 {
    line-height: 98px;
  }
  .line-height-sm-100 {
    line-height: 100px;
  }
}
.mr-2 {
  margin-right: 8px;
}

@media (max-width: 767px) {
  .mobile-hidden {
    display: none;
  }
}
.mb-30 {
  margin-bottom: 30px;
}

.mobile-sidebar .single-footer h3 {
  color: #ffffff;
}

.mobile-sidebar .single-contact a {
  color: #ffffff;
}

.lg-ml-15 {
  margin-left: 15px;
}

@media (max-width: 767px) {
  .lg-ml-15 {
    margin-left: 0;
  }
}
.lg-mr-15 {
  margin-right: 15px;
}

@media (max-width: 767px) {
  .lg-mr-15 {
    margin-right: 0;
  }
}
._relative {
  position: relative;
}

._absolute {
  position: absolute;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
}

.bg-contain {
  background-size: contain;
  background-position: center center;
}

.img-cover img,
.img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.width100 img {
  width: 100%;
}

/*
 ::::::::::::::::::::::::::
  fonts area css
 ::::::::::::::::::::::::::
 */
:root {
  --vtc-text-heading-1: #0B0314;
  --vtc-text-pera-1: #5D6369;
  --vtc-text-pera-2: #CCCCCE;
  --vtc-text-white-1: #ffffff;
  --vtc-bg-main1: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  --vtc-bg-main2: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  --vtc-bg-common-1: #E9F4F6;
  --vtc-bg-common-2: #D9ECF0;
  --vtc-bg-common-3: #001518;
  --vtc-bg-common-4: #F6F8FA;
  --vtc-bg-common-5: #EDF4FE;
  --vtc-bg-common-6: #F9F8FE;
  --vtc-bg-common-7: #F4F1FE;
  --vtc-bg-white: #ffffff;
  --vtc-border-color-1: #4b2c2c;
  --f-fw-regular: 400;
  --f-fw-medium: 500;
  --f-fw-semibold: 600;
  --f-fw-bold: 700;
  --f-fw-ex-bold: 800;
  --f-ff-font-1: 'Figtree', sans-serif;
  --f-fs-font-fs16: 16px;
  --f-fs-font-fs18: 18px;
  --f-fs-font-fs20: 20px;
  --f-fs-font-fs22: 22px;
  --f-fs-font-fs24: 24px;
  --f-fs-font-fs26: 26px;
  --f-fs-font-fs28: 28px;
  --f-fs-font-fs30: 30px;
  --f-fs-font-fs32: 32px;
  --f-fs-font-fs34: 34px;
  --f-fs-font-fs36: 36px;
  --f-fs-font-fs40: 40px;
  --f-fs-font-fs42: 42px;
  --f-fs-font-fs44: 44px;
  --f-fs-font-fs48: 48px;
  --f-fs-font-fs50: 50px;
  --f-fs-font-fs52: 52px;
  --f-fs-font-fs54: 54px;
  --f-fs-font-fs56: 56px;
  --f-fs-font-fs58: 58px;
  --f-fs-font-fs60: 60px;
  --f-fs-font-fs62: 62px;
  --f-fs-font-fs64: 64px;
  --f-fs-font-fs66: 66px;
  --f-fs-font-fs68: 68px;
  --f-fs-font-fs70: 70px;
  --f-fs-font-fs72: 72px;
  --f-fs-font-fs74: 74px;
  --f-fs-font-fs76: 76px;
  --f-fs-font-fs78: 78px;
  --f-fs-font-fs80: 80px;
  --f-fs-font-fs82: 82px;
  --f-fs-font-fs84: 84px;
  --f-fs-font-fs86: 86px;
  --f-fs-font-fs88: 88px;
}

/*
::::::::::::::::::::::::::
 COMMON AREA CSS
::::::::::::::::::::::::::
*/
.bg1 {
  background: #F5F5FD;
}

.heading1 .title {
  margin-bottom: 16px;
  background-color: #FFF0EC;
  border-radius: 42px;
  padding: 5px 10px;
  display: inline-block;
}
.heading1 .title span.span {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading1 .title span.span img {
  margin-top: -4px;
  margin-right: 3px;
}
.heading1 h2 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 800;
  line-height: 54px; /* 122.727% */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading1 h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .heading1 h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.heading1 h4 a {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 100% */
  display: inline-block;
  transition: all 0.4s;
}
.heading1 p {
  color: var(--SEO-Marketing-Text-Color, #3C3543);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 162.5% */
  transition: all 0.4s;
}
.heading1 h3 {
  color: #0B0314;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px; /* 125% */
}
.heading1 h5 a {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px; /* 140% */
  transition: all 0.4s;
  display: inline-block;
}
.heading1 h5 a:hover {
  transition: all 0.4s;
  color: #FA7D3C;
}

.heading1-w .title {
  margin-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.1294117647);
  border-radius: 42px;
  padding: 5px 10px;
  display: inline-block;
}
.heading1-w .title span.span {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  color: #fff;
}
.heading1-w .title span.span img {
  margin-top: -4px;
  margin-right: 3px;
}
.heading1-w h2 {
  color: #FFF;
  font-size: 44px;
  font-style: normal;
  font-weight: 800;
  line-height: 54px; /* 122.727% */
}
.heading1-w p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.heading3 .title {
  margin-bottom: 16px;
  border-radius: 42px;
  background: rgba(77, 50, 165, 0.1);
  padding: 5px 10px;
  display: inline-block;
}
.heading3 .title span.span {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  color: #4D32A5;
}
.heading3 .title span.span img {
  margin-top: -4px;
  margin-right: 3px;
}
.heading3 h2 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 800;
  line-height: 54px; /* 122.727% */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading3 h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .heading3 h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.heading3 h4, .heading3 h4 a {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 100% */
  display: inline-block;
  transition: all 0.4s;
}
.heading3 p {
  color: var(--SEO-Marketing-Text-Color, #3C3543);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 162.5% */
  transition: all 0.4s;
}
.heading3 h5 a {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px; /* 140% */
  transition: all 0.4s;
  display: inline-block;
}
.heading3 h5 a:hover {
  transition: all 0.4s;
  color: #FA7D3C;
}

.heading5 .title {
  margin-bottom: 16px;
  background-color: #E8E0FD;
  border-radius: 42px;
  padding: 4px 10px;
  display: inline-block;
}
.heading5 .title span.span {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading5 .title span.span img {
  margin-top: -3px;
  margin-right: 3px;
}
.heading5 h2 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 800;
  line-height: 54px; /* 122.727% */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading5 h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .heading5 h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.heading5 p {
  color: var(--SEO-Marketing-Text-Color, #3C3543);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 162.5% */
  transition: all 0.4s;
}

/*============================
++++PAGE-PROGRESS-SATRT+++++
=============================*/
.blok:nth-of-type(odd) {
  background-color: white;
}

.blok:nth-of-type(even) {
  background-color: black;
}
/* #Progress
================================================== */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 999;
}

.progress-wrap::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  color: #03256c;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #03256c; /* --- Lijn progres kleur --- */
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/*============================
++++PAGE-PROGRESS-END+++++
=============================*/
.progress-wrap.progress-wrap2 {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.267);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.progress-wrap2.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 99;
  color: rgb(255, 255, 255);
}

.progress-wrap.progress-wrap2::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  color: #f7f7f7;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap.progress-wrap2:hover::after {
  opacity: 0;
}

.progress-wrap.progress-wrap2::before {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap.progress-wrap2:hover::before {
  opacity: 1;
}

.progress-wrap.progress-wrap2 svg path {
  fill: none;
}

.progress-wrap.progress-wrap2 svg.progress-circle path {
  stroke: #ffffff; /* --- Lijn progres kleur --- */
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/* video button  */
.video-play-button {
  position: relative;
  z-index: 10;
  margin: 0px 30px;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}
@media (max-width: 767px) {
  .video-play-button {
    margin: 0px 30px 0px 0px;
  }
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3764705882);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 45px;
  height: 45px;
  background: var(--vtc-bg-main-bg-2);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: #da0528;
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  margin-top: 14px;
  margin-left: 7px;
  width: 0;
  height: 0;
  border-radius: 4px;
  border-left: 13px solid #000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.hero-button1 {
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .hero-button1 {
    margin-top: 20px;
  }
}

.hero7-all-buttons {
  display: flex;
  align-items: center;
}

.video-play-area .video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.4117647059);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-play-area .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  transition: all 200ms;
}
.video-play-area .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-top: 5px;
}
.video-play-area .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  margin-top: 14px;
  margin-left: 7px;
  width: 0;
  height: 0;
  border-radius: 4px;
  border-left: 15px solid #8D65FF;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-play-area p {
  color: var(--White-Colors, #FFF);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  text-align: center;
  margin-top: 30px;
}

.video-play2 .video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--vtc-bg-main-1);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-play2 .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: var(--vtc-bg-main-1);
  border-radius: 50%;
  transition: all 200ms;
}
.video-play2 .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-top: 5px;
}
.video-play2 .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  margin-top: 14px;
  margin-left: 7px;
  width: 0;
  height: 0;
  border-radius: 4px;
  border-left: 15px solid #ffffff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*Pagination*/
.theme-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-pagination li {
  display: inline-block;
  color: var(--ztc-bg-color-w);
}

.theme-pagination li a {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  background-color: #F5F5FD;
  margin: 0 4px;
  transition: all 0.3s;
  display: block;
  color: var(--ztc-text-text-1);
  border-radius: 7px;
  font-weight: 700;
  position: relative;
}
.theme-pagination li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  border-radius: 8px;
  z-index: -1;
}

.recent-post-content {
  padding-right: 20px;
}

.theme-pagination li a:hover, .theme-pagination li a.active {
  background: var(--vtc-bg-main-1);
  transition: all 0.3s;
  color: #fff;
  border-radius: 8px;
}

/*
::::::::::::::::::::::::::
 COMMON AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 BUTTONS AREA CSS
::::::::::::::::::::::::::
*/
.theme-btn1 {
  display: inline-block;
  border-radius: 80px;
  background: linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%);
  padding: 12px 12px 12px 18px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: none;
}
.theme-btn1::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 80px;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: -1;
  transition: all 0.4s;
}
.theme-btn1 span {
  display: inline-block;
  height: 32px;
  width: 32px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 16px;
  color: #FA7D3C;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.theme-btn1:hover {
  color: #fff;
  transition: all 0.4s;
}
.theme-btn1:hover::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.theme-btn1:hover span {
  color: #49A6FF;
  transition: all 0.4s;
}

.theme-btn2 {
  display: inline-block;
  border-radius: 80px;
  background: #4D32A5;
  padding: 12px 12px 12px 18px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: none;
}
.theme-btn2::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 80px;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  z-index: -1;
  transition: all 0.4s;
}
.theme-btn2 span {
  display: inline-block;
  height: 32px;
  width: 32px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 16px;
  color: #4D32A5;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.theme-btn2:hover {
  color: #fff;
  transition: all 0.4s;
}
.theme-btn2:hover::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.theme-btn2:hover span {
  color: #FA7D3C;
  transition: all 0.4s;
}

.theme-btn3 {
  display: inline-block;
  border-radius: 80px;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
  padding: 12px 12px 12px 18px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: none;
}
.theme-btn3::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 80px;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #9553FD 2.31%, #5700FC 100%));
  z-index: -1;
  transition: all 0.4s;
}
.theme-btn3 span {
  display: inline-block;
  height: 32px;
  width: 32px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 16px;
  color: #9553FD;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.theme-btn3:hover {
  color: #fff;
  transition: all 0.4s;
}
.theme-btn3:hover::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.theme-btn3:hover span {
  color: #9553FD;
  transition: all 0.4s;
}

.theme-btn4 {
  display: inline-block;
  border-radius: 80px;
  background: #fff;
  padding: 12px 12px 12px 18px;
  color: #0B0927;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: none;
}
.theme-btn4::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 80px;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #9553FD 2.31%, #5700FC 100%));
  z-index: -1;
  transition: all 0.4s;
}
.theme-btn4 span {
  display: inline-block;
  height: 32px;
  width: 32px;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #9553FD 2.31%, #5700FC 100%));
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.theme-btn4:hover {
  color: #fff;
  transition: all 0.4s;
}
.theme-btn4:hover::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.theme-btn4:hover span {
  color: #9553FD;
  transition: all 0.4s;
  background: #fff;
}

/*
::::::::::::::::::::::::::
    BUTOTNS AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 ABOUT AREA CSS
::::::::::::::::::::::::::
*/
.about1 .images-all {
  position: relative;
  height: 520px;
  margin: 10px 0px 60px 0px;
}
.about1 .images-all .shape-bg1 {
  position: absolute;
  left: -150px;
  top: -80px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about1 .images-all .shape-bg1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .about1 .images-all .shape-bg1 {
    display: none;
  }
}
.about1 .images-all .image1 {
  position: absolute;
  left: 0;
  top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about1 .images-all .image1 {
    left: 60px;
  }
}
.about1 .images-all .shape-bg2 {
  margin-left: -140px;
  position: relative;
  top: -90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about1 .images-all .shape-bg2 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .about1 .images-all .shape-bg2 {
    margin-left: 0;
    top: 0;
  }
}
.about1 .images-all .image2 {
  position: absolute;
  bottom: 40px;
  left: -150px;
  width: 350px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about1 .images-all .image2 {
    left: 0;
  }
}
@media (max-width: 767px) {
  .about1 .images-all .image2 {
    left: 0;
    width: 250px;
    bottom: 150px;
  }
}
.about1 .images-all .image3 {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 430px;
}
@media (max-width: 767px) {
  .about1 .images-all .image3 {
    width: 300px;
    bottom: 0;
  }
}
.about1 .images-all .stop-color1 {
  stop-color: #3B32F6;
}
.about1 .images-all .stop-color2 {
  stop-color: #49A6FF;
}
.about1 .heading1, .about1 .heading3 {
  padding-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about1 .heading1, .about1 .heading3 {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .about1 .heading1, .about1 .heading3 {
    padding-left: 0;
  }
}
.about1 .heading1 .about-list li, .about1 .heading3 .about-list li {
  display: inline-block;
  border-radius: 90px;
  background: var(--SEO-Marketing-Gray-Color, #F5F5FD);
  padding: 16px 16px 14px 16px;
  margin-right: 16px;
  margin-top: 20px;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
}
.about1 .heading1 .about-list li span, .about1 .heading3 .about-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #0B0314;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  transform: translateY(-2px);
  margin-right: 2px;
}
.about1 .porgress-line-all {
  border-radius: 8px;
  background: var(--SEO-Marketing-Gray-Color, #F5F5FD);
  padding: 24px;
  margin-top: 24px;
}
.about1 .porgress-line-all .progress-line {
  position: relative;
  margin-top: 28px;
}
.about1 .porgress-line-all .progress-line h6 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  margin-bottom: 20px;
}
.about1 .porgress-line-all .progress-line .percentCount {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  position: absolute;
  right: 0;
  top: 0px;
}
.about1 .porgress-line-all .progress-line:nth-child(1) {
  margin-top: 0;
}
.about1 .about3-boxs .about3-box {
  text-align: center;
  margin-bottom: 30px !important;
  border-radius: 8px;
  background: var(--SEO-Marketing-Gray-Color, #F5F5FD);
  padding: 32px;
  transition: all 0.4s;
}
.about1 .about3-boxs .about3-box .icon {
  background-color: #4D32A5;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  margin: auto;
  border-radius: 50%;
  transition: all 0.4s;
}
.about1 .about3-boxs .about3-box .heading {
  padding: 16px;
}
.about1 .about3-boxs .about3-box .heading h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.about1 .about3-boxs .about3-box .heading p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  padding-top: 8px;
  transition: all 0.4s;
}
.about1 .about3-boxs .about3-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
  background-color: #4D32A5;
}
.about1 .about3-boxs .about3-box:hover .icon {
  background-color: #5F46AE;
  transition: all 0.4s;
}
.about1 .about3-boxs .about3-box:hover .heading h3 {
  transition: all 0.4s;
  color: #fff;
}
.about1 .about3-boxs .about3-box:hover .heading p {
  color: white;
  transition: all 0.4s;
}
.about1 .about3-boxs .about3-box.right-side {
  margin-top: 30px;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .about1 .about3-boxs .about3-box.right-side {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
  }
}
.about1.about-page-sec2 .images-all {
  position: relative;
  height: 520px;
  margin: 10px 0px 60px 0px;
}
.about1.about-page-sec2 .images-all .shape-bg1 {
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about1.about-page-sec2 .images-all .shape-bg1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .about1.about-page-sec2 .images-all .shape-bg1 {
    display: none;
  }
}
.about1.about-page-sec2 .images-all .image1 {
  position: absolute;
  left: auto;
  right: 0;
  top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about1.about-page-sec2 .images-all .image1 {
    left: 60px;
  }
}
.about1.about-page-sec2 .images-all .shape-bg2 {
  margin-right: -140px;
  margin-left: 0;
  position: relative;
  top: -90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about1.about-page-sec2 .images-all .shape-bg2 {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .about1.about-page-sec2 .images-all .shape-bg2 {
    margin-right: 0;
    top: 0;
  }
}
.about1.about-page-sec2 .images-all .image2 {
  position: absolute;
  bottom: 40px;
  left: 0px;
  width: 350px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about1.about-page-sec2 .images-all .image2 {
    left: 0;
  }
}
@media (max-width: 767px) {
  .about1.about-page-sec2 .images-all .image2 {
    left: 0;
    width: 250px;
    bottom: 150px;
  }
}
.about1.about-page-sec2 .images-all .image3 {
  position: absolute;
  bottom: -50px;
  right: -70px;
  width: 430px;
}
@media (max-width: 767px) {
  .about1.about-page-sec2 .images-all .image3 {
    width: 300px;
    bottom: 0;
  }
}
.about1.about-page-sec2 .images-all .stop-color1 {
  stop-color: #3B32F6;
}
.about1.about-page-sec2 .images-all .stop-color2 {
  stop-color: #49A6FF;
}

.about5 .images-all {
  position: relative;
  height: 520px;
  margin: 10px 0px 60px 0px;
}
.about5 .images-all .shape-bg1 {
  position: absolute;
  left: -150px;
  top: -80px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about5 .images-all .shape-bg1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .about5 .images-all .shape-bg1 {
    display: none;
  }
}
.about5 .images-all .image1 {
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about5 .images-all .image1 {
    left: 60px;
  }
}
.about5 .images-all .shape-bg2 {
  margin-left: -140px;
  position: relative;
  top: -90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about5 .images-all .shape-bg2 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .about5 .images-all .shape-bg2 {
    margin-left: 0;
    top: 0;
  }
}
.about5 .images-all .image2 {
  position: absolute;
  bottom: -40px;
  right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about5 .images-all .image2 {
    left: 0;
  }
}
@media (max-width: 767px) {
  .about5 .images-all .image2 {
    left: 0;
    bottom: 150px;
  }
}
.about5 .images-all .image3 {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 430px;
}
@media (max-width: 767px) {
  .about5 .images-all .image3 {
    width: 300px;
    bottom: 0;
  }
}
.about5 .images-all .stop-color1 {
  stop-color: #3B32F6;
}
.about5 .images-all .stop-color2 {
  stop-color: #49A6FF;
}
.about5 .heading1, .about5 .heading5 {
  padding-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about5 .heading1, .about5 .heading5 {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .about5 .heading1, .about5 .heading5 {
    padding-left: 0;
  }
}
.about5 .heading1 .about-list li, .about5 .heading5 .about-list li {
  display: inline-block;
  border-radius: 90px;
  background: var(--SEO-Marketing-Gray-Color, #F5F5FD);
  padding: 16px 16px 14px 16px;
  margin-right: 16px;
  margin-top: 20px;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
}
.about5 .heading1 .about-list li span, .about5 .heading5 .about-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #0B0314;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  transform: translateY(-2px);
  margin-right: 2px;
}
.about5 .porgress-line-all {
  border-radius: 8px;
  background: var(--SEO-Marketing-Gray-Color, #F5F5FD);
  padding: 24px;
  margin-top: 24px;
}
.about5 .porgress-line-all .progress-line {
  position: relative;
  margin-top: 28px;
}
.about5 .porgress-line-all .progress-line h6 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  margin-bottom: 20px;
}
.about5 .porgress-line-all .progress-line .percentCount {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  position: absolute;
  right: 0;
  top: 0px;
}
.about5 .porgress-line-all .progress-line:nth-child(1) {
  margin-top: 0;
}
.about5 .about3-boxs .about3-box {
  text-align: center;
  margin-bottom: 30px;
  border-radius: 8px;
  background: var(--SEO-Marketing-Gray-Color, #F5F5FD);
  padding: 32px;
  transition: all 0.4s;
}
.about5 .about3-boxs .about3-box .icon {
  background-color: #4D32A5;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  margin: auto;
  border-radius: 50%;
  transition: all 0.4s;
}
.about5 .about3-boxs .about3-box .heading {
  padding: 16px;
}
.about5 .about3-boxs .about3-box .heading h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.about5 .about3-boxs .about3-box .heading p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  padding-top: 8px;
  transition: all 0.4s;
}
.about5 .about3-boxs .about3-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
  background-color: #4D32A5;
}
.about5 .about3-boxs .about3-box:hover .icon {
  background-color: #5F46AE;
  transition: all 0.4s;
}
.about5 .about3-boxs .about3-box:hover .heading h3 {
  transition: all 0.4s;
  color: #fff;
}
.about5 .about3-boxs .about3-box:hover .heading p {
  color: white;
  transition: all 0.4s;
}
.about5 .about3-boxs .about3-box.right-side {
  margin-top: 30px;
  margin-bottom: 0 !important;
}

.skills-section-area {
  position: relative;
  z-index: 1;
}
.skills-section-area .circle-progress-area {
  margin-top: 40px;
}
.skills-section-area .cta-bg1 {
  position: absolute;
  top: 0;
  right: 0;
}
.skills-section-area .cta-bg2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.skills-section-area .skills-header {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .skills-section-area .skills-header {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .skills-section-area .skills-header {
    margin-bottom: 30px;
  }
}
.skills-section-area .skills-header h5 {
  color: var(--ztc-bg-bg-15);
}
.skills-section-area .skills-header h5::after {
  background: var(--ztc-bg-bg-15);
}
.skills-section-area .skills-header h2 {
  color: var(--ztc-bg-bg-15);
}
.skills-section-area .progresbar {
  margin-bottom: 30px;
}
.skills-section-area .progresbar p {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  transition: all 0.4s;
  text-align: center;
  margin-top: 30px;
}
.skills-section-area .progressbar {
  width: 180px;
  height: 180px;
  text-align: center;
  margin: 0 auto;
}
.skills-section-area .circle {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  text-align: center;
  position: relative;
  z-index: 1;
}
.skills-section-area .circle canvas {
  vertical-align: middle;
  border-radius: 50%;
}
.skills-section-area .circle div {
  position: absolute;
  top: 33%;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  margin-top: 20px;
}
.skills-section-area .circle strong i {
  font-style: normal;
  font-size: 0.6em;
  font-weight: normal;
}
.skills-section-area .circle span {
  display: block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
}
.skills-section-area .circle:before {
  position: absolute;
  top: 65%;
  right: 17%;
  font-size: 15px;
  font-weight: bold;
  color: #3B32F6;
}

.about-team {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
}
.about-team .main-img {
  margin-top: 30px;
}

.about-team-brands {
  margin-top: -140px;
}
.about-team-brands .brands-bg {
  background-color: #F5F5FD;
  padding: 56px 60px;
  border-radius: 8px;
}
.about-team-brands .brands-bg .heading p {
  color: var(--Text-Color, #120D22);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
}
.about-team-brands .brands-bg .team-logo-slider {
  margin-top: 40px;
}
.about-team-brands .brands-bg .team-logo-slider .single-logo {
  width: 140px;
  line-height: 100px;
  height: 70px;
  line-height: 70px;
}
.about-team-brands.service-details {
  margin-top: 60px;
}

/*
 ::::::::::::::::::::::::::
  ABOUT AREA CSS
 ::::::::::::::::::::::::::
 */
/*
::::::::::::::::::::::::::
 SERVICE AREA CSS
::::::::::::::::::::::::::
*/
.service1 {
  position: relative;
}
.service1 .right-btn {
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service1 .right-btn {
    text-align: start;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .service1 .right-btn {
    text-align: start;
    margin-top: 20px;
  }
}
.service1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/service1-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -6;
}
.service1 .service-box {
  position: relative;
  padding: 32px 24px 66px 24px;
  margin-top: 40px;
  transition: all 0.4s;
  text-align: center;
}
.service1 .service-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50px 8px;
  background-image: url(../img/bg/service1-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.service1 .service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 110%;
  border-radius: 264px;
  background-image: url(../img/bg/service1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.service1 .service-box .heading1 h4 a {
  padding: 24px 0 16px 0;
}
.service1 .service-box .icon {
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: 4;
  margin: auto;
}
.service1 .service-box .icon img {
  position: relative;
  z-index: 4;
  transition: all 0.4s;
  filter: brightness(0) invert(1);
}
.service1 .service-box .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 1;
}
.service1 .service-box .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  transform: scale(0.4);
  opacity: 0;
  transition: all 0.4s;
}
.service1 .service-box .learn {
  display: inline-block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  transform: rotate(-45deg);
  font-size: 18px;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -22px;
  margin-left: -22px;
  transition: all 0.4s;
  z-index: 2;
}
.service1 .service-box .learn i {
  position: relative;
  z-index: 22;
}
.service1 .service-box .learn::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 1;
}
.service1 .service-box .learn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  transform: scale(0.4);
  opacity: 0;
  transition: all 0.4s;
}
.service1 .service-box:hover {
  transform: translateY(-10px);
  transition: all 0.4s;
}
.service1 .service-box:hover .heading1 h4 a {
  transition: all 0.4s;
  color: #fff;
}
.service1 .service-box:hover .heading1 p {
  transition: all 0.4s;
  color: rgba(255, 255, 255, 0.8274509804);
}
.service1 .service-box:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 50px;
  background-image: url(../img/bg/service1-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.service1 .service-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 50px !important;
  background-image: url(../img/bg/service1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.service1 .service-box:hover .icon img {
  transition: all 0.4s;
  filter: none;
}
.service1 .service-box:hover .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  transform: scale(1);
  opacity: 1;
  transition: all 0.4s;
}
.service1 .service-box:hover .learn {
  color: #3B32F6;
}
.service1 .service-box:hover .learn::before {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s;
}
.service1 .service-box.active {
  transition: all 0.4s;
}
.service1 .service-box.active .heading1 h4 a {
  transition: all 0.4s;
  color: #fff;
}
.service1 .service-box.active .heading1 p {
  transition: all 0.4s;
  color: rgba(255, 255, 255, 0.8274509804);
}
.service1 .service-box.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 50px;
  background-image: url(../img/bg/service1-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.service1 .service-box.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 50px !important;
  background-image: url(../img/bg/service1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.service1 .service-box.active .icon img {
  transition: all 0.4s;
  filter: none;
}
.service1 .service-box.active .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  transform: scale(1);
  opacity: 1;
  transition: all 0.4s;
}
.service1 .service-box.active .learn {
  color: #3B32F6;
}
.service1 .service-box.active .learn::before {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s;
}

.service2 {
  position: relative;
}
.service2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/service2-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -6;
}
.service2 .service2-all-tabs {
  margin-top: 30px;
}
.service2 .service2-all-tabs .tabs-buttons {
  text-align: center;
}
.service2 .service2-all-tabs .tabs-buttons .nav-item button {
  width: 232px;
  padding: 0;
  margin: 0px 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service2 .service2-all-tabs .tabs-buttons .nav-item button {
    margin-top: 30px;
    width: 300px;
  }
}
@media (max-width: 767px) {
  .service2 .service2-all-tabs .tabs-buttons .nav-item button {
    margin-top: 30px;
    width: 300px;
  }
}
.service2 .service2-all-tabs .tabs-buttons .nav-item button.active {
  background: none;
}
.service2 .service2-all-tabs .tabs-buttons .nav-item button.active .text-box {
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  border-radius: 8px;
  padding: 55px 0px 24px 0px;
  position: relative;
  width: 100%;
  margin-top: -32px;
  z-index: 1;
  display: inline-block;
}
.service2 .service2-all-tabs .tabs-buttons .nav-item button.active .text-box span {
  color: var(--SEO-Marketing-Text-Color, #fff);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  display: inline-block;
}
.service2 .service2-all-tabs .tabs-buttons .nav-item button .icon {
  position: relative;
  z-index: 99;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  margin: auto;
  display: inline-block;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
}
.service2 .service2-all-tabs .tabs-buttons .nav-item button .text-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 55px 0px 24px 0px;
  position: relative;
  width: 100%;
  margin-top: -32px;
  z-index: 1;
  display: inline-block;
}
.service2 .service2-all-tabs .tabs-buttons .nav-item button .text-box span {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  display: inline-block;
}
.service2 .heading2 {
  text-align: start;
  padding-top: 60px;
  padding-left: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service2 .heading2 {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .service2 .heading2 {
    padding-top: 20px;
  }
}
.service2 .heading2 span.span {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  text-transform: uppercase;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service2 .heading2 h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 125% */
  margin-top: 16px;
}
.service2 .heading2 p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
.service2 .heading2 ul.list {
  margin-top: 10px;
}
.service2 .heading2 ul.list li {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-top: 18px;
}
.service2 .heading2 ul.list li span.check {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
  background: #ED3240;
}
.service2 .tab-images-all {
  position: relative;
  height: 450px;
  margin-top: 10px;
}
.service2 .tab-images-all .image1 {
  top: -50px;
  position: relative;
}
.service2 .tab-images-all .image1 .stop-color1 {
  stop-color: #3B32F6;
}
.service2 .tab-images-all .image1 .stop-color2 {
  stop-color: #49A6FF;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service2 .tab-images-all .image1 {
    top: -150px;
  }
}
.service2 .tab-images-all .image2 {
  position: absolute;
  top: 50px;
  right: 100px;
}
.service2 .tab-images-all .image3 {
  position: absolute;
  bottom: 0;
  left: 80px;
}
.service2 .tab-images-all .image4 {
  position: absolute;
  bottom: 60px;
  right: -40px;
}
.service2 .tab-images-all .image5 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.service3 {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service3 .service3-box {
  margin-top: 50px;
  border-radius: 8px;
  background: #FFF;
  padding: 12px 36px 52px 36px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}
.service3 .service3-box .heading3 {
  margin-top: -50px;
}
.service3 .service3-box .heading3 .learn {
  height: 48px;
  width: 48px;
  display: inline-block;
  line-height: 48px;
  text-align: center;
  background-color: #4D32A5;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transform: rotate(-45deg);
  margin-left: -24px;
  position: absolute;
  left: 50%;
  bottom: -24px;
}
.service3 .service3-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
}

.service5 {
  position: relative;
}
.service5::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #F5F5FD;
  z-index: -6;
}
.service5 .service5-items {
  position: sticky;
  margin-top: 60px;
  top: 100px;
}
.service5 .service5-items:nth-child(2) {
  top: 150px;
}
.service5 .service5-items:nth-child(3) {
  top: 200px;
}
.service5 .service5-items:nth-child(4) {
  top: 250px;
}
.service5 .service5-items .images {
  height: 430px;
  position: relative;
}
.service5 .service5-items .images .image1 {
  margin: -90px 30px 30px 30px;
}
.service5 .service5-items .images .image1 .stop-color1 {
  stop-color: rgba(255, 255, 255, 0.0901960784);
}
.service5 .service5-items .images .image1 .stop-color2 {
  stop-color: rgba(255, 255, 255, 0.0745098039);
}
.service5 .service5-items .images .image2 {
  position: absolute;
  top: 80px;
  left: 150px;
}
@media (max-width: 767px) {
  .service5 .service5-items .images .image2 {
    left: 50px;
  }
}
.service5 .service5-items .images .image3 {
  position: absolute;
  bottom: 0;
  right: 50px;
}
.service5 .service5-items .service5-heading {
  padding: 100px 100px 100px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service5 .service5-items .service5-heading {
    padding: 50px 50px 50px 30px;
  }
}
@media (max-width: 767px) {
  .service5 .service5-items .service5-heading {
    padding: 50px 50px 50px 30px;
  }
}
.service5 .service5-items .service5-heading h3 {
  color: var(--Social-Media-Marketing-White-Color, #FFF);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 125% */
}
.service5 .service5-items .service5-heading p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
.service5 .service5-items .service5-heading .service6-list {
  margin-top: 8px;
}
.service5 .service5-items .service5-heading .service6-list ul li {
  color: var(--Social-Media-Marketing-White-Color, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  padding-top: 18px;
  display: flex;
  align-items: center;
}
.service5 .service5-items .service5-heading .service6-list ul li span.icon {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  border-radius: 50%;
  margin-right: 7px;
}
.service5 .service5-items::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/service5-single-bg1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  z-index: -3;
}
.service5 .service5-items.service5-items2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/service5-single-bg2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  z-index: -3;
}
.service5 .service5-items.service5-items3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/service5-single-bg3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  z-index: -3;
}
.service5 .service5-items.service5-items4::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/service5-single-bg4.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  z-index: -3;
}

.what-we-do5 .single-boxs {
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.what-we-do5 .single-boxs::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background: #F5F5FD;
  z-index: 1;
}
.what-we-do5 .single-boxs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 111px;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
  z-index: 2;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.what-we-do5 .single-boxs h3 {
  color: var(--Social-Media-Marketing-Text-Color, #0B0927);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  z-index: 4;
  position: relative;
  transition: all 0.4s;
}
.what-we-do5 .single-boxs p {
  color: #5D6369;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  position: relative;
  z-index: 4;
  padding-top: 10px;
  transition: all 0.4s;
}
.what-we-do5 .single-boxs:hover h3 {
  color: var(--Social-Media-Marketing-Text-Color, #fff);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  z-index: 4;
  position: relative;
  transition: all 0.4s;
}
.what-we-do5 .single-boxs:hover p {
  color: rgba(255, 255, 255, 0.6705882353);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  position: relative;
  z-index: 4;
  padding-top: 10px;
  transition: all 0.4s;
}
.what-we-do5 .single-boxs:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
  z-index: 2;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.what-we-do5 .what-we-do5-images .image {
  margin-top: 40px;
}
.what-we-do5 .what-we-do5-images .image img {
  width: 100%;
  border-radius: 8px;
}

.service1-page {
  position: relative;
}
.service1-page .right-btn {
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service1-page .right-btn {
    text-align: start;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .service1-page .right-btn {
    text-align: start;
    margin-top: 20px;
  }
}
.service1-page .service-box {
  position: relative;
  padding: 32px 24px 66px 24px;
  margin-top: 40px;
  transition: all 0.4s;
  text-align: center;
}
.service1-page .service-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-image: url(../img/bg/service1-page-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.service1-page .service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 110%;
  border-radius: 264px;
  background-image: url(../img/bg/service1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.service1-page .service-box .heading1 h4 a {
  padding: 24px 0 16px 0;
}
.service1-page .service-box .icon {
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: 4;
  margin: auto;
}
.service1-page .service-box .icon img {
  position: relative;
  z-index: 4;
  transition: all 0.4s;
  filter: brightness(0) invert(1);
}
.service1-page .service-box .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 1;
}
.service1-page .service-box .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  transform: scale(0.4);
  opacity: 0;
  transition: all 0.4s;
}
.service1-page .service-box .learn {
  display: inline-block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  transform: rotate(-45deg);
  font-size: 18px;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -22px;
  margin-left: -22px;
  transition: all 0.4s;
  z-index: 2;
}
.service1-page .service-box .learn i {
  position: relative;
  z-index: 22;
}
.service1-page .service-box .learn::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 1;
}
.service1-page .service-box .learn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  transform: scale(0.4);
  opacity: 0;
  transition: all 0.4s;
}
.service1-page .service-box:hover {
  transform: translateY(-10px);
  transition: all 0.4s;
}
.service1-page .service-box:hover .heading1 h4 a {
  transition: all 0.4s;
  color: #fff;
}
.service1-page .service-box:hover .heading1 p {
  transition: all 0.4s;
  color: rgba(255, 255, 255, 0.8274509804);
}
.service1-page .service-box:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-image: url(../img/bg/service1-page-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.service1-page .service-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px !important;
  background-image: url(../img/bg/service1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.service1-page .service-box:hover .icon img {
  transition: all 0.4s;
  filter: none;
}
.service1-page .service-box:hover .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  transform: scale(1);
  opacity: 1;
  transition: all 0.4s;
}
.service1-page .service-box:hover .learn {
  color: #3B32F6;
}
.service1-page .service-box:hover .learn::before {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s;
}
.service1-page .service-box.active {
  transition: all 0.4s;
}
.service1-page .service-box.active .heading1 h4 a {
  transition: all 0.4s;
  color: #fff;
}
.service1-page .service-box.active .heading1 p {
  transition: all 0.4s;
  color: rgba(255, 255, 255, 0.8274509804);
}
.service1-page .service-box.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-image: url(../img/bg/service1-page-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.service1-page .service-box.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px !important;
  background-image: url(../img/bg/service1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.service1-page .service-box.active .icon img {
  transition: all 0.4s;
  filter: none;
}
.service1-page .service-box.active .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  transform: scale(1);
  opacity: 1;
  transition: all 0.4s;
}
.service1-page .service-box.active .learn {
  color: #3B32F6;
}
.service1-page .service-box.active .learn::before {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s;
}

.service3 {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service3 .service3-box {
  margin-top: 50px;
  border-radius: 8px;
  background: #FFF;
  padding: 12px 36px 52px 36px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}
.service3 .service3-box .heading3 {
  margin-top: -50px;
}
.service3 .service3-box .heading3 .learn {
  height: 48px;
  width: 48px;
  display: inline-block;
  line-height: 48px;
  text-align: center;
  background-color: #4D32A5;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transform: rotate(-45deg);
  margin-left: -24px;
  position: absolute;
  left: 50%;
  bottom: -24px;
  transition: all 0.4s;
}
.service3 .service3-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
}
.service3 .service3-box:hover h4 a {
  color: #FA7D3C;
}
.service3 .service3-box:hover .learn {
  background-color: #FA7D3C;
  transition: all 0.4s;
}
.service3.service-page .service3-box {
  margin-top: 50px;
  border-radius: 8px;
  background: #F5F5FD;
  padding: 12px 36px 52px 36px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}
.service3.service-page .service3-box .heading3 {
  margin-top: -50px;
}
.service3.service-page .service3-box .heading3 .learn {
  height: 48px;
  width: 48px;
  display: inline-block;
  line-height: 48px;
  text-align: center;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transform: rotate(-45deg);
  margin-left: -24px;
  position: absolute;
  left: 50%;
  bottom: -24px;
}

.service-details-sec1 {
  position: relative;
}
.service-details-sec1 .service2-all-tabs {
  margin-top: 30px;
}
.service-details-sec1 .heading2 {
  text-align: start;
  padding-top: 60px;
  padding-left: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-sec1 .heading2 {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .service-details-sec1 .heading2 {
    padding-top: 20px;
  }
}
.service-details-sec1 .heading2 span.span {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  text-transform: uppercase;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-details-sec1 .heading2 h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px; /* 125% */
  margin-top: 16px;
}
.service-details-sec1 .heading2 p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
.service-details-sec1 .heading2 ul.list {
  margin-top: 10px;
}
.service-details-sec1 .heading2 ul.list li {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-top: 18px;
}
.service-details-sec1 .heading2 ul.list li span.check {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
  background: #0B0314;
}
.service-details-sec1 .tab-images-all {
  position: relative;
  height: 450px;
  margin-top: 10px;
}
.service-details-sec1 .tab-images-all .image1 {
  top: -50px;
  position: relative;
  margin-left: 100px;
}
.service-details-sec1 .tab-images-all .image1 .stop-color1 {
  stop-color: #3B32F6;
}
.service-details-sec1 .tab-images-all .image1 .stop-color2 {
  stop-color: #49A6FF;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-sec1 .tab-images-all .image1 {
    top: -150px;
  }
}
.service-details-sec1 .tab-images-all .image2 {
  position: absolute;
  top: 50px;
  right: 100px;
}
.service-details-sec1 .tab-images-all .image3 {
  position: absolute;
  bottom: 0;
  left: 170px;
}
.service-details-sec1 .tab-images-all .image4 {
  position: absolute;
  bottom: 60px;
  right: -40px;
}
.service-details-sec1 .tab-images-all .image5 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.service-details-sec1 .what-we-do5-images .image {
  margin-top: 40px;
}
.service-details-sec1 .what-we-do5-images .image img {
  width: 100%;
}
.service-details-sec1 .tab-boxs-all .single-box {
  border-radius: 8px;
  background: var(--SEO-Marketing-Gray-Color, #F5F5FD);
  padding: 28px;
  margin-bottom: 30px;
}
.service-details-sec1 .tab-boxs-all .single-box .progressbar {
  width: 180px;
  height: 180px;
  text-align: center;
  margin: 0 auto;
}
.service-details-sec1 .tab-boxs-all .single-box p {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  margin-top: 32px;
}
.service-details-sec1 .tab-boxs-all .single-box .circle {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  text-align: center;
  position: relative;
  z-index: 1;
}
.service-details-sec1 .tab-boxs-all .single-box .circle canvas {
  vertical-align: middle;
  border-radius: 50%;
}
.service-details-sec1 .tab-boxs-all .single-box .circle div {
  position: absolute;
  top: 33%;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  margin-top: 20px;
}
.service-details-sec1 .tab-boxs-all .single-box .circle strong i {
  font-style: normal;
  font-size: 0.6em;
  font-weight: normal;
}
.service-details-sec1 .tab-boxs-all .single-box .circle span {
  display: block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
}
.service-details-sec1 .tab-boxs-all .single-box .circle:before {
  position: absolute;
  top: 65%;
  right: 17%;
  font-size: 15px;
  font-weight: bold;
  color: #3B32F6;
}

.service-details-benifits {
  position: relative;
}
.service-details-benifits .service-benifits-area {
  margin-top: 40px;
}
.service-details-benifits .service-benifits-area .image-area {
  position: relative;
  margin-top: 30px;
  height: 450px;
}
.service-details-benifits .service-benifits-area .image-area .image1 {
  position: relative;
  top: -90px;
}
.service-details-benifits .service-benifits-area .image-area .image1 .stop-color1 {
  stop-color: #F5F5FD;
}
.service-details-benifits .service-benifits-area .image-area .image1 .stop-color2 {
  stop-color: #F5F5FD;
}
.service-details-benifits .service-benifits-area .image-area .image2 {
  position: absolute;
  top: 50px;
  left: 100px;
}
.service-details-benifits .service-benifits-area .image-area .image3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.service-details-benifits .service-benifits-area .image-area .image3.image3-shape2 {
  left: auto;
  right: 0;
}

.service-details-others {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
}
.service-details-others .form-area {
  margin-top: 30px;
}
.service-details-others .form-area .single-input {
  position: relative;
}
.service-details-others .form-area .single-input input {
  padding: 16px 16px 16px 40px;
  border: none;
  width: 100%;
  border-radius: 111px;
}
.service-details-others .form-area .single-input input:focus {
  outline: none;
}
.service-details-others .form-area .single-input .icon {
  position: absolute;
  left: 12px;
  top: 19px;
}

.analysis-area .analysis-inner-section {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .analysis-area .analysis-inner-section {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .analysis-area .analysis-inner-section {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .analysis-area .services-seo-scroll {
    width: 200%;
    overflow-y: auto;
    position: relative;
  }
}
@media (max-width: 767px) {
  .analysis-area .services-seo-scroll {
    width: 400%;
    overflow-y: auto;
    position: relative;
  }
}
.analysis-area .services-seo {
  border-radius: 8px;
  position: relative;
  background: var(--ztc-text-text-1);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.08);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .analysis-area .services-seo {
    overflow-x: auto;
  }
}
@media (max-width: 767px) {
  .analysis-area .services-seo {
    overflow-x: auto;
  }
}
.analysis-area .services-seo-head {
  border-radius: 7px 7px 0px 0px;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  padding: 16px 65px 16px 24px;
}
.analysis-area .services-seo-item {
  padding-right: 65px;
  padding-left: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8EAEC;
}
.analysis-area .services-seo-heading-title {
  margin: 0;
}
.analysis-area .services-seo-heading-title label {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  padding-left: 22px;
  position: relative;
  cursor: pointer;
}
.analysis-area .services-seo-heading-title label::after {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #C3C7C9;
  transition: all 0.2s ease-out 0s;
  border-radius: 4px;
}
.analysis-area .services-seo-heading-title label::before {
  position: absolute;
  content: url("../img/icons/form-check.svg");
  top: -1px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 15px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  transition: all 0.2s ease-out 0s;
  z-index: 1;
}
.analysis-area .services-seo-heading-title input {
  display: none;
}
.analysis-area .services-seo-heading-title input:checked ~ label::after {
  background-color: var(--ztc-text-text-4);
  border-color: var(--ztc-text-text-4);
}
.analysis-area .services-seo-heading-title input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.analysis-area .services-seo-heading-item span {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  line-height: 16px;
  padding-left: 70px;
}
.analysis-area .services-seo-heading-item span a {
  color: #fff;
}
.analysis-area .services-seo-heading-item span i {
  font-weight: 600;
  transform: translateY(2px);
  margin-right: 5px;
}
.analysis-area .services-seo-link-check label {
  font-family: var(--ztc-family-font1);
  font-weight: var(--ztc-weight-regular);
  font-size: var(--ztc-font-size-font-s16);
  line-height: 1;
  color: var(--ztc-text-text-2);
  position: relative;
  cursor: pointer;
  padding-left: 22px;
}
.analysis-area .services-seo-link-check label::after {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #C3C7C9;
  transition: all 0.2s ease-out 0s;
  border-radius: 4px;
}
.analysis-area .services-seo-link-check label::before {
  position: absolute;
  content: url("../img/icons/form-check.svg");
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 15px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  transition: all 0.2s ease-out 0s;
  z-index: 1;
}
.analysis-area .services-seo-link-check input {
  display: none;
}
.analysis-area .services-seo-link-check input:checked ~ label::after {
  background-color: #3B32F6;
  border-color: #3B32F6;
}
.analysis-area .services-seo-link-check input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.analysis-area .services-seo-link-check span {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px; /* 100% */
  line-height: 1;
  padding-left: 22px;
  display: block;
}
.analysis-area .services-seo-link-check span a {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
}
.analysis-area .services-seo-catagory-item {
  padding-left: 70px;
}
.analysis-area .services-seo-catagory-item a {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  line-height: 16px;
  display: inline-block;
}
.analysis-area .services-seo-catagory-item .incridable-rank i {
  margin-left: 4px;
  margin-top: -15px;
  font-size: 8px;
}

.offer-sec .single-offer-box {
  margin-top: 24px;
  padding: 24px;
  text-align: center;
  position: relative;
}
.offer-sec .single-offer-box p {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  transition: all 0.4s;
}
.offer-sec .single-offer-box::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  background-color: #F5F5FD;
  border-radius: 4px;
  z-index: -2;
}
.offer-sec .single-offer-box::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  border-radius: 100px;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  z-index: -1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.offer-sec .single-offer-box:hover {
  transition: all 0.4s;
}
.offer-sec .single-offer-box:hover::before {
  transform: scale(1);
  transition: all 0.4s;
  border-radius: 4px;
  opacity: 1;
}
.offer-sec .single-offer-box:hover p {
  transition: all 0.4s;
  color: #fff;
}

/*
 ::::::::::::::::::::::::::
  SERVICE AREA CSS
 ::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 CHOOSE AREA CSS
::::::::::::::::::::::::::
*/
/*
 ::::::::::::::::::::::::::
  CHOOSE AREA CSS
 ::::::::::::::::::::::::::
 */
/*
::::::::::::::::::::::::::
 CTA AREA CSS
::::::::::::::::::::::::::
*/
.cta2 {
  padding: 80px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta2 h2 {
  color: #FFF;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 114.286% */
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta2 h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .cta2 h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.cta2 .form-area {
  margin: 36px 60px 0px 60px;
  position: relative;
}
@media (max-width: 767px) {
  .cta2 .form-area {
    margin: 20px 0px 0px 0px;
  }
}
.cta2 .form-area input {
  width: 100%;
  padding: 19px;
  border: none;
  border-radius: 68px;
}
.cta2 .form-area input:focus {
  outline: none;
}
.cta2 .form-area .form-btn {
  position: absolute;
  top: 4px;
  right: 4px;
}
.cta2 .image1 {
  position: absolute;
  left: -70px;
  top: 0;
  transform: scale(1.2);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta2 .image1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .cta2 .image1 {
    display: none;
  }
}
.cta2 .image2 {
  position: absolute;
  right: -70px;
  top: 0;
  transform: scale(1.2);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta2 .image2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .cta2 .image2 {
    display: none;
  }
}

/*
::::::::::::::::::::::::::
 CTA AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 FAQ AREA CSS
::::::::::::::::::::::::::
*/
.faq3 {
  position: relative;
}
.faq3 .accordion .accordion-item {
  border: none;
  border-radius: 14px;
  background: none;
  margin-top: 30px;
  transition: all 0.4s;
  background-color: #F5F5FD;
}
.faq3 .accordion .accordion-item button {
  border: none;
  background: none;
  padding: 32px;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  text-transform: capitalize;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq3 .accordion .accordion-item button {
    font-size: 20px;
    line-height: 26px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .faq3 .accordion .accordion-item button {
    font-size: 20px;
    line-height: 26px;
    padding: 20px;
  }
}
.faq3 .accordion .accordion-item button:focus {
  outline: none;
  box-shadow: none;
}
.faq3 .accordion .accordion-item button::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 20px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  z-index: 1;
  background: #4D32A5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq3 .accordion .accordion-item button::before {
    right: 5px;
    top: 10px;
  }
}
@media (max-width: 767px) {
  .faq3 .accordion .accordion-item button::before {
    display: none;
  }
}
.faq3 .accordion .accordion-item button::after {
  filter: brightness(0) invert(1);
  z-index: 3;
}
.faq3 .accordion .accordion-item .accordion-body {
  color: rgba(255, 255, 255, 0.9098039216);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  padding-left: 42px;
  margin-top: -20px;
  padding-bottom: 44px;
  padding-right: 80px;
  text-align: start;
}
@media (max-width: 767px) {
  .faq3 .accordion .accordion-item .accordion-body {
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
.faq3 .accordion .accordion-item.active {
  transition: all 0.4s;
  border-radius: 14px;
  background: #4D32A5;
}
.faq3 .accordion .accordion-item.active button {
  color: #fff;
}
.faq3 .accordion .accordion-item.active button::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 20px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  z-index: 1;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq3 .accordion .accordion-item.active button::before {
    right: 5px;
    top: 10px;
  }
}
.faq3 .accordion .accordion-item.active button::after {
  filter: brightness(0);
}
.faq3 .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: none;
}
.faq3 .sec-shape1 {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq3 .sec-shape1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .faq3 .sec-shape1 {
    display: none;
  }
}
.faq3 .sec-shape2 {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq3 .sec-shape2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .faq3 .sec-shape2 {
    display: none;
  }
}
.faq3 .sec-shape3 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq3 .sec-shape3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .faq3 .sec-shape3 {
    display: none;
  }
}
.faq3 .sec-shape4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -3;
}
.faq3 .sec-shape5 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.faq3 .sec-shape6 {
  position: absolute;
  bottom: 200px;
  left: 0;
  z-index: -3;
  transform: rotateX(180deg) rotateY(180deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq3 .sec-shape6 {
    display: none;
  }
}
@media (max-width: 767px) {
  .faq3 .sec-shape6 {
    display: none;
  }
}

.faq4 {
  position: relative;
}
.faq4 .accordion .accordion-item {
  border: none;
  border-radius: 14px;
  background: none;
  margin-top: 30px;
  transition: all 0.4s;
  background-color: #F5F5FD;
}
.faq4 .accordion .accordion-item button {
  border: none;
  background: none;
  padding: 32px;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  text-transform: capitalize;
  position: relative;
}
@media (max-width: 767px) {
  .faq4 .accordion .accordion-item button {
    font-size: 20px;
    line-height: 26px;
    padding: 20px;
  }
}
.faq4 .accordion .accordion-item button:focus {
  outline: none;
  box-shadow: none;
}
.faq4 .accordion .accordion-item button::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 20px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  z-index: 1;
  background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
}
@media (max-width: 767px) {
  .faq4 .accordion .accordion-item button::before {
    display: none;
  }
}
.faq4 .accordion .accordion-item button::after {
  filter: brightness(0) invert(1);
  z-index: 3;
}
.faq4 .accordion .accordion-item .accordion-body {
  color: rgba(255, 255, 255, 0.9098039216);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  padding-left: 42px;
  margin-top: -20px;
  padding-bottom: 44px;
  padding-right: 80px;
  text-align: start;
}
@media (max-width: 767px) {
  .faq4 .accordion .accordion-item .accordion-body {
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
.faq4 .accordion .accordion-item.active {
  transition: all 0.4s;
  border-radius: 14px;
  background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
}
.faq4 .accordion .accordion-item.active button {
  color: #fff;
}
.faq4 .accordion .accordion-item.active button::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 20px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  z-index: 1;
  background: #fff;
}
.faq4 .accordion .accordion-item.active button::after {
  filter: brightness(0);
}
.faq4 .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: none;
}
.faq4 .sec-shape1 {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq4 .sec-shape1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .faq4 .sec-shape1 {
    display: none;
  }
}
.faq4 .sec-shape2 {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq4 .sec-shape2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .faq4 .sec-shape2 {
    display: none;
  }
}
.faq4 .sec-shape3 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq4 .sec-shape3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .faq4 .sec-shape3 {
    display: none;
  }
}
.faq4 .sec-shape4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -3;
}
.faq4 .sec-shape5 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.faq4 .sec-shape6 {
  position: absolute;
  bottom: 200px;
  left: 0;
  z-index: -3;
  transform: rotateX(180deg) rotateY(180deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq4 .sec-shape6 {
    display: none;
  }
}
@media (max-width: 767px) {
  .faq4 .sec-shape6 {
    display: none;
  }
}

.service-faq {
  position: relative;
}
.service-faq .accordion .accordion-item {
  border: none;
  border-radius: 14px;
  background: none;
  margin-top: 30px;
  transition: all 0.4s;
  background-color: #fff;
}
.service-faq .accordion .accordion-item button {
  border: none;
  background: none;
  padding: 32px;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  text-transform: capitalize;
  position: relative;
}
@media (max-width: 767px) {
  .service-faq .accordion .accordion-item button {
    font-size: 20px;
    line-height: 26px;
    padding: 20px;
  }
}
.service-faq .accordion .accordion-item button:focus {
  outline: none;
  box-shadow: none;
}
.service-faq .accordion .accordion-item button::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 19px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  z-index: 1;
  background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
}
@media (max-width: 767px) {
  .service-faq .accordion .accordion-item button::before {
    display: none;
  }
}
.service-faq .accordion .accordion-item button::after {
  filter: brightness(0) invert(1);
  z-index: 3;
}
.service-faq .accordion .accordion-item .accordion-body {
  color: rgba(255, 255, 255, 0.9098039216);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  padding-left: 42px;
  margin-top: -20px;
  padding-bottom: 44px;
  padding-right: 80px;
  text-align: start;
}
@media (max-width: 767px) {
  .service-faq .accordion .accordion-item .accordion-body {
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
.service-faq .accordion .accordion-item.active {
  transition: all 0.4s;
  border-radius: 14px;
  background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
}
.service-faq .accordion .accordion-item.active button {
  color: #fff;
}
.service-faq .accordion .accordion-item.active button::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 19px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  z-index: 1;
  background: #fff;
}
.service-faq .accordion .accordion-item.active button::after {
  filter: brightness(0);
}
.service-faq .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: none;
}
.service-faq .sec-shape1 {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-faq .sec-shape1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-faq .sec-shape1 {
    display: none;
  }
}
.service-faq .sec-shape2 {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-faq .sec-shape2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-faq .sec-shape2 {
    display: none;
  }
}
.service-faq .sec-shape3 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-faq .sec-shape3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-faq .sec-shape3 {
    display: none;
  }
}
.service-faq .sec-shape4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -3;
}
.service-faq .sec-shape5 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.service-faq .sec-shape6 {
  position: absolute;
  bottom: 200px;
  left: 0;
  z-index: -3;
  transform: rotateX(180deg) rotateY(180deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-faq .sec-shape6 {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-faq .sec-shape6 {
    display: none;
  }
}

.details-accodion {
  position: relative;
}
.details-accodion .accordion .accordion-item {
  border: none;
  border-radius: 14px;
  background: none;
  margin-top: 30px;
  transition: all 0.4s;
  background-color: #F5F5FD;
}
.details-accodion .accordion .accordion-item button {
  border: none;
  background: none;
  padding: 24px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  text-transform: capitalize;
  position: relative;
}
@media (max-width: 767px) {
  .details-accodion .accordion .accordion-item button {
    font-size: 20px;
    line-height: 26px;
    padding: 20px;
  }
}
.details-accodion .accordion .accordion-item button:focus {
  outline: none;
  box-shadow: none;
}
.details-accodion .accordion .accordion-item button::before {
  content: "";
  position: absolute;
  right: 23px;
  top: 22px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  z-index: 1;
  background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
}
@media (max-width: 767px) {
  .details-accodion .accordion .accordion-item button::before {
    display: none;
  }
}
.details-accodion .accordion .accordion-item button::after {
  filter: brightness(0) invert(1);
  z-index: 3;
}
.details-accodion .accordion .accordion-item .accordion-body {
  color: rgba(255, 255, 255, 0.9098039216);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  padding-left: 24px;
  margin-top: -20px;
  padding-bottom: 44px;
  padding-right: 80px;
  text-align: start;
}
@media (max-width: 767px) {
  .details-accodion .accordion .accordion-item .accordion-body {
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
.details-accodion .accordion .accordion-item.active {
  transition: all 0.4s;
  border-radius: 14px;
  background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
}
.details-accodion .accordion .accordion-item.active button {
  color: #fff;
}
.details-accodion .accordion .accordion-item.active button::before {
  content: "";
  position: absolute;
  right: 23px;
  top: 22px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  z-index: 1;
  background: #fff;
}
.details-accodion .accordion .accordion-item.active button::after {
  filter: brightness(0);
}
.details-accodion .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: none;
}
.details-accodion .sec-shape1 {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .details-accodion .sec-shape1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .details-accodion .sec-shape1 {
    display: none;
  }
}
.details-accodion .sec-shape2 {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .details-accodion .sec-shape2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .details-accodion .sec-shape2 {
    display: none;
  }
}
.details-accodion .sec-shape3 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .details-accodion .sec-shape3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .details-accodion .sec-shape3 {
    display: none;
  }
}
.details-accodion .sec-shape4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -3;
}
.details-accodion .sec-shape5 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.details-accodion .sec-shape6 {
  position: absolute;
  bottom: 200px;
  left: 0;
  z-index: -3;
  transform: rotateX(180deg) rotateY(180deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .details-accodion .sec-shape6 {
    display: none;
  }
}
@media (max-width: 767px) {
  .details-accodion .sec-shape6 {
    display: none;
  }
}

.blog-details-area .side-all {
  position: sticky;
  top: 100px;
}

.faq-contact .heading1 {
  padding-right: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-contact .heading1 {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .faq-contact .heading1 {
    padding-right: 0;
  }
}
.faq-contact .faq-contact-boxs .single-box {
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: var(--SEO-Marketing-Gray-Color, #fff);
  padding: 24px;
  margin-top: 30px;
  transition: all 0.4s;
}
.faq-contact .faq-contact-boxs .single-box:hover {
  transform: translateY(-10px);
  transition: all 0.4s;
}
.faq-contact .faq-contact-boxs .single-box .icon {
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  margin-right: 16px;
}
.faq-contact .faq-contact-boxs .single-box .heading h6 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  text-transform: uppercase;
}
.faq-contact .faq-contact-boxs .single-box .heading a {
  display: inline-block;
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  padding-top: 6px;
}
.faq-contact .faq-contact-form {
  border-radius: 8px;
  background: #FFF;
  padding: 32px 28px;
}
.faq-contact .faq-contact-form h4 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
}
.faq-contact .faq-contact-form .single-input {
  margin-top: 20px;
}
.faq-contact .faq-contact-form .single-input input, .faq-contact .faq-contact-form .single-input textarea {
  border-radius: 4px;
  border: none;
  background-color: #F5F5FD;
  padding: 16px;
  width: 100%;
}
.faq-contact .faq-contact-form .single-input input:focus, .faq-contact .faq-contact-form .single-input textarea:focus {
  outline: none;
}
.faq-contact .faq-contact-form .button button {
  width: 100%;
}
.faq-contact.contact-page {
  background: none;
}
.faq-contact.contact-page .faq-contact-boxs .single-box {
  background: #F5F5FD;
}
.faq-contact.contact-page .faq-contact-form {
  background-color: #F5F5FD;
}
.faq-contact.contact-page .faq-contact-form .single-input input, .faq-contact.contact-page .faq-contact-form .single-input textarea {
  background: #fff;
}

/*
::::::::::::::::::::::::::
 FAQ AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 OTHERS AREA CSS
::::::::::::::::::::::::::
*/
.error-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.error-area .shape {
  position: absolute;
  top: 60px;
  right: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-area .shape {
    display: none;
  }
}
@media (max-width: 767px) {
  .error-area .shape {
    display: none;
  }
}

/*
::::::::::::::::::::::::::
 OTHERS AREA CSS
::::::::::::::::::::::::::
*/
/*
 ::::::::::::::::::::::::::
  CONTACT AREA CSS
 ::::::::::::::::::::::::::
 */
.contact1 {
  position: relative;
}
.contact1 .form-area-all {
  position: relative;
  margin-top: 30px;
}
.contact1 .form-area-all .form-content {
  border-radius: 50px 8px;
  background: #FFF;
  box-shadow: 1px -9px 40px 0px rgba(0, 0, 0, 0.04);
  padding: 40px 32px;
}
.contact1 .form-area-all .form-content .single-input {
  margin-top: 30px;
  position: relative;
  text-align: start;
}
.contact1 .form-area-all .form-content .single-input input {
  background: #F5F5FD;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  width: 100%;
}
.contact1 .form-area-all .form-content .single-input input:focus {
  outline: none;
}
.contact1 .form-area-all .form-content .single-input input::-moz-placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
}
.contact1 .form-area-all .form-content .single-input input::placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
}
.contact1 .form-area-all .form-content .single-input .icon {
  display: inline-block;
  position: absolute;
  left: 16px;
  bottom: 19px;
}
.contact1 .form-area-all .form-content .single-input label {
  text-align: start;
  color: var(--SEO-Marketing-Text-Color, rgba(11, 3, 20, 0.9098039216));
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  margin-bottom: 16px;
}
.contact1 .form-area-all .form-content .form-btn {
  margin-top: 32px;
}
.contact1 .form-area-all .form-content .form-btn button {
  width: 100%;
}
.contact1 .form-area-all .shape1 {
  position: absolute;
  bottom: 100px;
  left: -100px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact1 .form-area-all .shape1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .contact1 .form-area-all .shape1 {
    display: none;
  }
}
.contact1 .form-area-all .shape2 {
  position: absolute;
  top: 50px;
  right: -100px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact1 .form-area-all .shape2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .contact1 .form-area-all .shape2 {
    display: none;
  }
}
.contact1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60%;
  width: 100%;
  z-index: -3;
  background-image: url(../img/bg/contact1-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact1 .contact1-box {
  margin-top: 60px;
  text-align: center;
  padding: 36px 54px;
  border-radius: 50px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(17px);
          backdrop-filter: blur(17px);
  transition: all 0.4s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact1 .contact1-box {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .contact1 .contact1-box {
    margin-top: 40px;
  }
}
.contact1 .contact1-box .icon {
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  margin: auto;
}
.contact1 .contact1-box .heading h4 {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  margin-top: 20px;
}
.contact1 .contact1-box .heading a {
  display: inline-block;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  margin-top: 14px;
}
.contact1 .contact1-box:hover {
  transition: all 0.4s;
  border-radius: 8px 50px;
}
.contact1.contact4 .form-content {
  border-radius: 8px !important;
}
.contact1.contact4 .contact1-box {
  border-radius: 8px !important;
}
.contact1.contact4 .contact1-box:hover {
  transform: translateY(-10px);
  transition: all 0.4s;
}

.contact-map-page iframe {
  width: 100%;
  border-radius: 8px;
}

/*
 ::::::::::::::::::::::::::
  CONTACT AREA CSS
 ::::::::::::::::::::::::::
 */
/*
::::::::::::::::::::::::::
 HERO AREA CSS
::::::::::::::::::::::::::
*/
.hero1 {
  display: flex;
  align-items: center;
  min-height: 860px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero1 .main-heading {
  padding-top: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1 .main-heading {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .hero1 .main-heading {
    padding-top: 150px;
  }
}
.hero1 .main-heading span.span {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  display: inline-block;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 12px 5px 8px;
  margin-bottom: 16px;
}
.hero1 .main-heading span.span img {
  transform: translateY(-2px);
  margin-right: 3px;
}
.hero1 .main-heading h1 {
  color: #FFF;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px; /* 109.375% */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1 .main-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .hero1 .main-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
.hero1 .main-heading p {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
  padding-top: 16px;
}
.hero1 .main-heading .has-teg {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  padding-top: 24px;
}
.hero1 .form-area {
  position: relative;
  margin-top: 28px;
}
.hero1 .form-area input {
  padding: 20px 22px 19px 22px;
  border-radius: 68px;
  border: none;
  width: 100%;
}
.hero1 .form-area input:focus {
  outline: none;
}
.hero1 .form-area input::-moz-placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
}
.hero1 .form-area input::placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
}
.hero1 .form-area .form-btn {
  position: absolute;
  top: 4px;
  right: 4px;
}
.hero1 .main-images {
  position: relative;
  height: 650px;
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1 .main-images {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .hero1 .main-images {
    margin-bottom: 100px;
    height: 450px;
  }
}
@media (max-width: 767px) {
  .hero1 .main-images .image1 {
    transform: translateY(70px);
  }
}
.hero1 .main-images .image2 {
  position: absolute;
  bottom: -26px;
  right: 30px;
}
.hero1 .main-images .shape1 {
  position: absolute;
  left: 100px;
  top: 150px;
}
@media (max-width: 767px) {
  .hero1 .main-images .shape1 {
    top: 60px;
  }
}
.hero1 .main-images .shape2 {
  position: absolute;
  right: -100px;
  top: 180px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero1 .main-images .shape2 {
    right: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1 .main-images .shape2 {
    right: 0;
  }
}
@media (max-width: 767px) {
  .hero1 .main-images .shape2 {
    right: auto;
    left: 0;
  }
}
.hero1 .main-images .bottom-shape {
  position: absolute;
  bottom: -70px;
  right: 200px;
}
@media (max-width: 767px) {
  .hero1 .main-images .bottom-shape {
    right: 0;
  }
}
.hero1 .main-images .shape3 {
  position: absolute;
  right: -100px;
  bottom: 80px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero1 .main-images .shape3 {
    right: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1 .main-images .shape3 {
    right: 0;
  }
}
@media (max-width: 767px) {
  .hero1 .main-images .shape3 {
    right: 0;
  }
}
.hero1 .main-images .shapes {
  display: flex;
  align-items: center;
  border-radius: 60px;
  background: #FFF;
  padding: 8px 18px 8px 12px;
}
.hero1 .main-images .shapes .icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  border-radius: 50%;
  line-height: 54px;
  text-align: center;
}
.hero1 .main-images .shapes .pera {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  padding-left: 10px;
}

.hero2 {
  position: relative;
  min-height: 748px;
  display: flex;
  align-items: center;
}
.hero2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #F5F5FD;
  z-index: -2;
}
.hero2 .main-heading {
  padding-top: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero2 .main-heading {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .hero2 .main-heading {
    padding-top: 150px;
  }
}
.hero2 .main-heading .title {
  margin-bottom: 16px;
  background-color: #FFF0EC;
  border-radius: 42px;
  padding: 5px 10px;
  display: inline-block;
}
.hero2 .main-heading .title span.span {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero2 .main-heading .title span.span img {
  margin-top: -4px;
}
.hero2 .main-heading h1 {
  color: #111;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 114.286% */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero2 .main-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .hero2 .main-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
.hero2 .main-heading p {
  color: #111;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
}
.hero2 .main-heading .has-teg {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  padding-top: 24px;
}
.hero2 .form-area {
  position: relative;
  margin-top: 32px;
  margin-right: 160px;
}
@media (max-width: 767px) {
  .hero2 .form-area {
    margin-right: 0px;
  }
}
.hero2 .form-area input {
  padding: 20px 22px 19px 22px;
  border-radius: 68px;
  border: none;
  width: 100%;
}
.hero2 .form-area input:focus {
  outline: none;
}
.hero2 .form-area input::-moz-placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
}
.hero2 .form-area input::placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
}
.hero2 .form-area .form-btn {
  position: absolute;
  top: 4px;
  right: 4px;
}
.hero2 .image1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.hero2 .image1 img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero2 .image1 {
    height: 400px;
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .hero2 .image1 {
    height: 400px;
    top: auto;
    bottom: 0;
  }
}
.hero2 .image2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.hero2 .main-images {
  height: 600px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero2 .main-images {
    height: 420px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .hero2 .main-images {
    height: 420px;
    margin-bottom: 60px;
  }
}
.hero2 .main-images .shape1 {
  width: 300px;
  position: absolute;
  top: 120px;
  right: -100px;
  z-index: 2;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero2 .main-images .shape1 {
    right: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero2 .main-images .shape1 {
    right: 0;
    width: 200px;
  }
}
@media (max-width: 767px) {
  .hero2 .main-images .shape1 {
    right: 0;
    width: 150px;
  }
}
.hero2 .main-images .shape2 {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 480px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero2 .main-images .shape2 {
    width: 300px;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .hero2 .main-images .shape2 {
    width: 200px;
    bottom: 0;
  }
}
.hero2 .main-images .shape3 {
  position: absolute;
  top: 100px;
  left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero2 .main-images .shape3 {
    top: 0;
  }
}
@media (max-width: 767px) {
  .hero2 .main-images .shape3 {
    top: 0;
  }
}

.hero3 {
  position: relative;
  min-height: 748px;
  display: flex;
  align-items: center;
}
.hero3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #F5F5FD;
  z-index: -2;
}
.hero3 .main-heading {
  padding-top: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero3 .main-heading {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .hero3 .main-heading {
    padding-top: 150px;
  }
}
.hero3 .main-heading .title {
  margin-bottom: 16px;
  border-radius: 42px;
  background: rgba(77, 50, 165, 0.1);
  padding: 5px 10px;
  display: inline-block;
}
.hero3 .main-heading .title span.span {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  color: #4D32A5;
}
.hero3 .main-heading .title span.span img {
  margin-top: -4px;
  margin-right: 3px;
}
.hero3 .main-heading h1 {
  color: #111;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 114.286% */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero3 .main-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .hero3 .main-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
.hero3 .main-heading p {
  color: #111;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
}
.hero3 .main-heading .has-teg {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  padding-top: 24px;
}
.hero3 .form-area {
  position: relative;
  margin-top: 32px;
  margin-right: 160px;
}
@media (max-width: 767px) {
  .hero3 .form-area {
    margin-right: 0px;
  }
}
.hero3 .form-area input {
  padding: 20px 22px 19px 22px;
  border-radius: 68px;
  border: none;
  width: 100%;
}
.hero3 .form-area input:focus {
  outline: none;
}
.hero3 .form-area input::-moz-placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}
.hero3 .form-area input::placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}
.hero3 .form-area .form-btn {
  position: absolute;
  top: 4px;
  right: 4px;
}
.hero3 .image1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero3 .image1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero3 .image1 {
    display: none;
  }
}
.hero3 .image1 img {
  width: 100%;
}
.hero3 .main-images {
  height: 600px;
  position: relative;
}
@media (max-width: 767px) {
  .hero3 .main-images {
    height: 400px;
  }
}
.hero3 .main-images .main-img {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero3 .main-images .main-img {
    display: block;
  }
}
@media (max-width: 767px) {
  .hero3 .main-images .main-img {
    display: block;
  }
}
.hero3 .main-images .shape1 {
  width: 300px;
  position: absolute;
  top: 120px;
  right: 110px;
  z-index: 2;
}
.hero3 .main-images .shape2 {
  position: absolute;
  bottom: 0px;
  left: 100px;
  width: 480px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero3 .main-images .shape2 {
    bottom: 60px;
  }
}
@media (max-width: 767px) {
  .hero3 .main-images .shape2 {
    bottom: 60px;
  }
}

.hero4 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 1000px;
  position: relative;
}
@media (max-width: 767px) {
  .hero4 {
    min-height: 950px;
  }
}
.hero4 .main-heading-area {
  position: relative;
  padding-top: 220px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero4 .main-heading-area {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .hero4 .main-heading-area {
    padding-top: 150px;
  }
}
.hero4 .main-heading-area span.span {
  display: inline-block;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.1);
  padding: 7px 10px 4px 10px;
  margin-bottom: 16px;
}
.hero4 .main-heading-area span.span img {
  transform: translateY(-2px);
  margin-right: 3px;
}
.hero4 .main-heading-area h1 {
  color: #FFF;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 114.286% */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero4 .main-heading-area h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .hero4 .main-heading-area h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
.hero4 .main-heading-area .form-area {
  margin: 30px 40px 0px 40px;
  position: relative;
}
@media (max-width: 767px) {
  .hero4 .main-heading-area .form-area {
    margin: 30px 0px 0px 0px;
  }
}
.hero4 .main-heading-area .form-area input {
  width: 100%;
  padding: 19px;
  border-radius: 111px;
  border: none;
}
.hero4 .main-heading-area .form-area input:focus {
  outline: none;
}
.hero4 .main-heading-area .form-area .form-btn {
  position: absolute;
  top: 4px;
  right: 4px;
}
.hero4 .shape1 {
  position: absolute;
  left: -150px;
  top: 200px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero4 .shape1 {
    left: -50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero4 .shape1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero4 .shape1 {
    display: none;
  }
}
.hero4 .shape2 {
  position: absolute;
  right: -150px;
  top: 200px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero4 .shape2 {
    right: -50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero4 .shape2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero4 .shape2 {
    display: none;
  }
}
.hero4 .shape3 {
  position: absolute;
  bottom: -450px;
  left: -100px;
}
.hero4 .shape4 {
  position: absolute;
  bottom: -450px;
  right: -100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero4 .shape4 {
    right: 0;
  }
}
@media (max-width: 767px) {
  .hero4 .shape4 {
    right: 0;
  }
}
.hero4 .shape5 {
  position: absolute;
  left: 280px;
  top: 450px;
  transform: rotate(300deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero4 .shape5 {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero4 .shape5 {
    display: none;
  }
}
.hero4 .main-image {
  position: absolute;
  bottom: -140px;
  left: 50%;
  margin-left: -270px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero4 .main-image {
    bottom: 50px;
    height: 480px;
  }
}
@media (max-width: 767px) {
  .hero4 .main-image {
    bottom: 50px;
    height: 400px;
    margin-left: -200px;
  }
}

.hero5 {
  position: relative;
  min-height: 868px;
  display: flex;
  align-items: center;
}
.hero5::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/hero5-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.hero5 .main-heading {
  padding-top: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero5 .main-heading {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .hero5 .main-heading {
    padding-top: 150px;
  }
}
.hero5 .main-heading .title {
  margin-bottom: 16px;
  background-color: #fff;
  border-radius: 42px;
  padding: 4px 10px;
  display: inline-block;
}
.hero5 .main-heading .title span.span {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero5 .main-heading .title span.span img {
  margin-top: -3px;
  margin-right: 2px;
}
.hero5 .main-heading h1 {
  color: #111;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 114.286% */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero5 .main-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .hero5 .main-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
.hero5 .main-heading p {
  color: #111;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
}
.hero5 .main-heading .has-teg {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  padding-top: 24px;
}
.hero5 .form-area {
  position: relative;
  margin-top: 32px;
  margin-right: 160px;
}
@media (max-width: 767px) {
  .hero5 .form-area {
    margin-right: 0;
  }
}
.hero5 .form-area input {
  padding: 20px 22px 19px 22px;
  border-radius: 68px;
  border: none;
  width: 100%;
}
.hero5 .form-area input:focus {
  outline: none;
}
.hero5 .form-area input::-moz-placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
}
.hero5 .form-area input::placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
}
.hero5 .form-area .form-btn {
  position: absolute;
  top: 4px;
  right: 4px;
}
.hero5 .main-images {
  height: 600px;
  position: relative;
  text-align: center;
  margin-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero5 .main-images {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .hero5 .main-images {
    height: 480px;
  }
}
.hero5 .main-images .image1 {
  position: absolute;
  top: 70px;
  right: 70px;
}
@media (max-width: 767px) {
  .hero5 .main-images .image1 {
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
}
.hero5 .main-images .image2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.hero5 .main-images .shape1 {
  position: absolute;
  top: -10px;
  left: -10px;
}
@media (max-width: 767px) {
  .hero5 .main-images .shape1 {
    top: -40px;
  }
}
.hero5 .main-images .shape2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
}
@media (max-width: 767px) {
  .hero5 .main-images .shape2 {
    bottom: 20px;
    right: 0;
  }
}
.hero5 .main-images .shape3 {
  position: absolute;
  left: 50%;
  top: 50%;
}
@media (max-width: 767px) {
  .hero5 .main-images .shape3 {
    top: 40%;
  }
}

.common-hero {
  min-height: 460px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.common-hero .heading {
  padding-top: 115px;
}
.common-hero h1 {
  color: #FFF;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 114.286% */
  text-transform: capitalize;
  padding-top: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .common-hero h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .common-hero h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
.common-hero span.title {
  display: inline-block;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.1);
  padding: 9px 12px 6px 12px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
}
.common-hero span.title img {
  transform: translateY(-2px);
  margin-right: 3px;
}
.common-hero span.title .arrow {
  padding: 0px 4px;
}
.common-hero span.title a {
  display: inline-block;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
}

/*
::::::::::::::::::::::::::
 HERO AREA CSS
::::::::::::::::::::::::::
*/
/*
 ::::::::::::::::::::::::::
  PRICING AREA CSS
 ::::::::::::::::::::::::::
 */
.pricing1 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.pricing1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/pricing1-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -6;
  transition: all 0.4s;
}
.pricing1 .pricing-box {
  position: relative;
  padding: 32px;
  margin-top: 30px;
  transition: all 0.4s;
  overflow: hidden;
}
.pricing1 .pricing-box .best-tag {
  position: absolute;
  top: -39px;
  right: -39px;
}
.pricing1 .pricing-box .button {
  margin-top: 24px;
}
.pricing1 .pricing-box .button .theme-btn1 {
  display: inline-block;
  border-radius: 80px;
  background: linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%);
  padding: 12px 12px 12px 18px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: none;
}
.pricing1 .pricing-box .button .theme-btn1::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 80px;
  background: #fff;
  z-index: -1;
  transition: all 0.4s;
}
.pricing1 .pricing-box .button .theme-btn1 span {
  display: inline-block;
  height: 32px;
  width: 32px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 16px;
  color: #FA7D3C;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.pricing1 .pricing-box .button .theme-btn1:hover {
  color: #FB3F52;
  transition: all 0.4s;
}
.pricing1 .pricing-box .button .theme-btn1:hover::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing1 .pricing-box .button .theme-btn1:hover span {
  background-color: #FA7D3C;
  color: #fff;
  transition: all 0.4s;
}
.pricing1 .pricing-box .head-text {
  margin-top: 10px;
}
.pricing1 .pricing-box .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.pricing1 .pricing-box .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.pricing1 .pricing-box h6 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing1 .pricing-box p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing1 .pricing-box .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
}
.pricing1 .pricing-box .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
}
.pricing1 .pricing-box .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing1 .pricing-box .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
}
.pricing1 .pricing-box .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(0.4);
  opacity: 0;
}
.pricing1 .pricing-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50px 8px;
  background-image: url(../img/bg/pricing1-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing1 .pricing-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 110%;
  border-radius: 264px;
  background-image: url(../img/bg/pricing1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.pricing1 .pricing-box:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 50px;
  background-image: url(../img/bg/pricing1-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing1 .pricing-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 50px !important;
  background-image: url(../img/bg/pricing1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.pricing1 .pricing-box:hover {
  transition: all 0.4s;
}
.pricing1 .pricing-box:hover .head-text {
  margin-top: 10px;
}
.pricing1 .pricing-box:hover .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.pricing1 .pricing-box:hover .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.pricing1 .pricing-box:hover h6 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing1 .pricing-box:hover p {
  color: var(--SEO-Marketing-Paragraph-Color, rgba(255, 255, 255, 0.8352941176));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing1 .pricing-box:hover .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  transition: all 0.4s;
}
.pricing1 .pricing-box:hover .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #FB3F52;
  margin-right: 8px;
  transition: all 0.4s;
}
.pricing1 .pricing-box:hover .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing1 .pricing-box:hover .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
}
.pricing1 .pricing-box:hover .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(1);
  opacity: 1;
}
.pricing1 .pricing-box:hover .button {
  margin-top: 24px;
}
.pricing1 .pricing-box:hover .button .theme-btn1 {
  color: #FB3F52;
  transition: all 0.4s;
}
.pricing1 .pricing-box:hover .button .theme-btn1::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing1 .pricing-box:hover .button .theme-btn1 span {
  background-color: #FA7D3C;
  color: #fff;
  transition: all 0.4s;
}
.pricing1 .pricing-box.active {
  transition: all 0.4s;
}
.pricing1 .pricing-box.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 50px;
  background-image: url(../img/bg/pricing1-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing1 .pricing-box.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 50px !important;
  background-image: url(../img/bg/pricing1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.pricing1 .pricing-box.active .head-text {
  margin-top: 10px;
}
.pricing1 .pricing-box.active .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.pricing1 .pricing-box.active .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.pricing1 .pricing-box.active h6 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing1 .pricing-box.active p {
  color: var(--SEO-Marketing-Paragraph-Color, rgba(255, 255, 255, 0.8352941176));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing1 .pricing-box.active .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  transition: all 0.4s;
}
.pricing1 .pricing-box.active .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #FB3F52;
  margin-right: 8px;
  transition: all 0.4s;
}
.pricing1 .pricing-box.active .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing1 .pricing-box.active .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
}
.pricing1 .pricing-box.active .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(1);
  opacity: 1;
}
.pricing1 .pricing-box.active .button {
  margin-top: 24px;
}
.pricing1 .pricing-box.active .button .theme-btn1 {
  color: #FB3F52;
  transition: all 0.4s;
}
.pricing1 .pricing-box.active .button .theme-btn1::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing1 .pricing-box.active .button .theme-btn1 span {
  background-color: #FA7D3C;
  color: #fff;
  transition: all 0.4s;
}

.pricing2 {
  position: relative;
}
.pricing2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/pricing2-bg.png);
  background-size: cover;
  background-position: center unset;
  background-repeat: no-repeat;
  z-index: -2;
}
.pricing2 .pricing2-box {
  margin-top: 30px;
  border-radius: 8px;
  background: var(--SEO-Marketing-Gray-Color, #F5F5FD);
  padding: 32px;
  transition: all 0.4s;
}
.pricing2 .pricing2-box:hover {
  transform: translateY(-10px);
  transition: all 0.4s;
}
.pricing2 .pricing2-box h6 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
}
.pricing2 .pricing2-box h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  padding: 12px 0px;
}
.pricing2 .pricing2-box h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
}
.pricing2 .pricing2-box p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.pricing2 .pricing2-box .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-top: 18px;
}
.pricing2 .pricing2-box .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
  background: #ED3240;
}

.pricing3 .pricing-box {
  position: relative;
  padding: 32px;
  margin-top: 30px;
  transition: all 0.4s;
  overflow: hidden;
}
.pricing3 .pricing-box .best-tag {
  position: absolute;
  top: -39px;
  right: -39px;
}
.pricing3 .pricing-box .button {
  margin-top: 24px;
}
.pricing3 .pricing-box .button .theme-btn1 {
  display: inline-block;
  border-radius: 80px;
  background: #4D32A5;
  padding: 12px 12px 12px 18px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: none;
}
.pricing3 .pricing-box .button .theme-btn1::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 80px;
  background: #fff;
  z-index: -1;
  transition: all 0.4s;
}
.pricing3 .pricing-box .button .theme-btn1 span {
  display: inline-block;
  height: 32px;
  width: 32px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 16px;
  color: #4D32A5;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.pricing3 .pricing-box .button .theme-btn1:hover {
  color: #4D32A5;
  transition: all 0.4s;
}
.pricing3 .pricing-box .button .theme-btn1:hover::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing3 .pricing-box .button .theme-btn1:hover span {
  background-color: #4D32A5;
  color: #fff;
  transition: all 0.4s;
}
.pricing3 .pricing-box .head-text {
  margin-top: 10px;
}
.pricing3 .pricing-box .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.pricing3 .pricing-box .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.pricing3 .pricing-box h6 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing3 .pricing-box p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing3 .pricing-box .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
}
.pricing3 .pricing-box .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
}
.pricing3 .pricing-box .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing3 .pricing-box .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #4D32A5;
}
.pricing3 .pricing-box .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(0.4);
  opacity: 0;
}
.pricing3 .pricing-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px 5px;
  background-image: url(../img/bg/pricing3-box1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing3 .pricing-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 110%;
  border-radius: 264px;
  background-image: url(../img/bg/pricing3-box2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.pricing3 .pricing-box:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px 5px;
  background-image: url(../img/bg/pricing3-box1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing3 .pricing-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px 5px !important;
  background-image: url(../img/bg/pricing3-box2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.pricing3 .pricing-box:hover {
  transition: all 0.4s;
}
.pricing3 .pricing-box:hover .head-text {
  margin-top: 10px;
}
.pricing3 .pricing-box:hover .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.pricing3 .pricing-box:hover .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.pricing3 .pricing-box:hover h6 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing3 .pricing-box:hover p {
  color: var(--SEO-Marketing-Paragraph-Color, rgba(255, 255, 255, 0.8352941176));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing3 .pricing-box:hover .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  transition: all 0.4s;
}
.pricing3 .pricing-box:hover .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #4D32A5;
  margin-right: 8px;
  transition: all 0.4s;
}
.pricing3 .pricing-box:hover .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing3 .pricing-box:hover .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #4D32A5;
}
.pricing3 .pricing-box:hover .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(1);
  opacity: 1;
}
.pricing3 .pricing-box:hover .button {
  margin-top: 24px;
}
.pricing3 .pricing-box:hover .button .theme-btn1 {
  color: #4D32A5;
  transition: all 0.4s;
}
.pricing3 .pricing-box:hover .button .theme-btn1::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing3 .pricing-box:hover .button .theme-btn1 span {
  background-color: #4D32A5;
  color: #fff;
  transition: all 0.4s;
}
.pricing3 .pricing-box.active {
  transition: all 0.4s;
}
.pricing3 .pricing-box.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 50px;
  background-image: url(../img/bg/pricing3-box1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing3 .pricing-box.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px 5px !important;
  background-image: url(../img/bg/pricing3-box2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.pricing3 .pricing-box.active .head-text {
  margin-top: 10px;
}
.pricing3 .pricing-box.active .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
  transition: all 0.4s;
}
.pricing3 .pricing-box.active .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  transition: all 0.4s;
}
.pricing3 .pricing-box.active h6 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing3 .pricing-box.active p {
  color: var(--SEO-Marketing-Paragraph-Color, rgba(255, 255, 255, 0.8352941176));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing3 .pricing-box.active .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  transition: all 0.4s;
}
.pricing3 .pricing-box.active .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #4D32A5;
  margin-right: 8px;
  transition: all 0.4s;
}
.pricing3 .pricing-box.active .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing3 .pricing-box.active .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #4D32A5;
}
.pricing3 .pricing-box.active .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(1);
  opacity: 1;
}
.pricing3 .pricing-box.active .button {
  margin-top: 24px;
}
.pricing3 .pricing-box.active .button .theme-btn1 {
  color: #4D32A5;
  transition: all 0.4s;
}
.pricing3 .pricing-box.active .button .theme-btn1::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing3 .pricing-box.active .button .theme-btn1 span {
  background-color: #4D32A5;
  color: #fff;
  transition: all 0.4s;
}

.pricing5 {
  position: relative;
}
.pricing5::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/pricing5-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -6;
  transition: all 0.4s;
}
.pricing5 .pricing-box {
  position: relative;
  padding: 32px;
  margin-top: 30px;
  transition: all 0.4s;
  overflow: hidden;
}
.pricing5 .pricing-box .best-tag {
  position: absolute;
  top: -39px;
  right: -39px;
}
.pricing5 .pricing-box .button {
  margin-top: 24px;
}
.pricing5 .pricing-box .button .theme-btn3 {
  display: inline-block;
  border-radius: 80px;
  padding: 12px 12px 12px 18px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: none;
}
.pricing5 .pricing-box .button .theme-btn3::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 80px;
  background: #fff !important;
  z-index: -1;
  transition: all 0.4s;
}
.pricing5 .pricing-box .button .theme-btn3 span {
  display: inline-block;
  height: 32px;
  width: 32px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 16px;
  color: #5700FC;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.pricing5 .pricing-box .button .theme-btn3:hover {
  color: #5700FC;
  transition: all 0.4s;
}
.pricing5 .pricing-box .button .theme-btn3:hover::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing5 .pricing-box .button .theme-btn3:hover span {
  background-color: #5700FC;
  color: #fff;
  transition: all 0.4s;
}
.pricing5 .pricing-box .head-text {
  margin-top: 10px;
}
.pricing5 .pricing-box .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.pricing5 .pricing-box .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.pricing5 .pricing-box h6 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing5 .pricing-box p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing5 .pricing-box .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
}
.pricing5 .pricing-box .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
}
.pricing5 .pricing-box .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing5 .pricing-box .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
}
.pricing5 .pricing-box .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(0.4);
  opacity: 0;
}
.pricing5 .pricing-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px 5px;
  background-image: url(../img/bg/pricing5-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing5 .pricing-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 110%;
  border-radius: 264px;
  background-image: url(../img/bg/pricing5-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.pricing5 .pricing-box:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px 5px;
  background-image: url(../img/bg/pricing5-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing5 .pricing-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px 5px !important;
  background-image: url(../img/bg/pricing5-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.pricing5 .pricing-box:hover {
  transition: all 0.4s;
}
.pricing5 .pricing-box:hover .head-text {
  margin-top: 10px;
}
.pricing5 .pricing-box:hover .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.pricing5 .pricing-box:hover .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.pricing5 .pricing-box:hover h6 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing5 .pricing-box:hover p {
  color: var(--SEO-Marketing-Paragraph-Color, rgba(255, 255, 255, 0.8352941176));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing5 .pricing-box:hover .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  transition: all 0.4s;
}
.pricing5 .pricing-box:hover .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #4D32A5;
  margin-right: 8px;
  transition: all 0.4s;
}
.pricing5 .pricing-box:hover .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing5 .pricing-box:hover .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
}
.pricing5 .pricing-box:hover .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(1);
  opacity: 1;
}
.pricing5 .pricing-box:hover .button {
  margin-top: 24px;
}
.pricing5 .pricing-box:hover .button .theme-btn3 {
  color: #5700FC;
  transition: all 0.4s;
}
.pricing5 .pricing-box:hover .button .theme-btn3::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing5 .pricing-box:hover .button .theme-btn3 span {
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
  color: #fff;
  transition: all 0.4s;
}
.pricing5 .pricing-box.active {
  transition: all 0.4s;
}
.pricing5 .pricing-box.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px 50px;
  background-image: url(../img/bg/pricing3-box1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing5 .pricing-box.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px 5px !important;
  background-image: url(../img/bg/pricing5-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.pricing5 .pricing-box.active .head-text {
  margin-top: 10px;
}
.pricing5 .pricing-box.active .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
  transition: all 0.4s;
}
.pricing5 .pricing-box.active .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  transition: all 0.4s;
}
.pricing5 .pricing-box.active h6 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing5 .pricing-box.active p {
  color: var(--SEO-Marketing-Paragraph-Color, rgba(255, 255, 255, 0.8352941176));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing5 .pricing-box.active .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  transition: all 0.4s;
}
.pricing5 .pricing-box.active .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #4D32A5;
  margin-right: 8px;
  transition: all 0.4s;
}
.pricing5 .pricing-box.active .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing5 .pricing-box.active .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
}
.pricing5 .pricing-box.active .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(1);
  opacity: 1;
}
.pricing5 .pricing-box.active .button {
  margin-top: 24px;
}
.pricing5 .pricing-box.active .button .theme-btn3 {
  color: #5700FC;
  transition: all 0.4s;
}
.pricing5 .pricing-box.active .button .theme-btn3::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing5 .pricing-box.active .button .theme-btn3 span {
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
  color: #fff;
  transition: all 0.4s;
}

.pricing-page {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.pricing-page .pricing-box {
  position: relative;
  padding: 32px;
  margin-top: 30px;
  transition: all 0.4s;
  overflow: hidden;
}
.pricing-page .pricing-box .best-tag {
  position: absolute;
  top: -39px;
  right: -39px;
}
.pricing-page .pricing-box .button {
  margin-top: 24px;
}
.pricing-page .pricing-box .button .theme-btn1 {
  display: inline-block;
  border-radius: 80px;
  background: linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%);
  padding: 12px 12px 12px 18px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: none;
}
.pricing-page .pricing-box .button .theme-btn1::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 80px;
  background: #fff;
  z-index: -1;
  transition: all 0.4s;
}
.pricing-page .pricing-box .button .theme-btn1 span {
  display: inline-block;
  height: 32px;
  width: 32px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 16px;
  color: #FA7D3C;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.pricing-page .pricing-box .button .theme-btn1:hover {
  color: #FB3F52;
  transition: all 0.4s;
}
.pricing-page .pricing-box .button .theme-btn1:hover::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing-page .pricing-box .button .theme-btn1:hover span {
  background-color: #FA7D3C;
  color: #fff;
  transition: all 0.4s;
}
.pricing-page .pricing-box .head-text {
  margin-top: 10px;
}
.pricing-page .pricing-box .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.pricing-page .pricing-box .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.pricing-page .pricing-box h6 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing-page .pricing-box p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing-page .pricing-box .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
}
.pricing-page .pricing-box .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
}
.pricing-page .pricing-box .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing-page .pricing-box .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
}
.pricing-page .pricing-box .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(0.4);
  opacity: 0;
}
.pricing-page .pricing-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-image: url(../img/bg/pricing-page-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing-page .pricing-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 110%;
  border-radius: 264px;
  background-image: url(../img/bg/pricing1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.pricing-page .pricing-box:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-image: url(../img/bg/pricing-page-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing-page .pricing-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px !important;
  background-image: url(../img/bg/pricing1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.pricing-page .pricing-box:hover {
  transition: all 0.4s;
}
.pricing-page .pricing-box:hover .head-text {
  margin-top: 10px;
}
.pricing-page .pricing-box:hover .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.pricing-page .pricing-box:hover .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.pricing-page .pricing-box:hover h6 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing-page .pricing-box:hover p {
  color: var(--SEO-Marketing-Paragraph-Color, rgba(255, 255, 255, 0.8352941176));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing-page .pricing-box:hover .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  transition: all 0.4s;
}
.pricing-page .pricing-box:hover .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #FB3F52;
  margin-right: 8px;
  transition: all 0.4s;
}
.pricing-page .pricing-box:hover .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing-page .pricing-box:hover .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
}
.pricing-page .pricing-box:hover .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(1);
  opacity: 1;
}
.pricing-page .pricing-box:hover .button {
  margin-top: 24px;
}
.pricing-page .pricing-box:hover .button .theme-btn1 {
  color: #FB3F52;
  transition: all 0.4s;
}
.pricing-page .pricing-box:hover .button .theme-btn1::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing-page .pricing-box:hover .button .theme-btn1 span {
  background-color: #FA7D3C;
  color: #fff;
  transition: all 0.4s;
}
.pricing-page .pricing-box.active {
  transition: all 0.4s;
}
.pricing-page .pricing-box.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-image: url(../img/bg/pricing-page-box-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: all 0.4s;
}
.pricing-page .pricing-box.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px !important;
  background-image: url(../img/bg/pricing1-box-bg2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.pricing-page .pricing-box.active .head-text {
  margin-top: 10px;
}
.pricing-page .pricing-box.active .head-text h3 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
}
.pricing-page .pricing-box.active .head-text h3 span {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.pricing-page .pricing-box.active h6 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.pricing-page .pricing-box.active p {
  color: var(--SEO-Marketing-Paragraph-Color, rgba(255, 255, 255, 0.8352941176));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: all 0.4s;
  padding: 16px 0px 28px 0px;
}
.pricing-page .pricing-box.active .pricing-list li {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  transition: all 0.4s;
}
.pricing-page .pricing-box.active .pricing-list li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  color: #FB3F52;
  margin-right: 8px;
  transition: all 0.4s;
}
.pricing-page .pricing-box.active .pricing-list li span i {
  position: relative;
  z-index: 3;
}
.pricing-page .pricing-box.active .pricing-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
}
.pricing-page .pricing-box.active .pricing-list li span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  background: #fff;
  transform: scale(1);
  opacity: 1;
}
.pricing-page .pricing-box.active .button {
  margin-top: 24px;
}
.pricing-page .pricing-box.active .button .theme-btn1 {
  color: #FB3F52;
  transition: all 0.4s;
}
.pricing-page .pricing-box.active .button .theme-btn1::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.pricing-page .pricing-box.active .button .theme-btn1 span {
  background-color: #FA7D3C;
  color: #fff;
  transition: all 0.4s;
}

.compareplan-section-area {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .compareplan-section-area .tab-content {
    max-width: 1300px;
    overflow-x: scroll !important;
  }
}
@media (max-width: 767px) {
  .compareplan-section-area .tab-content {
    max-width: 1300px;
    overflow-x: scroll !important;
  }
}
.compareplan-section-area .single-pricing-area {
  position: relative;
  margin-bottom: 0;
  border: 1px solid #E7E6E7;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .compareplan-section-area .single-pricing-area {
    width: 1300px;
    overflow-x: scroll !important;
  }
}
@media (max-width: 767px) {
  .compareplan-section-area .single-pricing-area {
    width: 1300px;
    overflow-x: scroll !important;
  }
}
.compareplan-section-area .comparison table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  overflow-x: scroll !important;
}
.compareplan-section-area .comparison table thead {
  position: relative;
}
.compareplan-section-area .comparison table thead .theme-btn1 {
  margin-bottom: 20px;
}
.compareplan-section-area .comparison table thead::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 325px;
  z-index: -1;
  border-radius: 8px 0px 0px 0px;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
}
@media (max-width: 767px) {
  .compareplan-section-area .comparison table thead::after {
    display: none;
  }
}
.compareplan-section-area .comparison table thead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  border-radius: 8px 0px 0px 0px;
  background: #F5F5FD;
}
.compareplan-section-area .comparison table thead .ofer-title {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  position: relative;
  top: 40px;
}
.compareplan-section-area .comparison table thead .ofer-title span {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  display: inline-block;
  margin-top: 20px;
}
.compareplan-section-area .comparison td, .compareplan-section-area .comparison th {
  text-align: center;
}
.compareplan-section-area .comparison tbody tr:nth-child(odd) {
  display: none;
}
.compareplan-section-area .comparison .compare-row td {
  padding: 25px 0;
  border: 1px solid #E7E6E7;
}
.compareplan-section-area .comparison tr td:first-child {
  text-align: left;
  padding: 25px 0px 25px 30px;
  border: 1px solid #E7E6E7;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
}
.compareplan-section-area .comparison .tl2 {
  font-family: var(--ztc-family-font1);
  line-height: var(--ztc-font-size-font-s24);
  font-weight: var(--ztc-weight-bold);
  color: var(--ztc-text-text-3);
  font-size: var(--ztc-font-size-font-s24);
}
.compareplan-section-area .comparison .tl2 span {
  display: inline-block;
  font-size: var(--ztc-font-size-font-s18);
  line-height: var(--ztc-font-size-font-s18);
  font-weight: var(--ztc-weight-medium);
  color: var(--ztc-text-text-4);
  font-family: var(--ztc-family-font1);
  margin-top: 32px;
  position: absolute;
  left: 6%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .compareplan-section-area .comparison .tl2 span {
    display: none;
  }
}
.compareplan-section-area .comparison .qbo {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  padding: 0 !important;
}
.compareplan-section-area .comparison .price-now span {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 122.727% */
  transition: all 0.4s;
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .compareplan-section-area .comparison {
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s20);
    font-weight: var(--ztc-weight-bold);
    color: var(--ztc-text-text-3);
    transition: all 0.4s;
    background: var(--ztc-text-text-1);
  }
  .compareplan-section-area th.price-info.hide-mobile {
    padding-bottom: 20px;
  }
  .compareplan-section-area .comparison .qbo {
    background: none;
    padding: 10px !important;
  }
  .compareplan-section-area .comparison td:first-child, .compareplan-section-area .comparison th:first-child {
    display: none;
  }
  .compareplan-section-area .comparison tbody tr:nth-child(odd) {
    display: table-row;
  }
  .compareplan-section-area .comparison .row {
    background: #fff;
  }
  .compareplan-section-area .comparison td, .compareplan-section-area .comparison th {
    border: 1px solid #FAE7E8;
    padding: 20px 0;
  }
}

.pricing-area {
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}

.toggle-inner input {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 25px;
  right: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.custom-toggle {
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: #fff;
  top: 5px;
  left: 35px;
  border-radius: 50%;
  transition: 300ms all;
}

.toggle-inner .t-month,
.toggle-inner .t-year {
  position: absolute;
  left: -75px;
  top: 2px;
  transition: 300ms all;
}

.toggle-inner .t-year {
  left: unset;
  left: 73px;
  opacity: 0.5;
}

.active > .toggle-inner .t-month {
  opacity: 0.5;
}

.active > .toggle-inner .t-year {
  opacity: 1;
}

.toggle-inner input:checked + span {
  left: 5px;
}

.toggle-inner {
  width: 60px;
  margin: 0 auto;
  height: 30px;
  border-radius: 25px;
  position: relative;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  left: -20px;
}

.t-year h4 {
  min-width: 200px;
}

.t-year {
  text-align: left;
}

.plan-toggle-wrap {
  margin-top: 50px;
  margin-bottom: 32px;
}

.plan-toggle-wrap h4 {
  font-size: var(--ztc-font-size-font-s16);
  font-weight: var(--ztc-weight-bold);
  color: var(--ztc-text-text-3);
  font-family: "Figtree", sans-serif;
  margin-bottom: 0;
}

.plan-toggle-wrap h4 span {
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
}

.plan-toggle-wrap1 {
  position: absolute;
  z-index: 1;
  left: 23%;
  top: 130px;
  right: 71%;
}
@media (max-width: 767px) {
  .plan-toggle-wrap1 {
    position: relative;
    left: 0;
    top: 0;
    text-align: center;
    right: 0;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .plan-toggle-wrap1 {
    position: relative;
    left: 0;
    top: 0;
    text-align: center;
    right: 0;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1700px) and (max-width: 1800px) {
  .plan-toggle-wrap1 {
    right: 56% !important;
  }
}

.plan-toggle-wrap1 h4 {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .plan-toggle-wrap1 h4 {
    color: #0B0314;
  }
}
@media (max-width: 767px) {
  .plan-toggle-wrap1 h4 {
    color: #0B0314;
  }
}

.plan-toggle-wrap1 h4 span {
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
}

.single-pricing-area {
  background: var(--ztc-bg-bg-1);
  border-radius: 4px;
  border: 1px solid #E7E6E7;
  transition: all 0.4s;
}
.single-pricing-area .pricing-box h3 {
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-weight: var(--ztc-weight-bold);
  color: var(--ztc-text-text-3);
  line-height: var(--ztc-font-size-font-s18);
  margin-bottom: 20px;
}
.single-pricing-area .pricing-box p {
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-text-text-4);
  line-height: var(--ztc-font-size-font-s26);
  font: var(--ztc-font-size-font-s16);
  color: var(--ztc-text-text-4);
  font-weight: var(--ztc-weight-medium);
}
.single-pricing-area .pricing-box h2 {
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s44);
  line-height: var(--ztc-font-size-font-s44);
  color: var(--ztc-text-text-3);
  font-weight: var(--ztc-weight-bold);
  margin-bottom: 4px;
  margin-top: 24px;
}
.single-pricing-area .pricing-box .header-btn1 {
  width: 100%;
  margin-top: 24px;
  text-align: center;
}
.single-pricing-area .pricing-box h4 {
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s20);
  line-height: var(--ztc-font-size-font-s20);
  color: var(--ztc-text-text-3);
  margin-top: 24px;
  margin-bottom: 24px;
  font-weight: var(--ztc-weight-bold);
}
.single-pricing-area .pricing-box ul li {
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s16);
  line-height: var(--ztc-font-size-font-s16);
  color: var(--ztc-text-text-4);
  font-weight: var(--ztc-weight-medium);
  margin-top: 16px;
}
.single-pricing-area .pricing-box ul li img {
  margin: 0 8px 0 0;
}

.single-pricing-area.active {
  border: 1px solid var(--ztc-text-text-2);
  transition: all 0.4s;
}

/*
::::::::::::::::::::::::::
 PRICING AREA CSS
::::::::::::::::::::::::::
*/
/*
 ::::::::::::::::::::::::::
  sidebar area css
 ::::::::::::::::::::::::::
 */
.sidebar-area1 {
  /* Basic styles for the close icon */
  /* Keyframe animation for continuous gradient shift */
  /* New hover animation: bounce effect */
}
.sidebar-area1 .sidebar {
  height: 100%;
  width: 400px;
  position: fixed;
  z-index: 2; /* Ensure it is above the overlay */
  top: 0;
  right: -460px;
  background-image: url(../img/hero/hero1-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 4444;
}
.sidebar-area1 .sidebar .logo {
  width: 170px;
  display: inline-block;
  margin-left: 30px;
}
.sidebar-area1 .sidebar .sidebar-menu {
  margin-left: 30px;
}
.sidebar-area1 .sidebar .sidebar-menu a {
  display: block;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  padding-bottom: 20px;
  transition: all 0.4s;
}
.sidebar-area1 .sidebar .sidebar-menu a:hover {
  transition: all 0.4s;
  color: #FA7D3C;
}
.sidebar-area1 .sidebar .menu-list {
  margin-left: 30px;
  margin-top: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-area1 .sidebar .menu-list {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .sidebar-area1 .sidebar .menu-list {
    padding-left: 0;
  }
}
.sidebar-area1 .sidebar .menu-list h3 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
  margin-bottom: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-area1 .sidebar .menu-list h3 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .sidebar-area1 .sidebar .menu-list h3 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
.sidebar-area1 .sidebar .menu-list ul li a {
  color: var(--SEO-Marketing-Text-Color, rgba(255, 255, 255, 0.7882352941));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  display: inline-block;
  margin-top: 16px;
  transition: all 0.4s;
}
.sidebar-area1 .sidebar .menu-list ul li a:hover {
  transition: all 0.4s;
  color: #FA7D3C;
  transform: translateX(5px);
}
.sidebar-area1 .sidebar .menu-list.contact-list {
  padding-left: 0;
}
.sidebar-area1 .sidebar .menu-list.contact-list .contact-box {
  display: flex;
  align-items: center;
  padding-top: 16px;
}
.sidebar-area1 .sidebar .menu-list.contact-list .contact-box .icon {
  margin-right: 10px;
}
.sidebar-area1 .sidebar .menu-list.contact-list .contact-box .icon img {
  filter: brightness(0) invert(1);
}
.sidebar-area1 .sidebar .menu-list.contact-list .contact-box .pera a {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, rgba(255, 255, 255, 0.7960784314));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.sidebar-area1 .sidebar .menu-list.contact-list .contact-box .pera a:hover {
  transition: all 0.4s;
  color: #FA7D3C;
}
.sidebar-area1 .button {
  margin: 30px;
}
.sidebar-area1 .sidebar .closebtn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  color: #f1f1f1;
  cursor: pointer;
}
.sidebar-area1 .tagline {
  padding: 24px 0px;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
  margin-left: 30px;
  margin-right: 30px;
}
.sidebar-area1 .contact-info {
  color: #f1f1f1;
  margin-top: 30px;
  text-align: center;
}
.sidebar-area1 .contact-btn {
  background-color: #f44336;
  border: none;
  color: white;
  padding: 10px 24px;
  text-align: center;
  font-size: 16px;
  margin: 20px 0;
  cursor: pointer;
  border-radius: 25px;
  width: 80%;
}
.sidebar-area1 .social-links {
  margin-left: 30px;
}
.sidebar-area1 .social-links a {
  font-family: "FontAwesome";
  font-size: 20px;
  color: #f1f1f1;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1176470588);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
}
.sidebar-area1 .social-links a:hover {
  color: #f44336;
}
.sidebar-area1 .overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1; /* Ensure it is below the sidebar */
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7); /* Dark transparent background */
  overflow-x: hidden;
  transition: 0.5s;
}
.sidebar-area1 div#overlay {
  position: fixed;
  z-index: 999;
}
.sidebar-area1 .closebtn {
  font-size: 200px;
  color: #fff;
  position: absolute;
  right: 400px;
  top: 20px;
}
.sidebar-area1 .close-icon {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.sidebar-area1 .close-icon span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  background-size: 200% 200%; /* To animate the gradient smoothly */
  border-radius: 2px;
  transition: transform 0.3s ease;
  animation: gradientShift 4s ease infinite; /* Continuous gradient animation */
}
.sidebar-area1 .close-icon span:first-child {
  transform: rotate(45deg);
  top: 50%;
  left: 0;
  transform-origin: center;
}
.sidebar-area1 .close-icon span:last-child {
  transform: rotate(-45deg);
  top: 50%;
  left: 0;
  transform-origin: center;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.sidebar-area1 .close-icon:hover {
  animation: bounce 0.6s ease infinite;
}

.sidebar-area2 {
  /* Basic styles for the close icon */
  /* Keyframe animation for continuous gradient shift */
  /* New hover animation: bounce effect */
}
.sidebar-area2 .sidebar {
  height: 100%;
  width: 400px;
  position: fixed;
  z-index: 2; /* Ensure it is above the overlay */
  top: 0;
  right: -460px;
  background-color: #583AA7;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 4444;
}
.sidebar-area2 .sidebar .logo {
  width: 170px;
  display: inline-block;
  margin-left: 30px;
}
.sidebar-area2 .sidebar .sidebar-menu {
  margin-left: 30px;
}
.sidebar-area2 .sidebar .sidebar-menu a {
  display: block;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  padding-bottom: 20px;
  transition: all 0.4s;
}
.sidebar-area2 .sidebar .sidebar-menu a:hover {
  transition: all 0.4s;
  color: #FA7D3C;
}
.sidebar-area2 .sidebar .menu-list {
  margin-left: 30px;
  margin-top: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-area2 .sidebar .menu-list {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .sidebar-area2 .sidebar .menu-list {
    padding-left: 0;
  }
}
.sidebar-area2 .sidebar .menu-list h3 {
  color: var(--SEO-Marketing-Text-Color, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
  margin-bottom: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-area2 .sidebar .menu-list h3 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .sidebar-area2 .sidebar .menu-list h3 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
.sidebar-area2 .sidebar .menu-list ul li a {
  color: var(--SEO-Marketing-Text-Color, rgba(255, 255, 255, 0.7882352941));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  display: inline-block;
  margin-top: 16px;
  transition: all 0.4s;
}
.sidebar-area2 .sidebar .menu-list ul li a:hover {
  transition: all 0.4s;
  color: #FA7D3C;
  transform: translateX(5px);
}
.sidebar-area2 .sidebar .menu-list.contact-list {
  padding-left: 0;
}
.sidebar-area2 .sidebar .menu-list.contact-list .contact-box {
  display: flex;
  align-items: center;
  padding-top: 16px;
}
.sidebar-area2 .sidebar .menu-list.contact-list .contact-box .icon {
  margin-right: 10px;
}
.sidebar-area2 .sidebar .menu-list.contact-list .contact-box .icon img {
  filter: brightness(0) invert(1);
}
.sidebar-area2 .sidebar .menu-list.contact-list .contact-box .pera a {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, rgba(255, 255, 255, 0.7960784314));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.sidebar-area2 .sidebar .menu-list.contact-list .contact-box .pera a:hover {
  transition: all 0.4s;
  color: #FA7D3C;
}
.sidebar-area2 .button {
  margin: 30px;
}
.sidebar-area2 .sidebar .closebtn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  color: #f1f1f1;
  cursor: pointer;
}
.sidebar-area2 .tagline {
  padding: 24px 0px;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
  margin-left: 30px;
  margin-right: 30px;
}
.sidebar-area2 .contact-info {
  color: #f1f1f1;
  margin-top: 30px;
  text-align: center;
}
.sidebar-area2 .contact-btn {
  background-color: #f44336;
  border: none;
  color: white;
  padding: 10px 24px;
  text-align: center;
  font-size: 16px;
  margin: 20px 0;
  cursor: pointer;
  border-radius: 25px;
  width: 80%;
}
.sidebar-area2 .social-links {
  margin-left: 30px;
}
.sidebar-area2 .social-links a {
  font-family: "FontAwesome";
  font-size: 20px;
  color: #f1f1f1;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1176470588);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
}
.sidebar-area2 .social-links a:hover {
  color: #fff;
}
.sidebar-area2 .overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1; /* Ensure it is below the sidebar */
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7); /* Dark transparent background */
  overflow-x: hidden;
  transition: 0.5s;
}
.sidebar-area2 div#overlay {
  position: fixed;
  z-index: 999;
}
.sidebar-area2 .closebtn {
  font-size: 200px;
  color: #fff;
  position: absolute;
  right: 400px;
  top: 20px;
}
.sidebar-area2 .close-icon {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.sidebar-area2 .close-icon span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  background-size: 200% 200%; /* To animate the gradient smoothly */
  border-radius: 2px;
  transition: transform 0.3s ease;
  animation: gradientShift 4s ease infinite; /* Continuous gradient animation */
}
.sidebar-area2 .close-icon span:first-child {
  transform: rotate(45deg);
  top: 50%;
  left: 0;
  transform-origin: center;
}
.sidebar-area2 .close-icon span:last-child {
  transform: rotate(-45deg);
  top: 50%;
  left: 0;
  transform-origin: center;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.sidebar-area2 .close-icon:hover {
  animation: bounce 0.6s ease infinite;
}
.sidebar-area2 .theme-btn2 {
  display: inline-block;
  border-radius: 80px;
  background: #fff;
  padding: 12px 12px 12px 18px;
  color: #4D32A5;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: none;
}
.sidebar-area2 .theme-btn2::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: 80px;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  z-index: -1;
  transition: all 0.4s;
}
.sidebar-area2 .theme-btn2 span {
  display: inline-block;
  height: 32px;
  width: 32px;
  background-color: #4D32A5;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.sidebar-area2 .theme-btn2:hover {
  color: #fff;
  transition: all 0.4s;
}
.sidebar-area2 .theme-btn2:hover::after {
  width: 100%;
  transition: all 0.4s;
  left: 0;
  right: auto;
}
.sidebar-area2 .theme-btn2:hover span {
  background-color: #fff;
  color: #FA7D3C;
  transition: all 0.4s;
}

/*
::::::::::::::::::::::::::
 sidebar area css
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 PRELOADER AREA CSS
::::::::::::::::::::::::::
*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader.preloader2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 140px;
  position: relative;
  width: 140px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent #FB3F52 transparent #FB3F52;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading.loading2 {
  border: 1px solid transparent;
  border-color: transparent #4D32A5 transparent #4D32A5 !important;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading.loading5 {
  border: 1px solid transparent;
  border-color: transparent #9553FD transparent #9553FD;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
::::::::::::::::::::::::::
 PRELOADER AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 CASE AREA CSS
::::::::::::::::::::::::::
*/
.case1 {
  position: relative;
}
.case1 .case1-slider .single-slider {
  position: relative;
  margin: 0px 10px;
}
.case1 .case1-slider .single-slider .image {
  overflow: hidden;
  border-radius: 8px;
}
.case1 .case1-slider .single-slider .image img {
  width: 100%;
  transition: all 0.4s;
}
.case1 .case1-slider .single-slider:hover .image img {
  transition: all 0.4s;
  transform: scale(1.1) rotate(2deg);
}
.case1 .case1-slider .single-slider:hover .heading-area h4 a {
  transition: all 0.4s;
  color: #FA7D3C;
}
.case1 .case1-slider .single-slider .heading-area {
  border-radius: 8px;
  background: #FFF;
  padding: 24px;
  margin: 0px 24px;
  position: absolute;
  bottom: 30px;
  width: 100%;
  width: 87%;
}
.case1 .case1-slider .single-slider .heading-area p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
  padding-bottom: 10px;
}
.case1 .case1-slider .single-slider .heading-area h4 a {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  transition: all 0.4s;
}
.case1 .case1-slider .single-slider .heading-area .arrow-right {
  display: inline-block;
  height: 48px;
  width: 48px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  right: -20px;
  transform: rotate(-45deg);
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
}
.case1 .case1-buttons {
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case1 .case1-buttons {
    text-align: start;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .case1 .case1-buttons {
    text-align: start;
    margin-top: 20px;
  }
}
.case1 .case1-buttons button {
  color: #3B32F6;
  font-size: 20px;
  height: 56px;
  width: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  border: none;
  margin-left: 5px;
}
.case1 .case1-buttons button i {
  position: relative;
  z-index: 4;
}
.case1 .case1-buttons button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
}
.case1 .case1-buttons button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.case1 .case1-buttons button:hover {
  color: #fff;
  transition: all 0.4s;
}
.case1 .case1-buttons button:hover::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}

.case3 {
  position: relative;
}
.case3 .blog-box {
  margin-top: 30px;
  transition: all 0.4s;
}
.case3 .blog-box .image img {
  width: 100%;
  transition: all 0.4s;
  border-radius: 5px 5px 0px 0px;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
}
.case3 .blog-box .heading1 {
  border-radius: 0px 0px 5px 5px;
  background: #FFF;
  padding: 28px;
  transition: all 0.4s;
}
.case3 .blog-box .heading1 .date {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
  display: inline-block;
}
.case3 .blog-box .heading1 .date img {
  margin-top: -5px;
  margin-right: 5px;
}
.case3 .blog-box .heading1 h5 a {
  padding-top: 16px;
}
.case3 .blog-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
}
.case3 .blog-box:hover .image img {
  width: 100%;
  transition: all 0.4s;
  border-radius: 5px 5px 0px 0px;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
}
.case3 .blog-box:hover .heading1 {
  border-radius: 0px 0px 5px 5px;
  transition: all 0.4s;
}
.case3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/blog1-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -3;
}
.case3 .shape1 {
  position: absolute;
  bottom: 40%;
  right: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case3 .shape1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .case3 .shape1 {
    display: none;
  }
}

.case-page .single-slider {
  position: relative;
  margin: 0px 10px;
  transition: all 0.4s;
  margin-bottom: 30px;
}
.case-page .single-slider .image {
  border-radius: 8px;
  overflow: hidden;
}
.case-page .single-slider .image img {
  width: 100%;
  transition: all 0.4s;
}
.case-page .single-slider .heading-area {
  border-radius: 8px;
  background: #FFF;
  padding: 24px;
  margin: 0px 24px;
  position: absolute;
  bottom: 30px;
  width: 100%;
  width: 87%;
}
.case-page .single-slider .heading-area p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
  padding-bottom: 10px;
}
.case-page .single-slider .heading-area h4 a {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
}
.case-page .single-slider .heading-area .arrow-right {
  display: inline-block;
  height: 48px;
  width: 48px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  right: -20px;
  transform: rotate(-45deg);
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
}
.case-page .single-slider:hover {
  transform: translateY(-10px);
}
.case-page .single-slider:hover .image img {
  transform: rotate(2deg) scale(1.1);
  transition: all 0.4s;
}

/*
 ::::::::::::::::::::::::::
  CASE AREA CSS
 ::::::::::::::::::::::::::
 */
/*
::::::::::::::::::::::::::
 TEAM AREA CSS
::::::::::::::::::::::::::
*/
.team1 .team-box {
  margin-top: 30px;
  position: relative;
}
.team1 .team-box .image {
  overflow: hidden;
  border-radius: 6px;
}
.team1 .team-box .image img {
  width: 100%;
  transition: all 0.4s;
}
.team1 .team-box .heading-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
  position: relative;
  z-index: 2;
  margin: -53px 24px 0px 24px;
}
.team1 .team-box .heading-area .heading1 h4 a {
  padding-bottom: 10px;
}
.team1 .team-box .heading-area .icon-area {
  position: relative;
}
.team1 .team-box .heading-area .icon-area .icon {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
}
.team1 .team-box .heading-area .icon-area .icon-list {
  position: absolute;
  bottom: 100px;
  right: 0;
  transform: rotateX(60deg) translateY(160px);
  opacity: 0;
  transition: all 0.4s;
}
.team1 .team-box .heading-area .icon-area .icon-list li a {
  display: inline-block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  color: #0B0314;
  position: relative;
  margin: 5px 0px;
  font-size: 18px;
  transition: all 0.4s;
}
.team1 .team-box .heading-area .icon-area .icon-list li a i {
  position: relative;
  z-index: 9;
}
.team1 .team-box .heading-area .icon-area .icon-list li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  transition: all 0.4s;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  opacity: 0;
  transform: scale(0.4);
}
.team1 .team-box .heading-area .icon-area .icon-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: #fff;
  transition: all 0.4s;
}
.team1 .team-box .heading-area .icon-area .icon-list li a:hover {
  transition: all 0.4s;
  color: #fff;
}
.team1 .team-box .heading-area .icon-area .icon-list li a:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  transition: all 0.4s;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  opacity: 1;
  transform: scale(1);
}
.team1 .team-box:hover {
  transition: all 0.4s;
}
.team1 .team-box:hover .heading-area .icon-area .icon-list {
  transform: rotateX(0deg) translateY(0px);
  opacity: 1;
  transition: all 0.4s;
}

/*
::::::::::::::::::::::::::
 TEAM AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 TESTIMONIAL AREA CSS
::::::::::::::::::::::::::
*/
.tes1 .left {
  position: relative;
}

.tes1 .left .swiper-button-next,
.tes1 .left .swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  z-index: 99;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tes1 .left .swiper-button-next,
  .tes1 .left .swiper-button-prev {
    top: 110%;
  }
}
@media (max-width: 767px) {
  .tes1 .left .swiper-button-next,
  .tes1 .left .swiper-button-prev {
    top: 110%;
  }
}

.tes1 .left .swiper-button-next::after,
.tes1 .left .swiper-button-prev::after {
  display: none;
}

.tes1 .left .swiper-pagination span {
  font-size: 16px;
  font-weight: 400;
}

.tes1 .left .swiper-pagination .swiper-pagination-current {
  margin-right: -4px;
}

.tes1 .left .swiper-pagination .swiper-pagination-total {
  margin-left: -4px;
}

.tes1 .block-text .heading {
  text-transform: capitalize;
  margin-bottom: 15px;
}

.tes1 .block-text .desc {
  font-size: 20px;
  padding: 0 100px;
}

@media only screen and (max-width: 1200px) {
  .tes1 .block-text .desc {
    padding: 0;
  }
}
.tes1 .swiper-testimonial-2 {
  margin-top: 47px;
  border-radius: 4px;
  background-color: var(--vtc-bg-common-bg1);
}

.tes1 .testimonials-box-2 {
  border-radius: 12px;
  background: var(--bg1);
  padding: 32px 50px 32px 32px;
}
@media (max-width: 767px) {
  .tes1 .testimonials-box-2 {
    padding: 20px;
  }
}

.tes1 .testimonials-box-2 h6 {
  margin-bottom: 10px;
}

.tes1 .testimonials-box-2 .text {
  color: var(--Home-Page-3-Color-Text-Color, #070811);
  font-family: "Plus Jakarta Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px; /* 163.636% */
}
@media (max-width: 767px) {
  .tes1 .testimonials-box-2 .text {
    font-size: 18px;
    line-height: 28px;
  }
}

.tes1 .testimonials-box-2 .icon {
  margin-bottom: 10px;
}

.tes1 .testimonials-box-2 .bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tes1 .testimonials-box-2 .bottom .content h6 a {
  display: inline-block;
  color: var(--Home-Page-3-Color-Text-Color, #070811);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
}
.tes1 .testimonials-box-2 .bottom .content p {
  color: var(--Home-Page-3-Color-Text-Color, #070811);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
}

.tes1 .testimonials-box-2 .bottom .info {
  display: flex;
}

.tes1 .testimonials-box-2 .bottom .info img {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
}

.tes1 .testimonials-box-2 .bottom .info .content {
  padding-top: 6px;
}

.tes1 .testimonials-box-2 .bottom img {
  width: 35.28px;
  height: 40.1px;
}

.tes1 .map-testimonial-area {
  transform: translateY(-380px) translateX(30px);
}

.tes1 .map-testimonial {
  position: relative;
  height: 433.01px;
}

@media only screen and (max-width: 1200px) {
  .tes1 .map-testimonial {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .tes1 .map-testimonial {
    width: 100%;
  }
  .tes1 .map-testimonial img {
    width: 100%;
  }
}
.tes1 .map-testimonial img.map {
  position: absolute;
  top: 69px;
  left: 24px;
}

.tes1 .map-testimonial .swiper-thumb2 {
  width: 100%;
  height: 100%;
}

.tes1 .map-testimonial .swiper-slide {
  position: absolute;
  z-index: 9;
  width: 70px;
  height: 70px;
  cursor: pointer;
}

.tes1 .map-testimonial .swiper-slide div {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0px 10px 25px rgba(71, 92, 133, 0.1);
}

.tes1 .map-testimonial .swiper-slide div::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid #5A65F5;
  opacity: 0;
}

.tes1 .map-testimonial .swiper-slide div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tes1 .map-testimonial .swiper-slide.swiper-slide-thumb-active div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  top: auto;
  border-color: #5A65F5 transparent transparent transparent;
  border-style: solid;
  border-width: 12px 6px 0px 6px;
  height: 0px;
  width: 0px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
}

.tes1 .map-testimonial .swiper-slide.swiper-slide-thumb-active div::before {
  opacity: 1;
}

.tes1 .map-testimonial .swiper-slide:nth-child(1) {
  bottom: 0%;
  left: 26px;
}

.tes1 .map-testimonial .swiper-slide:nth-child(2) {
  bottom: 0;
  right: -60px;
}

.tes1 .map-testimonial .swiper-slide:nth-child(3) {
  bottom: 26%;
  right: -105px;
}

.tes1 .map-testimonial .swiper-slide:nth-child(4) {
  top: 35%;
  right: -60px;
}

.tes1 .map-testimonial .swiper-slide:nth-child(5) {
  top: 35%;
  left: 3%;
}

.tes1 .map-testimonial .swiper-slide:nth-child(6) {
  top: 61%;
  left: 0;
}

.pagination-buttons button {
  border-radius: 50%;
  border: none;
  background-color: #5A65F5;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transition: all 0.4s;
}
.pagination-buttons button:hover {
  transition: all 0.4s;
  background-color: var(--vtc-text-heading-1);
}

.tes1 .pagination-buttons .swiper-button-prev {
  position: absolute;
  right: -15px;
  left: auto;
  transform: translateY(-35px);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tes1 .pagination-buttons .swiper-button-prev {
    right: 50%;
    transform: translateX(-35px);
  }
}
@media (max-width: 767px) {
  .tes1 .pagination-buttons .swiper-button-prev {
    right: 50%;
    transform: translateX(-35px);
  }
}
.tes1 .pagination-buttons .swiper-button-next {
  position: absolute;
  right: -15px;
  left: auto;
  transform: translateY(35px);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tes1 .pagination-buttons .swiper-button-next {
    right: 50%;
    transform: translateX(35px);
  }
}
@media (max-width: 767px) {
  .tes1 .pagination-buttons .swiper-button-next {
    right: 50%;
    transform: translateX(35px);
  }
}

.tes3 {
  background-color: #F5F6FF;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .tes3 {
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tes3 .main-image {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .tes3 .main-image {
    margin-bottom: 40px;
  }
}
.tes3 .testimonial7-all {
  margin-right: 100px;
  background-color: #fff;
  border-radius: 8px;
  padding: 32px;
  position: relative;
}
@media (max-width: 767px) {
  .tes3 .testimonial7-all {
    margin-right: 0;
  }
}
.tes3 .testimonial7-all p.text {
  color: var(--Home-Page-7-Main-Color, #0B101F);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.444% */
  padding: 16px 0;
}
.tes3 .testimonial7-all .star ul li {
  display: inline-block;
  color: #FFA800;
  margin: 0px 3px;
}
.tes3 .testimonial7-all .bottom {
  padding-top: 5px;
}
.tes3 .testimonial7-all .bottom .info {
  display: flex;
  align-items: center;
}
.tes3 .testimonial7-all .bottom .info .content {
  padding-left: 16px;
}
.tes3 .testimonial7-all .bottom h6 a {
  display: inline-block;
  color: var(--Home-Page-7-Main-Color, #0B101F);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
}
.tes3 .testimonial7-all .bottom .position {
  color: var(--Home-Page-7-Paragraph-Color, #4D4B5F);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  padding-top: 10px;
}
.tes3 .testimonial7-all .pagination-buttons {
  position: absolute;
  right: -90px;
  top: 50%;
  margin-top: -61px;
}
@media (max-width: 767px) {
  .tes3 .testimonial7-all .pagination-buttons {
    margin-top: 30px;
    top: 100%;
    display: flex;
    align-items: center;
    left: 0;
  }
}
.tes3 .testimonial7-all .pagination-buttons button {
  font-size: 20px;
  height: 56px;
  width: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  margin: 5px 0px;
  border: none;
  background: #fff;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .tes3 .testimonial7-all .pagination-buttons button {
    margin-right: 20px;
  }
}
.tes3 .testimonial7-all .pagination-buttons button:nth-child(1) {
  transform: rotate(-90deg);
}
.tes3 .testimonial7-all .pagination-buttons button i {
  background: #4D32A5;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s;
}
.tes3 .testimonial7-all .pagination-buttons button:hover {
  transition: all 0.4s;
  background: #4D32A5;
}
.tes3 .testimonial7-all .pagination-buttons button:hover i {
  background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #ffffff 0%, #ffffff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tes3.testimonial-page .testimonial7-all {
  background: #F5F5FD;
}
.tes3.testimonial-page .pagination-buttons button {
  background: #F5F5FD;
}
.tes3.testimonial-page .pagination-buttons button i {
  color: #FB3F52;
  background-color: #FB3F52;
}
.tes3.testimonial-page .pagination-buttons button:hover {
  background: #FB3F52;
}

.tes4 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .tes4 {
    padding-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .tes4 .iamge-slider {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tes4 .main-image {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .tes4 .main-image {
    margin-bottom: 40px;
  }
}
.tes4 .testimonial7-all {
  margin-left: 100px;
  background-color: #fff;
  border-radius: 8px;
  padding: 32px;
  position: relative;
}
@media (max-width: 767px) {
  .tes4 .testimonial7-all {
    margin-left: 0;
  }
}
.tes4 .testimonial7-all p.text {
  color: var(--Home-Page-7-Main-Color, #0B101F);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.444% */
  padding: 16px 0;
}
.tes4 .testimonial7-all .star ul li {
  display: inline-block;
  color: #FFA800;
  margin: 0px 3px;
}
.tes4 .testimonial7-all .bottom {
  padding-top: 5px;
}
.tes4 .testimonial7-all .bottom .info {
  display: flex;
  align-items: center;
}
.tes4 .testimonial7-all .bottom .info .content {
  padding-left: 16px;
}
.tes4 .testimonial7-all .bottom h6 a {
  display: inline-block;
  color: var(--Home-Page-7-Main-Color, #0B101F);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
}
.tes4 .testimonial7-all .bottom .position {
  color: var(--Home-Page-7-Paragraph-Color, #4D4B5F);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  padding-top: 10px;
}
.tes4 .testimonial7-all .pagination-buttons {
  position: absolute;
  left: -90px;
  top: 50%;
  margin-top: -61px;
}
@media (max-width: 767px) {
  .tes4 .testimonial7-all .pagination-buttons {
    margin-top: 30px;
    top: 100%;
    display: flex;
    align-items: center;
    left: 0;
  }
}
.tes4 .testimonial7-all .pagination-buttons button {
  font-size: 20px;
  height: 56px;
  width: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  margin: 5px 0px;
  border: none;
  background: #fff;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .tes4 .testimonial7-all .pagination-buttons button {
    margin-right: 20px;
  }
}
.tes4 .testimonial7-all .pagination-buttons button:nth-child(1) {
  transform: rotate(0deg);
}
.tes4 .testimonial7-all .pagination-buttons button i {
  background: #49A6FF;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s;
}
.tes4 .testimonial7-all .pagination-buttons button:hover {
  transition: all 0.4s;
  background: linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%);
}
.tes4 .testimonial7-all .pagination-buttons button:hover i {
  background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #ffffff 0%, #ffffff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tes5 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .tes5 {
    padding-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .tes5 .iamge-slider {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tes5 .main-image {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .tes5 .main-image {
    margin-bottom: 40px;
  }
}
.tes5 .testimonial7-all {
  margin-left: 100px;
  background-color: #F5F5FD;
  border-radius: 8px;
  padding: 32px;
  position: relative;
}
@media (max-width: 767px) {
  .tes5 .testimonial7-all {
    margin-left: 0;
  }
}
.tes5 .testimonial7-all p.text {
  color: var(--Home-Page-7-Main-Color, #0B101F);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.444% */
  padding: 16px 0;
}
.tes5 .testimonial7-all .star ul li {
  display: inline-block;
  color: #FFA800;
  margin: 0px 3px;
}
.tes5 .testimonial7-all .bottom {
  padding-top: 5px;
}
.tes5 .testimonial7-all .bottom .info {
  display: flex;
  align-items: center;
}
.tes5 .testimonial7-all .bottom .info .content {
  padding-left: 16px;
}
.tes5 .testimonial7-all .bottom h6 a {
  display: inline-block;
  color: var(--Home-Page-7-Main-Color, #0B101F);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
}
.tes5 .testimonial7-all .bottom .position {
  color: var(--Home-Page-7-Paragraph-Color, #4D4B5F);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  padding-top: 10px;
}
.tes5 .testimonial7-all .pagination-buttons {
  position: absolute;
  left: -90px;
  top: 50%;
  margin-top: -61px;
}
@media (max-width: 767px) {
  .tes5 .testimonial7-all .pagination-buttons {
    margin-top: 30px;
    top: 100%;
    display: flex;
    align-items: center;
    left: 0;
  }
}
.tes5 .testimonial7-all .pagination-buttons button {
  font-size: 20px;
  height: 56px;
  width: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  margin: 5px 0px;
  border: none;
  background: #F5F5FD;
}
@media (max-width: 767px) {
  .tes5 .testimonial7-all .pagination-buttons button {
    margin-right: 20px;
  }
}
.tes5 .testimonial7-all .pagination-buttons button:nth-child(1) {
  transform: rotate(0deg);
}
.tes5 .testimonial7-all .pagination-buttons button i {
  background: #5700FC;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s;
}
.tes5 .testimonial7-all .pagination-buttons button:hover {
  transition: all 0.4s;
  background: linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%);
}
.tes5 .testimonial7-all .pagination-buttons button:hover i {
  background: var(--Home-Page-7-Linner-Color, linear-gradient(90deg, #ffffff 0%, #ffffff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-page-sec .tes-box {
  margin-top: 30px;
  background-color: #F5F5FD;
  border-radius: 8px;
  padding: 28px 30px;
  transition: all 0.4s;
}
.testimonial-page-sec .tes-box:hover {
  transform: translateY(-10px);
  transition: all 0.4s;
}
.testimonial-page-sec .tes-box .stars ul li {
  display: inline-block;
  color: #FFA800;
}
.testimonial-page-sec .tes-box p {
  color: var(--Home-Page-7-Main-Color, #3A3E4B);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.444% */
  padding: 18px 0px 24px 0px;
}
.testimonial-page-sec .tes-box .bottom {
  display: flex;
  align-items: center;
}
.testimonial-page-sec .tes-box .bottom .content {
  padding-left: 20px;
}
.testimonial-page-sec .tes-box .bottom .content h5 a {
  display: inline-block;
  color: var(--Home-Page-7-Main-Color, #0B101F);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
}
.testimonial-page-sec .tes-box .bottom .content p {
  padding: 4px 0px 0px 0px;
}

/*
::::::::::::::::::::::::::
 TESTIMONIAL AREA CSS
::::::::::::::::::::::::::
*/
/* ------------------------
    Testimonials
------------------------*/
.testimonial {
  position: relative;
}

.testimonial .testimonial-caption {
  z-index: 9;
  position: relative;
}

.testimonial .testimonial-caption label {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--themeht-text-color);
  display: block;
}

.testimonial .testimonial-caption h5 {
  color: var(--themeht-primary-color);
  display: inline-block;
  margin-bottom: 10px;
}

.testimonial .testimonial-quote i {
  position: relative;
  display: inline-block;
  z-index: 9;
  color: var(--themeht-primary-color);
  font-size: 70px;
  line-height: 1;
  opacity: 0.4;
}

.testimonial-img img {
  border-radius: 20px;
  position: relative;
  z-index: 9;
  width: 100%;
}

.testimonial-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial.style-1 {
  border-radius: 20px;
  opacity: 0.3;
  padding: 70px 70px 65px 70px;
  box-shadow: none;
  margin: 0 20px;
  display: flex;
  align-items: center;
}

.testimonial.style-1 .testimonial-img {
  border-radius: 100%;
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 150px;
  height: 150px;
  margin-right: 30px;
}

.testimonial.style-1 .testimonial-media {
  justify-content: inherit;
}

.testimonial.style-1 img {
  border-radius: 100%;
  position: relative;
  z-index: 9;
  width: 100%;
}

.swiper-slide.swiper-slide-active .testimonial.style-1 {
  background: linear-gradient(115deg, var(--themeht-primary-color), var(--themeht-secondary-color));
  opacity: 1;
}

.swiper-slide.swiper-slide-active .testimonial.style-1 p, .swiper-slide.swiper-slide-active .testimonial-quote i, .swiper-slide.swiper-slide-active .testimonial.style-1 .testimonial-caption h5, .swiper-slide.swiper-slide-active .testimonial.style-1 .testimonial-caption label {
  color: var(--themeht-white-color);
}

.testimonial-box {
  background: var(--themeht-white-color);
  border-radius: 20px;
}

.testimonial.style-2 {
  margin: 0;
  padding: 0;
}

.testimonial.style-2 .testimonial-img {
  overflow: hidden;
  border-radius: 100%;
  position: relative;
  border-radius: 100%;
  display: inline-block;
  width: 150px;
  height: 150px;
}

.testimonial-carousel .carousel-inner {
  z-index: 9;
}

.testimonial-box.testimonial-dark {
  background: linear-gradient(115deg, var(--themeht-primary2-color), var(--themeht-secondary2-color));
}

.testimonial-box.testimonial-dark {
  background: linear-gradient(115deg, var(--themeht-primary2-color), var(--themeht-secondary2-color));
}

.testimonial-box.testimonial-dark .testimonial.style-2 p,
.testimonial-box.testimonial-dark .testimonial.style-2 .testimonial-caption h5,
.testimonial-box.testimonial-dark .testimonial.style-2 .testimonial-caption label {
  color: var(--themeht-white-color);
}

.testimonial-carousel .controls li {
  transform: scale(0.8);
  position: absolute;
  animation: leftRight 1.2s infinite;
  animation-duration: 5s;
  width: 100px;
  border-radius: 100%;
  cursor: pointer;
}

.testimonial-carousel .controls li img {
  transform: scale(0.8);
  border-radius: 20px;
}

.testimonial-carousel .controls li.active img {
  transform: scale(1);
  border-radius: 100%;
}

.testimonial-carousel .controls li:nth-child(1) {
  left: 0;
  top: 0;
}

.testimonial-carousel .controls li:nth-child(2) {
  left: 10%;
  top: 30%;
}

.testimonial-carousel .controls li:nth-child(3) {
  left: 0;
  bottom: 30%;
  animation: topBottom 1.2s infinite;
  animation-duration: 5s;
}

.testimonial-carousel .controls li:nth-child(4) {
  left: 10%;
  bottom: 0;
}

.testimonial-carousel .controls li:nth-child(5) {
  right: 0;
  top: 0;
}

.testimonial-carousel .controls li:nth-child(6) {
  right: 10%;
  top: 30%;
}

.testimonial-carousel .controls li:nth-child(7) {
  right: 0;
  bottom: 30%;
  animation: topBottom 1.2s infinite;
  animation-duration: 5s;
}

.testimonial-carousel .controls li:nth-child(8) {
  right: 10%;
  bottom: 0;
}

.tes1 .tes1-box-all {
  position: relative;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tes1 .tes1-box-all {
    margin: 0px 140px;
  }
}
.tes1 .tes1-box-all .tes1-box-area {
  border-radius: 50px 8px;
  background: #F4F3FF;
  margin-left: 160px;
  padding: 48px 48px 48px 160px;
  text-align: start;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tes1 .tes1-box-all .tes1-box-area {
    padding: 160px 48px 48px 48px;
    margin-left: 10px;
    margin-top: 100px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .tes1 .tes1-box-all .tes1-box-area {
    padding: 32px 32px 32px 32px;
    margin-left: 0;
    margin-top: 30px;
  }
}
.tes1 .tes1-box-all .tes1-box-area .stars li {
  color: #FFA800;
  font-size: 16px;
  height: 36px;
  width: 36px;
  background-color: #fff;
  border-radius: 2px;
  text-align: center;
  line-height: 36px;
  display: inline-block;
  margin: 0px 3px;
}
.tes1 .tes1-box-all .tes1-box-area p {
  color: var(--Home-Page-8-Text-Color, rgba(39, 26, 60, 0.8078431373));
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  padding: 24px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tes1 .tes1-box-all .tes1-box-area p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .tes1 .tes1-box-all .tes1-box-area p {
    font-size: 18px;
    line-height: 28px;
    padding: 16px 0px;
  }
}
.tes1 .tes1-box-all .tes1-box-area .bottom-heading {
  display: flex;
  align-items: center;
}
.tes1 .tes1-box-all .tes1-box-area .bottom-heading .image {
  width: 70px;
}
.tes1 .tes1-box-all .tes1-box-area .bottom-heading .heading1 {
  padding-left: 16px;
}
.tes1 .tes1-box-all .tes1-box-area .bottom-heading .heading1 p {
  color: var(--Home-Page-8-Paragraph-Color, #554F5F);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  padding: 8px 0px 0px 0px;
}
.tes1 .main-img {
  position: absolute;
  left: 0;
  bottom: 70px;
  padding-right: 30px;
  width: 320px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tes1 .main-img {
    bottom: auto;
    top: -100px;
    width: 250px;
  }
}
@media (max-width: 767px) {
  .tes1 .main-img {
    bottom: auto;
    top: -100px;
    width: 250px;
    display: none;
  }
}
.tes1.tes2 .tes1-box-all .tes1-box-area {
  background: #fff;
  border-radius: 8px;
}
.tes1.tes2 .tes1-box-all .tes1-box-area .stars li {
  background-color: #F5F5FD;
}

.tes1-all-slider-area {
  width: 1200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .controls {
    display: none;
  }
}
@media (max-width: 767px) {
  .controls {
    display: none;
  }
}

/*
::::::::::::::::::::::::::
 WORK AREA CSS
::::::::::::::::::::::::::
*/
.work1 .work-box {
  margin-top: 30px;
  padding: 32px;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: start;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .work1 .work-box {
    display: block;
  }
}
.work1 .work-box .heading1 {
  position: relative;
  z-index: 3;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .work1 .work-box .heading1 {
    padding-left: 0;
    padding-top: 20px;
  }
}
.work1 .work-box .icon-area {
  position: relative;
  z-index: 2;
  width: 100px;
}
.work1 .work-box .icon-area .icon {
  position: relative;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
}
.work1 .work-box .icon-area .icon img {
  position: relative;
  z-index: 3;
}
.work1 .work-box .icon-area .icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #646BF9;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 0;
  transform: scale(0.4);
}
.work1 .work-box .icon-area .icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 2;
  border-radius: 50%;
}
.work1 .work-box .icon-area .icon-span {
  height: 32px;
  width: 32px;
  text-align: center;
  line-height: 32px;
  position: absolute;
  top: -3px;
  right: -3px;
}
.work1 .work-box .icon-area .icon-span p {
  position: relative;
  z-index: 4;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  transition: all 0.4s;
}
.work1 .work-box .icon-area .icon-span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
}
.work1 .work-box .icon-area .icon-span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 0;
  transform: scale(0.4);
}
.work1 .work-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.work1 .work-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px 8px;
  background: #F6F7FF;
  z-index: 1;
  transition: all 0.4s;
}
.work1 .work-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
}
.work1 .work-box:hover .icon-area .icon::after {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s;
}
.work1 .work-box:hover .icon-area .icon-span p {
  color: #3B32F6;
  transition: all 0.4s;
}
.work1 .work-box:hover .icon-area .icon-span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 1;
  transform: scale(1);
}
.work1 .work-box:hover .heading1 h4 a {
  transition: all 0.4s;
  color: #fff;
}
.work1 .work-box:hover .heading1 p {
  transition: all 0.4s;
  color: rgba(255, 255, 255, 0.8705882353);
}
.work1 .work-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px 50px;
  background: #F6F7FF;
  z-index: 1;
  transition: all 0.4s;
}
.work1 .work-box:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px 50px;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.work1 .work-box.active {
  transition: all 0.4s;
}
.work1 .work-box.active .icon-area .icon::after {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s;
}
.work1 .work-box.active .icon-area .icon-span p {
  color: #3B32F6;
  transition: all 0.4s;
}
.work1 .work-box.active .icon-area .icon-span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 1;
  transform: scale(1);
}
.work1 .work-box.active .heading1 h4 a {
  transition: all 0.4s;
  color: #fff;
}
.work1 .work-box.active .heading1 p {
  transition: all 0.4s;
  color: rgba(255, 255, 255, 0.8705882353);
}
.work1 .work-box.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px 50px;
  background: #F6F7FF;
  z-index: 1;
  transition: all 0.4s;
}
.work1 .work-box.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px 50px;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.work1 .work-images {
  position: relative;
  height: 600px;
}
.work1 .work-images .image1 {
  margin-right: -80px;
  position: relative;
  top: -50px;
}
.work1 .work-images .image1 .stop-color1 {
  stop-color: #3B32F6;
}
.work1 .work-images .image1 .stop-color2 {
  stop-color: #49A6FF;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work1 .work-images .image1 {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .work1 .work-images .image1 {
    margin-right: 0;
    top: 0;
  }
}
.work1 .work-images .image2 {
  position: absolute;
  top: 70px;
  right: 0;
}
.work1 .work-images .image3 {
  position: absolute;
  bottom: -60px;
  left: 100px;
  width: 300px;
}
.work1.service-page .work-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px 50px;
  background: #fff;
  z-index: 1;
  transition: all 0.4s;
  border-radius: 8px !important;
}
.work1.service-page .work-box::after {
  border-radius: 8px !important;
}

.work2 .work-box {
  margin-top: 30px;
  padding: 32px;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: start;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .work2 .work-box {
    display: block;
  }
}
.work2 .work-box .heading1 {
  position: relative;
  z-index: 3;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .work2 .work-box .heading1 {
    padding-left: 0;
    padding-top: 20px;
  }
}
.work2 .work-box .icon-area {
  position: relative;
  z-index: 2;
  width: 100px;
}
.work2 .work-box .icon-area .icon {
  position: relative;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
}
.work2 .work-box .icon-area .icon img {
  position: relative;
  z-index: 3;
}
.work2 .work-box .icon-area .icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #646BF9;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 0;
  transform: scale(0.4);
}
.work2 .work-box .icon-area .icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 2;
  border-radius: 50%;
}
.work2 .work-box .icon-area .icon-span {
  height: 32px;
  width: 32px;
  text-align: center;
  line-height: 32px;
  position: absolute;
  top: -3px;
  right: -3px;
}
.work2 .work-box .icon-area .icon-span p {
  position: relative;
  z-index: 4;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  transition: all 0.4s;
}
.work2 .work-box .icon-area .icon-span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
}
.work2 .work-box .icon-area .icon-span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 0;
  transform: scale(0.4);
}
.work2 .work-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.work2 .work-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #F6F7FF;
  z-index: 1;
  transition: all 0.4s;
}
.work2 .work-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
}
.work2 .work-box:hover .icon-area .icon::after {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s;
}
.work2 .work-box:hover .icon-area .icon-span p {
  color: #3B32F6;
  transition: all 0.4s;
}
.work2 .work-box:hover .icon-area .icon-span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 1;
  transform: scale(1);
}
.work2 .work-box:hover .heading1 h4 a {
  transition: all 0.4s;
  color: #fff;
}
.work2 .work-box:hover .heading1 p {
  transition: all 0.4s;
  color: rgba(255, 255, 255, 0.8705882353);
}
.work2 .work-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #F6F7FF;
  z-index: 1;
  transition: all 0.4s;
}
.work2 .work-box:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.work2 .work-box.active {
  transition: all 0.4s;
}
.work2 .work-box.active .icon-area .icon::after {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s;
}
.work2 .work-box.active .icon-area .icon-span p {
  color: #3B32F6;
  transition: all 0.4s;
}
.work2 .work-box.active .icon-area .icon-span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 1;
  transform: scale(1);
}
.work2 .work-box.active .heading1 h4 a {
  transition: all 0.4s;
  color: #fff;
}
.work2 .work-box.active .heading1 p {
  transition: all 0.4s;
  color: rgba(255, 255, 255, 0.8705882353);
}
.work2 .work-box.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #F6F7FF;
  z-index: 1;
  transition: all 0.4s;
}
.work2 .work-box.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
  z-index: 1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.work2 .work-images {
  position: relative;
  height: 600px;
}
.work2 .work-images .image1 {
  margin-right: -80px;
  position: relative;
  top: -50px;
}
.work2 .work-images .image1 .stop-color1 {
  stop-color: #3B32F6;
}
.work2 .work-images .image1 .stop-color2 {
  stop-color: #49A6FF;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work2 .work-images .image1 {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .work2 .work-images .image1 {
    margin-right: 0;
    top: 0;
  }
}
.work2 .work-images .image2 {
  position: absolute;
  top: 70px;
  right: 0;
}
.work2 .work-images .image3 {
  position: absolute;
  bottom: -60px;
  left: 100px;
  width: 300px;
}
.work2.service-page .work-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #fff;
  z-index: 1;
  transition: all 0.4s;
  border-radius: 8px !important;
}
.work2.service-page .work-box::after {
  border-radius: 8px !important;
}

.work3 .work-box {
  margin-top: 30px;
  padding: 32px;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: start;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .work3 .work-box {
    display: block;
  }
}
.work3 .work-box .heading1 {
  position: relative;
  z-index: 3;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .work3 .work-box .heading1 {
    padding-left: 0;
    padding-top: 20px;
  }
}
.work3 .work-box .icon-area {
  position: relative;
  z-index: 2;
  width: 100px;
}
.work3 .work-box .icon-area .icon {
  position: relative;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
}
.work3 .work-box .icon-area .icon img {
  position: relative;
  z-index: 3;
}
.work3 .work-box .icon-area .icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #715BB7;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 0;
  transform: scale(0.4);
}
.work3 .work-box .icon-area .icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #4D32A5;
  z-index: 2;
  border-radius: 50%;
}
.work3 .work-box .icon-area .icon-span {
  height: 32px;
  width: 32px;
  text-align: center;
  line-height: 32px;
  position: absolute;
  top: -3px;
  right: -3px;
}
.work3 .work-box .icon-area .icon-span p {
  position: relative;
  z-index: 4;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  transition: all 0.4s;
}
.work3 .work-box .icon-area .icon-span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #4D32A5;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
}
.work3 .work-box .icon-area .icon-span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 0;
  transform: scale(0.4);
}
.work3 .work-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: #4D32A5;
  z-index: 1;
  transition: all 0.4s;
  transform: scale(0.4);
  opacity: 0;
}
.work3 .work-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #F6F7FF;
  z-index: 1;
  transition: all 0.4s;
}
.work3 .work-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
}
.work3 .work-box:hover .icon-area .icon::after {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s;
}
.work3 .work-box:hover .icon-area .icon-span p {
  color: #3B32F6;
  transition: all 0.4s;
}
.work3 .work-box:hover .icon-area .icon-span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 1;
  transform: scale(1);
}
.work3 .work-box:hover .heading1 h4 a {
  transition: all 0.4s;
  color: #fff;
}
.work3 .work-box:hover .heading1 p {
  transition: all 0.4s;
  color: rgba(255, 255, 255, 0.8705882353);
}
.work3 .work-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #F6F7FF;
  z-index: 1;
  transition: all 0.4s;
}
.work3 .work-box:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #4D32A5;
  z-index: 1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.work3 .work-box.active {
  transition: all 0.4s;
}
.work3 .work-box.active .icon-area .icon::after {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s;
}
.work3 .work-box.active .icon-area .icon-span p {
  color: #3B32F6;
  transition: all 0.4s;
}
.work3 .work-box.active .icon-area .icon-span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 1;
  transform: scale(1);
}
.work3 .work-box.active .heading1 h4 a {
  transition: all 0.4s;
  color: #fff;
}
.work3 .work-box.active .heading1 p {
  transition: all 0.4s;
  color: rgba(255, 255, 255, 0.8705882353);
}
.work3 .work-box.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #F6F7FF;
  z-index: 1;
  transition: all 0.4s;
}
.work3 .work-box.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #4D32A5;
  z-index: 1;
  transition: all 0.4s;
  transform: scale(1);
  opacity: 1;
}
.work3 .work-images {
  position: relative;
  height: 600px;
}
@media (max-width: 767px) {
  .work3 .work-images {
    height: 320px;
  }
}
.work3 .work-images .image1 {
  margin-right: -80px;
  position: relative;
  top: -50px;
}
.work3 .work-images .image1 .stop-color1 {
  stop-color: #F5F5FD;
}
.work3 .work-images .image1 .stop-color2 {
  stop-color: #F5F5FD;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work3 .work-images .image1 {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .work3 .work-images .image1 {
    margin-right: 0;
    top: 0;
  }
}
.work3 .work-images .image2 {
  position: absolute;
  top: 70px;
  right: 0;
}
.work3 .work-images .image3 {
  position: absolute;
  bottom: -60px;
  left: 100px;
  width: 300px;
}

/*
 ::::::::::::::::::::::::::
  WORK AREA CSS
 ::::::::::::::::::::::::::
 */
/*
::::::::::::::::::::::::::
 BLOG AREA CSS
::::::::::::::::::::::::::
*/
.blog1 {
  position: relative;
}
.blog1 .blog-box {
  margin-top: 30px;
  transition: all 0.4s;
}
.blog1 .blog-box .image img {
  width: 100%;
  transition: all 0.4s;
  border-radius: 50px 5px 0px 0px;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
}
.blog1 .blog-box .heading1 {
  border-radius: 0px 0px 50px 8px;
  background: #FFF;
  padding: 28px;
  transition: all 0.4s;
}
.blog1 .blog-box .heading1 .author-area a {
  padding-right: 30px;
  position: relative;
}
.blog1 .blog-box .heading1 .author-area a:nth-last-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 16px;
  width: 2px;
  background-color: rgba(93, 99, 105, 0.4862745098);
}
.blog1 .blog-box .heading1 .date {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
  display: inline-block;
}
.blog1 .blog-box .heading1 .date img {
  margin-top: -5px;
  margin-right: 5px;
}
.blog1 .blog-box .heading1 h5 a {
  padding-top: 16px;
}
.blog1 .blog-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
}
.blog1 .blog-box:hover .image img {
  width: 100%;
  transition: all 0.4s;
  border-radius: 5px 50px 0px 0px;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
}
.blog1 .blog-box:hover .heading1 {
  border-radius: 0px 0px 8px 50px;
  transition: all 0.4s;
}
.blog1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/blog1-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -3;
}
.blog1 .shape1 {
  position: absolute;
  bottom: 40%;
  right: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog1 .shape1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .blog1 .shape1 {
    display: none;
  }
}
.blog1.blog5 .blog-box .heading1 h5 a:hover {
  color: #5700FC;
}
.blog1.blog2 .blog-box {
  margin-top: 30px;
  transition: all 0.4s;
}
.blog1.blog2 .blog-box .image img {
  width: 100%;
  transition: all 0.4s;
  border-radius: 5px 5px 0px 0px;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
}
.blog1.blog2 .blog-box .heading1 {
  border-radius: 0px 0px 5px 5px;
  background: #FFF;
  padding: 28px;
  transition: all 0.4s;
}
.blog1.blog2 .blog-box .heading1 .date {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
  display: inline-block;
}
.blog1.blog2 .blog-box .heading1 .date img {
  margin-top: -5px;
  margin-right: 5px;
}
.blog1.blog2 .blog-box .heading1 h5 a {
  padding-top: 16px;
}
.blog1.blog2 .blog-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
}
.blog1.blog2 .blog-box:hover .image img {
  width: 100%;
  transition: all 0.4s;
  border-radius: 5px 5px 0px 0px;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
}
.blog1.blog2 .blog-box:hover .heading1 {
  border-radius: 0px 0px 8px 5px;
  transition: all 0.4s;
}
.blog1.blog2.blog-page::after {
  display: none;
}
.blog1.blog2.blog-page .blog-box {
  margin-top: 0;
  margin-bottom: 30px;
}
.blog1.blog2.blog-page .blog-box .heading1 {
  background-color: #F5F5FD;
}

.blog3 {
  background-color: #F5F5FD;
}
.blog3 .blog-box {
  margin-top: 20px;
  background-color: #FFF;
  border-radius: 8px;
  transition: all 0.4s;
}
.blog3 .blog-box .author-area a {
  padding-right: 30px;
  position: relative;
}
.blog3 .blog-box .author-area a:nth-last-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 16px;
  width: 2px;
  background-color: rgba(93, 99, 105, 0.4862745098);
}
.blog3 .blog-box .image {
  overflow: hidden;
  border-radius: 8px 8px 0px 0px;
}
.blog3 .blog-box .image img {
  width: 100%;
  transition: all 0.4s;
}
.blog3 .blog-box .heading3 {
  padding: 32px;
}
.blog3 .blog-box .heading3 h4 a {
  display: inline-block;
  font-size: 24px;
  line-height: 32px;
  padding: 12px 0px 16px 0px;
  transition: all 0.4s;
}
.blog3 .blog-box .heading3 h4 a:hover {
  color: #FA7D3C;
  transition: all 0.4s;
}
.blog3 .blog-box .heading3 .date {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
  display: inline-block;
}
.blog3 .blog-box .heading3 .date img {
  transform: translateY(-4px);
  margin-right: 3px;
}
.blog3 .blog-box:hover {
  transform: translateY(-10px);
  transition: all 0.4s;
}
.blog3 .blog-box:hover .image img {
  transition: all 0.4s;
  transform: scale(1.1) rotate(4deg);
}
.blog3 .blog-box.smoll {
  margin-top: 20px;
}
.blog3 .blog-box.smoll .heading3 h4 a {
  font-size: 20px;
  line-height: 28px;
  padding: 12px 0px 24px 0px;
}

.details-sidebox {
  border-radius: 4px;
  background: #F5F5FD;
  padding: 24px;
  margin-bottom: 40px;
}
.details-sidebox h3 {
  color: var(--Home-Page-3-Color-Text-Color, #070811);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  text-transform: capitalize;
  padding-bottom: 24px;
}
.details-sidebox .search-area {
  position: relative;
}
.details-sidebox .search-area input {
  background-color: #fff;
  border-radius: 4px;
  padding: 18px 20px;
  border: none;
  width: 100%;
}
.details-sidebox .search-area input::-moz-placeholder {
  color: var(--Home-Page-3-Color-Text-Color, #070811);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
}
.details-sidebox .search-area input::placeholder {
  color: var(--Home-Page-3-Color-Text-Color, #070811);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
}
.details-sidebox .search-area input:focus {
  outline: none;
}
.details-sidebox .search-area .button button {
  background: none;
  border: none;
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 20px;
}
.details-sidebox .recent-post ul li a {
  display: inline-block;
  color: var(--Home-Page-3-Color-Text-Color, #070811);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
  padding: 24px 22px 24px 26px;
  border-radius: 4px;
  background: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  transition: all 0.4s;
}
.details-sidebox .recent-post ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2%;
  height: 100%;
  background-color: var(--vtc-bg-main-bg-1);
  border-radius: 4px;
  z-index: -1;
  transition: all 0.4s;
}
.details-sidebox .recent-post ul li a:hover {
  transition: all 0.4s;
  color: #fff;
}
.details-sidebox .recent-post ul li a:hover::after {
  width: 100%;
  transition: all 0.4s;
}
.details-sidebox .recent-post ul li a.active {
  color: #fff;
}
.details-sidebox .recent-post ul li a.active::after {
  width: 100%;
}
.details-sidebox .blog-writers {
  margin-top: 8px;
}
.details-sidebox .blog-writers ul li {
  display: inline-block;
  margin-right: 12px;
}
.details-sidebox .categorys ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  margin-top: 20px;
  padding: 20px;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  z-index: 1;
  transition: all 0.4s;
}
.details-sidebox .categorys ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 120px;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  transform: scale(0.4);
  opacity: 0;
  transition: all 0.4s;
  z-index: -1;
}
.details-sidebox .categorys ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  z-index: -1;
}
.details-sidebox .categorys ul li a:hover {
  transition: all 0.4s;
  color: #fff;
}
.details-sidebox .categorys ul li a:hover::after {
  transform: scale(1);
  opacity: 1;
  transition: all 0.4s;
  border-radius: 8px;
}
.details-sidebox .categorys ul li:nth-child(1) a {
  margin-top: 6px;
}
.details-sidebox .phone-btn {
  margin-top: 10px;
}
.details-sidebox .phone-btn a {
  display: inline-block;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  border-radius: 4px;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  padding: 21px 18px 16px 18px;
  transition: all 0.4s;
}
.details-sidebox .phone-btn a:hover {
  transform: translateY(-5px);
}
.details-sidebox .phone-btn a img {
  margin-right: 2px;
  transform: translateY(-3px);
}
.details-sidebox .tags ul li {
  display: inline-block;
}
.details-sidebox .tags ul li a {
  display: inline-block;
  color: var(--Home-Page-3-Color-Text-Color, #070811);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
  border-radius: 4px;
  padding: 10px 16px;
  margin: 0px 12px 12px 0px;
  position: relative;
  z-index: 1;
}
.details-sidebox .tags ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  transform: scale(0.4);
  opacity: 0;
  transition: all 0.4s;
  z-index: 0;
  border-radius: 4px;
  z-index: -1;
}
.details-sidebox .tags ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  background: #fff;
  transition: all 0.4s;
  z-index: -1;
}
.details-sidebox .tags ul li a:hover {
  color: #fff;
  transition: all 0.4s;
}
.details-sidebox .tags ul li a:hover::after {
  transform: scale(1);
  opacity: 1;
  transition: all 0.4s;
}
.details-sidebox .tags ul li a.active {
  color: #fff;
  transition: all 0.4s;
}

.details-posts.left {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .details-posts.left {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .details-posts.left {
    padding-left: 0;
  }
}
.details-posts.right {
  padding-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .details-posts.right {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .details-posts.right {
    padding-right: 0;
  }
}

.details-posts .details-post-single .image img {
  width: 100%;
}
.details-posts .details-post-single .details-list {
  margin-top: 16px;
}
.details-posts .details-post-single .details-list li {
  display: flex;
  align-items: center;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  padding-top: 16px;
}
.details-posts .details-post-single .details-list li span.check {
  display: inline-block;
  height: 20px;
  width: 20px;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  margin-right: 5px;
}
.details-posts .details-tagsdates {
  margin-top: 24px;
}
.details-posts .details-tagsdates li {
  display: inline-block;
  margin-right: 38px;
}
.details-posts .details-tagsdates li.tag a {
  display: inline-block;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  border-radius: 4px;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  padding: 10px 12px;
  position: relative;
}
.details-posts .details-tagsdates li.date a {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  position: relative;
}
.details-posts .details-tagsdates li.date a::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 2px;
  height: 20px;
  background-color: #D4D3D6;
}
.details-posts .details-tagsdates li.date a img {
  transform: translateY(-3px);
  margin-right: 4px;
}
.details-posts .details-border {
  background-color: #E7E6E7;
  height: 1px;
  width: 100%;
  margin: 40px 0px;
}
.details-posts .details-social-area .tags-area ul li {
  display: inline-block;
}
.details-posts .details-social-area .tags-area ul li.text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  margin-right: 10px;
}
.details-posts .details-social-area .tags-area ul li.tag a {
  display: inline-block;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  border-radius: 4px;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  padding: 10px 12px;
  position: relative;
  margin-left: 12px;
}
.details-posts .details-social-area .social-area {
  text-align: end;
}
.details-posts .details-social-area .social-area ul li {
  display: inline-block;
}
.details-posts .details-social-area .social-area ul li.text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 100% */
  margin-right: 10px;
}
.details-posts .details-social-area .social-area ul li.icon a {
  display: inline-block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  color: #0B0314;
  font-size: 18px;
  margin: 0px 1px;
  transition: all 0.4s;
}
.details-posts .details-social-area .social-area ul li.icon a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #F5F5FD;
  border-radius: 50%;
  z-index: -2;
}
.details-posts .details-social-area .social-area ul li.icon a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}
.details-posts .details-social-area .social-area ul li.icon a:hover {
  transition: all 0.4s;
  color: #fff;
}
.details-posts .details-social-area .social-area ul li.icon a:hover::before {
  transition: all 0.4s;
  opacity: 1;
}

.comment-boxs .comment-box {
  margin-top: 30px;
  border-radius: 8px;
  background: var(--SEO-Marketing-Gray-Color, #F5F5FD);
  padding: 32px;
}
@media (max-width: 767px) {
  .comment-boxs .comment-box {
    padding: 16px;
  }
}
.comment-boxs .comment-box .outhor-area-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comment-boxs .comment-box .outhor-area-all .author-area {
  display: flex;
  align-items: center;
}
.comment-boxs .comment-box .outhor-area-all .author-area .heading {
  padding-left: 22px;
}
.comment-boxs .comment-box .outhor-area-all .author-area .heading a.date {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
}
.comment-boxs .comment-box .outhor-area-all .author-area .heading a.date img {
  transform: translateY(-3px);
  margin-right: 3px;
}
.comment-boxs .comment-box .outhor-area-all .author-area .heading h4 a {
  display: inline-block;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
  padding-top: 12px;
}
.comment-boxs .comment-box .outhor-area-all .reply-btn a {
  display: inline-block;
  color: var(--Main-Text-Color, #1D2940);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
  transition: all 0.4s;
}
.comment-boxs .comment-box .outhor-area-all .reply-btn a:hover {
  transition: all 0.4s;
  color: #FB3F52;
}
.comment-boxs .comment-box p {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.444% */
  padding-top: 30px;
}
.comment-boxs .comment-box:nth-child(3) {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .comment-boxs .comment-box:nth-child(3) {
    margin-left: 0;
  }
}

.details-contact-area .faq-contact-form {
  border-radius: 8px;
  background-color: #F5F5FD;
  padding: 32px 28px;
}
.details-contact-area .faq-contact-form .single-input {
  margin-top: 20px;
}
.details-contact-area .faq-contact-form .single-input input, .details-contact-area .faq-contact-form .single-input textarea {
  border-radius: 4px;
  border: none;
  background-color: #fff;
  padding: 16px;
  width: 100%;
}
.details-contact-area .faq-contact-form .single-input input:focus, .details-contact-area .faq-contact-form .single-input textarea:focus {
  outline: none;
}
.details-contact-area .faq-contact-form .button button {
  width: 100%;
}

.left-space30 {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .left-space30 {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .left-space30 {
    padding-left: 0px;
  }
}

.right-space30 {
  padding-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .right-space30 {
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .right-space30 {
    padding-right: 0px;
  }
}

/*
::::::::::::::::::::::::::
 BLOG AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 FOOTER AREA CSS
::::::::::::::::::::::::::
*/
.footer1 {
  padding-top: 100px;
}
.footer1 .logo {
  width: 160px;
  display: inline-block;
  margin-bottom: 20px;
}
.footer1 .form-area {
  position: relative;
  margin-top: 28px;
  margin-right: 20px;
}
.footer1 .form-area input {
  padding: 16px 22px;
  border: none;
  border-radius: 64px;
  background-color: #F5F5FD;
  width: 100%;
}
.footer1 .form-area input:focus {
  outline: none;
}
.footer1 .form-area input::-moz-placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
}
.footer1 .form-area input::placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
}
.footer1 .form-area .form-btn {
  height: 44px;
  width: 44px;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  border: none;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  position: absolute;
  right: 7px;
  top: 7px;
}
.footer1 .menu-list {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer1 .menu-list {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .footer1 .menu-list {
    padding-left: 0;
  }
}
.footer1 .menu-list h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer1 .menu-list h3 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer1 .menu-list h3 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
.footer1 .menu-list ul li a {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  display: inline-block;
  margin-top: 16px;
  transition: all 0.4s;
}
.footer1 .menu-list ul li a:hover {
  transition: all 0.4s;
  color: #FA7D3C;
  transform: translateX(5px);
}
.footer1 .menu-list.contact-list {
  padding-left: 0;
}
.footer1 .menu-list.contact-list .contact-box {
  display: flex;
  align-items: center;
  padding-top: 16px;
}
.footer1 .menu-list.contact-list .contact-box .icon {
  margin-right: 10px;
}
.footer1 .menu-list.contact-list .contact-box .pera a {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.footer1 .menu-list.contact-list .contact-box .pera a:hover {
  transition: all 0.4s;
  color: #FA7D3C;
}
.footer1 .footer-border {
  height: 1px;
  width: 100%;
  background-color: #E7E6E7;
  margin: 20px 0px;
}
.footer1 .coppyright {
  color: rgba(17, 17, 17, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 100% */
}
.footer1 .footer-social {
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer1 .footer-social {
    text-align: start;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .footer1 .footer-social {
    text-align: start;
    margin-top: 20px;
  }
}
.footer1 .footer-social li {
  display: inline-block;
}
.footer1 .footer-social li a {
  display: inline-block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  color: #0B0314;
  font-size: 18px;
  margin: 0px 1px;
  transition: all 0.4s;
}
.footer1 .footer-social li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #F5F5FD;
  border-radius: 50%;
  z-index: -2;
}
.footer1 .footer-social li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}
.footer1 .footer-social li a:hover {
  transition: all 0.4s;
  color: #fff;
}
.footer1 .footer-social li a:hover::before {
  transition: all 0.4s;
  opacity: 1;
}

.footer3 {
  padding-top: 100px;
}
.footer3 .logo {
  width: 160px;
  display: inline-block;
  margin-bottom: 20px;
}
.footer3 .form-area {
  position: relative;
  margin-top: 28px;
  margin-right: 20px;
}
.footer3 .form-area input {
  padding: 16px 22px;
  border: none;
  border-radius: 64px;
  background-color: #F5F5FD;
  width: 100%;
}
.footer3 .form-area input:focus {
  outline: none;
}
.footer3 .form-area input::-moz-placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
}
.footer3 .form-area input::placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
}
.footer3 .form-area .form-btn {
  height: 44px;
  width: 44px;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  border: none;
  background: #4D32A5;
  position: absolute;
  right: 7px;
  top: 7px;
}
.footer3 .menu-list {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer3 .menu-list {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .footer3 .menu-list {
    padding-left: 0;
  }
}
.footer3 .menu-list h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer3 .menu-list h3 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer3 .menu-list h3 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
.footer3 .menu-list ul li a {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  display: inline-block;
  margin-top: 16px;
  transition: all 0.4s;
}
.footer3 .menu-list ul li a:hover {
  transition: all 0.4s;
  color: #4D32A5;
  transform: translateX(5px);
}
.footer3 .menu-list.contact-list {
  padding-left: 0;
}
.footer3 .menu-list.contact-list .contact-box {
  display: flex;
  align-items: center;
  padding-top: 16px;
}
.footer3 .menu-list.contact-list .contact-box .icon {
  margin-right: 10px;
}
.footer3 .menu-list.contact-list .contact-box .pera a {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.footer3 .menu-list.contact-list .contact-box .pera a:hover {
  transition: all 0.4s;
  color: #4D32A5;
}
.footer3 .footer-border {
  height: 1px;
  width: 100%;
  background-color: #E7E6E7;
  margin: 20px 0px;
}
.footer3 .coppyright {
  color: rgba(17, 17, 17, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
}
.footer3 .footer-social {
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer3 .footer-social {
    text-align: start;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .footer3 .footer-social {
    text-align: start;
    margin-top: 20px;
  }
}
.footer3 .footer-social li {
  display: inline-block;
}
.footer3 .footer-social li a {
  display: inline-block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  color: #0B0314;
  font-size: 18px;
  margin: 0px 1px;
  transition: all 0.4s;
}
.footer3 .footer-social li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #F5F5FD;
  border-radius: 50%;
  z-index: -2;
}
.footer3 .footer-social li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #4D32A5;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}
.footer3 .footer-social li a:hover {
  transition: all 0.4s;
  color: #fff;
}
.footer3 .footer-social li a:hover::before {
  transition: all 0.4s;
  opacity: 1;
}

.footer5 {
  padding-top: 100px;
}
.footer5 .logo {
  width: 160px;
  display: inline-block;
  margin-bottom: 20px;
}
.footer5 .form-area {
  position: relative;
  margin-top: 28px;
  margin-right: 20px;
}
.footer5 .form-area input {
  padding: 16px 22px;
  border: none;
  border-radius: 64px;
  background-color: #F5F5FD;
  width: 100%;
}
.footer5 .form-area input:focus {
  outline: none;
}
.footer5 .form-area input::-moz-placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
}
.footer5 .form-area input::placeholder {
  color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  text-transform: capitalize;
}
.footer5 .form-area .form-btn {
  height: 44px;
  width: 44px;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  border: none;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
  position: absolute;
  right: 7px;
  top: 7px;
}
.footer5 .menu-list {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer5 .menu-list {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .footer5 .menu-list {
    padding-left: 0;
  }
}
.footer5 .menu-list h3 {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer5 .menu-list h3 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer5 .menu-list h3 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
.footer5 .menu-list ul li a {
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  display: inline-block;
  margin-top: 16px;
  transition: all 0.4s;
}
.footer5 .menu-list ul li a:hover {
  transition: all 0.4s;
  color: #4D32A5;
  transform: translateX(5px);
}
.footer5 .menu-list.contact-list {
  padding-left: 0;
}
.footer5 .menu-list.contact-list .contact-box {
  display: flex;
  align-items: center;
  padding-top: 16px;
}
.footer5 .menu-list.contact-list .contact-box .icon {
  margin-right: 10px;
}
.footer5 .menu-list.contact-list .contact-box .pera a {
  display: inline-block;
  color: var(--SEO-Marketing-Text-Color, #0B0314);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  transition: all 0.4s;
}
.footer5 .menu-list.contact-list .contact-box .pera a:hover {
  transition: all 0.4s;
  color: #4D32A5;
}
.footer5 .footer-border {
  height: 1px;
  width: 100%;
  background-color: #E7E6E7;
  margin: 20px 0px;
}
.footer5 .coppyright {
  color: rgba(17, 17, 17, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
}
.footer5 .footer-social {
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer5 .footer-social {
    text-align: start;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .footer5 .footer-social {
    text-align: start;
    margin-top: 20px;
  }
}
.footer5 .footer-social li {
  display: inline-block;
}
.footer5 .footer-social li a {
  display: inline-block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  color: #0B0314;
  font-size: 18px;
  margin: 0px 1px;
  transition: all 0.4s;
}
.footer5 .footer-social li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #F5F5FD;
  border-radius: 50%;
  z-index: -2;
}
.footer5 .footer-social li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--Social-Media-Marketing-Linner-Color-Main, linear-gradient(90deg, #5700FC 2.31%, #9553FD 100%));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}
.footer5 .footer-social li a:hover {
  transition: all 0.4s;
  color: #fff;
}
.footer5 .footer-social li a:hover::before {
  transition: all 0.4s;
  opacity: 1;
}

/*
::::::::::::::::::::::::::
 FOOTER AREA CSS
::::::::::::::::::::::::::
*/
/*
::::::::::::::::::::::::::
 HEADER AREA CSS
::::::::::::::::::::::::::
*/
.header-area.header-area1 .header-elements .main-menu-ex ul li a.active {
  color: #FB3F52;
}

.header-area.header-area5 .header-elements .main-menu-ex ul li a.active {
  color: #4D32A5;
}

/*
::::::::::::::::::::::::::
 HEADER AREA CSS
::::::::::::::::::::::::::
*/
/*
 ::::::::::::::::::::::::::
  NAV MENU AREA CSS
 ::::::::::::::::::::::::::
 */
.header-area {
  padding: 12px 0;
  position: absolute;
  background: transparent;
  width: 100%;
  z-index: 999;
}

.site-logo {
  max-width: 130px;
  height: auto;
  display: flex;
  align-items: center;
}

.site-logo a {
  display: inline-block;
  position: relative;
  z-index: 9;
}

.header-area .header-elements {
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: space-between;
}

.header-area1.sticky .header-elements .main-menu-ex {
  padding: 7px 24px;
  position: relative;
}

.main-menu-ex li {
  display: inline-block;
}

.main-menu-ex li {
  position: relative;
  z-index: 9;
}

.main-menu-ex li li {
  display: block;
}

.main-menu-ex li > ul {
  opacity: 0;
  visibility: hidden;
  top: 60px;
  right: 0;
  transition: all 0.3s;
  transform: translateY(20px) rotateX(45deg);
}

.main-menu-ex li li > ul {
  left: 100%;
  right: auto;
}

.main-menu-ex li li:hover > ul {
  top: 0;
}

.main-menu-ex li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 50px;
  transition: all 0.3s;
  z-index: 99;
  transform: translateY(0);
}

li.has-dropdown1 {
  position: relative;
}

li.has-dropdown1 span {
  position: absolute;
  right: 10px;
}

.header-area.header-area1 .header-elements {
  border-radius: 4px;
  background: #FFF;
  border-radius: 84px;
  padding: 14px 24px;
  margin-top: 16px;
}
.header-area.header-area1 .header-elements .main-menu-ex {
  padding: 2px 24px;
  position: relative;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all {
  visibility: hidden;
  opacity: 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  position: absolute;
  background: white;
  top: 205.3%;
  transform: scale(1, 0);
  z-index: 0;
  transition: all 0.4s;
  border-radius: 5px;
  padding: 36px 0;
  left: -625px;
  width: 1300px;
  min-height: 440px;
  overflow-x: hidden;
  overflow-y: hidden;
  transform-origin: top;
  display: block;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all ul {
  box-shadow: none !important;
  padding: 0px 10px !important;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all ul li a {
  display: inline-block;
  padding: 8px 0px 8px 30px;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single {
  position: relative;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #081120;
  padding-left: 44px;
  position: relative;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 43px;
  height: 2px;
  width: 25%;
  background-color: rgba(145, 145, 145, 0.2117647059);
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 400px;
  width: 2px;
  background-color: rgba(145, 145, 145, 0.2117647059);
  z-index: 99;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
  display: none;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li:hover .mega-menu-all {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(-30px);
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu {
  visibility: hidden;
  opacity: 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  position: absolute;
  background: white;
  top: 201.3%;
  transform: scale(1, 0);
  z-index: 0;
  transition: all 0.4s;
  border-radius: 5px;
  padding: 20px;
  left: -328px;
  width: 1295px;
  max-height: 600px;
  overflow: hidden;
  transform-origin: top;
  display: block;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
  display: flex;
  align-items: center;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
  transition: all 0.4s;
  position: relative;
  z-index: 1;
  margin: 0 20px 0 0;
  text-align: center;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: 0.18px;
  display: inline-block;
  padding-top: 20px;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
  transform: scale(1);
  transition: all 0.4s;
  visibility: visible;
  opacity: 0.4;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
  top: 84px;
  visibility: visible;
  opacity: 1;
  transition: all 0.6s;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
  color: #FA7D3C;
  transition: all 0.4s;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 0.4s;
  background: #000026;
  opacity: 0;
  border-radius: 4px;
  transform: scale(0.8);
  z-index: 1;
  visibility: hidden;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
  height: 100%;
  width: 100%;
  border-radius: 4px;
  transition: all 0.4s;
  border: 1px solid #E5E7EB;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  transition: all 0.6s;
  margin: 0 auto;
  left: 18%;
  right: 20%;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
  display: inline-block;
  padding: 18px;
  transition: all 0.4s;
  border-radius: 8px;
  position: relative;
  width: 150px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  text-transform: capitalize;
  z-index: 1;
  background-color: #5A65F5;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
  transform: rotate(-45deg);
  margin-left: 4px;
  transition: all 0.4s;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
  color: #fff;
  transition: all 0.4s;
  transform: translateY(-5px);
  background: #5A65F5;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
  transform: rotate(0);
  transition: all 0.4s;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li ul {
  position: absolute;
  left: 0;
  top: 50px;
  border-radius: 4px;
  background: #fff;
  width: 210px;
  box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
  padding: 10px;
  z-index: 99;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li ul:hover > a {
  transition: all 0.4s;
  padding-left: 25px;
  color: red;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li ul:hover > a::after {
  background: blue;
  transition: all 0.4s;
  visibility: visible;
  opacity: 1;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li ul li ul {
  left: 190px;
  top: 10px;
  z-index: 99;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li ul li a {
  color: var(--qt-text-h-text3);
}
.header-area.header-area1 .header-elements .main-menu-ex ul li ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 0px;
  height: 100%;
  color: #FA7D3C;
  border-radius: 4px;
  transition: all 0.4s;
  z-index: -1;
  opacity: 1;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li ul li a:hover {
  color: #FA7D3C;
  transition: all 0.4s;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li ul li a:hover::after {
  background-color: #FA7D3C;
  border-radius: 4px;
  width: 5px;
  left: -10px;
  opacity: 1;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li a {
  color: var(--vtc-text-heading-text-1);
  font-size: 18px;
  display: block;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li a:hover {
  color: #FA7D3C;
}
.header-area.header-area1 .header-elements .main-menu-ex ul li:hover .tp-submenu {
  visibility: visible;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 9;
  top: 150.3%;
  position: absolute;
  transition: all 0.4s;
  transform: scale(1);
}
.header-area.header-area1 .header-elements .header1-buttons {
  display: flex;
  align-items: center;
}
.header-area.header-area1 .header-elements .header1-buttons span {
  display: inline-block;
}
.header-area.header-area1 .header-elements .header1-buttons span img {
  margin-left: 10px;
  margin-top: -5px;
}

.header-area.header-area5 .header-elements {
  border-radius: 4px;
  background: #FFF;
  border-radius: 84px;
  padding: 14px 24px;
  margin-top: 16px;
}
.header-area.header-area5 .header-elements .main-menu-ex {
  padding: 2px 24px;
  position: relative;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .mega-menu-all {
  visibility: hidden;
  opacity: 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  position: absolute;
  background: white;
  top: 205.3%;
  transform: scale(1, 0);
  z-index: 0;
  transition: all 0.4s;
  border-radius: 5px;
  padding: 36px 0;
  left: -625px;
  width: 1300px;
  min-height: 440px;
  overflow-x: hidden;
  overflow-y: hidden;
  transform-origin: top;
  display: block;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .mega-menu-all ul {
  box-shadow: none !important;
  padding: 0px 10px !important;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .mega-menu-all ul li a {
  display: inline-block;
  padding: 8px 0px 8px 30px;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single {
  position: relative;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single h3 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #081120;
  padding-left: 44px;
  position: relative;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single h3::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 43px;
  height: 2px;
  width: 25%;
  background-color: rgba(145, 145, 145, 0.2117647059);
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 400px;
  width: 2px;
  background-color: rgba(145, 145, 145, 0.2117647059);
  z-index: 99;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .mega-menu-all .mega-menu-single.dis1::after {
  display: none;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li:hover .mega-menu-all {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(-30px);
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu {
  visibility: hidden;
  opacity: 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  position: absolute;
  background: white;
  top: 201.3%;
  transform: scale(1, 0);
  z-index: 0;
  transition: all 0.4s;
  border-radius: 5px;
  padding: 20px;
  left: -332px;
  width: 1295px;
  max-height: 600px;
  overflow: hidden;
  transform-origin: top;
  display: block;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .all-images-menu {
  display: flex;
  align-items: center;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb {
  transition: all 0.4s;
  position: relative;
  z-index: 1;
  margin: 0 20px 0 0;
  text-align: center;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .bottom-text {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: 0.18px;
  display: inline-block;
  padding-top: 20px;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .img1::after {
  transform: scale(1);
  transition: all 0.4s;
  visibility: visible;
  opacity: 0.4;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
  top: 84px;
  visibility: visible;
  opacity: 1;
  transition: all 0.6s;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb:hover .bottom-text {
  color: #FA7D3C;
  transition: all 0.4s;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 0.4s;
  background: #000026;
  opacity: 0;
  border-radius: 4px;
  transform: scale(0.8);
  z-index: 1;
  visibility: hidden;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .img1 img {
  height: 100%;
  width: 100%;
  border-radius: 4px;
  transition: all 0.4s;
  border: 1px solid #E5E7EB;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  transition: all 0.6s;
  margin: 0 auto;
  left: 18%;
  right: 20%;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
  display: inline-block;
  padding: 18px;
  transition: all 0.4s;
  border-radius: 8px;
  position: relative;
  width: 150px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  text-transform: capitalize;
  z-index: 1;
  background-color: #9553FD;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 i {
  transform: rotate(-45deg);
  margin-left: 4px;
  transition: all 0.4s;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover {
  color: #fff;
  transition: all 0.4s;
  transform: translateY(-5px);
  background: #9553FD;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1:hover i {
  transform: rotate(0);
  transition: all 0.4s;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li ul {
  position: absolute;
  left: 0;
  top: 50px;
  border-radius: 4px;
  background: #fff;
  width: 210px;
  box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
  padding: 10px;
  z-index: 99;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li ul:hover > a {
  transition: all 0.4s;
  padding-left: 25px;
  color: red;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li ul:hover > a::after {
  background: blue;
  transition: all 0.4s;
  visibility: visible;
  opacity: 1;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li ul li ul {
  left: 190px;
  top: 10px;
  z-index: 99;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li ul li a {
  color: var(--qt-text-h-text3);
}
.header-area.header-area5 .header-elements .main-menu-ex ul li ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 0px;
  height: 100%;
  color: #9553FD;
  border-radius: 4px;
  transition: all 0.4s;
  z-index: -1;
  opacity: 1;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li ul li a:hover {
  color: #9553FD;
  transition: all 0.4s;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li ul li a:hover::after {
  background-color: #9553FD;
  border-radius: 4px;
  width: 5px;
  left: -10px;
  opacity: 1;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li a {
  color: var(--vtc-text-heading-text-1);
  font-size: 18px;
  display: block;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li a:hover {
  color: #9553FD;
}
.header-area.header-area5 .header-elements .main-menu-ex ul li:hover .tp-submenu {
  visibility: visible;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 9;
  top: 150.3%;
  position: absolute;
  transition: all 0.4s;
  transform: scale(1);
}
.header-area.header-area5 .header-elements .header1-buttons {
  display: flex;
  align-items: center;
}
.header-area.header-area5 .header-elements .header1-buttons span {
  display: inline-block;
}
.header-area.header-area5 .header-elements .header1-buttons span img {
  margin-left: 10px;
  margin-top: -5px;
}

.header-area1.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  z-index: 111;
  animation-name: fade-in-down;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}
.header-area1.sticky .header-elements {
  padding: 0 0 !important;
  margin-top: 0px !important;
  background: none !important;
}

.header-area5.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  z-index: 111;
  animation-name: fade-in-down;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}
.header-area5.sticky .header-elements {
  padding: 0 0 !important;
  margin-top: 0px !important;
  background: none !important;
}

.header-area.header-area1 .main-menu-ex.main-menu-ex1 li.has-dropdown:hover a.main1 {
  color: #FA7D3C;
}

.header-area.header-area1 .main-menu-ex.main-menu-ex1 li.dropdown-menu-parrent:hover a.main1 {
  color: #FA7D3C;
}

.header-area.header-area1 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main {
  color: #FA7D3C;
}
.header-area.header-area1 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main::after {
  background-color: #FA7D3C;
  border-radius: 4px;
  width: 5px;
  left: -10px;
  opacity: 1;
}

.header-area.header-area5 .main-menu-ex.main-menu-ex1 li.has-dropdown:hover a.main1 {
  color: #9553FD;
}

.header-area.header-area5 .main-menu-ex.main-menu-ex1 li.dropdown-menu-parrent:hover a.main1 {
  color: #9553FD;
}

.header-area.header-area5 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main {
  color: #9553FD;
}
.header-area.header-area5 .main-menu-ex.main-menu-ex1 li.has-dropdown.has-dropdown1:hover a.main::after {
  background-color: #9553FD;
  border-radius: 4px;
  width: 5px;
  left: -10px;
  opacity: 1;
}
@keyframes fade-in-down {
  0% {
    transform: translate3d(0, -50px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fade-in-down {
  animation-name: fade-in-down;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

/*
::::::::::::::::::::::::::
 NAV MENU AREA CSS
::::::::::::::::::::::::::
*//*# sourceMappingURL=main.css.map */