@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&amp;display=swap");

:root {
  --primary: #2417bb;
  --secondary: #f034e8;
  --light-blue: #8a37ec;
  --orange: #de3b3e;
  --yellow: #f26a28;
  --swiper-navigation-size: 1.5rem;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #05103f;
}

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

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
button:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Basic Resets */
p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 4.75rem;
  font-weight: 700;
}

h3 {
  font-size: 2.75rem;
}

h2>span,
h3>span {
  display: block;
}

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

::placeholder {
  font-size: 1rem;
}

section {
  position: relative;
  overflow-x: hidden;
}

/* Basic Section Styling Starts */
.lightBg {
  background: #ffffff;
}

.darkBg {
  background: var(--primary);
}

/* Basic Section Styling Ends */

/* Basic Section Heading Starts */
.section-heading {
  font-size: 17.125rem;
  font-weight: 900;
  letter-spacing: 7px;
  text-transform: uppercase;
  line-height: 0.85;
  color: #000000;
  -webkit-text-fill-color: var(--white);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000000;
  font-family: "Poppins", sans-serif;
  /* margin: 0 -2rem; */
}

.section-heading.overflow-heading {
  overflow: hidden;
  max-height: 42rem;
  font-size: 13.125rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.darkBg .section-heading {
  color: var(--white);
  -webkit-text-fill-color: var(--primary);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--white);
  padding: 1rem 0;
}

.text-orange,
.color-orange {
  color: var(--orange);
  font-style: normal;
  font-family: "Poppins", sans-serif;
}

.color-white {
  color: #fff;
  font-style: normal;
  font-family: "Poppins", sans-serif;
}

/* Basic Section Heading Ends */

/* Basic Theme Button Starts */
.themeBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  padding: 0.75em 1.4em;
  border: 0;
  border-radius: 50px;
  background-color: var(--secondary);
  cursor: pointer;
}

.themeBtn:hover {
  color: var(--white);
  background: var(--primary);
}

.themeBtn.lightBlue {
  background: #000000;
  color: var(--primary);
}

.themeBtn.whiteBtn {
  color: var(--secondary);
  background: var(--white);
}

.themeBtn.whiteBtn:hover {
  color: var(--white);
  background-color: var(--secondary);
}

/* Basic Theme Button Ends */

.noise {
  position: fixed;
  left: 0;
  top: 0;
  width: 110%;
  height: 100%;
  background: url(../images/noise.webp) center center;
  background-size: 700px 700px;
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
}

@media screen and (max-width: 960px) {
  .noise {
    display: none;
  }
}

/* Begin: Header CSS */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 3;
}

header .menuOpt {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  gap: 2rem;
}

header .menuOpt .searchIo {
  color: var(--black);
  font-size: 1.5rem;
}

.isOpen .menuOpt .searchIo {
  color: var(--white);
}

header nav {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

.menu_toggle {
  width: 3.125rem;
  height: 3.125rem;
  position: relative;
  cursor: pointer;
  background: #05103f;
  color: var(--white);
  padding: 0rem;
  border-radius: 100px;
}

.menu_toggle svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: rotate(0);
  transition: all 0.4s ease;
}

.isOpen .menu_toggle svg circle {
  fill: #fff;
}

.menu_toggle .menu__btn-open {
  opacity: 1;
  transform: rotate(360deg);
  width: 1.25rem;
  height: 1.25rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu_toggle svg circle {
  transition: all 0.3s ease;
  fill: #fff;
}

.menu_toggle:hover svg circle {
  fill: #fff;
}

.isOpen .menu_toggle svg circle:nth-child(2) {
  fill: transparent;
}

.isOpen .menu_toggle svg circle:nth-child(4) {
  fill: transparent;
}

.isOpen .menu_toggle svg circle:nth-child(6) {
  fill: transparent;
}

.isOpen .menu_toggle svg circle:nth-child(8) {
  fill: transparent;
}

.shape-overlays {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 89;
}

.shape-overlays.is-opened {
  pointer-events: auto;
}

.shape-overlays__path:nth-of-type(1) {
  fill: #000000;
}

.shape-overlays__path:nth-of-type(2) {
  fill: var(--secondary);
}

.shape-overlays__path:nth-of-type(3) {
  fill: var(--primary);
}

#navigationWrap {
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.nav-container {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  overflow: hidden;
}

.nav-container:after {
  content: "";
  position: absolute;
  right: 0;
  top: -95px;
  background: rgba(0, 0, 0, 0);
  width: 320px;
  height: 320px;
  border-radius: 320px;
  z-index: 1;
  border: 1px solid #dad9dc;
  opacity: 0.1;
  margin: 0 auto;
  left: 130px;
  transition: border 0.3s ease;
}

.nav-container ul {
  list-style-type: none;
  padding: 0;
}

.nav-container-left {
  position: relative;
  width: calc(50% - 13.75rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-container-left .header-menu.logo {
  position: absolute;
  top: 45px;
  left: 0;
}

.nav-container-left ul li a {
  color: #fff;
  position: relative;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-size: 6.25rem;
  font-weight: 700;
  line-height: 5.625rem;
  display: inline-block;
  text-transform: uppercase;
}

.nav-container-left ul li a:hover {
  color: rgba(0, 0, 0, 0);
}

.nav-container-left h5 {
  color: #929292;
  font-size: 1.125rem;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  line-height: normal;
  opacity: 1;
  position: absolute;
  bottom: 45px;
  left: 0;
}

.nav-container-right {
  width: 50%;
  padding-left: 13.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-container-right ul {
  margin-bottom: 40px;
}

.nav-container-right ul li a {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  overflow: hidden;
  display: block;
}

.nav-container-right .seviceList li a {
  font-size: 1.625rem;
  font-weight: 600;
  position: relative;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #fff;
  text-transform: capitalize;
}

.nav-container-right .seviceList li a:hover {
  color: transparent;
}

.nav-container-right p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--white);
}

.nav-container-right p.emailMenu {
  position: relative;
}

.nav-container-right p.emailMenu:before {
  content: "";
  height: 19px;
  width: 19px;
  display: block;
  position: absolute;
  background: url(../images/flower.webp);
  left: -30px;
  top: 0;
  background-repeat: no-repeat;
}

.nav-container-right ul li a.emailId {
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

.MenuOverlayBackground .hover-reveal__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.companyDetails {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s linear;
}

.seviceList {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  transform: translateY(25px);
  transition: transform 0.3s linear;
  opacity: 0;
  visibility: hidden;
  align-items: center;
}

.isHover .seviceList {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.3s linear;
}

.isHover .companyDetails {
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px);
  transition: transform 0.3s linear;
}

/* END: Header CSS */

/* Begin: Main Slider CSS */
.mainSliderSec {
  min-height: 100vh;
}

.mainSlide {
  background: var(--yellow);
  height: 100vh;
}

.mainSlide .slide {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.mainSlide .slide .bigText h2 {
  font-size: 37rem;
  font-weight: 800;
  line-height: 0.75;
  color: var(--white);
  text-align: right;
  margin-top: 10rem;
}

.mainSlide .slide figure {
  margin: -26rem 0 0 -3rem;
}

.mainSlider .slide .content {
  position: absolute;
  bottom: 2rem;
  right: 25rem;
}

.mainSlider .slide .content h3 {
  font-size: 8.875rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  line-height: 0.85;
  margin-bottom: 1rem;
}

.mainSlider .slide .content h3 span {
  display: block;
}

.rev-style.tparrows {
  height: 80px;
  width: 77px;
  overflow: hidden;
  background: transparent;
}

.rev-style.tparrows .rev-nav {
  position: absolute;
  top: calc(50% - 2px);
  height: 3px;
  width: 43px;
  background-color: #fff;
}

.rev-style.tp-leftarrow .rev-nav {
  left: 0;
}

.rev-style.tp-rightarrow .rev-nav {
  right: 0;
}

.rev-style.tparrows:before {
  display: none;
}

.rev-style.tparrows .rev-nav-info {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.rev-style.tp-leftarrow.tparrows .rev-nav-info {
  right: 0;
}

.rev-style.tp-rightarrow.tparrows .rev-nav-info {
  left: 0;
}

/* END: Main Slider CSS */

/* Begin: Services Banner CSS */
.servicesBan {
  height: 100vh;
  display: flex;
  align-items: center;
}

.servicesBan h2 {
  font-size: 5.8rem;
  margin-bottom: 2rem;
}

.servicesBan .subHeading {
  font-size: 1.875rem;
  font-weight: 600;
}

.servicesBan h2 span {
  display: inline-block;
}

.servicesBannerSlider {
  margin-right: -8rem;
  box-shadow: 0 0 40px 2px rgb(0 0 0 / 25%);
}

.servicesBannerSlider figure {
  margin: 0;
}

.servicesBannerSlider figure img {
  width: 100%;
  border-radius: 8px;
}

.servicesBannerSlider figure {
  border-radius: 10px;
}

.servicesBannerSlider .swiper-button-prev {
  left: initial;
  right: 0;
  bottom: 0;
  top: initial;
}

.servicesBannerSlider .swiper-button-next {
  bottom: 74px;
  top: initial;
  right: 0;
}

/* END: Services Banner CSS */

/* Begin: Extra Creative CSS */
.extraCreative {
  padding-bottom: 8rem;
}

.extraCreative .section-heading {
  margin-bottom: 2rem;
}

.extraCreative h3 {
  line-height: 1;
  font-family: "Monsterrat", sans-serif;
  font-weight: 700;
  padding-bottom: 10px;
}

.extraCreative p {
  max-width: 75%;
}

/* END: Extra Creative CSS */

/* Begin: Project Sec CSS */
.ctaSec {
  background: url(../images/bg1.webp) center/cover fixed no-repeat;
  padding: 6rem 0;
  text-align: center;
}

.ctaSec :is(h2, p) {
  color: var(--white);
}

.ctaSec h2 {
  margin-bottom: 1rem;
}

.ctaSec p {
  font-size: 1.5rem;
}

.ctaSec .proBtnList {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  gap: 2rem;
}

/* END: Project Sec CSS */

/* Begin: Services CSS */
.cards {
  position: relative;
  height: 100vh;
  margin-bottom: 6rem;
}

.customCard {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  right: auto;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.customCard:nth-of-type(1) {
  left: 0;
  z-index: 6;
}

.customCard:nth-of-type(2) {
  left: 20px;
  z-index: 5;
}

.customCard:nth-of-type(3) {
  left: 40px;
  z-index: 4;
}

.customCard:nth-of-type(4) {
  left: 60px;
  z-index: 3;
}

.customCard:nth-of-type(5) {
  left: 80px;
  z-index: 2;
}

.customCard:nth-of-type(6) {
  left: 100px;
  z-index: 1;
}

.cards .slide {
  position: relative;
  border-radius: 0 60px 60px 0;
  overflow: hidden;
}

.cards .slide>img {
  max-width: 100%;
  height: 100%;
}

.cards .slide .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10rem;
}

.cards .slide .content h2 {
  font-size: 6.25rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cards .slide .content p {
  color: var(--white);
  width: 55%;
  line-height: 1.8;
}

/* END: Services CSS */

/* Begin: Branding CSS */
.porfolioSec {
  padding-bottom: 6rem;
}

.secHead {
  padding: 1.5rem 0;
  margin: 0 -15px 6rem;
  text-align: center;
  border-top: 2px solid rgb(255 255 255 / 10%);
  border-bottom: 2px solid #fff;
}

.secHead h3 {
  font-size: 2.625rem;
  color: var(--white);
  font-weight: 700;
}

.dark .secHead h3 {
  color: var(--black);
}

.dark .secHead {
  border-top: 2px solid rgb(0 0 0 / 10%);
  border-bottom: 2px solid #000;
}

.portfolioCell {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.portfolioCell img {
  border-radius: 10px;
  position: relative;
  transition: ease all 0.5s;
  width: 100%;
}

.portfolioCell:hover img {
  transform: scale(1.2) rotate(5deg);
}

.portfolioCell .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(251 133 0 / 50%);
  opacity: 0;
  visibility: hidden;
}

.portfolioCell:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.portfolioCell .overlay h3 {
  color: var(--white);
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 0 0 30px #00000047;
}

.pricingSec .swiper-pagination-bullet {
  background-color: var(--white);
  opacity: 1;
}

.pricingSec .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.pricingSec .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.5rem;
}

.pricingSec .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--light-blue);
}

.pricingSec .swiper-horizontal>.swiper-pagination-bullets,
.pricingSec .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 2.25rem;
}

/* END: Branding CSS */

/* Begin: Award CSS */
.awardSec {
  padding: 8rem 0 6rem;
  text-align: center;
}

.awardSec .awardListCarousel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  margin-top: 5rem;
}

.rollImage {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  line-height: 0;
  -webkit-transition: opacity 0.15s ease-out;
  -moz-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
  position: relative;
  overflow: hidden;
}

.rollImage figure {
  padding: 10px 0;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  margin: 0;
}

.rollImage:hover figure {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  transition: transform 0.5s cubic-bezier(0.19, 0.65, 0.02, 0.93);
}

.rollImage .staticImage img {
  filter: grayscale(1) contrast(0.2) brightness(0.7);
}

.rollImage .hoverImage {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}

.rollImage:hover .staticImage {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
}

.rollImage:hover .hoverImage {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

/* END: Award CSS*/

/* Begin: Packages CSS */
.navTabStyles {
  background: rgb(33 158 188 / 10%);
  border-bottom: 0;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}

.navTabStyles .nav-item {
  flex: 1;
}

.navTabStyles .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  background: transparent;
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 500;
  border: 0;
  box-shadow: 0 0 30px rgb(33 158 188 / 0%);
  padding: 1rem 1rem;
}

.navTabStyles .nav-item .nav-link.active,
.navTabStyles .nav-item .nav-link.active:hover,
.navTabStyles .nav-item .nav-link.active:focus,
.navTabStyles .nav-item .nav-link:hover,
.navTabStyles .nav-item .nav-link:focus {
  background: var(--secondary);
  box-shadow: 0 0 30px rgb(33 158 188 / 20%);
}

.pkgStyle {
  margin: 0 -15px;
  padding: 4rem 2.6rem;
  background: #05103f;
  min-height: 48rem;
}

.swiper-slide:nth-of-type(2n + 1) .pkgStyle,
.swiper-slide:nth-of-type(2n + 1) .pkgStyle .overflow {
  background: #0f1a6f;
}

.swiper-slide:nth-of-type(3n + 1) .pkgStyle,
.swiper-slide:nth-of-type(3n + 1) .pkgStyle .overflow {
  background: #00131c;
}

.pkgStyle h4 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
}

.pkgStyle .overflow {
  /* overflow: hidden; */
  /* border: 1px solid #fff; */
  max-height: 17rem;
  background: #05103f;
  min-height: 100px;
}

.pkgStyle .overflow .section-heading {
  font-size: 2.5rem;
  text-align: left;
  line-height: 1.2;
}

.pkgStyle .overflow .section-heading {
  -webkit-text-fill-color: #05103f;
}

.swiper-slide:nth-of-type(2n + 1) .pkgStyle .overflow .section-heading {
  -webkit-text-fill-color: #012334;
}

.swiper-slide:nth-of-type(3n + 1) .pkgStyle .overflow .section-heading {
  -webkit-text-fill-color: #00131c;
}

.pkgStyle h3 {
  font-size: 3.125rem;
  font-weight: 700;
  color: var(--white);
  margin: 1rem 0 2rem;
  padding-bottom: 10px;
  display: table;
  border-bottom: 10px solid #fff;
}

.pkgStyle :is(strong, p) {
  color: var(--white);
  margin-bottom: 2rem;
  display: block;
}

.pkgStyle .themeBtn {
  margin-top: 1rem;
}

.pkgStyle ul li {
  color: var(--white);
  margin: 5px 0;
}

/* END: Packages CSS */

/* Begin: Clients CSS */
.testimonialSec .section-heading {
  /* margin: -3rem 0 4rem -5rem; */
  font-size: 16.6875rem;
  display: flex;
  justify-content: center;
}

.testimonialSec .item {
  padding: 0 5rem 5rem;
  text-align: center;
  background: #2819bd;
  border-radius: 1rem;
  margin: 8rem 0 8rem;
  transition: background-color 0.3s linear;
  position: relative;
  min-height: 375px;
  -webkit-filter: blur(2px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(2px);
}

.testimonialSec .item::before {
  position: absolute;
  content: "";
  top: -2rem;
  left: 3rem;
  width: 17.375rem;
  height: 12.5rem;
  background: url(../images/qoutes.webp) center/100% no-repeat;
  opacity: 0.1;
}

.testimonialSec .item figure {
  border-radius: 50%;
  border: 0.65rem solid var(--primary);
  margin: -8rem 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonialSec .item figure img {
  /* border-radius: 100%; */
  width: 12rem;
  height: 12rem;
  object-fit: cover;
}

.testimonialSec .item h4 {
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.testimonialSec .item h4 span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  font-family: "Monsterrat", sans-serif;
  margin: 0 0 1em;
}

.testimonialSec .item p {
  color: var(--white);
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 100%;
  margin: 0 auto;
}

.testimonialSec .swiper-slide-active .item {
  background: #000000;
  transition: background-color 0.3s linear;
  box-shadow: 0 35px 90px rgb(2 48 71 / 18%);
  filter: blur(0);
}

.testimonialSec .swiper-pagination-bullet {
  background-color: var(--white);
  opacity: 1;
}

.testimonialSec .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.testimonialSec .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.5rem;
}

.testimonialSec .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--light-blue);
}

.testimonialSec .swiper-horizontal>.swiper-pagination-bullets,
.testimonialSec .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 9rem;
}

.swiper-button-next,
.swiper-button-prev {
  background: #000;
  padding: 30px 40px;
  border-radius: 10px;
  color: #fff;
}

/*END: Clients CSS */

/* Begin: Partners CSS */
.partnerSec {
  padding: 6rem 0;
  background: #000;
}

.partnerSec h3 {
  margin: 0 0 5rem;
  text-align: center;
  font-size: 4.75rem;
  font-weight: 700;
  color: var(--white);
}

.partnerSec ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.partnerSec ul:before,
.partnerSec ul li:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 150px;
  left: 0;
  background: url(../images/border-divider.webp) center/100% no-repeat;
}

.partnerSec ul li:before {
  top: 50%;
  left: auto;
  right: 0;
  transform: translate(-50%) rotate(90deg);
}

.partnerSec ul li:first-child:before {
  content: none;
}

.partnerSec ul li {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 300px;
  position: relative;
  flex-direction: column;
}

/*END: Partners CSS */
/* Begin: contactSec CSS */
.contactSec {
  padding: 0 0 6rem;
}

.contactSec .section-heading {
  font-size: 34.6875rem;
  white-space: nowrap;
  justify-content: center;
  margin: 0 0 5rem;
}

.contactSec h3 {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.contactSec p {
  margin: 0 auto 5rem;
  max-width: 60%;
  text-align: center;
  line-height: 1.7;
}

.contactSec .form-control {
  min-height: 50px;
  border-radius: 50px;
  padding: 0 2rem;
  appearance: none;
  -webkit-appearance: none;
}

.contactSec select.form-control {
  background-image: url("../images/caret.webp");
  background-position: right 20px top 50%;
  background-size: 14px 7px;
  background-repeat: no-repeat;
}

/*END: contactSec CSS */

/* Begin: Footer CSS */
.main-footer {
  padding: 2rem 0 0;
  color: var(--white);
  overflow: hidden;
  background: #000;
}

.footerLogos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.main-footer .footerDetail {
  border-left: 0;
  border-right: 0;
}

.main-footer .footerDetail [class^="col-"] {
  padding: 3rem 2rem;
}

.main-footer ul li a {
  color: var(--white);
}

.main-footer .footer-logo {
  margin-bottom: 2rem;
  display: block;
}

.main-footer .follow {
  margin-top: 1.5rem;
}

.main-footer .follow ul {
  display: flex;
  gap: 0.5rem;
}

.main-footer .follow li a {
  color: var(--white);
  background: var(--secondary);
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.main-footer .follow li a:hover {
  background: var(--white);
  color: var(--secondary);
}

.main-footer h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.7;
}

.main-footer .info li a {
  font-size: 14px;
}

.main-footer .info li strong {
  display: block;
  margin-top: 1.5rem;
}

.main-footer .links li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-footer .links li::before {
  content: "\f101";
  color: var(--orange);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.main-footer .links li a {
  font-size: 14px;
  display: block;
  margin: 0.5rem 0;
}

.main-footer .subscribe {
  margin-top: 2rem;
  margin-block: 2rem;
  /* display: flex; */
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50px;
}

.main-footer .subscribe input {
  background: transparent;
  border: 0;
  padding-left: 2rem;
  min-height: 50px;
}

.main-footer .subscribe button {
  white-space: nowrap;
  font-size: 14px;
}

.main-footer .secureWith {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-footer .copyright {
  border: 1px solid rgb(255 255 255 / 10%);
  border-left: 0;
  border-right: 0;
  text-align: center;
  padding: 1.25rem 0;
}

.main-footer .copyright p {
  margin: 0;
}

.main-footer .copyright p a {
  color: var(--white);
}

.main-footer .copyright p span {
  color: var(--orange);
}

.main-footer a:hover,
.main-footer .copyright p a:hover {
  color: var(--orange);
}

/*END: Footer CSS */

/*START: Inner Banner CSS */
.innerBanner {
  position: relative;
}

.innerBanner .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.innerBanner>img {
  width: 100%;
}

.innerBanner h3 {
  font-size: 4.875rem;
  font-weight: 800;
  font-family: "Monsterrat", sans-serif;
  color: var(--white);
  max-width: 85%;
  margin: 0 auto;
}

/*END: Inner Banner CSS */

/* START: About CSS */
.aboutHeading {
  position: relative;
  overflow: hidden;
}

.aboutHeading .section-heading {
  white-space: nowrap;
}

.aboutSec {
  position: relative;
  padding: 8rem 0;
  background-image: linear-gradient(to bottom, var(--primary) 38%, #f3f3f3 0);
}

.aboutSec h3 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Monsterrat", sans-serif;
  margin-top: 4em;
  margin-bottom: 1.5em;
  color: var(--white);
}

.aboutSec p {
  color: #414141;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.aboutSec .themeBtn:hover {
  background: var(--primary);
}

.aboutSec figure {
  margin-right: -3rem;
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
  overflow: hidden;
}

/* END: About CSS */

/* START: Fact CSS */
.factSec {
  padding: 8rem 0;
}

.factSec h2 {
  text-align: center;
}

.factSec p {
  text-align: center;
}

.factSec .factSlider {
  margin-top: 5rem;
  display: flex;
  justify-content: space-evenly;
  flex-flow: row wrap;
  gap: 1rem;
}

.factSec .factSlider li {
  width: 16%;
}

.factSec .factBox {
  padding: 2.25rem 1.25rem;
  background: #f9f9f8;
}

.factSec .factBox .fact-icon {
  margin: 0 0 1.5rem;
}

.factSec .factBox h3 {
  font-weight: 600;
  color: var(--primary);
}

.factSec .factBox p {
  text-align: left;
  margin: 0;
  font-size: 1.25rem;
  color: var(--primary);
}

/* END: Fact CSS */

/* Begin: Partners CSS */
.meetPartners {
  background: var(--primary);
  padding: 5rem 0;
  text-align: center;
}

.meetPartners h2 {
  color: var(--white);
  margin-bottom: 3rem;
}

.partnerCarousel {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.serviceSec.inner,
.porfolioSec.inner,
.pricingSec.inner,
.testimonialSec.inner {
  padding: 4rem 0;
}

/* END: Partners CSS */

/* Begin: Steps CSS */
.servicesSteps {
  padding: 4rem 0 0;
}

.servicesSteps h2 {
  font-size: 3.95rem;
}

.stepCarousel .step p {
  min-height: 9rem;
  margin: 0;
}

.stepCarousel .step {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 2rem;
  border-radius: 6px;
  position: relative;
  min-height: 475px;
}

.stepCarousel .step h3 {
  font-size: 5rem;
}

.stepCarousel .step h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
}

.stepCarousel .step .shade {
  position: absolute;
  bottom: 15rem;
  right: 10rem;
  font-size: 10rem;
  font-weight: 700;
  line-height: 0.5;
  opacity: 0;
  transition: all 350ms ease-in;
}

.stepCarousel .step:hover {
  background: var(--secondary);
}

.stepCarousel .step:hover .shade {
  opacity: 0.08;
  bottom: 2rem;
  right: 2rem;
}

/* END: Steps CSS */

/* Begin: Modal CSS */
.modalStyle img {
  max-width: 100%;
  border-radius: 10px;
}

.modalStyle .modal-content {
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  position: relative;
}

.modalStyle .close {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: var(--white);
  opacity: 1;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  position: absolute;
  top: -24px;
  right: -20px;
  border-radius: 100px;
}

.modalStyle h2 {
  text-align: center;
  font-size: 4rem;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.modalStyle form {
  text-align: center;
}

.modalStyle .form-control {
  height: 3rem;
  border-radius: 0;
  margin-bottom: 1.25rem;
  border: 0;
  border-bottom: 2px solid #000;
}

.modalStyle .themeBtn {
  margin-bottom: 1rem;
}

.modalStyle strong {
  font-weight: 500;
}

/* Begin: Modal CSS */

#regForm .tab {
  display: none;
  margin: 0;
  position: relative;
  width: 100%;
}

.lead-fromm {
  display: flex;
  flex: 1;
}

.banner_form_btn {
  display: flex;
}

header .logo {
  max-width: 300px;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.webservices_pack .navTabStyles {
  background: transparent;
}

.webservices_pack .navTabStyles .nav-item {
  flex: initial;
}

.porttabsctm {
  display: none;
}

.block {
  display: flex;
}

.relative-header {
  padding: 5rem 0;
}

.thankyou_sec {
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  justify-content: center;
  text-align: center;
}

.thankyou_sec p {
  color: #221752;
}

.main-content__checkmark {
  font-size: 9.75rem !important;
  line-height: 1 !important;
  background-image: -webkit-linear-gradient(90deg, #219ebc 0, #05103f 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-header__title {
  font-size: 6.5rem;
  font-weight: 700 !important;
  line-height: 1.1;
  color: #219ebc;
}

.start_live_chat {
  font-size: 20px;
  background-color: #16171a;
  padding: 15px 35px;
  display: inline-block;
  border-radius: 50px;
  margin: 20px 0 0;
  color: #fff !important;
  line-height: 16px;
}

.modal-open {
  padding-right: 0 !important;
}

.footer-logo img {
  width: 280px;
}

.tp-leftarrow,
.tp-rightarrow {
  display: none;
}

.faq-sec {
  text-align: center;
  padding: 5rem 0;
  background: var(--primary);
}

.faq-sec .container-fluid {
  padding: 0 8rem;
}

.faq-sec h2 {
  font-size: 4.325rem;
  color: #fff;
  margin-bottom: 2rem;
}


#main #faq .card {
  margin-bottom: 0;
  border: 0;
  background-color: transparent;
}

#main #faq .card .card-header {
  border: 0;
  padding: 0;
}

#main #faq .card .card-header .btn-header-link {
  color: #fff;
  display: block;
  font-size: 1.2rem;
  text-align: left;
  border-top: 1px solid #fff;
  border-radius: 0;
  font-weight: 600;
  border-left: 0;
  padding: 25px 0;
  border-right: 0;
  border-bottom: 0;
}

#main #faq .card .card-header .btn-header-link:after {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
}

#main #faq .card .card-header .btn-header-link.collapsed {
  background: transparent;
}

#main .btn.focus,
#main .btn:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}

#main .card-body {
  padding: 0 0 1rem 0;
  color: #fff;
  font-size: 1.063rem;
  line-height: 30px;
}

#main [aria-expanded="true"]:after {
  color: var(--secondary);
}

#main #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f106";
}

#main #faq .card .collapsing {
  line-height: 30px;
}

#main #faq .card .collapse {
  border: 0;
}

.accordion>.card>.card-header {
  margin: 0;
}

.faq-sec h3 {
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 600;
}

.faq-sec .col-md-6 {
  padding: 0 2rem;
}


/* our-services */
.our-services {
  padding: 5rem 0;
  overflow-x: visible;
  height: 100vh;
}

.cursor,
.cursor2,
.cursor3 {
  position: fixed;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  left: -100px;
  top: 50%;
}

.cursor {
  background-color: #fff;
  height: 0;
  width: 0;
  z-index: 99999;
}

.cursor2,
.cursor3 {
  height: 36px;
  width: 36px;
  z-index: 99998;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.cursor2.hover,
.cursor3.hover {
  -webkit-transform: scale(2) translateX(-25%) translateY(-25%);
  transform: scale(2) translateX(-25%) translateY(-25%);
  border: none;
}

.cursor2 {
  border: 2px solid #fff;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.6);
}

.cursor2.hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

/* #Slider
================================================== */

.our-services-slider {
  position: relative;
  display: block;
  overflow: hidden;
}

/* Case Study Showcase
================================================== */

.case-study-wrapper .case-study-name a {
  position: relative;
  text-align: center;
  font-size: var(--fontsize43);
  font-weight: 700;
  color: #564e4e;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  padding: 10px;
}

.case-study-wrapper .case-study-name a span {
  display: none;
}

.case-study-wrapper .case-study-name.active a,
.case-study-wrapper .case-study-name:hover a {
  color: var(--white-color);
  background-color: rgb(208, 17, 17);
  box-shadow: -13.216px 16.32px 40px 0px rgba(208, 17, 17, 0.16);
  padding: 10px;
  border-radius: 3px;
}

.case-study-wrapper .case-study-name.active span,
.case-study-wrapper .case-study-name:hover span {
  display: inline-block;
}

.blinking {
  animation: blinkingText 0.7s infinite;
}

@keyframes blinkingText {
  0% {
    color: var(--white-color);
  }

  49% {
    color: var(--white-color);
  }

  60% {
    color: transparent;
  }

  99% {
    color: transparent;
  }

  100% {
    color: var(--white-color);
  }
}

/* .case-study-wrapper li {
  margin-bottom: 10px;
} */

ul.case-study-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo-design-bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.case-secimg {
  position: absolute;
  right: 11rem;
  left: 0;
  margin: 5rem auto;
  z-index: -1;
}

.case-study-images li {
  margin: auto;
  position: absolute;
  top: 16rem;
  right: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.our-services .sec-hading {
  margin-bottom: 7rem;
  text-align: center;
}

.branding-services .case-study-wrapper .case-study-name a {
  font-size: 31px;
  display: inline-block;
  width: auto !important;
  text-align: left;
}

.case-study-wrapper .case-study-name.active a,
.case-study-wrapper .case-study-name:hover a {
  color: var(--white-color);
  background-color: #2618bc;
  color: #fff;
  box-shadow: -13.216px 16.32px 40px 0px rgba(208, 17, 17, 0.16);
  padding: 10px;
  border-radius: 3px;
}

.case-study-wrapper .case-study-name a {
  position: relative;
  text-align: center;
  font-size: var(--fontsize43);
  font-weight: 700;
  color: #564e4e;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  padding: 10px;
}

.accordion {
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition-duration: 0.4s;
}

.panel {
  background-color: white;
  display: none;
  overflow: hidden;
  padding: 25px 0 0;
  transition-duration: 0.4s;
}

.panel p {
  font-size: var(--fontsize17);
  margin-bottom: 0;
}

.case-study-images .img-hero-background img {
  opacity: 0;
  -webkit-transform: scaleX(1) skewX(5deg);
  -ms-transform: scaleX(1) skewX(5deg);
  transform: scaleX(1) skewX(5deg);
  -webkit-transition: 0s 0.45s;
  -o-transition: 0s 0.45s;
  transition: 0s 0.45s;
}

.case-study-images .show .img-hero-background img {
  opacity: 1;
  -webkit-transform: scaleX(1.1);
  -ms-transform: scaleX(1.1);
  transform: scaleX(1.1);
  -webkit-transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/* our-services */

/* .tp-parallax-wrap {
  left: 150px !important;
  top: 0 !important;
  transform: translate(0, 26%);
  bottom: 0;
}

div#slide-4-layer-6 {
  bottom: 0 !important;
} */

.banner-txt {
  display: flex;
  align-items: center;
  height: 100vh;
  padding-left: 10rem;
  color: #fff;
  padding-top: 6rem;
}

h1.heading1 {
  font-size: 98px;
  line-height: 1;
}

h1.heading1 span {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}

h2.heading2 {
  font-size: 50px;
  text-transform: uppercase;
  display: flex;
  font-weight: 400;
  padding: 1.5rem 0 2rem 0;
}

.banner-txt .highlight {
  color: #ef34e9;
  padding-left: 10px;
}

.cnt-wrpar {
  position: relative;
}

h1.heading1:after {
  content: '';
  position: absolute;
  background-image: url(../images/banner-line.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  bottom: -17rem;
  right: -27rem;
}

.heading3 {
  font-size: 55px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

.left-1 strong {
  font-weight: 800;
}

.heading3 strong {
  font-weight: 800;
}

.left-1 {
  font-size: 55px;
  font-weight: 500;
}

.right-2 {
  font-size: 90px;
  -webkit-text-fill-color: #f034e8;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  padding-bottom: 2rem;
}

.cnt-wrpar h3 {
  text-align: end;
  padding-top: 5rem;
}

.center-btn a {
  margin-top: 2rem;
}

.text1 {
  font-size: 57px;
  font-weight: 300;
  text-transform: uppercase;
}

.text2 {
  font-size: 70px;
  font-weight: 500;
  text-align: end;
  text-transform: uppercase;
}

img.slide1fc {
  position: absolute;
  right: -16%;
  bottom: 0;
}

img.sliderft3 {
  position: absolute;
  top: -7rem;
  bottom: 0;
  left: 36rem;
}

.heading4 {
  font-size: 217px;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: #980811;
  text-transform: uppercase;
  line-height: 160px;
  font-weight: 800;
}

.ctn-wrpar {
  position: relative;
  padding-bottom: 12rem;
}

.banner-txt-3 {
  display: flex;
  align-items: center;
  height: 100vh;
  padding-left: 10rem;
  color: #fff;
}

h1.heading1 span {
  font-size: 7.813rem;
}

img.ban3 {
  position: absolute;
  bottom: 0;
  left: 13rem;
}

[class^="box-"].showfirst {
  display: block;
}

.logo-black {
  display: none;
}

.svg-1 img {
  height: 60vh;
}

span.text-orange {
  display: none !important;
}

.logo-design-bg {
  display: none;
}
section.main-privacy h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  padding: 12px 15px;
  width: 100%;
  z-index: 15;
  background-size: cover;
  text-align: left;
  z-index: 99999;
  background: #050b33;
  display: none
}

.cookie-bar .col-nopadd {
  padding-left: 0;
  padding-right: 0
}

.cookie-bar p {
  display: inline-block;
  margin-bottom: 0;
  color: #fff;
  font-size: calc(11px + (13 - 11) * (100vw - 320px) / (1920 - 320));
  line-height: 25px;
  margin-right: 10px
}

.cookie-bar .setcokies {
  color: #fff;
  display: inline-block
}

.cookie-bar .cookie-btn {
  color: #fff;
  background: #e00030;
  padding: 3px 10px 3px 6px;
  border-radius: 0;
  font-weight: 700;
  font-size: calc(11px + (13 - 11) * (100vw - 320px) / (1920 - 320));
  text-decoration: none;
  text-transform: uppercase;
  margin-left: 0
}

.cookie-bar .cookie-btn-3 {
  border: 1px solid #fff;
  padding: 2px 4px;
  background: #36454f;
  border-radius: 2px;
  color: #fff
}
.setcokies a:hover{
  color: #fff;
}

header .menuOpt .themeBtn:nth-child(2) {
    display: none;
}