@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Mona Sans Expanded";
  src: url("../webfonts/MonaSansExpanded-SemiBold.woff2") format("woff2"),
    url("../webfonts/MonaSansExpanded-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans Expanded";
  src: url("../webfonts/MonaSansExpanded-Black.woff2") format("woff2"),
    url("../webfonts/MonaSansExpanded-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans Expanded";
  src: url("../webfonts/MonaSansExpanded-Bold.woff2") format("woff2"),
    url("../webfonts/MonaSansExpanded-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans Expanded";
  src: url("../webfonts/MonaSansExpanded-Medium.woff2") format("woff2"),
    url("../webfonts/MonaSansExpanded-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans Expanded";
  src: url("../webfonts/MonaSansExpanded-ExtraBold.woff2") format("woff2"),
    url("../webfonts/MonaSansExpanded-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans Expanded";
  src: url("../webfonts/MonaSansExpanded-Regular.woff2") format("woff2"),
    url("../webfonts/MonaSansExpanded-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
}

:root {
  --blue: #0075ff;
}

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

/*--header start--*/
.headerWrap {
  z-index: 99;
  display: flex;
  padding: 20px 50px;
  align-items: center;
  pointer-events: painted;
  backdrop-filter: blur(10px);
  justify-content: space-between;
  background-color: rgba(12, 12, 12, 0.8);
}

.logoWrap img {
  filter: brightness(0) invert(1);
}

.menuWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.headMenuUl {
  margin: 0;
  display: flex;
  align-items: center;
}

.headMenuLi {
  padding: 0 20px;
  margin-bottom: 0;
  position: relative;
}

.headMenuLi a {
  color: #fff;
  font-size: 18px;
  padding: 0 10px;
}

.headMenuLi a i {
  font-size: 14px;
  margin-left: 5px;
}

.headerSubMenu {
  position: absolute;
  min-width: 200px;
  left: 0;
  top: 10px;
  z-index: 5;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 10px 0px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  /* animation: growDown 300ms ease-in-out forwards; */
}

@keyframes growDown {
  0% {
    opacity: 0;
    transform: rotateY(-90deg) translateY(30px);
  }

  100% {
    opacity: 1;
    transform: rotateY(0deg) translateY(0px);
  }
}

.headerSubMenu.active {
  visibility: visible;
  opacity: 1;
}

.headerSubMenu li {
  border-bottom: 1px solid #eeeaea;
  transition: all 0.5s;
}

.headerSubMenu li a {
  color: #000;
  font-size: 15px;
  text-transform: capitalize;
  padding: 6px 10px 10px;
  display: block;
  width: 100%;
  transition: all 0.5s;
}

.headerSubMenu li:last-child {
  border: none;
}

.headerSubMenu li:hover {
  background-color: #0075ff;
}

.headerSubMenu li:hover a {
  color: #fff;
  transform: translateX(6px);
}

.headerWrap .toggleBtn {
  color: #fff;
}

/*--header end--*/
/*--banner start--*/
.bannerWrap {
  background-color: #0c0c0c;
}

.bannerWrap .hero-title {
  color: #fff;
}

.hero-title span.blueTxt {
  font-family: "Mona Sans Expanded";
}

.tu {
  text-transform: uppercase;
}

.subTitleTxt {
  max-width: 75%;
  padding-left: 25px;
  position: relative;
}

.subTitleTxt::before {
  width: 1px;
  height: 80%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #fff;
}

.subTitleTxt p {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
}

.home .subTitleTxt .p {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Barlow";
  margin-bottom: 0;
}

.blueTxt {
  color: var(--blue);
}

.aboutSec h2 {
  text-transform: uppercase !important;
  font-size: 60px;
  font-weight: 700;
  padding: 0px 50px;
}

.banHeroBold {
  font-weight: 700;
  /* margin-right: 14px; */
}

#hero .inner .typed-cursor {
  font-size: 80px;
  font-weight: 400;
  margin-right: 15px;
}
#hero .inner .agencyTxt{
  display: block;
}
/*--banner end--*/
.commonSec {
  padding: 120px 0;
}

/*--Ethos start--*/
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.ethosSec {
  overflow-x: hidden;
  position: relative;
}

.ethosSec h2 {
  color: #000;
}

.ethosBg {
  left: 0;
  top: 10px;
  position: absolute;
}

.subSecH {
  color: var(--blue) !important;
  font-size: 30px;
  margin-bottom: 12px;
  display: block;
  font-family: "Barlow";
}

.mainH {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: capitalize !important;
  font-family: "Mona Sans Expanded";
}

/* .headingTxt {
  padding-top: 30px;
} */
.headingTxt p {
  margin-bottom: 10px;
  color: #000;
  font-weight: 400;
}
.headingTxt p:last-child{
  margin-bottom: 0;
}

.acc-content {
  padding: 0px 10px 50px;
  display: none;
}
.home .acc-content {
  padding: 0px 10px 20px;
  display: none;
}
.ethosContent {
  padding-top: 80px;
}

.ethosContent p,
.ethosContent li {
  color: #000;
  font-weight: 400;
}
.ethosContent li{
  font-size: 18px;
  line-height: 1.5;
}
.ethosContent li:not(:last-child){
  margin-bottom: 15px;
}
.ethosContent ol,
.ethosContent ol li{
  list-style-type: disc;
  list-style-position: inside;
}

.ethosContent .acc-head {
  display: flex;
  position: relative;
  /* align-items: center; */
  align-items: baseline;
  /* padding-right: 30px; */
  padding-right: 60px;
  padding-bottom: 30px;
}

.ethosContent .acc-head .accIcon {
  margin-right: 20px;
  width: 58px;
  height: 58px;
}

.ethosContent .acc-head .accIcon img {
  width: 100%;
  height: 100%;
}

.ethosContent .acc-head h3 {
  margin-bottom: 0;
}

.ethosContent .acc-head h3 a {
  color: #4e4e4e;
  font-weight: 400;
  transition: 0.5s;
  font-size: 42px;
  margin-bottom: 0px;
}

.ethosContent .acc-head.active h3 a {
  margin-bottom: 0px;
  color: var(--blue);
  font-weight: 700;
}

.acc:not(:last-child) {
  padding-bottom: 0px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 14%);
}

.acc-head.active {
  padding-bottom: 15px;
}

.ethosImg {
  padding-right: 100px;
  padding-left: 50px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  display: none;
}

.ethosImg.show {
  opacity: 1;
  visibility: visible;
  display: block;
}

.ethosImg figure {
  height: 650px;
  overflow: hidden;
  border-radius: 30px;
  transition: 1s;
  transform: rotate(-10deg);
  transition: 0.5s;
  box-shadow: 0 0 15px rgba(0, 85, 159, 0.15);
}

.ethosImg figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.acc-head {
  cursor: pointer;
}

.acc-head::after {
  position: absolute;
  content: "\f078";
  right: 0;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  box-shadow: 0px 0px 20px 3px rgba(0, 133, 255, 0.2);
  font-family: FontAwesome;
  transition: 0.5s;
  color: #0085ff;
}

.acc-head.active::after {
  color: var(--blue);
  transform: rotate(180deg);
}

.home #ethosSection .ethosContent .acc-head{
  align-items: center;
}

/*--Ethos end--*/

/*--marqee text Sec --*/
.marqueeSec {
  overflow-x: hidden;
  padding: 0px !important;
  background-color: #0c0c0c;
  margin: 1px 0 0;
}

.marqueeSec .marquee {
  margin-top: 0px;
}

.marquee {
  display: flex;
  padding: 15px 0;
  margin: 20px 0;
  white-space: nowrap;
  justify-content: flex-end;
}

.marquee[data-reversed="true"] {
  justify-content: flex-start;
  transition: 0.5s;
}

.marquee span {
  display: block;
  padding: 0 60px;
  font-size: 90px;
  position: relative;
  padding-right: 90px;
  font-family: "Mona Sans Expanded";
  color: #fff;
}

.marquee span:nth-child(2n) {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.marquee span::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../images/home/star-f.png) no-repeat;
  background-size: 100%;
  top: 40%;
  transform: translateY(-50%);
  right: 0;
  animation: spin1 1s infinite linear;
  filter: brightness(0) saturate(100%) invert(97%) sepia(97%) saturate(0%) hue-rotate(33deg) brightness(105%) contrast(104%);
}

@keyframes spin1 {
  0% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(320deg);
  }
}

/*--marqee text end--*/

/*--services sec start--*/
.serviceSec {
  padding-top: 90px;
  padding-bottom: 150px;
}

.serviceSec .headingTxt {
  padding-top: 0px;
}

.section {
  position: relative;
  width: 100%;
  display: block;
  z-index: 30 !important;
}

.over-hide {
  overflow: hidden;
}

.hero-center-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.hero-center-section .img-wrap {
  height: 100%;
  height:545px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.hero-center-section .img-wrap::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-center-section .img-wrap figure {
  height: 100%;
}

.hero-center-section .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-center-section.show {
  opacity: 1;
  z-index: 1;
}

.hero-center-section.show .serviceContent {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.serviceCon {
  padding-top: 50px;
}

.sevicesImgWrap {
  position: relative;
  height: 500px;
}

.slide-buttons {
  margin: 0;
}

.slide-buttons li {
  margin-bottom: 0px;
  padding: 15px 0;
  line-height: normal;
  text-align: left;
}

.slide-buttons li a {
  display: block;
  color: #bebebe;
  font-size: 38px;
  line-height: 44px;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Mona Sans Expanded";
}

.slide-buttons li a span {
  font-weight: bold;
}

.slide-buttons li a:hover,
.slide-buttons li.active a {
  color: #000;
  font-size: 50px;
}

.slide-buttons li a:hover span,
.slide-buttons li.active span {
  color: var(--blue);
}

/* header {
  z-index: 99;
  pointer-events: painted;
  backdrop-filter: blur(10px);
  background-color: rgba(12, 12, 12, 0.8);
} */
header .headMenuLi a {
  cursor: pointer;
}

.serviceContent {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px;
  text-align: left;
  z-index: 12;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: 1s;
  display: flex;
  align-items: center;
}

.serviceContent h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.serviceContent p {
  color: #fff;
}

.serviceContList {
  margin-top: 10px;
  min-height: 230px;
}

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

.serviceContList li {
  color: #fff;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.serviceContList li a {
  color: #fff;
}

.serviceContList li a.disallow{
  pointer-events: none;
}

.serviceContList li:hover a {
  color: #50a0ff;
}

.serviceContList li::before {
  width: 30px;
  height: 30px;
  background: url(../images/home/check-icon.png) no-repeat;
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
}

.sevicesImgWrap .serviceBtn {
  padding: 0;
  border: none;
}

.serviceBtn {
  display: flex;
  justify-content: flex-end;
}

.serviceBtn .readBtn {
  background-color: var(--blue);
  color: #fff;
  font-weight: 600;
  transition: 0.5s;
  font-size: 20px;
  border: 1px solid transparent;
  transition: all 0.5s;
}

.serviceBtn .readBtn:hover {
  background-color: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
}

/* .sevicesImgWrap .serviceBtn:hover .readBtn{
    color: inherit;
    font-size: auto;
    transition: none;
    font-weight: inherit;
} */

/*--services sec end--*/
/*--casestudy start--*/
.caseSec {
  background-color: #0c0c0c;
}

.caseItem {
  position: relative;
}

.caseItem {
  display: flex;
  justify-content: end;
}

.caseStudyImg {
  width: 50%;
  padding-right: 75px;
  position: relative;
}

.caseStudyImg figure {
  width: 100%;
  height: 500px;
  height: 420px;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  background-color: #fff;
}

.caseStudyImg figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.caseStudyImg figure::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.caseLogoBox {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 170px;
  height: 140px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  border-radius: 0px 20px;
}

.caseLogoBox img {
  width: 100%;
  height: 100%;
  border-radius: 0px 20px;
  object-fit: contain;
}

.caseStudyName {
  width: 60%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: 0.8s;
}

.caseStudyName h2 {
  font-size: 80px;
  font-weight: bold;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  transition: 1s;
}

.caseStudyName h2 span {
  display: block;
  padding-left: 200px;
}

.cubeSwiper .swiper-slide {
  aspect-ratio: 1/1;
}

/*  Set slide image to cover */

.cubeSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*  Pagination as three column grid  */
.cubeSwiper .pagination-container {
  padding-top: 25px;
  /*  pagination grid container width set in absolute pixels as using 
      transform scale for responsiveness.  */
  width: 250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;

  /* Scale down pagination - i.e. bigger or smaller at your break points */
  transform: scale(0.8);
}

/* fraction/slide count */

.cubeSwiper .cube-pagination-fraction {
  color: rgba(255, 0, 255, 0.8);
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  text-align: center;
  position: relative;
}

/* prev/next buttons */

.cube-button-prev,
.cube-button-next {
  cursor: pointer;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: all 500ms ease;
  filter: brightness(0.8);
  letter-spacing: 1px;
  font-weight: 700;
}

.cube-button-prev:hover,
.cube-button-next:hover {
  color: red;
  filter: brightness(0.95);
}

.caseSecInn {
  min-height: 420px;
  position: relative;
}

.caseSlider {
  overflow: hidden;
  position: static;
}

.caseSlider .swiper-slide {
  opacity: 0;
  visibility: hidden;
}

.caseSlider .swiper-slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
}

.caseSlider .swiper-slide.swiper-slide-active .caseStudyName {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

.caseStudyImg figure {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: 1s ease-in;
}

.caseSlider .swiper-slide.swiper-slide-active .caseStudyImg figure {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  transition: 0s ease-out;
}

.swiper-pagination-fraction {
  position: absolute;
  top: 0;
  left: 47%;
  transform: translateX(-50%);
  color: #fff;
  bottom: auto;
  width: auto;
  z-index: 1;
}

.swiper-pagination-current {
  font-size: 30px;
  color: #ba9900;
}

.arrow {
  outline: none !important;
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  outline: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.arrow.cube-button-next1 {
  right: 15px;
}

.arrow.cube-button-next1::after,
.arrow.cube-button-next2::after {
  content: "";
  position: absolute;
  right: -40px;
  width: 56px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/home/right-arrow.png) no-repeat;
  background-size: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}

.arrow.cube-button-next1:hover:after,
.arrow.cube-button-next2:hover:after {
  background: url(../images/home/right-arrow-hover.png) no-repeat;
  background-size: 100%;
}

.arrow.cube-button-prev1 {
  left: 35px;
}

.caseSlider .arrow.cube-button-prev1 {
  /* left: -70px; */
  left: -60px;
}

.arrow.cube-button-prev1::after,
.arrow.cube-button-prev2::after {
  content: "";
  position: absolute;
  left: -40px;
  width: 56px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/home/left-arrow.png) no-repeat;
  background-size: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}

.arrow.cube-button-prev1:hover::after,
.arrow.cube-button-prev2:hover::after {
  background: url(../images/home/left-arrow-hover.png) no-repeat;
  background-size: 100%;
}

.buttonWrap {
  margin-top: 120px;
  position: relative;
  display: flex;
  justify-content: center;
}
.testiSec .buttonWrap {
  margin-top: 25px;
}
.buttonWrap::after {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  z-index: -1;
}

.innerBtn {
  padding: 20px 50px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: auto;
  background-color: #0c0c0c;
}

.innerBtn p {
  font-size: 25px;
  margin-bottom: 0px;
  color: #fff;
}

.innerBtn p a,
.innerBtn a {
  color: var(--blue);
  /* margin-left: 10px; */
  font-weight: 700;
  font-family: "Mona Sans Expanded";
}

.innerBtn p a:hover,
.innerBtn a:hover {
  color: #000;
}

.caseSec .innerBtn p a:hover,
.innerBtn a:hover {
  color: #fff;
}

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

.videSec {
  padding: 120px 0;
}

.videSec .headingTxt {
  padding-top: 0px;
}

.videoWrap {
  height: 90vh;
  position: relative;
}

.videoWrap video {
  width: 100%;
  height: 99%;
  object-fit: cover;
  object-position: center center;
}

.videoLayer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -1px;
  left: 0;
}

.videoLayer img {
  width: 100%;
  height: 100%;
}

.vidPlayBtn {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: 1px 1px 20px 4px rgba(0, 0, 0, 0.2);
  right: 25%;
  bottom: 150px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.vidPlayBtn i {
  font-size: 35px;
  color: #0075ff;
  transition: 0.5s;
}

.vidPlayBtn:hover i {
  transform: scale(1.15);
}

/*--casestudy end--*/

/*--client sec start--*/
.clientSec {
  background-color: #0c0c0c;
  overflow: hidden;
}

.clientSec .slick-slide {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clientSec .innerClient {
  margin: 0 15px;
  width: auto;
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  width: 200px;
  height: 100px;
  transition: all 0.5s;
}

.clientSec .innerClient img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
  object-fit: contain;
}

.clientSec .innerClient:hover {
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
}

.marquee_rtl,
.marquee {
  margin-top: 30px;
}

.marquee_rtl {
  margin-top: 60px;
}

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

.innerClient img {
  height: 70px;
}

.clientSec .mainH {
  color: #fff;
  padding: 0px 15px;
}

.halfH {
  width: 100%;
  max-width: 70%;
}

/*--client sec end--*/
/*--testimonial start--*/

.testiSec {
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
}
.single-services .testiSec{
  padding-bottom: 140px;
}

.testBg {
  position: absolute;
  left: -100px;
  top: 0px;
  width: 100%;
  height: 81%;
  z-index: -1;
}

.testBg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testiSlider {
  padding: 40px 0;
  padding-bottom: 80px;
}

.testiSecInn {
  position: relative;
  padding-top: 20px;
}

.testiItems {
  display: flex;
  align-items: center;
}

.testiItems .testiImg {
  width: 345px;
  border-radius: 30px;
  height: 440px;
  overflow: hidden;
}

.testiItems .testiImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.testiItems .testiContent {
  width: calc(100% - 345px);
  padding-left: 125px;
  position: relative;
  padding-top: 15px;
}

.testiItems .testiContent .testiTxt {
  padding-bottom: 0px;
  position: relative;
  height:120px;
  overflow: hidden;
  padding-right: 10px;
}
.testiItems .testiContent .testiTxt::after{
    width: 100%;
    height:95px;
    content: "";
    position: absolute;
    background: linear-gradient(to top, #fff, transparent);
    bottom: 0;
    left: 0;
}

.page-template-template-testimonial .testiItems .testiContent .testiTxt::after {
  content: normal;
}

.page-template-template-testimonial .testiItems .testiContent .testiTxt{
  overflow: auto;
}

.testimonial_text.show-more-height .testiTxt{
  height: auto;
}
.testiItems .testiContent .testimonial_text.show-more-height .testiTxt::after{
  display: none ;
}
.testiItems .testiContent::before {
  width: 65px;
  height: 90px;
  content: "";
  background: url(../images/home/quote.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: -35px;
  left: 120px;
  z-index: -1;
}
.testimonSecCard:nth-child(even) .testiItems .testiContent::before {
  left: -8px;
}
.testiItems .testiContent .testiTxt p {
  font-size: 20px;
  line-height: 1.4;
}

.testiBottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.testiInfo {
  width: calc(100% - 190px);
}

.testiVideo {
  width: 180px;
}

.testiBottom h3 {
  font-family: "Mona Sans Expanded";
  color: var(--blue);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}

.testiInfo p {
  color: #414141;
  font-size: 22px;
}

.testiBottom .testiVideo a {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-right: 80px;
  transition: 0.5s;
}

.testiBottom .testiVideo a::after {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 20px 3px rgba(0, 133, 255, 0.2);
  content: "\f04b";
  font-size: 30px;
  font-family: "FontAwesome";
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  justify-content: center;
  color: var(--blue);
  transition: 0.5s;
}

.testiBottom .testiVideo a:hover::after {
  transform: translateY(-50%) scale(1.15);
}

.buttonWrap.wbg::after {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  z-index: -1;
}

.buttonWrap.wbg .innerBtn {
  padding: 20px 50px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  width: auto;
  background-color: #fff;
}

.buttonWrap.wbg .innerBtn p {
  color: #000000;
}

.testiSlider {
  overflow: hidden;
}

.testiSlider .swiper-slide {
  padding: 0 50px;
}

.testiSlider .arrow {
  background-color: transparent;
  border: none;
  position: absolute;
  top: -40px;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  outline: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #000;
  /* bottom: -70px; */
  right: 82px;
}

.testiSlider .cube-button-prev2.arrow {
  right: 142px;
}

.testiSlider .swiper-slide .testiItems .testiImg {
  transform: rotate(-10deg);
}

.testiSlider .arrow.cube-button-prev1::after,
.testiSlider .arrow.cube-button-prev2::after {
  background: url(../images/home/left_arrow-black.png) no-repeat;
  background-size: cover;
}

.testiSlider .arrow.cube-button-next1::after,
.testiSlider .arrow.cube-button-next2::after {
  background: url(../images/home/right_arrow-black.png) no-repeat;
  background-size: cover;
}

.testiSlider .arrow.cube-button-prev1:hover::after,
.testiSlider .arrow.cube-button-prev2:hover::after {
  background: url(../images/home/left-arrow-hover.png) no-repeat;
  background-size: cover;
}

.testiSlider .arrow.cube-button-next1:hover::after,
.testiSlider .arrow.cube-button-next2:hover::after {
  background: url(../images/home/right-arrow-hover.png) no-repeat;
  background-size: cover;
}

/*--testimonial end--*/

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #cae2ff;
}

::-webkit-scrollbar-thumb {
  background: #0065dd;
}

::-webkit-scrollbar-thumb:hover {
  background: #002552;
}

/* responsive menu */

.ResFixedMenu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0075ffb8;
  border-radius: 15px 15px 0px 0px;
  z-index: 99;
  padding: 16px 25px;
  display: none;
  backdrop-filter: blur(5px);
}

.ResFixedmenuInn {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
}

.ResMenuIcon img {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.ResMenuIcon:nth-child(3) {
  background-color: #0061d2;
  border-radius: 30px;
  padding: 10px 6px;
  width: 160px;
}

.ResMenuIconLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.resImgWrap {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resImgWrap img {
  width: 25px;
  height: auto;
  object-fit: contain;
}

.ResMenuIconLink span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.2;
}

/* Responsive header */

.ResHeader {
  position: absolute;
  transform: translateX(-350px);
  left: 0;
  top: 0;
  height: 100vh;
  min-width: 300px;
  background: #003c84;
  z-index: 110;
  box-shadow: 0px 0px 15px 4px #212121;
  transition: all 0.5s;
}

.ResHeader.active {
  transform: translateX(0);
}

.menuOpenBg {
  transition: all 0.5s;
}

.menuOpenBg.active {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(4px);
  top: 0;
}

.ResHaaderTop {
  padding: 20px 15px;
  position: relative;
}

.ResHeaderLogo {
  width: 190px;
  height: auto;
}

.ResHeaderLogo img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.menuClose {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 30px;
}

.menuClose i {
  color: #fff;
}

.ResHeaderUl {
  max-height: 80vh;
  overflow-y: auto;
  padding-top: 20px;
}

.ResHeaderUl::-webkit-scrollbar {
  width: 3px;
}

.ResHeaderUl::-webkit-scrollbar-track {
  background-color: #eeeaea;
}

.ResHeaderUl::-webkit-scrollbar-thumb {
  background-color: #4e4e4e;
}

.ResHeaderUl li {
  margin-bottom: 20px;
  padding: 0px 20px;
}

.ResHeaderUl li a {
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.ResHeaderUl li i {
  color: #fff;
  font-size: 15px;
  margin-left: 6px;
}

.ResheadSubmenu {
  display: none;
}

.ResheadSubmenu li {
  margin-bottom: 16px;
}

.ResheadSubmenu li a {
  font-size: 16px;
}

/* read more & less */

.readmoreBtn {
  color: #0075ff;
  text-align: center;
  display: block;
  margin: 0px auto;
  font-size: 18px;
  font-weight: 600;
  display: none;
}

.ContentShowBtn {
  color: #0075ff;
  font-size: 18px;
  font-weight: 600;
  display: none;
}

.readmoreBtn:hover,
.ContentShowBtn:hover {
  color: #0075ff;
}


/* Respponsive area */

.tabView {
  display: none;
}

.mobView {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .tabView {
    display: block;
  }

  .deskView {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .mobView {
    display: block;
  }

  .deskView {
    display: none;
  }

  .innerBtn{
    padding: 10px 10px 15px;
  }

}

.header-visible {
  overflow: visible !important;
}
.scrollbar-track-y {
  display: none !important;
}
.bannerWrap {
  display: none;
}
.dmca-badge-block {
  display: block;
  text-align: center;
  margin: 20px auto 0;
}
.dmca-badge {
  display: inline-block;
}
.contAddPara a:hover {
  color: #0075ff;
}
.single-industry .serviceSec2 .ethosContent .acc-head{
  flex-wrap: wrap;
}
.single-industry .serviceSec2 .ethosContent .acc-head h3{
  width: auto;
}
.single-industry .serviceSec2 .ethosContent .acc-head h4{
  width: 100%;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 10px;
}
.single-industry .serviceSec2 .ethosContent .acc-content > .srcBtn{
  display: none;
}

.blogDetailsWrap p a, .serviceSec1 .serviceTxt p a{
  color: var(--blue);
}
.blogDetailsWrap p a:hover{
  color: #000;
}
.servicesRightTxt .acc-content p a{
  color: var(--blue);
}



button:focus{
  outline: none !important;
}
.pojo-a11y-toolbar-left.pojo-a11y-{
  z-index: 9999 !important;
  pointer-events: visible !important;
}
.ServicePage .LocCustomList li {
  position: relative;
  padding-left: 15px;
}

.ServicePage .LocCustomList li::before{
  position: absolute;
  content: "";
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
  top: 8px;
}



.caseStudyImg figure{
  clip-path: none;
}
.caseStudyName{
  clip-path: none;
}
.slides-numbers {
  color: #fff;
  display: none;
  font-size: 20px;
  font-weight: 300;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  bottom: -50px;
  font-weight: 600;
  text-align: center;
}
.slides-numbers .active {
  color: #a98b02;
  font-size: 30px;
  margin-right: -6px;
  padding: 5px;
}
.slides-numbers .total {
  margin-left: -5px;
  padding: 5px;
}
.media-wrap {
  display: flex;
  align-items: center;
  margin: 0px 10px;
}
.leftImgBox {
  width: 55%;
}
.rightContBox {
  width: 45%;
  padding-left: 30px;
}
.caseStudyImg {
  width: 100%;
  padding-right: 0;
}
.caseStudyName {
  width: 100%;
  position: static;
  transform: translate(0);
}
.caseSecInn .slick-arrow {
  z-index: 2;
  bottom: -50px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  transition: 0.6s;
  padding: 8px 10px;
  position: absolute;
  border-radius: 5px;
  /* max-width: 150px; */
  outline: none !important;
  background-color: transparent;
  /* background-color: #fff; */
  /* border: 1px solid #fff; */
}
.caseSecInn .slick-arrow:hover{
  /* color: #fff; */
  /* background-color: #00559f; */
}
.js-getinfo p{
  color: #fff;
}
.caseSecInn .slick-arrow:after{
  content: "";
  position: absolute;
  width: 40px !important;
  height: 25px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
.caseSecInn .slick-prev:after {
  left: -40px;
  background-image: url(../images/home/left-arrow.png);
}
.caseSecInn .slick-next:after {
  right: -40px;
  background-image: url(../images/home/right-arrow.png);
}
.caseSecInn .slick-prev{
  left: 40px;
}
.caseSecInn .slick-next{
  right: 40px;
}

@media (max-width: 1024px){
  .caseSecWrap{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .caseSecInn {
    margin: 0 0 60px;
  }
  .caseStudyName h2 {
    padding-right: 0;
  }
}
@media (max-width: 767px){
  .media-wrap{
    flex-direction: column;
  }
  .leftImgBox {
    width: 100%;
  }
  .rightContBox {
    width: 100%;
    padding-top: 15px;
    padding-left: 0 !important;
  }
  .caseStudyName h2{
    padding-right: 0 !important;
  }

  .caseSecInn .slick-arrow {
    font-size: 0 !important;
    top: 40%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
  }

  .caseSecInn{
    padding: 0px 20px;
  }

  .caseSecInn .slick-prev {
    left: 0;
  }

  .caseSecInn .slick-next {
    right: 0;
  }

  .caseSecInn .slick-prev:after {
    left: -25px;
  }

  .caseSecInn .slick-next:after {
    right: -25px;
  }

  .slides-numbers{
    bottom: -65px;
  }
}
.marquee_logo1{
  display: block;
  margin-bottom: 30px;
  height: 100px;
  margin-top: 30px;
}
.js-marquee{
  display: flex;
  margin-right: 0px !important;
  gap:10px;
}

.zi_3{
	z-index: 3;
	position: relative;
}
.clear{
	clear: both;
}
.clearFix:after{
	content: "";
	display: table;
	clear: both;
}

.tenthBtn {
  left: 0px;
  bottom: 90px;
  width: 200px;
  padding: 3px;
  z-index: 100000;
  cursor: pointer;
  position: fixed;
  background-color: #fff;
  border: 0px solid rgb(0, 37, 82);
  border-radius: 0 10px 10px 0;
}
.tenthBtn:before {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  width: 200px;
  height: 85px;
  position: absolute;
  animation-name: pulse;
  animation-duration: 2500ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  /* border-radius: 50%; */
  border-width: 0px;
  border-style: solid;
  border-radius: 0 10px 10px 0;
  border-color: rgb(52, 65, 163);
  border-image: initial;
}
.tenthBtn img{
  width: 100%;
}
@keyframes pulse {
  0% {
    box-shadow: rgba(5, 87, 187, 0.9) 0px 0px 0px 2px;
  }
  50% {
    box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 0px 8px;
  }
  100% {
    box-shadow: rgba(108, 165, 236, 0.1) 0px 0px 0px 14px;
  }
}
@media screen and (max-width: 991px){
  .tenthBtn {
    width: 120px;
    bottom: 70px;
  }
  .tenthBtn:before {
    width: 120px;
    height: 52px;
  }
}