@font-face {
  font-family: "futuralight";
  src: url("../fonts/futura_light/futura_light_font.woff2") format("woff2"),
    url("../fonts/futura_light/futura_light_font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "futurabold";
  src: url("../fonts/futura_bold/futura_bold_font.woff2") format("woff2"),
    url("../fonts/futura_bold/futura_bold_font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "futurabook";
  src: url("../fonts/futura_book/futura_book_font.woff2") format("woff2"),
    url("../fonts/futura_book/futura_book_font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "futuraheavy";
  src: url("../fonts/futura_heavy/futura_heavy_font.woff2") format("woff2"),
    url("../fonts/futura_heavy/futura_heavy_font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/*Start Header Css*/
* {
  box-sizing: border-box;
}
.clear {
  clear: both;
}
.container {
  width: 100%;
  max-width: 1200px;
}
:root {
  --roboto: "Roboto", sans-serif;
  --futuralight: "futuralight";
  --futurabook: "futurabook";
  --futurabold: "futurabold";
  --futuraheavy: "futuraheavy";
  --montserrat: "Montserrat", sans-serif;
}

.headBox {
  width: 100%;
  float: left;
  position: relative;
  top: 0;
  left: 0;
  display: block;
  z-index: 5;
  margin-bottom: -180px;
}
.innerHead {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  padding: 15px 0;
}
.head__logo {
  width: 120px;
  display: inline-block;
}
.head__logo img {
  width: 100%;
}
.head__mnuBox {
  width: 40px;
  height: 32px;
  display: grid;
  align-items: center;
  border: none;
  outline: none !important;
  box-shadow: none !important;
  background: none;
  padding: 0 5px;
  margin-top: 20px;
  margin-left: 20px;
  transition: all 0.5s ease;
}
.head__mnuBox span {
  width: 100%;
  height: 3px;
  display: block;
  background: #fff;
}
.mnuBox {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.mnuBox nav {
  font: 20px var(--roboto);
  color: #000;
}
.mnuBox nav .offcanvas-title {
  font-size: 32px;
  font-weight: 900;
}
.mnuBox nav .offcanvas-title img {
  width: 100px;
}
.mnuBox nav .nav-item .nav-link {
  color: #b7b4b4 !important;
  transition: all 0.3s ease;
  margin: 5px 0;
}
.mnuBox nav .nav-item .nav-link:hover {
  color: #fff !important;
  padding-left: 15px;
  background: #111;
}
.offcanvas {
  background: #000;
}
.offcanvas-header .closebtn {
  width: 40px;
  height: 40px;
  position: relative;
  border: none;
  background: none;
}
.offcanvas-header .closebtn img {
  width: 100%;
}

.bgYellow {
  background: #d8d105 !important;
}

/*Start Effect*/
/* .textEff {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
} */
.bounce:hover {
  animation-name: bounce;
  animation-timing-function: ease;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}

.bgColorEff {
  position: relative;
  z-index: 2;
}
.bgColorEff::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}
.bgColorEff:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.bgColorEff::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #8463c3;
  z-index: -1;
  transition: transform 0.3s ease;
}

/* .shakeEff01 {
  -webkit-animation: rubberBand 1s infinite;
  animation: rubberBand 1s infinite;
} */
.shakeEff02 {
  -webkit-animation: heartBeat 1.2s infinite;
  animation: heartBeat 1.2s infinite;
}
.shakeEff03 {
  -webkit-animation: pulse 2s;
  animation: pulse 2s;
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-10px);
  }
  40% {
    -webkit-transform: translateX(10px);
  }
  60% {
    -webkit-transform: translateX(-10px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(-10px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

.hovIcon {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
}
.hovIcon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.hovIcon.effectLgo:after {
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
/* .hovIcon.effectLgo:after {
  -webkit-animation: sonarEffect 1.3s infinite 75ms;
  -moz-animation: sonarEffect 1.3s infinite 75ms;
  animation: sonarEffect 1.3s infinite 75ms;
} */
@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff,
      0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff,
      0 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff,
      0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff,
      0 0 0 10px rgba(255, 255, 255, 0.5);
    -moz-transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff,
      0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff,
      0 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
/*End Effect*/

/*Start Home Page*/
.bannBox {
  width: 100%;
  min-height: 620px;
  height: auto;
  float: left;
  background: #000;
  overflow: hidden;
  position: relative;
}
.bannBox > .container {
  height: 100%;
}
.inerBannBox {
  width: 100%;
  float: left;
  height: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
}
.ban_LeftBox {
  width: 100%;
  float: left;
  height: 100%;
  display: block;
  padding: 200px 0 80px 0;
}
.banContent {
  display: block;
}
.banContent h1 {
  font: 120px var(--roboto);
  color: #fff;
  font-weight: 900;
  line-height: 110px;
}
.banContent p {
  font: 24px var(--roboto);
  color: #fff;
  margin: 5px 0 0 0;
}
.ban_RightBox {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
.ban_RightBox img {
  width: 100%;
}

.learnMorLink {
  font: 16px var(--roboto);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  margin: 20px 0 0 0;
  display: inline-block;
  background: #a8cc19;
  padding: 10px 30px;
  transition: all 0.3s ease;
}
.learnMorLink:hover {
  color: #000;
  border-radius: 20px;
}

.hom_localMedia {
  width: 100%;
  float: left;
  padding: 100px 0;
  overflow: hidden;
  background: #fff;
}
.innerHom_Media {
  width: 100%;
  display: block;
}
.innerHom_Media p {
  font: 20px var(--roboto);
  line-height: 34px;
  position: relative;
  color: #000;
}
.innerHom_Media .item {
  width: 100%;
  float: left;
}
.inerDtl {
  width: 100%;
  /* display: grid; */
  /* grid-template-columns: 45% 55%; */
  /* align-items: center; */
}
.inerDtl h2 {
  font: 70px var(--roboto);
  font-weight: 900;
  color: #000;
}
.inerDtl p {
  font: 20px var(--roboto);
  line-height: 34px;
  padding: 0 70px 0 15px;
  position: relative;
  color: #000;
}
.inerDtl p:before {
  content: "";   
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #cefb1c;
}
#localMedia .owl-dots {
  position: absolute;
  right: 0;
  top: 40%;
  transform: translate(0, -50%);
}
#localMedia .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  margin: 5px 0;
  padding: 5px;
  position: relative;
}
#localMedia .owl-dots .owl-dot:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #000 !important;
}
#localMedia .owl-dots .owl-dot.active {
  border: 1px solid #000;
}

.swal2-container.swal2-center.swal2-fade.swal2-shown {
    display: none;
}

.hom_Digital {
  width: 100%;
  height: auto;
  float: left;
  overflow: hidden;
  position: relative;
  background: #000;
}
.hom_Statue {
  width: 38%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.inerHomDigit {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: 38% 1fr;
  padding: 100px 0;
  align-items: center;
  z-index: 2;
  position: relative;
}
.titlOfDigt {
  display: block;
}
.titlOfDigt h2 {
  font: 130px var(--roboto);
  color: #a8cc19;
  font-weight: 900;
  line-height: 110px;
}
.titlOfDigt a {
  background: #f91eb6;
  color: #000;
}
.ditailOfDigit {
  width: 100%;
  float: left;
}
.ditailOfDigit h2 {
  font: 28px var(--roboto);
  color: #a8cc19;
}
.inerDigitList {
  width: 700px;
  float: left;
  background: #49d3a9;
  margin: 20px 0 20px -120px;
  padding: 30px 60px 30px 30px;
}
.inerDigitList .item {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
.digitBox {
  display: block;
  position: relative;
  top: 0;
  transition: all 0.3s ease;
  padding: 20px;
}
.digitBox img {
  width: 24px !important;
}
.digitBox h3 {
  font: 18px var(--roboto);
  color: #000;
  font-weight: 600;
  margin: 10px 0 0 0;
}
.digitBox p {
  font: 14px var(--roboto);
  color: #000;
  margin: 10px 0 0 0;
  line-height: 20px;
}
#homDigital .owl-dots {
  position: absolute;
  right: -140px;
  top: 40%;
  transform: translate(0, -50%);
}
#homDigital .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  margin: 5px 0;
  padding: 5px;
  position: relative;
}
#homDigital .owl-dots .owl-dot:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #a8cc19 !important;
}
#homDigital .owl-dots .owl-dot.active {
  border: 1px solid #a8cc19;
}
.digitBox:hover {
  top: -15px;
  box-shadow: 0 13px 13px -13px #666;
}

.homImgDtlBox {
  width: 100%;
  float: left;
}
.innerHomImgDtlBox {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: 50% 50%;
}
.homimgBoxlft {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}
.homimgBoxlft > span {
  width: 100%;
  height: 300px;
  float: left;
  overflow: hidden;
}
.homimgBoxlft > span img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.homimgBoxRight {
  width: 100%;
  float: left;
  overflow: hidden;
}
.homimgBoxRight {
  width: 100%;
  height: 600px;
  float: left;
  position: relative;
}
.homimgBoxRight .imgArea {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.homimgBoxlft span:hover img {
  transform: scale(1.07);
}

.homOurClient {
  width: 100%;
  float: left;
  background: #000;
  padding: 100px 0;
}
.innerhomOurClient {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  grid-gap: 40px;
}
.titleBoxOurclient {
  display: block;
}
.titleBoxOurclient h2 {
  font: 100px var(--roboto);
  color: #f91eb6;
  font-weight: 900;
  line-height: 100px;
}
.ourClientDtlBox {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.dtlOfHomClient {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 30px 20px;
  background: #d8d105;
  grid-gap: 10px;
  align-items: center;
  position: relative;
  top: 0;
  transition: all 0.3s ease;
}
.dtlOfHomClient span {
  width: 75px;
  height: 75px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.dtlOfHomClient span img {
  width: 100%;
}
.contentOfClient {
  display: block;
}
.contentOfClient h3 {
  font: 18px var(--roboto);
  color: #000;
  font-weight: 600;
}
.contentOfClient p {
  font: 14px var(--roboto);
  color: #000;
  margin: 10px 0 0 0;
  line-height: 22px;
}
.dtlOfHomClient:hover {
  top: -15px;
  background: #fff;
}

.homBrandBox {
  width: 100%;
  float: left;
  background: linear-gradient(to right, #8463c3 50%, #fff 50%);
}
.inerHomBrandBox {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  padding: 80px 0;
}
.inerBrandTitle {
  width: 100%;
  float: left;
  display: block;
}
.inerBrandTitle h2 {
  font: 130px var(--roboto);
  color: #000;
  font-weight: 900;
}
.inerBrandList {
  width: 100%;
  float: left;
  padding: 30px;
}
#homBrand .item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
#homBrand .item span {
  transition: all 0.3s ease;
  margin: 0 10px 30px 10px;
}
#homBrand .owl-dots {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translate(0, -50%);
}
#homBrand .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  margin: 5px 0;
  padding: 5px;
  position: relative;
}
#homBrand .owl-dots .owl-dot:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #000 !important;
}
#homBrand .owl-dots .owl-dot.active {
  border: 1px solid #000;
}
#homBrand .item span:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 10px -10px #666;
}

.homEventBox {
  width: 100%;
  float: left;
  background: linear-gradient(to right, #d8d105 50%, #e5e5e5 50%);
}
.inerHomEventBox {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  padding: 50px 0;
}
.inerEventTitle {
  display: 100%;
  float: left;
  display: block;
}
.inerEventTitle h2 {
  font: 130px var(--roboto);
  color: #000;
  font-weight: 900;
}
.inerEventTitle a {
  background: #8565c2;
}
.inerEventList {
  width: 100%;
  float: left;
  padding: 40px;
}
#homEvent .item {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 70px;
}
.eventList {
  display: block;
  margin: 20px 0;
  padding: 0 120px 0 0;
}
.eventList h4 {
  font: 13px var(--roboto);
  color: #000;
}
.eventList h3 {
  font: 24px var(--roboto);
  color: #000;
  margin: 10px 0 0 0;
  font-weight: 600;
}
.eventList p {
  font: 16px var(--roboto);
  color: #000;
  margin: 10px 0 0 0;
  line-height: 24px;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
    font: 16px var(--roboto);
    padding: 10px 0px;
}


.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    font: 16px var(--roboto) !important;
    text-align: center;
    padding: 10px !important;
}




#homEvent .owl-dots {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
#homEvent .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  margin: 5px 0;
  padding: 5px;
  position: relative;
}

.contactFormBox .wpcf7-not-valid-tip, .contactFormBox .wpcf7-response-output {
    color: #fff;
    font: 16px 'Roboto';
    text-align: center;
    padding: 15px !important;
}


#homEvent .owl-dots .owl-dot:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #000 !important;
}
#homEvent .owl-dots .owl-dot.active {
  border: 1px solid #000;
}

.footerBox {
  width: 100%;
  float: left;
  position: relative;
  background: #49d3a9;
  overflow: hidden;
}
.innerFootBox {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 50px;
}
.inerfootContent {
  display: block;
  padding: 80px 40px 80px 0;
}
.inerfootContent h2 {
  font: 100px 'Roboto';
  color: #000;
  font-weight: 900;
}
.inerfootContent h3 {
  font: 28px 'Roboto';
  color: #000;
  margin: 15px 0 0 0;
  font-weight: 600;
}
.inerfootContent p {
  font: 16px 'Roboto';
  color: #000;
  margin: 15px 0 0 0;
  line-height: 24px;
}
.footImg {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
/*End Home Page*/

/*Start About Us Page*/
.abutBannBox {
  width: 100%;
  float: left;
  position: relative;
  background-color: #000;
  padding: 200px 0 150px 0;
  background-repeat: no-repeat;
  background-position: right 80%;
}
.inerAbutBannBox {
  width: 100%;
  float: left;
  text-align: center;
  position: relative;
  z-index: 1;
}
.inerAbutBannBox h2 {
  font: 60px var(--futurabold);
  color: #fff;
}
.inerAbutBannBox h1 {
  font: 90px var(--futurabold);
  color: #fff;
  font-weight: 900;
  margin: 10px 0 0 0;
}
.inerAbutBannBox p {
  font: 20px var(--roboto);
  color: #fff;
  margin: 10px 0 0 0;
}
.banImg {
  position: absolute;
  bottom: 90px;
  right: 0;
  display: block;
}

.abutVideoBox {
  width: 100%;
  float: left;
  position: relative;
}
.abutVideoBox iframe {
  width: 100%;
  min-height: 760px;
}
.abutVideoBox video {
  width: 100%;
  float: left;
}

.abutBlkHive {
  width: 100%;
  float: left;
  background: #000;
  padding: 100px 0;
}
.inerBlkHive {
  display: grid;
  grid-template-columns: 270px 1fr;
  grid-gap: 50px;
  align-items: center;
}
.imgBlkHiv {
  width: 250px;
  display: flex;
  justify-content: center;
  background: #f91eb6;
}
.contOfBlkHive {
  display: block;
}
.contOfBlkHive h2 {
  font: 50px var(--roboto);
  color: #fff;
  font-weight: 900;
}
.contOfBlkHive p {
  font: 22px var(--roboto);
  color: #fff;
  margin: 20px 0 0 0;
  line-height: 34px;
}

.abutFocusOfBlk {
  width: 100%;
  float: left;
  position: relative;
  background: #49d3a9;
  overflow: hidden;
}
.inerImgFocusOfBlk {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.inerImgFocusOfBlk img {
  width: 100%;
  height: 640px;
}
.inerContFocusOfBlk {
  width: 50%;
  float: right;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.focusContDtl {
  width: 100%;
  float: right;
  padding: 0 0 0 50px;
}
.focusContDtl h2 {
  font: 42px var(--roboto);
  color: #000;
  font-weight: 900;
}
.focusContDtl p {
  font: 20px var(--roboto);
  color: #000;
  margin: 20px 0 0 0;
  line-height: 28px;
}

.abutVisionOfBlk {
  width: 100%;
  float: left;
  position: relative;
  background: #8463c3;
  overflow: hidden;
}
.inerImgVisionOfBlk {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
.inerImgVisionOfBlk img {
  width: 100%;
  height: 640px;
}
.inerContVisionOfBlk {
  width: 50%;
  float: left;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.visionContDtl {
  width: 100%;
  float: left;
  padding: 0 50px 0 0;
}
.visionContDtl h2 {
  font: 42px var(--roboto);
  color: #000;
  font-weight: 900;
}
.visionContDtl p {
  font: 20px var(--roboto);
  color: #000;
  margin: 20px 0 0 0;
  line-height: 28px;
}

.clientSays {
  width: 100%;
  float: left;
  padding: 100px 0;
  background: #000;
}
.inerAbutClientSays {
  width: 100%;
  float: left;
}
.inerAbutClientSays h3 {
  font: 20px var(--roboto);
  color: #fff;
}
.inerAbutClientSays h2 {
  font: 48px var(--roboto);
  color: #fff;
  font-weight: 900;
  margin-top: 20px;
}
.abutClientSaysArea {
  background: #49d3a9;
  border-radius: 40px;
  margin-top: 30px;
}
.inerclientDtl {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-gap: 30px;
  padding: 40px 50px;
  position: relative;
}
.inerclientDtl:after {
  content: "";
  width: 84px;
  height: 65px;
  background: url("../images/innerPage/iconOfTestim.png") no-repeat;
  background-size: cover;
  position: absolute;
  top: 30px;
  right: 140px;
  z-index: 2;
}
/*.inerclientDtl:before{content:'';position:absolute;border:0 solid transparent;border-top:3px solid red;border-radius:20px 0 0 0;top:-12px;left:0;transform:rotate(45deg);z-index:2;}*/
z-index: -1;
.clientImg {
  width: 120px;
  height: 120px;
  float: left;
  border-radius: 50%;
  overflow: hidden;
}
.clientImg img {
  width: 100%;
}
.clintDtl {
  display: block;
  padding-right: 130px;
}
.clintDtl h4 {
  font: 22px var(--roboto);
  color: #000;
  font-weight: 600;
}
.clintDtl h5 {
  font: 18px var(--roboto);
  color: #000;
  font-weight: 600;
  margin: 10px 0 0 0;
}
.clintDtl p {
  font: 18px var(--roboto);
  color: #000;
  margin: 10px 0 0 0;
  line-height: 28px;
}
#clientSay {
  position: relative;
}
#clientSay:after {
  content: "";
  width: 30px;
  height: 100%;
  background: #a98edd;
  position: absolute;
  top: 0;
  right: 135px;
  z-index: -1;
}
#clientSay .owl-nav .owl-prev {
  width: 30px;
  height: 40px;
  background: #000;
  color: #fff;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
#clientSay .owl-nav .owl-next {
  width: 30px;
  height: 40px;
  background: #000;
  color: #fff;
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}

.abutStartWork {
  width: 100%;
  float: left;
  padding: 80px 0 0 0;
  background: #8463c3;
  z-index: 2;
}
.abutStartWork span {
  display: block;
  text-align: right;
  font: 340px var(--roboto);
  color: #fff;
  opacity: 0.2;
  margin: 0 0 -84px 0;
  font-weight: 600;
}
.innerStartWork {
  display: block;
}
.innerStartWork h3 {
  font: 28px var(--roboto);
  color: #000;
  font-weight: 600;
}
.innerStartWork h2 {
  font:66px var(--roboto);
  color: #000;
  font-weight: 900;
  text-transform: capitalize;
  margin-top: 20px;
  z-index: 1;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    font: 16px var(--roboto);
    text-align: center;
}

.abutOurProcess {
  width: 100%;
  float: left;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  background-color: #000;
}
.inerAbutProcess {
  display: block;
}
.inerAbutProcess h3 {
  font: 22px var(--roboto);
  color: #a98edd;
  font-weight: 600;
  text-align: center;
}
.inerAbutProcess h2 {
  font: 70px var(--roboto);
  color: #54eabc;
  font-weight: 900;
  text-align: center;
}
.listOfAbutProcess {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  margin-top: 50px;
}
.abutProcessDTl {
  display: block;
  background: #fff;
  padding: 20px;
}
.abutProcessDTl span {
  width: 100%;
  height: 120px;
  float: left;
  text-align: right;
}
.abutProcessDTl span img {
  max-height: 100px;
}
.abutProcessDTl h4 {
  font: 24px var(--roboto);
  color: #000;
  font-weight: 600;
  margin-top: 15px;
}
.abutProcessDTl p {
  font: 16px var(--roboto);
  color: #000;
  margin-top: 10px;
  line-height: 24px;
}

.newsLtrBox {
  width: 100%;
  float: left;
  padding: 100px 0;
  background: #8463c3;
}
.inerNewsLetter {
  width: 100%;
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-gap: 50px;
  align-items: center;
}
.lftNewLetter {
  display: block;
}
.lftNewLetter h3 {
  font: 22px var(--roboto);
  color: #000;
  font-weight: 600;
}
.lftNewLetter h2 {
  font: 80px var(--roboto);
  color: #a8cc19;
  font-weight: 900;
  margin-top: 10px;
}
.lftNewLetter p {
  font: 19px var(--roboto);
  color: #000;
  line-height: 28px;
  margin-top: 10px;
}
.rightSubScribe {
  display: block;
}
.rightSubScribe form {
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-gap: 10px;
}
.rightSubScribe form input {
  height: 48px;
  background: #fff;
  border: none;
  padding: 10px;
  font: 18px var(--roboto);
  color: #000;
  box-shadow: none;
  outline: none;
}
.rightSubScribe form button {
  background: none;
  border: 1px solid #000;
  text-align: center;
  font: 18px var(--roboto);
  color: #000;
  font-weight: 600;
}
.rightSubScribe form button:hover {
  background: #000;
  color: #fff;
}
/*End About Us Page*/
/*Start Contact Us Page*/
.contactMapBox {
  width: 100%;
  float: left;
}
.contactMapBox iframe {
  width: 100%;
  height: 700px;
}
.contactInfo {
  width: 100%;
  float: left;
  background: #000;
  padding: 80px 0 0 0;
  background-position: left 90%;
  background-repeat: no-repeat;
  background-size: 40%;
  margin-top: -3px;
}
.inerContInfo {
  width: 970px;
  margin: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 90px;
  align-items: center;
}
.imgInfoCont {
  width: 300px;
  display: flex;
  justify-content: center;
  background: #a98edd;
  position: relative;
  z-index: 2;
}
.imgInfoCont:after {
  content: "";
  width: 100%;
  height: 40px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  z-index: -1;
}
.contInfoDtl {
  display: block;
}
.contInfoDtl h3 {
  font: 20px var(--roboto);
  color: #fff;
  font-weight: 600;
}
.contInfoDtl h2 {
  font: 40px var(--roboto);
  color: #a98edd;
  font-weight: 900;
  margin: 20px 0 0 0;
}
.contInfoDtl p {
  font: 20px var(--roboto);
  color: #fff;
  margin: 20px 0 0 0;
  line-height: 34px;
}
.addDtl {
  width: 80%;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.addDtl span {
  display: block;
}
.addDtl span h4 {
  font: 24px var(--roboto);
  color: #fff;
  font-weight: 600;
}
.addDtl span p {
  margin: 5px 0 0 0;
  line-height: 32px;
}
.addDtl span p a {
  text-decoration: none;
  color: #fff;
}

h2#swal2-title span {
    font: 20px var(--roboto);
}

.conseltFormBox {
  width: 100%;
  float: left;
  padding: 80px 0;
  position: relative;
  background: #8463c3;
  overflow: hidden;
}
.inerImgConseltForm {
  width: 52%;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.inerImgConseltForm img {
  width: 100%;
}
.inerMainConseltBox {
  width: 400px;
  float: right;
  min-height: auto;
  display: flex;
  align-items: center;
  background: #edebeb;
}
.inerConseltForm {
  width: 80%;
  padding: 50px 0;
  margin: auto;
}
.inerConseltForm h2 {
  font: 32px var(--roboto);
  color: #000;
  font-weight: 400;
}
.inerConseltForm h2 span {
  font-weight: 900;
}
.inerConseltForm p {
  font: 20px var(--roboto);
  color: #000;
  margin: 15px 0 0 0;
  line-height: 28px;
}
.inerConseltForm form {
  display: block;
  margin: 30px 0 0 0;
}
.inerConseltForm form input {
  font: 18px var(--roboto);
  height: 42px;
  border: none;
  outline: none;
  box-shadow: 0 0 20px #f2f2f2;
}
.inerConseltForm form input:focus {
  box-shadow: none;
}
.inerConseltForm form .formBook {
  width: 160px;
  background: #000;
  color: #fff;
  margin: auto;
  font: 16px var(--roboto);
  height: 42px;
  border: none;
  outline: none;
  box-shadow: 0 0 20px #f2f2f2;
  transition: all 0.2s ease;
  display: block;
  font-weight: bold;
}
.inerConseltForm form .formBook:hover {
  border-radius: 20px;
}

.inerConseltForm {
  position: relative;
  display: inline-block;
  /* animation: 1s ease-in-out infinite alternate formRun; */
}
@keyframes formRun {
  from {
    transform: translateX(-10px);
    left: -10px;
  }
  to {
    left: 10px;
    transform: translateX(10px);
  }
}
.inerMainConseltBox:hover .inerConseltForm {
  animation: unset;
}
.form-group ::-webkit-input-placeholder {
  color: #b4b4b4;
}
.form-group ::-moz-placeholder {
  color: #b4b4b4;
}
.form-group :-ms-input-placeholder {
  color: #b4b4b4;
}
.form-group :-moz-placeholder {
  color: #b4b4b4;
}

.contSocialNetBox {
  width: 100%;
  float: left;
  padding: 120px 0 80px 0;
  background: #0d251e;
}
.inerSocialNet {
  display: block;
  text-align: center;
}
.inerSocialNet h2 {
  font: 34px var(--roboto);
  color: #fff;
  font-weight: 900;
}
.inerSocialNet p {
  font: 20px var(--roboto);
  color: #fff;
  margin: 20px 0 0 0;
  line-height: 32px;
}
.socialNetLink {
  width: 340px;
  padding: 10px;
  background: #a8cc19;
  display: flex;
  justify-content: space-evenly;
  margin: 30px auto 0 auto;
}
.socialNetLink a {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 50%;
  text-decoration: none;
  color: #a8cc19;
  font-size: 20px;
  transition: all 0.3s ease;
}
.socialNetLink a:hover {
  transform: scale(1.5);
}

.contactFormBox {
  width: 100%;
  float: left;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  background-color: #000;
}
.inerContactForm {
  display: block;
}
.inerContactForm h2 {
  font: 90px 'Roboto';
  color: #54eabc;
  font-weight: 900;
}
.inerContactForm p {
  width: 70%;
  font: 18px 'Roboto';
  color: #fff;
  margin: 20px 0 0 0;
  line-height: 28px;
}
.formFieldBox {
  width: 100%;
  float: left;
  margin-top: 50px;
}
.abutProcessDTl {
  display: block;
  background: #fff;
  padding: 20px;
  transition: all 0.3s ease;
}
.abutProcessDTl span {
  width: 100%;
  height: 100px;
  float: left;
  text-align: right;
}
.abutProcessDTl h4 {
  font: 24px var(--roboto);
  color: #000;
  font-weight: 600;
  margin-top: 10px;
}
.abutProcessDTl p {
  font: 16px var(--roboto);
  color: #000;
  margin-top: 10px;
  line-height: 24px;
}
.formFieldBox .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.formFieldBox input {
  height: 42px;
  font: 16px var(--roboto);
  border-radius: 0px;
}
.formFieldBox textarea {
  height: 300px;
  margin-top: 20px;
  font: 16px var(--roboto);
  border-radius: 0px;
}
.formFieldBox .formBtn {
  width: 170px;
  height: 42px;
  margin: 30px auto 0 auto;
  border: none;
  display: inherit;
  font: 16px var(--roboto);
  color: #000;
  background: #cefb1c;
  transition: all 0.3s ease;
  font-weight: bold;
}
.formFieldBox .formBtn:hover {
  border-radius: 20px;
}
.abutProcessDTl:hover {
  transform: scale(1.08);
}
/*End Contact Us Page*/

/*Start Media Strategy Css*/
.mediaGreatInsp {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.listOfGreatInsp {
  padding: 50px 65px 0 65px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.listOfGreatInsp img {
  height: 520px;
  position: relative;
    bottom: -5px;
}
.greatInspContent {
  display: block;
  padding: 0 0 50px 0;
  position: relative;
  z-index: 2;
}
.greatInspContent h2 {
  font: 44px var(--roboto);
  color: #000;
  font-weight: 900;
}
.greatInspContent p {
  font: 22px var(--roboto);
  color: #000;
  line-height: 34px;
  margin-top: 20px;
}
.greatInspContent span {
  font: 300px var(--montserrat);
  color: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  position: absolute;
  z-index: -1;
  bottom: -30px;
  transition: all 0.3s ease;
}
.color01 {
  background: #8463c3;
}
.color02 {
  background: #f91eb6;
}
.color03 {
  background: #d8d105;
}
.color04 {
  background: #a8cc19;
}
.listOfGreatInsp:hover .greatInspContent span {
  bottom: 50%;
}
.color02 {
  animation: colChange 5s;
  -moz-animation: colChange 5s infinite;
  -webkit-animation: colChange 5s infinite;
}
.color03 {
  animation: colChange 8s;
  -moz-animation: colChange 8s infinite;
  -webkit-animation: colChange 8s infinite;
}
.color04 {
  animation: colChange 11s;
  -moz-animation: colChange 11s infinite;
  -webkit-animation: colChange 11s infinite;
}
@-moz-keyframes colChange {
  0% {
    background: #f91eb6;
  }
  33% {
    background: #d8d105;
  }
  66% {
    background: #a8cc19;
  }
  100% {
    background: #f91eb6;
  }
}
@-webkit-keyframes colChange {
  0% {
    background: #f91eb6;
  }
  33% {
    background: #d8d105;
  }
  66% {
    background: #a8cc19;
  }
  100% {
    background: #f91eb6;
  }
}

.bgMediaStratSocialW {
  background: #49d3a9;
}
.innerStartWork h2.ml2 span {
  font:51px var(--roboto);
  color: #000;
  font-weight: 900;
  display: inline-block;
  text-transform: capitalize;
  margin-top: 20px;
  z-index: 1;
}

.innerStartWork h2.m12mo p {
  font:23px var(--roboto);
  color: #000;
  font-weight: 900;
  display: inline-block;
  text-transform: uppercase;
  margin-top: 20px;
  z-index: 1;
  line-height:40px;
  padding-top: 0;
}

.mStartBox {
  width: 100%;
  float: left;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  background-color: #000;
}
.innerMStrat {
  display: block;
}
.innerMStrat > h2 {
  font: 44px var(--roboto);
  color: #fff;
  font-weight: 900;
  text-align: center;
}
.innerMStrat > p {
  font: 20px var(--roboto);
  color: #fff;
  text-align: center;
  line-height: 38px;
  margin-top: 20px;
  padding: 0 80px;
}
.listOfMStart {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  margin-top: 70px;
}
.stratergyMbox {
  display: block;
  padding: 20px;
  text-align: center;
}
.stratergyMbox > span {
  width: 100%;
  height: auto;
  float: left;
}
.stratergyMbox > h3 {
  font: 24px var(--roboto);
  color: #fff;
  display: inline-block;
  font-weight: 600;
  margin-top: 20px;
}
.stratergyMbox > p {
  font: 14px var(--roboto);
  color: #fff;
  margin-top: 20px;
  line-height: 24px;
  padding: 0;
}

.msService {
  width: 100%;
  float: left;
  background: #f2f2f2;
  padding: 80px 0 180px 0;
}
.inerMSservTitleNdPara {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: auto 471px;
  justify-content: space-between;
}
.inerMSservTitleNdPara h2 {
  font: 44px var(--roboto);
  height: fit-content;
  color: #000;
  font-weight: 900;
  padding-left: 20px;
  border-left: 8px solid #54eabc;
}
.inerMSservTitleNdPara p {
  font: 20px var(--roboto);
  color: #000;
  line-height: 36px;
}
.inerMSserviceBox {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  justify-content: space-between;
  margin-top: 80px;
}
.listOfMSserv {
  width: 250px;
  height: 250px;
  display: grid;
  text-align: center;
  padding: 15px;
  grid-auto-rows: max-content;
  background: #1c1b1f;
  transition: all 0.3s ease;
}
.listOfMSserv img {
  margin: 80px auto 0 auto;
}
.listOfMSserv h3 {
  font: 20px var(--roboto);
  color: #fff;
  display: inline-block;
  margin-top: 15px;
}
.listOfMSserv p {
  font: 16px var(--roboto);
  color: #fff;
  display: inline-block;
  margin-top: 15px;
}
.inerMSserviceBox .listOfMSserv:nth-child(odd) {
  position: relative;
  top: 80px;
}
.listOfMSserv:hover {
  transform: scale(1.1);
}
/*End Media Strategy Css*/
/*Start Case Page Css*/
.caseBox {
  width: 100%;
  float: left;
  padding: 80px 0;
  background: #000;
}
.innerCaseBox {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
.caseListBox {
  width: 100%;
  float: left;
}
.caseListBox .imgCase {
  width: 100%;
  height: 480px;
  float: left;
  overflow: hidden;
  display: flex;
  position: relative;
}
.caseListBox .imgCase img {
  width: 100%;
  position: absolute;
}
.caseListBox h2 {
  font: 28px var(--roboto);
  color: #a98edd;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
}
.caseListBox p {
  font: 22px var(--roboto);
  color: #fff;
  line-height: 34px;
  display: inline-block;
  margin-top: 20px;
}
/*End Case Page Css*/
/*Start No Bullshit Page Css*/
.noBullBox {
  width: 100%;
  float: left;
  padding: 80px 0 0 0;
  background: #49d3a9;
  z-index: 2;
  position: relative;
}
.noBullBox span {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  font: 340px var(--roboto);
  line-height: 246px;
  color: #fff;
  opacity: 0.2;
  font-weight: 600;
}
.innerNoBull {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: 440px 1fr;
  grid-gap: 10px;
}
.imgOfNoBull {
  display: block;
  position: relative;
    bottom: -4px;
}
.imgOfNoBull img {
  width: 100%;
}
.dtlOfNoBull {
  display: block;
}
.dtlOfNoBull h3 {
  font: 25px 'Roboto';
  color: #000;
  font-weight: 600;
}
.dtlOfNoBull h2 {
  font: 70px 'Roboto';
  color: #000;
  font-weight: 900;
  margin-top: 20px;
}
.dtlOfNoBull p {
  font: 22px 'Roboto';
  color: #000;
  line-height: 40px;
  margin-top: 20px;
}
.dtlOfNoBull a {
  background: #d8d105;
}
/*End No Bullshit Page Css*/

@media screen and (max-width: 1300px) {
  .container {
    max-width: auto;
  }
  .bannBox {
    min-height: 540px;
  }
  .banContent h1 {
    font-size: 80px;
    line-height: 80px;
  }
  .ban_RightBox img {
    width: auto !important;
    height: 100%;
  }
  .inerDtl h2 {
    font-size: 54px;
  }
  .inerDigitList {
    width: 620px;
    margin: 20px 0 20px -70px;
  }
  .titlOfDigt h2 {
    font-size: 90px;
    line-height: 90px;
  }
  .inerDigitList .item {
    grid-gap: 20px;
  }
  .homimgBoxlft > span {
    height: 270px;
  }
  .homimgBoxRight {
    height: 540px;
  }
  .titleBoxOurclient h2 {
    font-size: 70px;
    line-height: 70px;
  }
  .innerhomOurClient {
    grid-template-columns: 200px 680px;
    justify-content: space-between;
  }
  .inerBrandTitle h2,
  .inerEventTitle h2,
  .inerfootContent h2 {
    font-size: 70px;
  }
  .inerfootContent {
    padding: 40px 20px 40px 0;
  }
  .inerAbutBannBox h2 {
    font-size: 34px;
  }
  .inerAbutBannBox h1 {
    font-size: 54px;
  }
  .inerImgFocusOfBlk,
  .inerImgVisionOfBlk {
    top: 50%;
    transform: translate(0, -50%);
  }
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 94%;
  }
  .eventList {
    padding: 0 70px 0 0;
  }
  #homEvent .item {
    grid-gap: 20px;
  }
  .inerHomBrandBox,
  .inerHomEventBox {
    padding: 40px 0;
  }
  .inerEventList {
    padding: 0 40px;
  }
  .hom_localMedia,
  .inerHomDigit,
  .homOurClient {
    padding: 60px 0;
  }
  .banContent h1 {
    font-size: 54px;
    line-height: 54px;
  }
  .inerHomDigit {
    grid-template-columns: 200px 620px;
    justify-content: space-between;
  }
  .inerDtl h2 {
    font-size: 42px;
  }
  .inerDtl p {
    font-size: 18px;
    line-height: 28px;
    padding: 0 0 0 15px;
  }
  .dtlOfHomClient {
    padding: 15px;
  }
  .inerfootContent h3 {
    font-size: 20px;
    margin: 10px 0 0 0;
  }
  .inerfootContent p {
    margin: 10px 0 0 0;
  }
  .contOfBlkHive h2,
  .focusContDtl h2,
  .visionContDtl h2,
  .inerAbutClientSays h2,
  .dtlOfNoBull h2 {
    font-size: 34px;
  }
  .contOfBlkHive p,
  .focusContDtl p,
  .visionContDtl p {
    font-size: 18px;
    line-height: 24px;
  }
  .innerStartWork h2 {
    line-height: 58px;
  }
  .innerStartWork h2.ml2 span {
    font-size: 58px;
  }
  .abutStartWork span {
    font-size: 270px;
  }
  .inerAbutProcess h2,
  .lftNewLetter h2 {
    font-size: 54px;
  }
  .listOfAbutProcess {
    grid-gap: 20px;
  }
  .innerNoBull {
    grid-template-columns: 370px 1fr;
  }
  .dtlOfNoBull p {
    font-size: 20px;
    line-height: 34px;
  }
  .noBullBox span {
    font-size: 240px;
    line-height: 246px;
    bottom: -32px;
  }
  .inerConseltForm h2 {
    font-size: 28px;
  }
  .inerConseltForm p {
    font-size: 16px;
    line-height: 24px;
  }
  .inerContactForm h2 {
    font-size: 54px;
  }
  .caseListBox .imgCase {
    height: 340px;
  }
}

@media screen and (max-width: 1100px) {
  .head__logo {
    width: 90px;
  }
  .innerhomOurClient {
    grid-template-columns: 200px 630px;
  }
  .titleBoxOurclient h2,
  .inerfootContent h2 {
    font-size: 50px;
    line-height: 50px;
  }
  .dtlOfHomClient span {
    width: 55px;
    height: 55px;
  }
  .homimgBoxRight {
    height: 440px;
  }
  .homimgBoxlft > span {
    height: 220px;
  }
  .inerDigitList {
    padding: 30px;
  }
  .digitBox {
    padding: 10px;
  }
  #homDigital .owl-dots {
    right: -80px;
  }
}

@media screen and (max-width: 992px) {
  .banContent p {
    font-size: 18px;
  }
  .inerDigitList {
    width: 100%;
  }
  .inerHomDigit {
    grid-template-columns: auto 520px;
  }
  .inerDigitList {
    padding: 15px;
    margin: 20px 0 20px -20px;
  }
  #homDigital .owl-dots {
    right: -40px;
  }
  #homBrand .item {
    grid-template-columns: repeat(2, 1fr);
  }
  .ourClientDtlBox {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 18px;
  }
  .innerhomOurClient {
    grid-template-columns: auto 1fr;
  }
  .footImg {
    height: auto;
    top: 50%;
    transform: translate(0, -50%);
  }
  .clintDtl {
    padding-right: 0;
  }
  .listOfAbutProcess {
    grid-template-columns: repeat(2, 1fr);
  }
  .inerBlkHive {
    grid-gap: 20px;
  }
  .focusContDtl {
    padding: 0 0 0 20px;
  }
  .visionContDtl {
    padding: 0 20px 0 0;
  }
  .rightSubScribe form {
    grid-template-columns: 1fr 120px;
  }
  .dtlOfNoBull p {
    font-size: 18px;
    line-height: 32px;
  }
  .noBullBox span {
    font-size: 170px;
    line-height: 170px;
    bottom: -20px;
  }
  .caseListBox .imgCase {
    height: 260px;
  }
  .caseListBox h2 {
    font-size: 24px;
  }
  .caseListBox p {
    font-size: 18px;
    line-height: 24px;
  }
  .contactMapBox iframe {
    height: 440px;
  }
  .inerContInfo {
    width: 100%;
    grid-gap: 20px;
  }
  .contInfoDtl h2 {
    font-size: 28px;
  }
  .contInfoDtl p {
    font-size: 18px;
  }
}

@media screen and (max-width: 800px) {
  .inerDtl {
    grid-template-columns: 1fr;
  }
  .inerDtl p {
    padding: 15px 0;
    border: none;
  }
  .inerDtl p:before {
    display: none;
  }
  .innerhomOurClient,
  .inerHomBrandBox,
  .inerHomEventBox,
  .innerFootBox {
    grid-template-columns: 1fr;
  }
  .ourClientDtlBox {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }
  .inerHomBrandBox {
    display: block;
  }
  .homBrandBox {
    background: linear-gradient(to bottom, #8463c3 50%, #8463c3 50%);
  }
  .inerBrandList {
    width: 100%;
    float: left;
    padding: 0;
    margin: 30px 0 0 0;
  }
  #homBrand .item {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
  #homBrand .owl-dots {
    left: 50%;
    right: unset;
    bottom: -20px;
    top: unset;
    transform: translate(-50%, 0);
  }
  #homBrand .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
  }
  .inerDigitList .item {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0px;
  }
  .inerHomEventBox {
    display: block;
  }
  .homEventBox {
    background: linear-gradient(to bottom, #d8d105 50%, #d8d105 50%);
  }
  .inerEventList {
    padding: 0;
    margin: 30px 0 0 0;
  }
  .eventList {
    padding: 0 20px 0 0;
  }
  .hom_Statue {
    width: 100%;
    height: auto;
  }
  .inerHomDigit {
    grid-template-columns: 1fr;
    display: block;
  }
  .ditailOfDigit {
    margin: 30px 0 0 0;
  }
  .ditailOfDigit h2 {
    text-align: left;
  }
  .inerDigitList {
    width: 100%;
    margin: auto;
    float: left;
  }
  #homDigital .owl-dots {
    left: 50%;
    right: unset;
    bottom: -44px;
    top: unset;
    transform: translate(-50%, 0);
  }
  #homDigital .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
  }
  .innerHomImgDtlBox {
    grid-template-columns: 1fr;
  }
  .homimgBoxlft > span {
    height: auto;
  }
  .homimgBoxRight {
    width: 100%;
    float: left;
    height: auto;
  }
  .homimgBoxRight .imgArea {
    position: relative;
  }
  .footerBox {
    display: grid;
  }
  .footImg {
    width: 100%;
    float: left;
    position: relative;
  }
  .inerBlkHive {
    grid-template-columns: 180px 1fr;
  }
  .imgBlkHiv {
    width: 100%;
  }
  .imgBlkHiv img {
    width:100%;
  }
  .innerStartWork h2.ml2 span {
    font-size: 42px;
  }
  .abutStartWork span {
    font-size: 200px;
    margin: 0 0 -40px 0;
  }
  .innerNoBull {
    grid-template-columns: 1fr;
  }
  .imgOfNoBull {
    width: 400px;
  }
  .dtlOfNoBull {
    padding: 0 0 80px 0;
  }
  .inerImgConseltForm {
    width: 94%;
    position: relative;
  }
  .inerMainConseltBox {
    width: 100%;
    margin-top: 40px;
  }
  .formFieldBox .form-row {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .inerNewsLetter {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .inerImgFocusOfBlk,
  .inerImgVisionOfBlk {
    width: 100%;
    position: relative;
    float: left;
    transform: unset;
    top: 0;
  }
  .inerContFocusOfBlk,
  .inerContVisionOfBlk {
    width: 100%;
    min-height: auto;
    float: left;
    padding: 40px 0;
  }
  .focusContDtl,
  .visionContDtl {
    padding: 0;
  }
  .inerclientDtl {
    grid-template-columns: 1fr;
  }
  .inerclientDtl .clientImg {
    width: 100px;
    height: 100%;
    display: block;
    border-radius: 50%;
  }
  .inerContInfo {
    grid-template-columns: 1fr;
  }
  .imgInfoCont {
    margin: auto;
  }
  .imgInfoCont:after {
    display: none;
  }
  .contactInfo {
    background-position: left 0%;
  }
  .contInfoDtl {
    padding: 50px 0;
  }
  .addDtl {
    width: 100%;
  }

  .inerImgFocusOfBlk img{
    height: auto;
    position: relative;
    bottom:0px;
  }
  .inerImgVisionOfBlk img{
    height: auto;
    position: relative;
    bottom: -4px;
  }

  .listOfGreatInsp {
    padding: 25px 25px 25px 25px;
    display: block;
    align-items: initial;
    overflow: initial;
    }

    .greatInspContent {
    padding: 0 0 0px 0;
    }


    .mediaGreatInsp {
    display: block;
    }

    .greatInspContent br {
    display: none;
  }

  .listOfGreatInsp img {
    position: relative;
    bottom: -28px;
  }

  .innerMStrat > p {
    padding: 0 15px;
  }

  .innerMStrat > h2 {
    font: 30px var(--roboto);
  }

  .mStartBox {
    padding: 30px 0;
  }

  .listOfMStart {
    display: block;
    margin-top: 30px;
  }


  .inerMSserviceBox {
    display: block;
    margin-top: 0px;
  }

  .listOfMSserv {
    width: auto;
    height: auto;
    display: grid;
    text-align: center;
    padding: 15px;
    grid-auto-rows: max-content;
    background: #1c1b1f;
    transition: all 0.3s ease;
    margin-top: 15px;
}


.listOfMSserv img {
    margin: 10px auto 0 auto;
}

.inerMSserviceBox .listOfMSserv:nth-child(odd) {
    position: relative;
    top: 0px;
}

.inerMSservTitleNdPara {
    display: block;
    grid-template-columns: auto 460px;
    
}

.inerMSservTitleNdPara h2 {
    margin-bottom: 20px;
}

.msService {
    padding: 40px 0 40px 0;
}


.abutBannBox {
    padding: 130px 0 150px 0;
}

 .imgBlkHiv img {
    width:100%;
  }

  .imgBlkHiv {
    width: 100%;
}


img.wow.zoomIn.textEff {
    width: 100%;
}

.imgInfoCont {
    width: 100%;
}

section.abutStartWork p{
  padding-top: 30px;
}

.innerStartWork h2 {
  font: 38px var(--roboto);
}



.homimgBoxRight {
    width: 100%;
    float: left;
    height: 336px !important;
}


.inerclientDtl:after {
    top: 40px !important;
    right: 15px;
}


.contInfoDtl h2 {
    font-size: 24px !important;
}


.prz-container {
    height: 335.375px !important;
    overflow: hidden !important;
    position: absolute !important;
    inset: auto !important;
    z-index: auto !important;
}

}




@media screen and (max-width: 638px) {
	.innerStartWork h2 {
	  font: 38px var(--roboto);
	}

	section.abutStartWork p{
  padding-top: 30px;
}

  .bannBox {
    min-height: auto;
  }
  .inerBannBox {
    grid-template-columns: 1fr;
  }
  .ban_RightBox {
    width: 100%;
    height: auto;
    float: left;
    position: relative;
  }
  .ban_RightBox .item {
    width: 100%;
    max-height: 400px;
    float: left;
  }
  .ban_RightBox img {
    width: 100% !important;
    height: auto;
    display: block;
  }
  .banImg {
    width: 240px;
    bottom: 60px;
  }
  .abutBlkHive,
  .newsLtrBox,
  .clientSays {
    padding: 50px 0;
  }
  .inerBlkHive {
    grid-template-columns: 1fr;
  }
  .imgBlkHiv {
    margin: auto;
  }
  .inerclientDtl {
    padding: 30px;
  }
  .innerStartWork h3 {
    font-size: 22px;
  }
  .innerStartWork h2 {
    line-height: 30px;
  }
  .innerStartWork h2.ml2 span {
    font-size: 23px;
  }
  .abutStartWork span {
    font-size: 140px;
  }
  #clientSay:after {
    right: 50px;
  }
  .inerclientDtl:after {
    top: 150px;
    right: 15px;
  }
  .listOfAbutProcess {
    grid-template-columns: repeat(1, 1fr);
  }
  .inerAbutBannBox h2,
  .contOfBlkHive h2,
  .focusContDtl h2,
  .visionContDtl h2,
  .inerAbutClientSays h2,
  .lftNewLetter h2 {
    font-size: 28px;
  }
  .inerAbutBannBox h1 {
    font-size: 34px;
  }
  .inerAbutBannBox p {
    font-size: 18px;
  }
  .noBullBox {
    padding: 0;
  }
  .imgOfNoBull {
    width: 280px;
    margin: auto;
  }
  .noBullBox span {
    font-size: 100px;
    line-height: 100px;
    bottom: -10px;
  }
  .conseltFormBox,
  .contactFormBox {
    padding: 50px 0;
  }
  .inerContactForm h2 {
    font-size: 34px;
  }
  .inerContactForm p {
    width: 100%;
  }
  .innerCaseBox {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 440px) {
  .ban_LeftBox {
    padding: 170px 0 70px 0;
  }
  .banContent h1 {
    font-size: 42px;
    line-height: 42px;
  }
  .ban_RightBox .item {
    max-height: 300px;
  }
  .inerDigitList .item {
    grid-template-columns: repeat(1, 1fr);
  }
  .hom_Statue {
    width: auto;
    height: 100%;
  }
  .abutStartWork span {
    font-size: 100px;
    margin: 0 0 -20px 0;
  }
  .rightSubScribe form {
    grid-template-columns: 1fr;
  }
  .contSocialNetBox {
    padding: 50px 0;
  }
  .socialNetLink {
    width: 100%;
  }
  .caseListBox .imgCase {
    height: 220px;
  }
}




.wpcf7-spinner{
display:none !important;
}


body section.contactFormBox span.wpcf7-not-valid-tip {
    text-align: left !important;
    padding: 15px 0px !important;
}


.medialetters{
    font: 50px var(--roboto);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 20px;
    /* z-index: 1; */
}