/* fonts */
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.woff2") format("woff2"),
    url("../fonts/Raleway-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"),
    url("../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-SemiBold.woff2") format("woff2"),
    url("../fonts/Raleway-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.woff2") format("woff2"),
    url("../fonts/Raleway-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* root variables */
:root {
  --button-bg: #00ef49;
  --theme-dark: #141129;
  --theme-light: #411438;
  --basic-font: "Raleway", sans-serif;
  --stiky-bg: #ffffff;
  --sb-size: 5px;
}

/* srollbar */
body::-webkit-scrollbar,
.mega_drop ul::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track,
.mega_drop ul::-webkit-scrollbar-track {
  background: var(--theme-light);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb,
.mega_drop ul::-webkit-scrollbar-thumb {
  background: var(--button-bg);
  border-radius: 3px;
}

@supports not selector(::-webkit-scrollbar) {

  body,
  .mega_drop ul {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

/* master selectors */
body {
  font-family: var(--basic-font);
  background: var(--theme-dark);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

.y-pad {
  padding-top: 13rem;
  padding-bottom: 4rem;
}

/* header styling */
.main_nav {
  background: url(../images/h_banner/backgroun_owl_eye_role.webp) top right / cover no-repeat, linear-gradient(176deg, #411438 -25%, #141129 100%);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.main_nav:before {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(74, 21, 59, 0.8827906162464986) 0%, rgb(21 17 40 / 78%) 77%);
}

.navbar-iner {
  padding: 14px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: 999;
}

.navbar-iner.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--stiky-bg);
  z-index: 99999;
  backdrop-filter: blur(15px);
  padding: 0 2%;
  box-shadow: rgb(0 0 0 / 11%) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

a.logo {
  height: 80px;
  width: 140px;
  text-decoration: none;
  position: relative;
  z-index: 99999999;
}

a.logo>img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s;
}
.navbar-iner.sticky a.logo>img {
  filter: invert(1);
}
.secfka span i {
  font-size: 20px;
  border: 1px solid var(--button-bg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.nav_list>ul {
  display: flex;
  align-items: center;
}

.nav_list>ul>li {
  margin-left: 2.4rem;
  padding: 1rem 0;
}

.nav_list>ul>li>a {
  text-transform: capitalize;
  font-size: 14px;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  font-weight: 600;
  color: #fff;
}
.navbar-iner.sticky .nav_list>ul>li>a{
  color: #000;
}
.nav_list>ul>li:not(:last-child):hover>a {
  color: var(--button-bg);
}

.nav_list>ul>li :after,
.footer-list ul li a:after,
.n-content span:first-child::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--button-bg);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 100px;
}

.n-content span:first-child::after {
  bottom: -2px;
}

.nav_list>ul>li:hover a::after,
.footer-list ul li a:hover::after,
.n-content span:first-child:hover::after {
  transition-duration: 0.4s;
  transform: scaleX(1);
  transform-origin: left center;
}

.nav_list>ul>li:last-child a:after {
  display: none;
}

/* theme btn */
.theme_btn {
  background: var(--button-bg);
  padding: 10px 30px;
  display: inline-block;
  border-radius: 6px;
  max-width: 100%;
  text-align: center;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 2;
  position: relative;
  font-weight: 600;
}

.theme_btn:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #673ab7;
  border-radius: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}

.theme_btn:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

a.theme_btn:hover {
  color: #fff !important;
}

.nav_list>ul>li:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-sec-2-main a.theme_btn {
  width: 154px;
}

/* banner section */
.banner_sec {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.sec-ser {
  justify-content: space-around !important;
}

.cener-sec {
  color: #fff;
  width: 590px;
  max-width: 100%;
  text-align: center;
  position: relative;
  z-index: 12;
}

.story-cener-sec {
  width: 680px;
}
.right-area-sec-ser img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

.cener-sec h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 700;
}

.cener-sec p {
  font-size: clamp(16px, 4vw, 20px);
  margin: 2rem 0 4rem;
}

/* left right before after */
.left-sec,
.right-sec {
  position: relative;
}

.left-sec:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-25%, -63%);
  background-image: url(../images/client-logo/wise-to-wrise-img-bg.webp);
  height: 400px;
  width: 400px;
  background-size: cover;
  z-index: 0;
}

.left-sec:before,
.right-sec:after {
  content: "";
  position: absolute;
  top: -92px;
  height: 600px;
  width: 310px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.left-sec:before {
  left: 0;
  background-image: url(../images/Homepage-images/First-fold/2-left.webp);
  background-position: top left;
}

.per_left:before {
  background-image: url(../images/client-logo/perfor-banner-left.webp);
}

.right-sec:after {
  right: 0;
  background-image: url(../images/Homepage-images/First-fold/1-right.webp);
  background-position: top right;
}

.per_right:after {
  background-image: url(../images/client-logo/perfor-banner-right.webp);
}

/* email */
.email-owl-1 {
  transform: translateY(12px);
}

.emaiil-img::before {
  left: 50% !important;
  top: 38% !important;
}

.email-img {
  width: 550px;
}

.websit-aa {
  padding-top: 8rem;
  padding-bottom: 7rem;
}

.navbar-iner.sticky .websit-aa {
  padding-top: 12rem;
  padding-bottom: 7rem;
}

.branding_label {
  color: var(--button-bg)
}

.blog-banner .left-sec:before {
  background-image: url(../images/blog/blog_Left_owl.webp);
}

.blog-banner .right-sec:after {
  background-image: url(../images/blog/blog_right_owl.webp);
}

.sec__tab-1 h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--button-bg);
  margin-bottom: 2rem !important;
  font-weight: 700;
}

.sec__tab-1 h2>span {
  display: block;
  font-size: 50%;
  color: #fff;
  font-weight: 300;
}

/* blog */
.email-left:before {
  background-image: url(../images/email/left-composition.webp);
}

.email-right:after {
  background-image: url(../images/email/right-composition.webp);
}

/* 2d3d left right */
.ani-glo-img::before {
  background-image: url(../images/2D&3dAnimation/bg-glow-1.webp) !important;
  left: 42% !important;
}

.rigt-anitma::before {
  left: 51% !important;
  width: 700px !important;
  height: 700px !important;
  top: 60% !important;
}

.animain-footers {
  top: 12px;
}

.animation-left:before {
  background-image: url(../images/2D&3dAnimation/left-composition.webp);
}

.animation-right:after {
  background-image: url(../images/2D&3dAnimation/right-composition.webp);
}

.left-sec,
.animation-left:after {
  background-image: url(../images/2D&3dAnimation/left-comp-bg-glow.webp);
}

/* brand section start */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider {
  background: transparent;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, var(--theme-dark) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}


.sec-padd {
  padding: 5rem 0;
}

.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  gap: 0 5rem;
  -webkit-animation: scroll 40s linear infinite;
}

.slider .slide {
  height: auto;
  width: 170px;
}

.slider .slide>img {
  height: auto;
  width: 170px;
}

.slide.low_height {
  display: flex;
  align-items: center;
}

.slider .slide.low_height>img {
  width: 130px;
}

/* brand section end */
/* homepage-2nd */
/*  Home section 1 Styling */
/* .home-main-section {
  margin: 50px 0;
} */
.section-1-heading>h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  word-spacing: 2px;
  letter-spacing: 1.6px;
}

/*  sec 2 */
/* .home-main-section-2 {
  padding: 50px 0;
} */

.home-sec-2-img {
  position: relative;
  width: 500px;
  max-width: 100%;
}

.home-sec-2-img::after {
  position: absolute;
  content: "";
  height: 21px;
  width: 39%;
  left: 11%;
  background: radial-gradient(circle, rgb(7 7 7 / 65%) 0%, rgb(0 0 0 / 0%) 100%);
  bottom: 13%;
  transform: translate(50%, 50%);
  border-radius: 50%;
}

.home-sec-2-img>img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 34;
  object-fit: contain;
}

.row.abc {
  align-items: center;
}

/* .home-main-section-2.ser-sec {
  padding: 5rem 0;
} */
.home-sec-2-text>h2,
.theme-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.main_services_slider {
  width: 90%;
  margin-left: 0;
}

.home-sec-4-main h2 {
  text-align: center;
}

.theme-heading h2 {
  text-align: left;
}

.home-sec-2-text>h2>span {
  color: var(--button-bg);
}

.home-sec-2-text h2>.sub_hding {
  color: var(--button-bg);
  font-size: 47%;
  font-weight: 400;
  display: block;
  margin: 0.8rem 0 2rem;
}

.home-sec-2-text>p {
  color: #ffffffca;
  font-size: clamp(12px, 2vw, 18px);
  font-weight: 500;
}

/*  sec 3 */
/* .home-sec-3-main {
  margin: 50px 0;
} */

.home-sec-3-img>img {
  width: 100%;
  height: 100%;
}

.home-sec-3-img {
  position: relative;
}

.sec-3-text {
  text-align: center;
  padding: 0 20px;
  margin-top: -54px;
}

.sec-3-text>h3 {
  font-size: clamp(16px, 2vw, 24px);
  color: #ffffffca;
  font-weight: 100;
  margin: 0;
  padding-bottom: 15px;
}

.sec-3-text>p {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  color: #ffffffca;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  padding-top: 0;
  margin-bottom: 50px;
}

/* sec 4 */
/* .home-sec-4-main {
  padding: 100px 0;
} */

p.home-4-text {
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  padding-bottom: 50px;
  width: 900px;
  margin: 0 auto;
  max-width: 100%;
}

.sec-4-img>img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.sec-4-img {
  position: relative;
  height: 500px;
}

.sec-4-text {
  position: absolute;
  bottom: 14px;
  left: 20px;
}

.sec-4-text>h3 {
  font-size: clamp(16px, 2vw, 24px);
  color: #ffffffca;
  font-weight: 600;
}

svg.svg-inline--fa.fa-chevron-right {
  font-size: 14px;
  padding-left: 5px;
}

.sec-4-text>a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}

/* sec 5 */
/* .home-sec-5-main {
  margin: 50px 0;
} */

h2.sec-4-head {
  text-align: center;
  margin: 0;
}

h2.met_dore {
  margin-bottom: 2rem;
}

.sec-5-img>img {
  width: 100%;
}

.sec-5-img {
  position: relative;
  display: inline-block;
  width: Clamp(244px, 3.2vw, 310px);
}

.sec-5-inner-img {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  width: clamp(100px, 40.2vw, 195px);
  height: clamp(100px, 41.2vw, 194px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec-5-inner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.sec-5-text>p {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  color: #fff;
}

.sec-5-text>h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.sec-5-text>span {
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 400;
  color: #fff;
}

.card_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #00ef49;
  border-radius: 20px;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
  transform: scale(0.6) translate(10px, 37px);
  transition: all 0.5s;
  transition-delay: 0.5s;
}

.swiper-slide-active .card_1 {
  transform: matrix(1, 0, 0, 1, 0, 0) scale(1) translate(0, 0);
}

.sec-5-text>* {
  transform: translateY(50px);
  display: block;
  opacity: 0;
  transition: all 0.8s;
  transition-delay: 1s;
}

.swiper-slide-active .sec-5-text>* {
  transform: translateY(0);
  opacity: 1;
}

.sec-5-text {
  width: 60%;
}

.sec-5-text>p>span {
  color: #00ef49;
}

.swiper-button-next {
  color: #fff;
}

.swiper-button-prev {
  color: #fff;
  left: var(--swiper-navigation-sides-offset, 0px);
}

/* blog page */
.sec-blog-hed {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-sec-2-main {
  display: flex;
}

.sec-blog-hed input {
  border-radius: 7px;
  outline: none;
  border: none;
  padding: 10px;
  width: 100%;
}

div.tab-content {
  color: #fff;
  /* padding: 1rem 0; */
}

/* ====================================== Sec-1-blog-start ================================= */

.tab-container {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}

.tab-button {
  margin-right: 29px;
  border-radius: 10px;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  padding: 7px 50px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.tab-button.active {
  background-color: var(--button-bg);
  color: #fff;
}

.tab-content {
  display: none;
  /* margin-top: 30px; */
  /* margin-bottom: 50px; */
  /* position: relative; */
}

.tab-content.active {
  display: block;
}

.sec-1-Tab {
  /* padding: 50px 0; */
  position: relative;
  overflow: hidden;
}

.tab-head {
  padding: 20px 12px;
  color: #fff;
}

.tab-head h2 {
  font-size: clamp(14px, 3.2vw, 20px);
  text-transform: uppercase;
}

.sec-1-tab-area {
  border: 1px solid #f67589;
  border-radius: 12px;
  padding: 26px 12px;
  margin: 100px 3px;
}

.sec-tab-first img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.sec-tab-first {
  height: 100%;
  width: 100%;
  border: 2px solid #fff;
  border-radius: 12px;
  position: relative;
}

.sec-img-tab-1 {
  position: absolute;
  top: 25px;
  left: 25px;
}

.sec-img-tab-1 p {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(14px, 3.2vw, 20px);
}

.sec-img-tab-1 h1 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(15px, 3.2vw, 36px);
  padding: 10px 0;
}

.sec-img-es-tab-1 {
  position: absolute;
  bottom: 3px;
  left: 25px;
  color: #fff;
}

.sec__tab-1 {
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  height: 100%;
  position: relative;
}

.sec__tab-1 h1 {
  color: var(--button-bg);
  font-size: clamp(20px, 3.2vw, 45px);
  font-weight: 800;
  margin-bottom: 30px;
}

.sec__tab-1 :first-child {
  margin: 3px 0;
}

.tab-mail-1 {
  width: 100%;
  padding-top: 86px;
}

.tab-mail-1 input {
  width: 100%;
  border-radius: 6px;
  border: none;
  padding: 10px 12px;
}

.btn-sub-tab a.theme_btn {
  width: 100%;
  padding: 10px 12px;
}

.tab-mail-1 input::placeholder {
  text-align: center;
}

.sec-tab-1-area-1 {
  height: 100%;
  width: 100%;
}

.sec-srce img {
  width: 100%;
  border-radius: 12px;
  height: 400px;
  object-fit: cover;
}

.sec-tab-1-area-1 img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* .cont-tabs :first-child {
  color: var(--button-bg);
}
 */
.cont-tabs {
  padding-top: 15px;
}

.cont-tabs h2 {
  color: #fff;
  font-size: clamp(20px, 3.2vw, 30px);
  font-weight: 800;
}

.sec-paginatoip {
  margin-top: 4rem;
}

.cont-tabs p:last-child {
  color: #fff;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.sec-paginatoip .pagination {
  justify-content: center;
}

.sec-paginatoip .pagination .page-link {
  color: #fff !important;
  background: none;
}

/* ====================================== Sec-1-blog-End ================================= */
.sec-main-foter {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  margin-bottom: -214px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 93% 30%;
  margin-top: 110px;
  height: 380px;
}

.email_mark,
.services_sec {
  margin-bottom: -114px;
}

.ind {
  background-image: url(../images/Homepage-images/CTA-banner/shape-background.webp);
}

.blg {
  background-image: url(../images/blog/blog_f-bg.webp);
}

.ser-bg {
  background-image: url(../images/services/server_f-bg.webp);
}

.footer-img-se.in-owl {
  margin-top: 0;
}

.footer-img-se {
  margin-top: -79px;
  position: relative;
  z-index: 999;
}

.footer-img-se.ser_bef::after {
  display: none;
}

.sec-main-foter.ser-bg p {
  margin: 1rem 0 2rem;
}

.footer-img-se img {
  width: auto;
}
.footer-img-se.in-owl > img {
  height: 290px;
}
.footer-img-se.footer-bradig img {
  height: 435px;
}
.footer-img-se.email-owl-1 img {
  height: 433px;
}
.graphic-footer-1 img {
  height: 392px;
}


.footer-title {
  padding: 23px 0px;
  color: #fff;
  margin-right: 2rem;
}

.footer-title h2 {
  color: var(--button-bg);
  font-weight: bold;
  font-size: clamp(2rem, 4vw, 2.3rem);
}

.footer-title h2 b {
  color: #fff;
}

.footer {
  background: #fff;
  margin: 0px 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 200px;
  padding: 50px 0;
  padding-top: 120px;
}

.bac-ga img {
  width: 100%;
}

.bac-ga {
  position: absolute;
  top: 24%;
  right: -55%;
  z-index: -1;
  transform: rotate(493deg);
}

.blog_bac-bg {
  top: 30%;
  transform: rotate(30deg);
}

.right_menumob {
  display: none;
  align-items: center;
}

.right_menumob *:not(:first-child) {
  margin-left: 1rem;
}

ul.show {
  display: block;
}

/* ================ Services =============== */

.ser-tiel h2 {
  margin-bottom: 28px;
}

/* .text-left{
  padding-bottom: 50px 0;
  margin: 0;
} */
/* ================ Services =============== */
.home-sec-2-img img {
  width: 100%;
  height: 100%;
}

/* .home-sec-2-img {
  width: clamp(220px, 41vw, 459px);
} */
.ser-tiel h2 {
  margin-bottom: 28px;
}

.sec-ser-vice {
  text-align: start;
}

.right-area-sec-ser {
  width: clamp(250px, 43.2vw, 540px);
}
/* ================ Services =============== */
/* ========== services-our ========  */
/* .sec_serv-our {
  padding: 5rem 0;
} */
.right-area-sec-ser {
  margin-top: -59px;
  position: relative;
}

.right-area-sec-ser:before,
.home-sec-2-img::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 600px;
  width: 600px;
  background-image: url(../images/services/character-bg-glow.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius:50%;
  z-index: 1;
  animation: top-image-bounce 3s ease-in-out infinite;
}
.home-sec-2-img::before {
  background-image: url(../images/email/character-bg-glow.webp);
}

.perform::before {
  background-image: url(../images/client-logo/performance-owl-1-bg.webp);
}

.bewise-pg::before {
  background-image: url(../images/Homepage-images/second-fold/be-wise-bg.webp);
  animation: none;
  top: 40%;
}

.story_bg::before {
  background-image: url(../images/our-story/earth_bg.webp);
  animation: none;
  height: 700px;
  width: 700px;
}

.story_first::before {
  height: 700px;
  width: 700px;
  top: 50%;
}

/* .email-img:before {
  width: 570px;
} */
.ser-sec-out-a h2 {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  margin: 0.7rem 0 1.2rem;
}

/* bounse animation */
@keyframes top-image-bounce {
  0% {
    transform: translate(-50%, -50%) translateY(-50px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(20px);
  }

  to {
    transform: translate(-50%, -50%) translateY(-50px);
  }
}

@keyframes left-image-bounce {
  0% {
    transform: translate(-50%, -50%) translateY(-50px);
  }

  50% {
    transform: translateX(20px);
  }

  to {
    transform: translate(-50%, -50%) translateY(-50px);
  }
}

/* ========== services-our ========  */
/* ========== Performance start ========  */
.per-hd-sec h1 {
  white-space: nowrap;
}

/* Performance page */
.perform-sec-3 {
  /* margin: 50px 0 8rem; */
  position: relative;
  overflow: hidden;
}

h2.per-sec-3-heading {
  padding-bottom: 50px;
  margin: 0;
}

.cont-tabs>h4 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: #fff;
}

.per-card-img>img {
  /*  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: bottom; */
  position: relative;
  padding: 2px;
  z-index: 3;
}

.per-card-img {
  /*  height: 200px;
  width: 100%; */
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.perform {
  position: relative;
}

/* ========== Performance end ========  */
/* email section */
.footer-img-se.email-owl {
  margin-top: -98px;
  position: relative;
  z-index: 999;
  width: 350px;
  transform: translateY(25px);
}

/* .email-services {
  margin: 50px 0 180px;
} */
.footer-ceh input {
  height: 20px;
  width: 20px;
}

/* bg_card-effect */
.per-card-img:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: white;
  left: -49%;
  top: -49%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.5s;
}

.per-card-img:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #ffffff4f;
  right: 50%;
  bottom: 50%;
  transition: all 0.5s;
  z-index: 3;
  transform: translate(-50%, 50%);
  backdrop-filter: blur(4px);
}

.per-card-img:hover::after {
  transform: translate(150%, 50%);
}

.per-card-img:hover::before {
  left: 50%;
  top: 50%;
}

/* left right glow */
.left-sec:after,
.right-sec:before {
  content: "";
  position: absolute;
  top: -80px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 600px;
  width: 393px;
}

.left-sec:after {
  background-image: url(../images/email/left-comp-bg-glow.webp);
  left: 78px;
  top: 249px;
  /* background: orange; */
}

.right-sec:before {
  background-image: url(../images/email/right-comp-bg-glow.webp);
  right: 0;
  top: -137px;
}

/* graphic desgin page *
/*  Graphic header-img */
.graphic-glow-lef::before {
  top: 60% !important;
  left: 52% !important;
}

.graphic-glow-right::after {
  bottom: 6% !important;
}

.Graphic-left:before {
  background-image: url(../images/Graphic-design/design-left-composition.webp);
}

.Graphic-right:after {
  background-image: url(../images/Graphic-design/design-right-composition.webp);
}

.Graphic-left:after {
  background-image: url(../images/Graphic-design/design-header-left-bg.webp);
}

.graphic-footer {
  margin-top: 0 !important;
  margin-right: -60px;
}

.graphic-footer-1 {
  bottom: -34px;
  right: -6%;
}

/*  Graphic header-img */
/*  illustration header-img */

.illustration-left:before {
  background-image: url(../images/illustration/left-composition.webp);
  height: 502px;
  width: 504px;
}

.illustration-right:after {
  background-image: url(../images/illustration/right-composition.webp);
  height: 454px;
  width: 632px;
}

.illustration-left:after {
  background-image: url(../images/illustration/left-comp-bg-glow.webp);
  left: 118px;
  top: 252px;
  width: 701px;
  height: 708px;
}

.illustration-right:before {
  background-image: url(../images/illustration/right-comp-bg-glow.webp);
  top: -198px;
  height: 600px;
  width: 450px;
}

.illustration-bg::before {
  background-image: url(../images/illustration/composition-bg-glow.webp);
}

.illustration-1-bg::before {
  background-image: url(../images/illustration/comp-1-bg-glow.webp);
  height: 750px;
  width: 700px;
}


/*  illustration header-img */
/*  Form start */
.form-sec {
  margin: 5rem 0;
  position: relative;
}

.form-w {
  display: inline-block;
  font-weight: 800 !important;
  font-size: 50% !important;
}

p.form-pera {
  margin-top: 6rem;
}

.form-main {
  padding: 50px;
  background-color: #efe9e9;
  border-radius: 10px;
}

.form-1>input {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: none;
  padding: 0 10px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 500;
  outline: none;
}

.form-1>p {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  padding: 15px 0;
}

.form-2>p {
  font-weight: 500;
  font-size: 20px;
  margin: 0;
  padding-bottom: 15px;
}

.form-2>textarea {
  width: 100%;
  height: 10rem;
  border-radius: 8px;
  border: none;
  padding: 20px;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  resize: none;
}

.form-main>p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding: 20px 0;
}

.form-main>p>a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #0000008f;
}

.illustration-owl-1 {
  transform: translateY(18px);
}

/* .home-sec-2-text {
  padding-top: 4vw;
} */
/*  Form end */

/*  branding start */
.branding-left:before {
  background-image: url(../images/Branding/left-composition.webp);
  top: -10rem;
}

.branding-right:after {
  background-image: url(../images/Branding/right-composition.webp);
  top: -10rem;
}

.branding-left:after {
  background-image: url(../images/Branding/left-comp-bg-glow.webp);
  left: 135px;
  top: 219px;
  width: 536px;
}

.branding-right:before {
  background-image: url(../images/Branding/right-comp-bg-glow.webp);
}

.branding-1 {
  height: 550px !important;
  width: 610px !important;
}

.footer-bradig {
  top: 12px;
}

/* .branding-1::before {
  background-image: url(../images/Branding/bg-glow.webp);
  top: 40%;
  left: 44%;
} */

.brand-heading>h2 {
  text-align: start;
}

.cont-tabs>span {
  color: var(--button-bg);
  display: inline-block;
  padding: 12px 0;
  font-weight: 400;
  font-size: 18px;
}

.Card-slider {
  width: 90%;
  margin-left: 0;
}

.slider-brand {
  position: relative;
}

.swiper-button-next {
  color: #fff;
  position: absolute;
  top: 100;
  right: 0;
}

.brand-height {
  height: auto;
}

/*  branding end */

/*  our work start */
.Card-slider~.swiper-button-next {
  top: 150px !important;
}

.our-work-left:before {
  background-image: url(../images/Our-work/left-sd-pag.webp);
}

.our-work-left:after {
  background-image: url(../images/Our-work/left-shado.webp);
}

.our-work-right:after {
  background-image: url(../images/Our-work/right-sd.webp);
}

.our-work-right:before {
  background-image: url(../images/Our-work/right-shado.webp);
}

/* .work-main {
        padding: 5rem 0;
    } */
.work-text>span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.work-text>h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.work-text>h2>span {
  color: var(--button-bg);
}

.work-text>p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.video-main {
  height: 350px;
  width: 100%;
  background-color: #3d3333;
  border-radius: 10px;
  border: 3px solid #fff;
  overflow: hidden;
}

.video-main video {
  object-fit: cover;
}

/* .work-sec-3 {
      margin: 5rem 0;
  } */
.work-border {
  border: 2px solid var(--button-bg);
  margin-bottom: 5rem;
}

.work-text-border {
  border: none;
}

.work-text-border>h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.work-text-border>p {
  font-size: clamp(16px, 2vw, 20px);
}

.work-inside-img {
  background-color: #371334;
  height: 300px;
  width: 100%;
  border: 3px solid var(--button-bg);
  border-radius: 10px;
}

.work-inner {
  margin-top: 200px;
  margin-left: 20px;
}

.work-inner>p {
  font-size: 18px;
  font-weight: 400;
}

.work-btn {
  text-align: center;
  margin-top: 50px;
}

/*  our work end */
/* =================================== Our story ================================= */
.sec_footer-top-area {
  position: relative;
}

.sec-5-text-area>p {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  color: #fff;
}

.sec-5-text-area>p>span {
  color: #00ef49;
}

div.swiper-wrapper {
  padding: 4rem 0;
}

.sec-foter-area.sec-padd {
  padding-top: 0;
}

.sec-5-text-area h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.sec-5-text-area span {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  color: #fff;
}

.our_stOr {
  justify-content: space-between;
}

.our-stor-left::before {
  background-image: url(../images/our-story/left.webp);
}

.our-stor-left::after {
  background-image: url(../images/our-story/left-glow.webp);
  left: 133px;
  top: 75px;
  width: 575px;
  height: 623px;
}

.ourstor-right::after {
  background-image: url(../images/our-story/right-side.webp);
}

.ourstor-right::before {
  background-image: url(../images/our-story/right-glow.webp);
  width: 700px;
  top: -317px;
  height: 600px;
}
.main_center-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* section.bg-9c {
  padding: 50px 0;
} */

.asdfads {
  position: absolute;
  width: 305px;
  transform: translate(-50px, -50px);
  top: 0;
  left: 0;
}

.asdfads img {
  width: 100%;
  height: 100%;
}

.sec-5-text-area {
  background-image: url(../images/our-story/bfbf.webp);
  border-radius: 20px;
  width: 100%;
  padding-left: 37%;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 30px;
  position: relative;
  height: 100%;
  background-size: cover;
}

.babdf {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.iadf {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.iadf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.owl-char-fot {
  top: -70px;
  right: -54px;
}

/* =================================== Our story ================================= */
/* =================================== Integrated ================================= */
.integrated-right::before {
  background-image: url(../images/integrated/1st-fold/right\ -glow.webp);
  width: 600px;
  height: 898px;
  top: -320px;
}

.integrated-right::after {
  background-image: url(../images/integrated/1st-fold/right-composition.webp);
  top: -150px;

}

.integrated-left::before {
  background-image: url(../images/integrated/1st-fold/left-composition.webp);
}

.integrated-left::after {
  background-image: url(../images/integrated/1st-fold/left-glow.webp);
  width: 638px;
  height: 695px;
  top: 180px;
  left: 160px;
}

.integrated__img {
  width: 550px !important;
}

/* =================================== Integrated ================================= */
/* =================================== Packaging ================================= */
.packaging-right::before {
  background-image: url(../images/packaging/right-conag.webp);
}

.packaging-left::before {
  background-image: url(../images/packaging/left-cogm.webp);
  height: 400px;
  width: 600px;
}

.pa-kiing {
  top: 86px;
}

/* =================================== Packaging ================================= */
/* =================================== Social ================================= */
.social__secc {
  width: 600px !important;
}

.social-list {
  color: #fff;
  margin: 20px 0;
  margin-left: 17px;
}

.social-list ul li {
  list-style: disc;
  width: 48%;
}

.social-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
}

.social-right::before {
  background-image: url(../images/social/fold-1/right-glow.webp);
  height: 700px;
  width: 500px;
}

.social-right::after {
  background-image: url(../images/social/fold-1/righ-composition.webp);
}

.social-left::before {
  background-image: url(../images/social/fold-1/left-composition.webp);
}

.social-left::after {
  background-image: url(../images/social/fold-1/left-glow.webp);
  height: 800px;
  width: 800px;
  left: 115px;
}

.social-img:before {
  height: 700px;
  width: 700px;
}

.social__footer {
  top: 31px;
}

.social-img {
  height: 500px !important;
  width: 500px !important;
}

.sociall_imag {
  width: 500px !important;
}

.sociall_imag::before {
  height: 670px !important;
  width: 670px !important;
}

/* =================================== Social ================================= */
/* =================================== Website-Design ================================= */
.website-right::before {
  background-image: url(../images/website-design/fold-1/right-shine.webp);
}

.website-right::after {
  background-image: url(../images/website-design/fold-1/right-img.webp);
}

.website-left::before {
  background-image: url(../images/website-design/fold-1/left-cham.webp);
}

.website-left::after {
  background-image: url(../images/website-design/fold-1/left-shine.webp);
}

.websit-a {
  padding-top: 8rem !important;
  padding-bottom: 10rem !important;
}

/* mega menu */
.col-md-3.sm_bg {
  background: var(--button-bg);
}

li.mega_menu {
  position: relative;
}

.mega_drop {
  position: absolute;
  left: 50%;
  top: 130px;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: 99999;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

.mega_drop ul {
  padding: 1.5rem 0.8rem;
  max-height: 700px;
  overflow: hidden;
  overflow-y: auto;
}

.mega_drop ul>li>a {
  display: flex;
  color: #000
}

.mega_drop ul>li>a>i {
  margin-right: 0.6rem;
  padding-top: 0.1rem;
  font-size: 1.5rem;
  color: var(--theme-light);
}

.n-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.n-content {
  font-size: 1rem;
  font-weight: 700;
}

.mega_drop ul>li:not(:last-child) {
  margin-bottom: 1.2rem;
}

.n-content span {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}

/* slider_image */
.sec-5-inner-img:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 115px;
  width: 115px;
  background-image: url(../images/client-logo/profile_top.webp);
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-size: cover;
  mix-blend-mode: color;
}

/* video section */
.main_video_Sec video {
  border-radius: 16px;
}

.weebs-img {
  width: 550px !important
}

.weebs-img::before {
  top: 52% !important;
  height: 700px;
  width: 700px;
}

.web-site-foot {
  top: 12px;
}

/* =================================== Website-Design ================================= */
/* ========== Footer ========  */
.sec_footer-heading h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 5rem;
}

.footer-list ul li a {
  color: gray;
  line-height: 40px;
  font-weight: 500;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-list ul li a:hover {
  color: var(--button-bg);
}

.footer-four-in i {
  position: absolute;
  right: 8px;
  border: 2px solid black;
  padding: 13px;
  border-radius: 2px;
}

.footer-title p {
  margin: 1.2rem 0 3rem;
}

.footer-list p {
  font-size: 18px;
  font-weight: 800;
}

.se-c-4 h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 800;
}

.footer-se-4 {
  padding: 0 16px;
}

.sec_footer-heading.se-c-4>p {
  margin: 30px 0;
  color: gray;
}

.footer-four-in {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  margin: 16px 0px;
}

.footer-four-in input {
  width: 100%;
  padding: 16px 12px;
  border: 1px solid #8080806e;
  padding-right: 50px;
}

.footer-four-in input::placeholder {
  font-size: 16px;
  font-weight: 600;
  color: gray;
}

.checler {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-check-titl>span {
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.5s;
}

.footer-check-titl>span:hover {
  text-decoration: none;
  transition: 0.5s;
}

.footer-check-titl>p {
  margin: 0;
  color: gray;
}

.footer-border {
  border-bottom: 1px solid rgba(128, 128, 128, 0.397);
  padding-bottom: 60px;
}

.sec-footer-cont {
  padding: 30px 0;
}

.sec-footer-cont h2 {
  font-size: 16px;
  margin: 20px 0;
  font-weight: 600;
}

.sec-footer-cont p {
  color: gray;
}

.footer-last-lis ul li a {
  text-decoration: underline;
  font-size: 14px;
  color: gray;
  transition: 0.5s;
  padding-right: 20px;
}

.footer-last-lis ul li a:hover {
  text-decoration: none;
  transition: all 0.5s;
}

.footer-last-lis>span {
  font-size: 14px;
  color: gray;
  display: inline-block;
  margin-right: 30px;
}

.footer-last-lis ul {
  display: flex;
  flex-wrap: wrap;
}

.footer-last-co {
  display: flex;
  align-items: center;
}

.footer-last-lis {
  display: flex;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.footer-end-2nd i {
  height: 40px;
  width: 40px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
}

.home-sec-2-text.ser-tiel h2 {
  text-align: left;
  margin-left: 0;
}

.footer-end-2nd {
  display: flex;
  gap: 9px;
  align-items: center;
}

/* ========== Footer ========  */
/* bg footer */
.wrapper {
  position: relative;
  overflow: hidden;
}

.bg-12 {
  position: absolute;
  right: 0;
  bottom: 21%;
  z-index: -4;
}

.bg-12>img {
  height: 1032px;
  width: 100%;
  object-fit: contain;
}

.bg-13 {
  bottom: 24%;
}

span.dropdown_plus {
  display: none;
}

.banner_bgsec {
  width: 565px;
  margin: 0 auto;
  max-width: 100%;
}

.banner_bgsec.serv_hed {
  margin: initial;
  margin-right: auto;
}

.ax-pad {
  padding-bottom: 5rem;
}

/* media query  */
@media (min-width: 992px) {
  li.mega_menu:hover .mega_drop {
    top: 55px;
    opacity: 1;
    visibility: visible;
  }
  .our-stor-left::after {
    left: 145px;
    top: 280px;
    width: 679px;
    height: 957px;
  }
  .ourstor-right::before {
    width: 1204px;
    top: -320px;
    height: 930px;
  }
}

@media (min-width: 1400px) {
  .sec-main-foter {
    padding: 45px;
  }
  .home-sec-2-img {
    width: 640px;
    height: 450px;
  }

  .home-sec-2-text>p {
    font-size: clamp(12px, 2vw, 20px);
  }

  .sec-4-img {
    height: 540px;
  }

  .footer-img-se.email-owl {
    transform: translateY(20px);
  }

  .y-pad {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

 
  .left-sec:before, .right-sec:after {
    height: 595px;
    width: 404px;
}
 
  .bg-12>img {
    height: 1400px;
    width: 100%;
    object-fit: contain;
  }

  .bg-12 {
    bottom: 13%;
  }

  .bg-13 {
    bottom: 18%;
  }

  /* new styling */

  .nav_list>ul>li>a {
    font-size: 18px;
  }
  .nav_list>ul>li {
    margin-left: 3.4rem;
  }
  a.logo {
    width: 170px;
  }
  .navbar-iner {
    padding: 0 4% 14px;
  }
  .cener-sec h1 {
    font-size: clamp(2.2rem, 4vw, 13.3rem);
}
.theme_btn {
  font-size: 1.4rem;
  padding: 12px 35px;
  font-weight: 500;
}
.sec-blog-hed input {
  padding: 16px;
  font-size: 18px;
}
.banner_bgsec p {
  font-size: 1.6rem;
}
.banner_bgsec {
  width: 780px;
}
.sec-padd {
  padding: 8rem 0;
}
.header-sec-2-main a.theme_btn {
  width: 200px;
}
/* 2nd section */
.home-sec-2-text>h2, .theme-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}
.ax-pad {
  padding-bottom: 10rem;
}
/* .our-stor-left::before {
  width: 850px;
  height: 440px;
  top: -65px;
} */
.our-stor-left::after {
  left: 145px;
  top: 346px;
  width: 679px;
  height: 957px;
}
.ourstor-right::before {
width: 1307px;
top: -260px;
height: 1096px;
}
/* .ourstor-right::after {
height: 481px;
width: 475px;
} */
.our-stor-left::before {
  width: calc(53.125vw) !important;
  height: calc(27.5vw) !important; 
  max-width: 850px; 
  max-height: 440px;
}
.ourstor-right::after {
  width: calc(29.6875vw);
  height: calc(30.0625vw); 
  max-width: 475px;  
  max-height: 481px; 
}
.branding-right:before{
  top: -6px;
}
}
@media (min-width: 1440px) {
  .container {
    max-width: 1460px;
  }
}
@media (min-width: 1600px) {
  .y-pad {
    padding-top: 7.5rem;
    padding-bottom: 11rem;
  }

  .navbar-iner.sticky~.y-pad {
    padding-top: 15rem;
    padding-bottom: 12rem;
  }

  .packaging-left::before {
    height: 649px;
    width: 665px;
  }
  .cener-sec {
    width: 860px;
  }
  .banner_bgsec {
    width: 840px;
  }
  .banner_bgsec.brndig_bgsec{
    width: 740px;
  }
  .illusation_sec {
    width: 568px;
  }

  .story_bg::before {
    height: 800px;
    width: 800px;
  } 
  .cener-sec.sec-ser-vice {
    width: 696px;
  }
  /* new styling */
  .branding-left:before,.branding-right:after{
    top: -7rem;
  }
  .main_nav {
    height: 100vh;
  }
  .brands_section{
    margin-top: -100px;
    position: relative;
    z-index: 45;
  }
  .sec-padd.brands_section{
  padding-top:0;
  padding-bottom: 3rem;
  }
.section-1-heading>h2 {
  font-size: 26px;
  padding-bottom: 2rem;
}
.left-sec:before,
.right-sec:after {
  height: 707px;
  width: 471px;
}
.branding-left:before, .branding-right:after {
  top: -7rem;
  height: 604px;
  width: 416px;
}
/* our story  */
/* .our-stor-left::before {
  width: 850px;
  height: 440px;
  top: -65px;
}
.ourstor-right::after {
height: 481px;
width: 475px;
} */

}

@media (max-width: 1399px) {
  .our-stor-left::before {
    width: 603px;
    height: 600px;
    top: -65px;
  }

  .integrated-left::after {
    width: 417px;
    height: 548px;
    top: 104px;
    left: 106px;
  }

  .integrated-right::before {
    width: 458px;
    height: 714px;
    top: -338px;
  }

  .footer-img-se.integrated_owl {
    margin-top: -142px;
    position: relative;
    z-index: 999;
    width: 480px;
    transform: translateY(57px);
  }
  .y-pad {
    padding-top: 7rem;
    padding-bottom: 4rem;
}
.branding-right:after, .branding-left:before{
  top: -6rem;
}
.right-sec:after {
  width: 280px;
}
}

@media (max-width: 1199px) {
  .sec-5-text-area {
    padding-left: 36%;
  }

  .illustration-left:before {
    height: 443px;
    width: 426px;
  }

  .illustration-right:after {
    height: 368px;
    width: 445px;
  }

  .illustration-left:after {
    left: 68px;
    top: 230px;
    width: 647px;
    height: 632px;
  }
}

@media (max-width: 991px) {
  .sec-main-foter.blg {
    flex-wrap: wrap;
}
.sec-main-foter {
  height: auto;
}
  .banner_sec {
    margin: 0;
}
  .sec_footer-heading {
    padding-top: 5rem;
  }

  .sec__tab-1 {
    margin-top: 20px;
  }
  .cener-sec {
    width: 540px;
  }

  .navbar-iner.sticky {
    position: static;
    backdrop-filter: initial;
  }

  .y-pad {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .banner_sec.y-pad.sec-ser {
    flex-wrap: wrap;
  }

  .sec-ser .cener-sec {
    text-align: center;
  }

  .right-area-sec-ser {
    margin-top: 40px;
  }

  .home-sec-3-img {
    margin-bottom: 2rem;
  }

  /* banner section */
  .right-sec {
    display: none;
  }

  .cener-sec {
    text-align: right;
    margin-right: 2rem;
  }

  .secfka {
    position: relative;
    z-index: 999999999;
  }

  .nav_list>ul {
    display: none;
  }

  .nav_list>ul {
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: start;
    font-size: 3rem;
    color: #fff;
    display: flex !important;
    line-height: 1;
    overflow-y: auto;
  }

  .right_menumob {
    display: flex;
  }

  .nav_list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-bg);
    z-index: 99999;
    transform: translateX(-100%);
    transition: all 0.5s;
  }

  .nav_list.show {
    transform: translateX(0);
  }

  .nav_list>ul>li>a {
    font-size: 4.5vw;
    font-weight: 700;
  }

  .nav_list>ul>li {
    margin-left: 0;
    width: 100%;
    line-height: 1.2 ;
    padding:0;
  }

  .nav_list>ul>li>a.theme_btn {
    display: none;
  }

  li.mega_menu>span>i {
    border: none;
    padding: 0;
    margin: 0;
    line-height: 0;
  }

  .sec-5-text {
    width: 100%;
  }

  /* mega menu styling */

  .mega_drop ul>li>a {
    color: #fff;
  }

  .mega_drop ul>li>a>i {
    color: #fff;
  }

  .mega_drop {
    position: initial;
    transform: translate(0, 0);
    background: black;
    z-index: 9999999999999;
    opacity: 1;
    visibility: visible;
    display: none;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
  }

  .mega_drop ul>li>a>i {
    color: #fff;
  }

  .nav_list>ul {
    align-items: flex-start;
    padding: 7rem 2rem 2rem;
    height: 100%;
    overflow: auto;

  }

  .nav_list>ul>li>a:hover {
    color: var(--theme-light);
  }

  span.dropdown_plus {
    display: block;
    position: absolute;
    right: 0px;
    top: 4px;
  }

  /* section -5 slider */
  .sec-5-slider div.swiper-wrapper {
    padding: 21rem 0 0;
  }

  .asdfads {
    position: absolute;
    top: -278px;
    left: 151px;
  }

  .sec-5-text-area {
    padding: 5rem 2rem 2rem;
  }

  .nav_list>ul>li:hover>a {
    color: var(--theme-dark);
  }

  .sec-padd {
    padding: 3rem 0;
  }
  .footer-bradig {
    top: 30px;
}
}

@media (max-width: 767px) {
  .bg-12 {
    bottom: 2880px;
  }

  .row.abc {
    margin-bottom: 3rem;
  }

  /* blog page */
  .sec-blog-hed {
    margin: 0;
  }

  .tab-mail-1 {
    width: 100%;
    padding-top: 33px;
  }

  .left-sec {
    display: none;
  }

  .cener-sec {
    text-align: center;
    margin: 0 2rem;
  }

  .banner_sec {
    justify-content: center;
  }

  .y-pad {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .sec-5-slider div.swiper-wrapper {
    padding: 10rem 0 0;
  }

  .asdfads {
    width: 170px;
    transform: translate(-50px, 118px);
  }
}

@media (max-width: 575px) {
  .footer-img-se.owl-char-fot img {
    height: 328px;
}
.footer-img-se.owl-char-fot {
    top: initial;
    right:initial;
}
  .container{
    width: 90%;
  }
  .right-area-sec-ser img {
    padding: 1rem;
  }
  .slider::after, .slider::before {
   display: none;
  }   
  .slider .slide>img {
    width: 120px;
}.slider .slide {
  width: 130px;
}.slider .slide-track {
  gap: 0 1rem;
}
  .home-sec-4-main {
    padding: 0 0;
  }

  .home-sec-2-text>h2,
  .theme-heading h2 {
    margin-top: 3rem;
  }

  .home-branding-img-4 {
    width: 124px;
  }

  .theme-heading h2 {
    margin-bottom: 0rem;
  }
  .sec-tab-first {
    height: 230px;
  }

  .home-main-section-2.ser-sec {
    padding: 5rem 0 4rem;
  }

  .sec-main-foter {
    flex-direction: column-reverse;
  }
  .footer {
    margin: -70px 8px;
  }
  .footer-title {
    margin-right: 0;
  }
  .nav_list>ul>li>a {
    font-size: 8vw;
  }
  .sec-blog-hed {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sec-foter-area {
    padding: 20px 0;
  }
  .tab-container {
    gap: 8px;
  }
  .tab-button {
    padding: 8px 28px;
  }

  .footer-list ul {
    column-count: 2;
  }

  .footer-end-2nd {
    margin-bottom: 3rem;
  }

  .home-sec-2-img.bewise-pg {
    margin-top: 3rem;
  }

  /* .home-main-section-2 {
    padding: 0 0 50px;
  } */

  .banner_bgsec {
    width: 100%;
  }
  .story_first::before {
    top: 100%;
}
.footer-bradig {
  top: initial;
}
}

@media (max-width: 480px) {
  a.theme_btn.mob_btn {
    display: none;
  }

  .per-hd-sec h1 {
    white-space: wrap;
  }

  .footer-list ul {
    column-count: 1;
  }

  .asdfads {
    left: 104px;
  }
  .home-sec-2-text>h2{
    font-size: clamp(1.4rem, 4vw, 3.3rem);
  }
}