* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Dubai-Bold';
  src: url('../fonts/Dubai-Medium.otf') format("truetype");
}

@font-face {
  font-family: 'Dubai-Medium';
  src: url('../fonts/Dubai-Medium.otf') format("truetype");
}

@font-face {
  font-family: 'Dubai-Light';
  src: url('../fonts/Dubai-Light.otf') format("truetype");
}

/*@font-face {
    font-family: 'Comfortaa-Bold';
    src : url('../fonts/Comfortaa-Bold.ttf') format("truetype"); 
}*/
@font-face {
  font-family: 'Raphia';
  src: url('../fonts/Raphia.otf') format("opentype");
}

body {
  background: #fff;
  font-family: 'Dubai-Light';
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Dubai-Medium';
}

p {
  font-family: 'Dubai-Light';
  font-size: 18px;
}

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

.direction-ltr {
  text-align: left;
}

.paddingLR {
  padding-left: 40px;
  padding-right: 40px;
}

#introCarousel,
.carousel-inner,
.carousel-item,
.carousel-item.active {
  height: 100vh;
  position: relative;
}

.carousel-item:nth-child(1) {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Height for devices larger than 576px */
@media (min-width: 992px) {
  #introCarousel {}
}

.navbar .nav-link {
  color: #d1d0d0;
  font-weight: 800;
  text-transform: capitalize;
  font-size: 18px;
  font-family: 'Dubai-Light';
  letter-spacing: 1px;
}

.navigationbaar {
  position: absolute;
  top: 0;
  width: 100%;
}

.navigationbaar a img {
  width:60px;
}

.headLetter.headR {
  /*background: url(../images/head-r.svg) no-repeat;*/
  /*    background: url(../images/banner-cw-img.png) no-repeat;*/
  z-index: 2;
  background-position: 0% 100%;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}

.navFixed {
  width: 100%;
  position: fixed;
  z-index: 999;
  background: #000000bd;
}

.cpation {
  width: 100%;
  position: absolute;
  top: 30%;
  left: 0%;
  z-index: 9;
  text-align: left;
}

#bannerVdo {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  /* width: 1577px;
    height: 658px;
    margin: 0 auto;
    display: block;*/
}

.bannerCont h1 {
  font-size: 52px;
  font-weight: 900;
  font-family: 'Raphia';
  letter-spacing: 4px;
}

.inner_banner_title {
  font-size: 60px;
  font-weight: 900;
  font-family: 'Dubai-Bold';
  letter-spacing: 4px;
}

a.btn.btn-outline-light.btn-lg.m-2 {
  border-radius: 0;
  padding: 6px 24px;
  font-weight: 800;
  text-transform: capitalize;
  font-size: 20px;
  letter-spacing: 2px;
  font-family: 'Dubai-Medium';
  transition: .7s;
}

.navigationbaar ul.navbar-nav li.nav-item {
  padding: 0 10px;
}

/*responsive Button*/
.openbutton {
  width: 80px;
  height: 80px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 30px;
  border: none;
  background: transparent;
}

.openbutton.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

.openbutton .stick {
  width: 80px;
  height: 5px;
  border-radius: 4px;
  margin-bottom: 18px;
  background-color: #c5c5c5;
  display: inline-block;
}

.openbutton .stick:last-child {
  margin-bottom: 0px;
}

.openbutton .stick-1.open {
  animation: stick-1-open .6s ease-out forwards;
}

.openbutton .stick-2.open {
  animation: stick-2-open .6s linear forwards;
}

.openbutton .stick-3.open {
  animation: stick-3-open .6s linear forwards;
}

@keyframes stick-1-open {
  0% {
    width: 80px;
  }

  40% {
    background-color: #ffffff;
    width: 5px;
    transform: translate(40px, 0px);
  }

  75%,
  80% {
    width: 5px;
    transform: translate(40px, -50px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  100% {
    background-color: #ffffff;
    width: 5px;
    transform: translate(35px, 46px);
  }
}

@keyframes stick-2-open {
  80% {
    background-color: #000000;
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    background-color: #ffffff;
    transform: translate(8px, 0px) rotate(40deg);
  }
}

@keyframes stick-3-open {
  80% {
    background-color: #000000;
    transform: translate(0px, 0px) rotate(0deg);
  }

  100% {
    background-color: #ffffff;
    transform: translate(8px, -23px) rotate(-40deg);
  }
}

.openbutton .stick-1.close {
  width: 8px;
  transform: translate(27px, 26px);
  animation: stick-1-close .6s ease-out forwards;
}

.openbutton .stick-2.close {
  transform: translate(0px, 0px) rotate(42deg);
  animation: stick-2-close .6s ease-out forwards;
}

.openbutton .stick-3.close {
  transform: translate(0px, -23px) rotate(-40deg);
  animation: stick-3-close .6s ease-out forwards;
}

@keyframes stick-1-close {

  0%,
  70% {
    width: 0px;
  }

  100% {
    width: 80px;
    transform: translate(0, 0);
  }
}

@keyframes stick-2-close {
  0% {
    background-color: #ffffff;
    width: 80px;
  }

  20% {
    background-color: #ffffff;
    width: 8px;
    transform: translate(0, 0px) rotate(40deg);
  }

  40% {
    background-color: #000000;
    width: 0px;
  }

  65% {
    transform: translate(0, -70px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  80% {
    width: 0px;
  }

  100% {
    width: 80px;
    transform: translate(0, 0px);
  }
}

@keyframes stick-3-close {
  0% {
    background-color: #ffffff;
    width: 80px;
  }

  20% {
    background-color: #ffffff;
    width: 8px;
    transform: translate(0, -23px) rotate(-40deg);
  }

  40% {
    background-color: #000000;
  }

  65% {
    transform: translate(0, -93px);
    animation-timing-function: cubic-bezier(0, 1, 1, 1);
  }

  90% {
    width: 8px;
  }

  100% {
    width: 80px;
    transform: translate(0, 0px);
  }
}

/************************************Services**************************/
.inner_banner_title {
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
}

.backgroundbg {
  background: #fff;
}

.servicesHead {
  /*background-image: url(../images/make-bg.svg);*/
  /*background-image: url(../images/innerBanner.png);*/
  background-color: #000000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 75px;
  position: relative;
  z-index: 10;
  border-radius: 0 0 50% 50%;
  color: #FFFFFF;
  padding-top: 200px;
  padding-bottom: 200px;
  min-height: 70vh;
  display: grid;
  align-content: center;
}

.ourServicesSection {
  background: #fff;
  position: relative;
  z-index: 9;
}

.ourServicesSection .servicesRow {
  padding-bottom: 200px;
  padding-top: 160px;
  /*border-bottom: 1px solid rgb(0 0 0 / 18%);*/
}

.r2Txt {
  color: #000000;
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
}

/*.brandingCont{
	padding-right: 70px;
}*/
/*According*/

/* Custom style */
.ourServicesSection .blackBgColor .accordion-button::after {
  background-image: url("../images/w-plus.png");
  transform: scale(.7) !important;
  width: 40px;
  height: 40px;
}

.ourServicesSection .blackBgColor .accordion-button:not(.collapsed)::after {
  background-image: url("../images/w-minus.png");
  width: 40px;
  height: 40px;
}

.ourServicesSection .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(.7) !important;
}

.ourServicesSection .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.ourServicesSection .accordion .accordion-item .card-body {
  padding: 0px 30px;
}

.ourServicesSection .accordion .accordion-item {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ourServicesSection .accordion .accordion-item button {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  background: transparent;
}

.ourServicesSection .accordion .accordion-button:focus {
  z-index: 3;
  box-shadow: none;
}

.ourServicesSection .accordion .accordion-button:not(.collapsed) {
  color: #686868;
  box-shadow: none;
}

.blackBgColor {
  background: #000;
}

.blackBgColor h2.r2Txt {
  color: #fff;
}

.blackBgColor button.accordion-button.collapsed {
  color: #fff;
}

.blackBgColor .brandingCont p {
  color: #fff;
}

.ourServicesSection .blackBgColor .accordion .accordion-button:not(.collapsed) {
  color: #e3e3e3;
  box-shadow: none;
}

.blackBgColor .card-body p {
  color: #fff;
}

.blackBgColor .card-body a {
  color: #fff;
  font-weight: 600;
}

.whiteBgColor {
  background: #fff;
}

.pdtp {
  padding-top: 120px;
}

.padbt {
  padding-bottom: 120px;
}

/******End accordian*************/

.endCurve {
  width: 100%;
  height: 300px;
  background: #ffffff;
  border-radius: 0 0 100% 0;
  position: relative;
  z-index: 2;
}

.footerCon {
  background: url(../images/WhiteBgText.jpg) #000 no-repeat center top;
  background-size: 150% auto;
  background-attachment: fixed;
  /*min-height: 100vh;*/
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  align-content: center;
  color: #FFFFFF;
  /*height: 100vh;*/
  z-index: 1;
  position: relative;
}

.footerCon:before {
  content: " ";
  width: 100%;
  height: 200vh;
  position: absolute;
  top: -200vh;
  background: url(../images/WhiteBgText.jpg) #000 no-repeat center top;
  background-size: 150% auto;
  background-attachment: fixed;
}

.footerCon .footerCta {
  display: grid;
  align-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footerCon h2 {
  position: relative;
}


.footerCon h2:after {
  content: " ";
  width: 60px;
  height: 50%;
  top: 12px;
  background-image: url(../images/arrow-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  transition: width 0.2s ease-in-out;
}

.footerCon h2:hover:after {
  width: 90px;
}

.footerCon .footerContact {
  margin-bottom: 50px;
  text-align: left;
}

.footerCon .footerContact h3 {
  padding-bottom: 30px;
}

.footerCon .footerContact h3 a {
  color: #fff;
}

.footerCon .footerConnect img {
  width: 40px;
  height: auto;
  margin-right: 30px;
  margin-bottom: 30px;
}

.footerConnect a {
  width: 40px;
  display: inline-block;
  margin-right: 30px;
}

.lets_talk {
  text-transform: uppercase;
  font-size: 42px;
  color: #fff;
  font-weight: 800;
}

.footerConnect {
  text-align: left;
}

/***************commercialsBox**************/
.commercialsBox {
  margin-top: 90px;
}

.pCard_card {
  width: 100%;
  /*height: 720px;*/
  padding-bottom: 30px;
  margin: 50px auto;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  background-color: #f6fcfe;
  -webkit-box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.21);
  -ms-box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.21);
  -o-box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.21);
  position: relative;
  overflow: hidden;
}

/****************
Back
****************/

.pCard_card .pCard_back {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  margin-top: -139px;
  font-weight: 600;
  z-index: 1;
}

.pCard_card .pCard_back a {
  text-decoration: none;
}

.pCard_back p {
  font-size: 27px;
}

/****************UP****************/

.pCard_card .pCard_up {
  /*position: absolute;*/
  width: 100%;
  /*height: 437px;*/
  background-position: 50%;
  /*background-size: cover;*/
  z-index: 3;
  /*text-align: center;*/
  -webkit-border-top-left-radius: 30px;
  -moz-border-top-left-radius: 30px;
  -ms-border-top-left-radius: 30px;
  -o-border-top-left-radius: 30px;
  border-top-left-radius: 30px;
  -webkit-border-top-right-radius: 30px;
  -moz-border-top-right-radius: 30px;
  -ms-border-top-right-radius: 30px;
  -o-border-top-right-radius: 30px;
  border-top-right-radius: 30px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  filter: grayscale(1);
}

.pCard_card .pCard_up img {
  width: 100%;
}

.commercialsBox:hover .pCard_card .pCard_up {
  filter: grayscale(0);
}

.pCard_on .pCard_up {
  height: 100px;
  box-shadow: 0 0 30px #cfd8dc;
}

.pCard_card .pCard_up .pCard_text {
  /*position: absolute;*/
  /*  top: 319px;
  left: 0;
  right: 0;*/
  color: #f1f7f9;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.pCard_on .pCard_up .pCard_text {
  top: 20px;
}

.pCard_card .pCard_up .pCard_text h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
}

.pCard_card .pCard_up .pCard_text p {
  margin: 0;
  font-size: 16px;
  color: #e3f1f5;
}

.pCard_card .pCard_up .pCard_add {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.43);
  -ms-box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.43);
  -o-box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.43);
  box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.43);
  /*position: absolute;*/
  top: 392px;
  left: 0;
  right: 0;
  margin: auto;
  width: 88px;
  height: 88px;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.pCard_on .pCard_up .pCard_add {
  -webkit-transform: rotate(360deg) scale(0.5);
  -moz-transform: rotate(360deg) scale(0.5);
  -ms-transform: rotate(360deg) scale(0.5);
  -o-transform: rotate(360deg) scale(0.5);
  transform: rotate(360deg) scale(0.5);
  top: 470px;
}


/****************
Down
****************/

.pCard_card .pCard_down {
  background-color: #fff;
  /*position: absolute;*/
  /*bottom: 0px;*/
  width: 100%;
  /*height: 254px;*/
  z-index: 2;
  -webkit-border-bottom-left-radius: 30px;
  -moz-border-bottom-left-radius: 30px;
  -ms-border-bottom-left-radius: 30px;
  -o-border-bottom-left-radius: 30px;
  border-bottom-left-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  -moz-border-bottom-right-radius: 30px;
  -ms-border-bottom-right-radius: 30px;
  -o-border-bottom-right-radius: 30px;
  border-bottom-right-radius: 30px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.pCard_on .pCard_down {
  height: 100px;
}

.pCard_card .pCard_down div {
  width: 100%;
  float: left;
  padding: 20px 0;
  text-align: center;
  height: 306px;
}

.pCard_on .pCard_down div {
  margin-top: 10px;
}

.pCard_card .pCard_down div p:first-of-type {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.pCard_card .pCard_down div p:last-of-type {
  color: #334750;
  padding: 0 28px;
}

.pCard_card .pCard_back a {}

.pCard_card .pCard_back a i {
  width: 68px;
  margin: 10px;
  padding: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pCard_card .pCard_back a i:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.pCard_card .pCard_back a:nth-of-type(1) i {
  color: #3b5998;
  border: 2px solid #3b5998;
}

.pCard_card .pCard_back a:nth-of-type(2) i {
  color: #0077b5;
  border: 2px solid #0077b5;
}

.pCard_card .pCard_back a:nth-of-type(3) i {
  color: #eb5e95;
  border: 2px solid #eb5e95;
}

.pCard_card .pCard_back a:nth-of-type(4) i {
  color: #000000;
  border: 2px solid #000000;
}

.pCard_card .pCard_back a:nth-of-type(5) i {
  color: #eb5e95;
  border: 2px solid #eb5e95;
}

.pCard_card .pCard_back a:nth-of-type(6) i {
  color: #3f729b;
  border: 2px solid #3f729b;
}

.pCard_card .pCard_up .pCard_add i {
  color: #000;
  font-size: 38px;
  line-height: 88px;
}

/*.vimeoLinks_list{
  list-style: square;
}
.vimeoLinks_list li{
  text-align: left;
  line-height: 34px;
}
.vimeoLinks_list li:marker{
  color: #f00;
}*/


.viewMoreBtn {
  color: #000;
  text-align: center;
  border: 2px solid #000;
  padding: 6px 20px;
  margin: 0px auto;
  display: table;
  transition: .6s;
  font-family: 'Dubai-Medium';
}

.viewMoreBtn:hover {
  color: #fff;
  border: 2px solid #000;
  background: #000;

}

.contactForm .form-control {
  display: block;
  width: 100%;
  padding: 0.7rem 0.75rem;
}

.formSubmitBtn {
  padding: .7rem 0;
}

.contactForm_Address .footerContact h3 a {
  color: #000;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.contactForm_Address .footerConnect a img {
  width: 40px;
}

.contactForm_Address h3 {
  margin-bottom: 70px;
}

.contactForm_Address .footerConnect {
  margin-top: 40px;
}

.contactFormAdd h4 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.simpleHoverVdo {
  background: #000;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
  transition: .6s;

}

.title_heading {
  padding-bottom: 50px;
}

.title_heading h2 {
  font-size: 64px;
}

.vdoUpImg img {
  width: 100%;
}

.bottomContant {
  padding-top: 20px;
}

.airheadTitle h3 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 32px;

}

.imgWithVdo {
  text-decoration: none;
  color: #333;
}

.simpleHoverVdo {
  /*height: 410px;*/
  position: relative;
}

.simpleHoverVdo img {
  transition: .7s;
  filter: grayscale(1);
}

.simpleHoverVdo img:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}

.vsBranding {
  text-align: right;
}

h4.normaltext {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.margntop {
  margin-top: 110px;
}

.seeAllwork {
  padding: 70px 0;
}

.headingTitle {
  padding: 50px 0;
}

.headingTitle h2 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 32px;
  padding-bottom: 80px;
  position: relative;
}

.headingTitle h2:after {
  width: 57px;
  height: 38%;
  top: -3px;
}

.getintouchCont {
  font-size: 16px;
}

.getintouchCont h2 {
  font-size: 46px;
  text-transform: uppercase;
  font-weight: 800;
}

a.getInTuchBtn {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 32px;
  color: #000;
  text-decoration: none;
  position: relative;
}

.errowIcon:after {
  content: " ";
  width: 48px;
  height: 79%;
  top: 5px;
  background: url(../images/right-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  transition: width 0.2s ease-in-out;
}

.sectionBlank {
  height: 200px;
}

.bottomRadousSection {
  height: 700px;
  background: #fff;
  /*border-radius: 30% 110% 0 0;*/
  border-radius: 50% 80% 0 0;
}

.serviceRightText {
  padding-right: 133px;
  padding-top: 140px;
}

.muc_tinIMG {
  text-align: center;
}

.muc_tinIMG img {
  width: 62%;
  margin: -50px auto;
  align-items: right;

}

.sectionTestimonials {}

.sectionTestimonials .bubble blockquote {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  position: relative;
  border: none;
  border-radius: 8px;
  font-size: 1.25em;
  color: #1e528e;
}

.sectionTestimonials .bubble blockquote:before,
.sectionTestimonials .bubble blockquote:after {
  content: "\201C";
  position: absolute;
  font-size: 80px;
  padding: 10px;
  line-height: 1;
  color: #1e528e;
}

.sectionTestimonials .bubble blockquote:before {
  top: 0;
  left: 10px;
}

.sectionTestimonials .bubble blockquote:after {
  content: "\201D";
  right: 10px;
  bottom: -.5em;
}

.sectionTestimonials .bubble div {
  width: 0;
  height: 0;
  border-left: 0 solid #00000099;
  border-right: 20px solid #4a4747e3;
  border-top: 20px solid #fff;
  margin: 0 0 0 60px;
  margin-bottom: 10px;
}

.sectionTestimonials .bubble cite {
  padding-left: 20px;
  font-size: 1.25em;
  color: #000;
}

.sectionTestimonials .slick-prev,
.sectionTestimonials .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 24px;
  line-height: 22px;
  height: 24px;
  border-radius: 50%;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #746d6dfa;
  border: none;
  outline: none;
  background: #d9cfcf;
}

.sectionTestimonials .slick-dots li button {
  font-size: 12px;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: black;
  border: 1px solid #000;
  border-radius: 50%;
  outline: none;
  background: #ffffff52;
}

.arichved {
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
}

.sectImg img {
  width: 100%;
  filter: grayscale(1);
  object-fit: cover;
  height: -webkit-fill-available;
}

.prejecttit {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 40px;
}

.prjectImg1 {
  margin-top: 70px;
}

.prjectImg1 img {
  width: 100%;
  filter: grayscale(1);
}

.brandingTit {
  padding-top: 70px;
}

.quotes {
  padding-bottom: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: #fff;
}

.quotes .quoteMarks {
  font-family: termina, sans-serif;
  font-weight: 900;
  color: #000;
  margin-bottom: 50px;
  transition: all 0.2s ease-in-out;
}

.quotes:hover .qMark:first-child {
  transform: rotate(-15deg);
}

.quotes:hover .qMark {
  transition: all 0.2s ease-in-out;
}

.quotes .quoteMarks .qMark {
  transition: all 0.2s ease-in-out 0.2s;
  display: inline-block;
  font-size: 7em;
}


.quotes .quoteMarks .testTitle {
  width: 0;
  overflow: hidden;
  display: inline-block;
  font-size: 24px;
  opacity: 0;
  transition: width 0.2s ease-in-out 0.2s, opacity 0.2s ease-in-out;
  top: -30px;
  position: relative;
  font-family: 'Comfortaa-Bold';
}

.quotes:hover .quoteMarks .testTitle {
  width: 200px;
  opacity: 1;
  transition: width 0.2s ease-in-out, opacity 0.2s ease-in-out 0.2s;
}

.quotes:hover .qMark:last-child {
  transform: rotate(15deg);
}

.quotes:hover .qMark {
  transition: all 0.2s ease-in-out;
}

.quotes .quoteMarks .qMark {
  transition: all 0.2s ease-in-out 0.2s;
  display: inline-block;
  font-size: 7em;
}

.quotes .quote {
  font-family: 'Comfortaa-Bold';
  font-weight: 400;
  line-height: 1.5em;
  font-size: 1.5em;
}

.quotes .quoteName {
  margin-top: 30px;
  color: #745AAD;
  font-weight: bold;
  font-size: 1.1em;
}

.imgSection {
  background: #fff;
}

.sectImg {
  height:550px;
  background: #d5d5d5;
  border-radius: 10px;
  overflow: hidden;
}

.abBoxSection {
  padding-top: 120px;
}

.abBoxSection .brandingCont {
  padding-bottom: 70px;
}

.serviceBox {
  padding: 20px 25px;
  border-radius: 5px;
  text-align: right;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.serviceBox:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #000000;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  transition: all 0.5s ease 0s;
}

.serviceBox:hover:before {
  left: 0;
}

.serviceBox:after {
  content: "";
  width: 7px;
  height: 0;
  border-radius: 5px;
  background: #6b6c68;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}

.serviceBox:hover:after {
  height: 100%;
}

.serviceBox .service-icon {
  color: #000;
  margin-bottom: 10px;
  transition: all 0.5s ease 0s;
}

.serviceBox .service-icon i {
  font-size: 30px;
}

.serviceBox .title {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin-right: 10px;
}

.serviceBox .description {
  font-size: 15px;
  color: #777;
  line-height: 25px;
  transition: all 0.5s ease 0s;
}

.serviceBox:hover .service-icon,
.serviceBox:hover .description {
  color: #fff;
}

@media only screen and (max-width:990px) {
  .serviceBox {
    margin-bottom: 30px;
  }
}

.dirSec img {
  width: 100%;
}

.dirSec {
  position: relative;
  border: 1px solid #282828;
}

.dirSec:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.50s linear 0s;
}

.dirSec:hover:before {
  background: rgba(0, 0, 0, 0.78);
}

.dirSec img {
  width: 100%;
  height: auto;
}

.dirSec .dirSec-content {
  width: 96%;
  height: 80%;
  position: absolute;
  top: 10%;
  left: 2%;
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding: 5%;
  color: #fff;
  text-align: center;
  transform: scale(1, 0.0);
  transition: all 0.4s ease 0.6s;
}

.dirSec:hover .dirSec-content {
  transform: scale(1, 1);
  transition-delay: 0s;
  background-color: rgba(255, 255, 255, 0.0);
}

.dirSec .title {
  font-size: 24px;
  /*text-transform: uppercase;*/
  opacity: 0;
  margin: 0 0 20px;
  transform: translateY(30px);
  transition: all 0.4s ease 0.2s;
}

.dirSec:hover .title {
  opacity: 1;
  transform: translateY(0px);
}

.dirSec .description {
  /*text-transform: uppercase;*/
  opacity: 0;
  margin-bottom: 20px;
  transform: translateY(60px);
  transition: all 0.4s ease 0.2s;
}

.dirSec:hover .description {
  opacity: 1;
  transform: translateY(0px);
}

@media screen and (max-width: 990px) {
  .dirSec {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 479px) {
  .dirSec .dirSec-content {
    padding: 2%;
  }

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


.vdoUpImg {
  position: relative;
  /*height: 340px;*/
  overflow: hidden;
}

.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

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

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

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #000;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


div.vdopopup {
  background: #0000008f;
}

.modal-backdrop.fade.show {
  display: none;
}

.vdopopup button.btn-close {
  top: 4px;
  position: absolute;
  right: 4px;
  z-index: 9;
  transition: .5s;
}
.vdopopup button.btn-close:hover {
  background-color: #fff;
}
.magnTop {
  margin-top: 130px;
}

/*****************************************************/



.blog-content2 .category {
  position: absolute;
  top: -250px;
  background: #ff7425;
  padding: 10px 19px;
  left: 20px;
  border-radius: 10px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}

.blog-thumb img {
  width: 100%;
}

.blog-thumb .b-meta {
  padding: 30px 25px 0;
  color: #ff7425;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.blog-thumb img {
  visibility: hidden;
}

.blog-thumb:hover img {
  visibility: visible;
}

.blog-content {
  background: #fff;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
}

.single-post2 {
  /*display: inline-block;*/
  margin-bottom: 30px;
}

.single-post .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: none;
  padding-bottom: 30px;
}

.blog-content h4 {
  font-size: 19px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-content h4:hover a {
  color: #ff7425;
}

.blog-thumb:hover::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323 0% 0% no-repeat padding-box;
  opacity: 0.8;
  display: inline-block;
}

.blog-thumb2 img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.blog-thumb2 .b-meta {
  padding: 30px 25px 0;
  color: #ff7425;
  top: 0;
  left: 0;
  z-index: 1;
}

.blog-content2 {
  padding: 20px 10px;
  border-radius: 4px;
  /*float: left;*/
  position: relative;
  box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
  background: #e7e7e7bf;
}

.blog-content2 .b-meta {
  color: #777;
  padding-bottom: 15px;
}

.blog-content2 .b-meta ul {
  padding-left: 0 !important;
}

.blog-content2 h4 {
  /* text-align: right; */
  height: 46px;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: 'Dubai-Medium';
}

.blog-content2 h4 a {
  color: #000;
  text-decoration: none;
  line-height: 30px;
  font-family: 'Dubai-Medium';
  font-size: 22px;
}

.blog-content2 .date-home {
  position: absolute;
  top: -60px;
  background: #000;
  color: #fff;
  padding: 5px 15px;
  border-radius: 6px;
  left: 30px;
}

.date-home i {
  margin: 0px 5px 0px 0px;
}

.adim-box {
  display: flex;
}

.adim-box .text {
  padding-top: 10px;
  padding-left: 15px;
  font-size: 14px;
  color: #232323;
}

.blog-thumb:hover .b-meta h4,
.blog-thumb:hover .b-meta h4 a:hover {
  color: #fff;
}

.b-meta ul li {
  display: inline-block;
  margin-right: 8px;
  padding-right: 8px;
  color: #777;
}

.b-meta ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}

.b-meta ul li a {
  font-size: 14px;
  text-transform: capitalize;
  color: #444d69;
}

.b-meta ul li a.corpo {
  color: #ff7425;
}

.b-meta ul li a:hover {
  color: #ff7425;
}


.single-post:hover .blog-btn {
  opacity: 1;
}

.blog-btn a {
  display: inline-block;
  color: #ff7425;
  text-align: center;
  font-size: 15px;
  border-bottom: 3px solid #ff7425;
  text-transform: capitalize;
  font-weight: 500;
}

.blog-btn a:hover {
  color: #232323;
  border-bottom: 3px solid #232323;
}

.blog-btn2 a {
  display: inline-block;
  color: #C0C0C0;
  text-align: center;
  font-size: 14px;
}

.blog-btn a i {
  margin-left: 5px;
}

.b-meta i {
  margin-right: 5px;
  color: #ff7425;
}

.single-post {
  transition: .3s;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 3px 4px 15px #00000026;
}

.blog-thumb {
  position: relative;
}

.blogBtn a.viewMoreBtn {
  display: inline-block;
}

.hover-zoomin a {
  display: block;
  position: relative;
  overflow: hidden;
}

.hover-zoomin img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  filter: grayscale(1);
}

.hover-zoomin:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  filter: grayscale(0);
}

.ourFriend {

  padding: 4px;
  box-shadow: 0px 10px 30px rgb(8 14 28 / 18%);
  border-radius: 6px;
  margin-bottom: 30px;
}

.ourFriend img {
  width: 100%;
}

.simpleHoverVdo .modal-dialog .modal-body {
  padding: 6px;
}



/*Amajeet Css Start here*/

.our-thoughts-details-info {
  background: #e7e7e7bf;
  padding: 10px 10px 0px 10px;
}

.our-thoughts-details-info img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.ourServicesSection.our-thought-blog-box {
  padding-bottom: 280px;
}

.ourServicesSection.our-thought-blog-box .title_heading {
  padding-bottom: 150px;
}

.ourServicesSection.contact-detail-main-info {
  padding-bottom: 280px;
}

.our-thought-blog-box h4 a {
  /*white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width:100%;*/
  font-family: 'Dubai-Medium';
  font-size: 22px;
}

.blog-content2 p {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Dubai-Light';
  font-weight: 500;
  color: #6c6969;
  font-size: 18px;
}

.blogBtn {
  padding-top: 10px;
}

select {
  margin-top: 5px;
  padding: 2px 10px;
  font-size: 15px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-family: 'Dubai-Medium';
  letter-spacing: 1px;
}

select:focus-visible {
  outline-offset: 0px;
  outline: none;
}

/*Amajeet Css end here*/
/* .blog-content2 p {
    text-align: right;
} */
h2.arabicTitle {
  font-size: 44px;
  /* text-align: right; */
}

.blog-content2 h4 i {
  font-size: 10px;
  margin-left: 14px;
}

.ourServicesSection .accordion .accordion-item button.arabicAccordn {
  display: grid;
  text-align: right;
}

.accordion-button.arabicAccordn::after {
  margin-right: auto;
  margin-left: 0;
  margin-top: -32px;
}

.ourServicesSection .accordion .accordion-item .card-body p {
  text-align: right;
}

select#cars option {
  background: #000;
  border: 1px solid #fff;
}

.bgTransparent {
  background: transparent;
}

.aboutPadd {
  padding-top: 120px;
}

/*Amarjeet Css Start here*/



/*header css start here*/

.navbar-brand img {
padding: 3px;
background: #fff;
border-radius: 10px;
}


/*header css end here*/




/*home banner Video css start here*/



.home-banner-video-info {
position:relative;  
}

/*.home-banner-video-info:before {
top: 0px;
content:"";
z-index: 1;
right: 0px;
width: 100%;
height: 100%;
position: absolute;
background:#00000029;
}*/

.home-banner-bg {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: url(../images/whiteLionHomeBg.png) center / cover no-repeat; 
}


.home-banner-video {
width: 100%;
height: 100vh; 
overflow: hidden;
}


.home-banner-video video {
width: 100%;
height: 100%;
object-fit: cover;
}

.video-banner-content-tow-btn-area {
display:flex;
align-items:center;  
justify-content:space-around;
}



.video-banner-all-content-area {
top:50%;
left:51%;
width:75%;
color: #fff;
z-index: 1;
text-align: center;
position: absolute;
transform: translate(-50%, -50%);
}

.home-banner-bg img {
width: 100%;
height:100vh;
object-fit: cover;
}



.video-banner-content-area {
padding:0px 20px;  
}

.video-banner-content-area h1 {
color: #fff;
font-size:90px;
font-weight:500;
line-height: 50px;
letter-spacing: 2px;
text-transform: uppercase;
font-family: 'Raphia';
}

.video-banner-content-area h2 {
color: #fff;
font-size:130px;
font-weight:500;
letter-spacing:1px;
text-transform: uppercase;
font-family: 'Raphia';
}

.video-banner-content-area h3 {
color: #800000;
font-size: 23px;
text-align: center;
position: relative;
font-family: 'Raphia';
}


.video-banner-content-area h3:before {
top:13px;
left:0px;
width: 13%;
height: 3px;
content: "";
background: #fff;
position: absolute;
}

.video-banner-content-area h3:after {
top:13px;
width: 15%;
height: 3px;
right:-10px;
content: "";
background: #fff;
position: absolute;
}

.video-banner-content-area h4 {
color:#fff;
font-size:25px;
margin-top: 7px;
text-align:center;
letter-spacing:2px;
font-family:'Raphia'; 
}

.home-bottom-content {
bottom: 20px;
width: 100%;
position: absolute;
text-align: center; 
}

.home-bottom-content p {
color:#fff;
font-size:16px;
font-weight:600;
}

/*.download-profile-btn-area {
left: 350px;
bottom: 295px;
position: absolute;
}
*/
.DownloadProfileBtn {
color:#f8f9fa;
transition:.7s;
font-size: 17px;
font-weight:500;
border-radius: 0;
padding: 5px 15px;
letter-spacing: 2px;
text-decoration: none;
border: 1px solid #f8f9fa;
text-transform: capitalize;
font-family: 'Dubai-Medium';
}

.DownloadProfileBtn:hover {
color:#000;
background:#f8f9fa;  
}

/*.call-the-lion-btn-area {
right: 370px;
bottom: 295px;
position: absolute;
}*/


.CallTheLionBtn {
color:#f8f9fa;
transition:.7s;
font-size: 17px;
font-weight:500;
border-radius: 0;
padding: 5px 15px;
letter-spacing: 2px;
text-decoration: none;
border: 1px solid #f8f9fa;
text-transform: capitalize;
font-family: 'Dubai-Medium';
}

.CallTheLionBtn:hover {
color:#000;
background:#f8f9fa;  
}



/*home banner Video css end here*/


.imgWithVdo {
margin-top: 100px;  
}

.ourFriend {
padding:10px;  
}

.footerConnect a img {
width: 40px;
}

.footerConnect h4 {
font-size: 28px;
font-weight: 800;
text-transform: uppercase;
}


.footerConnect.Follow-Us h4 {
margin-top: 35px;
margin-bottom: 15px;
}

.the-lion-friends {
padding-bottom:100px;  
}


/*Hq Visual Production page css start here*/

.creative-services-advertisement {
margin-top:80px; 
}


/*Hq Visual Production page css end here*/


/*Amarjeet Css End here*/