/* --------------------------------- */
/* Css Styles                        */
/*---------------------------------- */
@import url("margins.css");
@import url("reset.css");
@import url("assets.css");


/*------------------------ 1 Body and Core Css ------------------------*/   

@font-face {
  font-family: 'gillsanbold';  
  src: url('../font/gillsanbold.eot');
  src: url('../font/gillsanbold.eot') format('embedded-opentype'),
       url('../font/gillsanbold.woff2') format('woff2'),
       url('../font/gillsanbold.woff') format('woff'),
       url('../font/gillsanbold.ttf') format('truetype'),
       url('../font/gillsanbold.svg#gillsanbold') format('svg');
}


@font-face {
  font-family: 'gillsansMTregular';  
  src: url('../font/gillsansMTregular.eot');
  src: url('../font/gillsansMTregular.eot') format('embedded-opentype'),
       url('../font/gillsansMTregular.woff2') format('woff2'),
       url('../font/gillsansMTregular.woff') format('woff'),
       url('../font/gillsansMTregular.ttf') format('truetype'),
       url('../font/gillsansMTregular.svg#gillsansMTregular') format('svg');
}

html, body {
  position: relative;
}

body{
  font-family: 'gillsansMTregular';  
  /* padding-bottom: 206px; */
  cursor: url(../img/cursor.png) 25 25, auto;
  
}


h1, h2, h3, h4, h5{  
  font-family: 'gillsanbold';
}

p{
  font-size: 16px;
  line-height: 30px;  
  font-family: 'gillsansMTregular';
  color: #999999;

}

button{
  border: 0;
}

a, button{
  cursor: url(../img/cursor.png) 32 32, auto;
}

.wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  /* box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.10); */
}

#preloader {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 5000;
}

#preloader .logo{
margin-bottom: 10px;
}

#preloader.loaded .loading-area {
  opacity: 0;
}

#preloader.loaded{
  visibility: hidden;
}

#preloader .loading-area {
  opacity: 1;
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #828282;
}

#preloader .loading-area img{
  height: 30px;
}

#preloader.loaded .left-side {
  transform: translateX(-100%);
  transition-delay: 1s;
}

#preloader .left-side {
  left: 0;
}

#preloader.loaded .right-side {
  transform: translateX(100%);
  transition-delay: 1s;
}

#preloader .right-side {
  right: 0;
}

#preloader .left-side, #preloader .right-side {
  background: #111;
  height: 100%;
  position: absolute;
  width: 50%;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

/* Nav Icon */  


.nav-icon {
  float: right;
  width: 34px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}


.nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.nav-icon:hover span:nth-child(3){
  width: 100%;
}

.nav-icon span:nth-child(1) {
top: 0px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.nav-icon span:nth-child(2) {
top: 7px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;
}

.nav-icon span:nth-child(3) {
top: 14px;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
transform-origin: left center;    
width: 60%;
right: 0 !important;
}


/* Menu When Open */

header.open .nav-icon span{
  width: 70%; 
}

header.open .nav-icon:hover span:nth-child(3){
  width: 70%;
}

header.open .nav-icon span:nth-child(1) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
top: 0px;
left: 8px;
}

header.open .nav-icon span:nth-child(2) {
width: 0%;
opacity: 0;
}

header.open .nav-icon span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
top: 17px;
left: 8px;
}

.header_wrapp{
  position: relative;
}

header{
  /* position: absolute; */
  width: 100%;
  z-index: 2;
  padding: 30px 60px;
  height: 120px;
  z-index: 100;
  background-color: #000;
}

header.fixed{
  position: fixed;
  background: #000;
}

header .logo{
  float: left;
}

header .logo img{
  max-height: 50px;
}
header.fixed .logo img{
  max-height: 50px;
}
header nav{
  float: right;
  margin-top: 17px;
}

header nav ul li{
  float: left;
  margin-left: 20px;
}


/* header nav ul li a span:before {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  content: attr(data-hover);
} */

header nav ul li a span {
  position: relative;
  display: block;
  -webkit-transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transform-origin: 100% 0%;
}

header nav ul li a{
  color: #fff;
  font-size: 18px;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 36px;
  padding: 3px 10px;
  position: relative; 
}

header nav ul li a:hover{
  color: #fff;
}

/* header nav ul li a:hover{
  color: #fff;
} */


a:before, a > span:before, a:after, a > span:after {
  content: '';
  position: absolute;
  transition: transform 0.5s ease;
}

header nav ul li a::before, header nav ul li a::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
}
header nav ul li a::before {
  border-width: 2px 0 2px 0;
  transform: scaleX(0);
}
header nav ul li a::after {
  border-width: 0 2px 0 2px;
  transform: scaleY(0);
}
header nav ul li a:hover::before, header nav ul li a:hover::after {
  transform: scale(1, 1);
}



header .active{
  color: #fff;
  opacity: .5;
}

header nav ul li a:focus{
  color: #fff;
}

/* Loader */
.loader {
  height: 32px;
  width: 32px;
  -webkit-animation: loader-1-1 4.8s linear infinite;
  animation: loader-1-1 4.8s linear infinite;
}

@-webkit-keyframes loader-1 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes loader-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
  clip: rect(0, 32px, 32px, 16px);
  -webkit-animation: loader-2 1.2s linear infinite;
  animation: loader-2 1.2s linear infinite;
}

@-webkit-keyframes loader-2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(220deg);
  }
}
@keyframes loader-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(220deg);
  }
}
.loader span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
  clip: rect(0, 32px, 32px, 16px);
  border: 3px solid #111;
  border-radius: 50%;
  -webkit-animation: loader-3 1.2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: loader-3 1.2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@-webkit-keyframes loader-3 {
  0% {
    -webkit-transform: rotate(-140deg);
  }
  50% {
    -webkit-transform: rotate(-160deg);
  }
  100% {
    -webkit-transform: rotate(140deg);
  }
}
@keyframes loader-3 {
  0% {
    transform: rotate(-140deg);
  }
  50% {
    transform: rotate(-160deg);
  }
  100% {
    transform: rotate(140deg);
  }
}

#infscr-loading {
  position: absolute;
  left: 50%;
  margin-left: -15px;
  bottom: 10px;
}

#infscr-loading img {
  display: none;
}


/*------------------------ Home Section ------------------------*/   

.hero {
  position: relative;
  /* height: 100vh; */
  margin: 0;
  padding: 0;
}

.hero .social{
  position: absolute;
  z-index: 10;
  right: 45px;
  display: flex;
  justify-content: space-between;
  bottom: 45px;
}

.hero .static-image{
  height: 100%;
  background-size: cover;
  display: table;
  width: 100%;
}

.hero .static-image:before{
  content: '';
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero .static-image .slider-content{
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

.hero .static-image .slider-content h1{
  opacity: 1;
}

.hero .static-image .slider-content span{
  opacity: 1;
}

.hero .static-image .slider-content .site-btn{
  opacity: 1;
}

.hero .static-image.typed h1 span{
  font-size: inherit;
  transform: none;
}

.hero .static-image.typed h1 span:before{
  display: none;
}

.hero .social a{
  padding: 6px;
  width: 30px;
}

.social a{
  color: #fff;
  font-size: 15px;
}


.swiper-pagination{
  text-align: left;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 30px;
  left: 30px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: .7;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0px 10px;
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 45px;
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 15px 0;
  display: block;
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-size: cover;
}

.slider-content{
  position: relative;
  z-index: 2;
  text-align: left;
  width: 80%;
}

.slider-content h1{
  color: #fff;
  font-size: 120px;
  font-weight: 900;
  line-height: 130px;
  opacity: 0;
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
}

.slider-content span{
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  position: relative;
  bottom: 5px;
  opacity: 0;
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  display: inline-block;
}

.slider-content span:before{
  content: '';
  width: 40px;
  height: 3px;
  position: absolute;
  top: -17px;
}

.site-btn{
  display: inline-block;
  border: 0;
font-family: 'gillsanbold';
  padding: 12px 20px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  border-radius: 0.25rem;
  border: 1px solid #ffcc00;
  background-color: #ffcc00;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all  ease 0.3s;
}

/* .site-btn:hover{
  color: #fff;
} */

.slider-content .site-btn{
  margin-top: 30px;
  display: inline-block;
  opacity: 0;
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
}

.swiper-slide-active .slider-content h1{
  opacity: 1;
  transform: translateX(0);
  letter-spacing: -3px;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transition: all ease 0.3s 0.6s;
  -webkit-transition: all ease 0.3s 0.6s;
  -moz-transition: all ease 0.3s 0.6s;
  -ms-transition: all ease 0.3s 0.6s;
  -o-transition: all ease 0.3s 0.6s;
}

.swiper-slide-active .slider-content span{
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transition: all ease 0.3s 0.5s;
  -webkit-transition: all ease 0.3s 0.5s;
  -moz-transition: all ease 0.3s 0.5s;
  -ms-transition: all ease 0.3s 0.5s;
  -o-transition: all ease 0.3s 0.5s;
}

.swiper-slide-active .slider-content .site-btn{
  opacity: 1;
  transform: translateX(0);
  transition-property: transform,opacity;
  -webkit-transition-property: transform,opacity;
  -moz-transition-property: transform,opacity;
  -ms-transition-property: transform,opacity;
  -o-transition-property: transform,opacity;
  transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  -ms-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -ms-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-delay: .8s;
  -moz-transition-delay: .8s;
  -webkit-transition-delay: .8s;
  -o-transition-delay: .8s;
  -ms-transition-delay: .8s;
  
}
.carousel .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 80%;
  height: 100vh;
  text-align: center;
}

.carousel .slider-content{
  text-align: center;
}

.carousel .slider-content span:before {
  content: '';
  width: 40px;
  height: 3px;
  position: absolute;
  top: -17px;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.cover-slide.swiper-container {
  width: 100%;
  padding-top: 10vh;
}
.cover-slide .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 80%;
  height: 80%;
}

.hb-left {
  float: left;
  height: 20px;
  line-height: 20px;
  position: absolute;
  bottom: 45px;
  left: 45px;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.text-rotate {
  overflow: hidden;
  position: relative;
  height: 20px;
  cursor:pointer;
}

.text-rotate span {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  top: 0;
  left: 0;		
}

.text-rotate span {
  animation: move 2s;
  animation-iteration-count: infinite;
  animation-delay: 0.5s;
}

@keyframes move {
  0%  { top: 0px; }
  50% { top: -20px; }
}

.section-title{
  position: relative;
}

.section-title .title{
  font-size: 40px;  
  font-family: 'gillsanbold';
  text-transform: uppercase;
  line-height: 84px;
  margin-bottom: 0;
  color: #ffcc00;
}


.ourServ .title{
  line-height:normal !important;  
}

.section-title span{  
  font-size: 22px; 
 font-family: 'gillsanbold';
  color: #999999;
}

.section-title::after{
  content: '';
  width: 70px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 40px;
}

.ourServ{
  padding-top: 0px;
}

.ourServ::after{
  content: '';
  width: 90px;
  height: 3px;
  position: absolute;
  left: 45%;
  bottom: 0px;
}

section{
  padding: 90px 0;
}

.graybg{
  background: #f3f3f3;
  padding-bottom: 90px;
}

#work{
  padding-bottom: 90px;
}

.servgraybg{
  background: #f3f3f3;
}

.servgraybg .service{
  background-color: #fff;
}

#homeCarousel .owl-stage .owl-item{
  margin-right: 10px !important;
  height: 300px;
}

/* #homeCarousel .owl-item{
  background-color: #3085a3;
} */

/*------------------------ About Section Css ------------------------*/   

.about{
   width: 100%;
}

.about .image figure img{
    width: 100%;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.about .image figure img:hover{
  /* box-shadow: 0px 0px 158px 0px rgba(0, 0, 0, 0.25); */
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.about .text p{
  padding-right: 45px;
}

.second-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 13px;
}

.about .infos .info p, .services .service p {
  font-size: 16px;
  line-height: 24px;
}

.service{
  background: #f3f3f3;
  min-height: 325px;
  padding: 30px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  margin-top: 30px;
  transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.service:hover{
  color: #000;
}

.service i:before{
  font-size: 60px;
  margin-left: 0;
}

.service .second-title{
  margin-top: 10px;
}

.counter {
  border-top: solid 1px #dfdfdf;
  padding-top: 45px;
}

.counter-value {
  font-size: 52px;
  font-weight: 700;
  float: left;
  color: #fec63f;
}

.counter .title{
  font-size: 15px;
  float: left;
  line-height: 19px;
  padding-left: 13px;
  padding-top: 20px;
  color: #292b2c;
  font-weight: 700;
}

.testimonials .item{
  text-align: center;
}

.testi_sec strong{
  color:#7a7a7a;
}


.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.testimonials .item figure img{
  max-width: 90px;
  margin: 0 auto;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.testimonials .item .name {
  margin: 30px 0px 6px;
}

.testimonials .item .title{
  font-size: 18px;
  font-weight: 600;
  line-height: 1px;
}

.testimonials .item span{
  font-size: 13px;
}

.testimonials .item p{
  font-size: 13px;
  line-height: 22px;
}

.testimonials .outitem{
  background: #efefef;
  padding: 40px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.testimonials{
  padding: 30px 0;
}



/*------------------------ Portfolio ------------------------*/ 

.portfolio_filter{
  margin-top: 64px;
  float: right;
  margin-right: 25px;
}

.portfolio .site-btn{
  margin-top: 0px;
}

.masonry{
  width: 100%;
  display: inline-block;
}

.portfolio .section-title{
  float: left;
  /* padding-bottom: 45px; */
}

.select-cat{
  font-weight: 600 !important;
}

.portfolio_filter ul{
  float: right;
}

.align-left .portfolio_filter ul{
  float: left;
} 

.portfolio_filter ul li{
  list-style: none;
  float: left;
}

.portfolio_filter ul li a{
  font-size: 15px;
  color: #000;
  font-weight: 400;
  margin-right: 30px;
}

.portfolio_filter ul li:last-child a{
  margin-right: 0;
}

.portfolio-item{
  margin-bottom: 30px;
}

.grid-item .portfolio-item img{
  width: 100%;
}

.grid-item .portfolio-item{
  position: relative;
  overflow: hidden;   
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}

.grid-item .portfolio-item figcaption{
  position: absolute;
  bottom: 0;   
  text-align: left;
  color: #000;    
  left: 35px;
  bottom: 30px;
  z-index: 1;
}

.grid-item .portfolio-item figcaption .title{
  font-size: 22.5px;
  font-weight: 600;
  margin: 0;
  line-height: 17px;
}

.grid-item .portfolio-item figcaption span{
  font-size: 10px;    
  display: inline-block;
  color: #fff;
}

.grid-item.video-icon .portfolio-item:before{
  content: '\f04b';
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
  font-size: 11px;
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #000;
  padding: 17px 20px;
  border-radius: 50px;
  color: #fff;
}

.grid-item.link-icon .portfolio-item:before{
  content: '\f35d';
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #000;
  padding: 15px 18px;
  border-radius: 50px;
  color: #fff;
}

.grid-item.lightbox-icon .portfolio-item:before{
content: '\f03e';
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
  font-size: 15px;
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #000;
  padding: 14px 18px;
  border-radius: 50px;
  color: #fff;
}

/* Hover */

.grid-item:hover .portfolio-item:before{
  z-index: 1;
  transform: translateY(-60px);
  -webkit-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
}

.grid-item:hover > .portfolio-item figcaption{
  visibility: visible;
}


.grid-item:hover .portfolio-item figcaption .title{
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transition: all ease 0.3s 0.4s;
  -webkit-transition: all ease 0.3s 0.4s;
  -moz-transition: all ease 0.3s 0.4s;
  opacity: 1;
}


.grid-item .portfolio-item figcaption span{
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  opacity: 0;
}

.grid-item .portfolio-item figcaption .title{
  color: #fff;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transition: all ease 0.3s 0.1s;
  -webkit-transition: all ease 0.3s 0.1s;
  -moz-transition: all ease 0.3s 0.1s;
  opacity: 0;
}

.grid-item .portfolio-item:before{
  z-index: 1;
  transition: all ease 0.3s 0.2s;
  -webkit-transition: all ease 0.3s 0.2s;
  -moz-transition: all ease 0.3s 0.2s;
}

.grid-item .portfolio-item img{
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
}

.grid-item:hover .portfolio-item figcaption span{
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  opacity: 1;
  transition: all ease 0.3s 0.53s;
  -webkit-transition: all ease 0.3s 0.53s;
  -moz-transition: all ease 0.3s 0.53s;
}

.grid-item:hover .portfolio-item img{
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
}

.grid-item .portfolio-item:after{
  content: '';
  background: rgba(0, 0, 0, 0.70);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all ease 0.3s 0.4s;
  -webkit-transition: all ease 0.3s 0.4s;
  -moz-transition: all ease 0.3s 0.4s;
  /*transform: translateX(-100%);*/
  visibility: hidden;
  opacity: 0;
  border-radius: 8px;
  webkit-border-radius: 8px;
}

.grid-item:hover .portfolio-item:after{
  /*transform: translateX(0);*/
  opacity: 1;
  visibility: visible;
  transition: all ease 0.7s;
  -webkit-transition: all ease 0.7s;
  -moz-transition: all ease 0.7-s;
}

.subpage .section-title{
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -1px;
}

.dark .project-detail .section-title, .dark .subpage .section-title{
  color: #fff;
}

.dark p, .dark .next-link .nav-title, .dark .next-link .next-title  {
    color: #fff;
}

.categories-list{
   padding: 60px 0;
   border-top: 1px solid #dfdfdf;
   border-bottom: 1px solid #dfdfdf;
}

.categories-list li{
   float: left;
   list-style: none;
   font-size: 16px;
   text-align: center;
   font-weight: 500;
}

.dark .categories-list li{
   color: #fff;
}

.dark .categories-list {
   border-top: 1px solid #585858;
   border-bottom: 1px solid #585858;
}

.categories-list li span{
   font-weight: 600;
}

.lightbox .image img{
  width: 100%;
}

.next-link {
  text-decoration: none;
  overflow: hidden;
  height: 54px;
  display: inline-block;
  margin: 120px auto 30px;
  width: 100%;
  text-align: center;
}

.next-link .next-title, .next-link .nav-title {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
}

.next-link .nav-title {
  color: #000;
  font-size: 40px;
  font-weight: 600;
}

.next-link .next-title {
  color: #000;
  font-size: 34px;
  font-weight: 600;
}

.next-link:hover .next-title, .next-link:hover .nav-title {
  transform: translateY(-130%);
  -webkit-transform: translateY(-130%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
}

.newsletter{
  position: relative;
  width: 100%;
  background: url(../img/bg-image.jpg) center center no-repeat fixed;
  background-size: cover;
}

.newsletter:before{
  content: '';
  background: rgba(0, 0, 0, 0.548);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
}

.newsletter .section-title{
  margin-bottom: 23px;    
  margin-top: 0;
}

.section-title.center{
  text-align: center;
}

.section-title.center:before {
  right:0;
  margin: 0 auto;
}

.imagebg .section-title{
  color: #fff;
}

.imagebg span{
  color: rgba(255, 255, 255, 0.6);
}

.newsletter .emailput{
  width: 100%;
  padding: 21px;
  border:0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  font-size: 16px;
}

.newsletter .emailput{
  outline: 0;
}

.newsletter p{
  color: #fff;   
  padding: 0 140px;
  margin-bottom: 30px;
  margin-top: 30px;
}

/*------------------------ News ------------------------*/   

.anews{
  background: #efefef;
  border-radius: 8px;
  padding:60px 40px; 
  display: inline-block;    
  position: relative;
  overflow: hidden;
  color: #000000;
  margin-bottom: 30px;
}

.anews:hover, anews:focus{
  color: #000;
}

.anews .date{
  margin-bottom: 45px;
}

.anews .date .big{
  font-size: 70px;
  font-weight: 800;
  line-height: 38px;
}

.anews .date .little{
  font-size: 13px;
  font-weight: 600;
}

.anews .title{
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 26px;
  line-height: 32px;
}

.anews .category{
  font-weight: 700;
  line-height: 52px;
}

.anews:hover > .image{
  opacity: 1;
}

.anews .image{
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  transition: opacity ease 0.4s;
  -webkit-transition: opacity ease 0.4s;
  -moz-transition: opacity ease 0.4s;
  -ms-transition: opacity ease 0.4s;
  -o-transition: opacity ease 0.4s;
}

/* news article */

.subpage{
  padding-top:160px;
}

.subtitle {
  font-size: 24px;
  font-weight: bold;
}

input.inp{
  width: 100%;
  margin-bottom: 30px;
  border:solid 3px #212121;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  height: 54px;
  font-size: 13px;
  padding-left: 15px;
  outline: 0;
}

textarea.form-message{
  width: 100%;
  margin-bottom: 30px;
  border:solid 3px #212121;
  border-radius: 23px;
  -webkit-border-radius: 23px;
  font-size: 13px;
  padding: 15px;
  outline: 0;
}


.news-article .article-image img{
  width: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  box-shadow: 0px 0px 48px 0px rgba(4, 6, 4, 0.15);
  -webkit-box-shadow: 0px 0px 48px 0px rgba(4, 6, 4, 0.15);
}

.news-article .title{
  font-size: 45px;
  font-weight: bold;
  padding: 10px 0;
}

.news-article .information{
  font-size: 13px;
  color: #000;
}

.dark .news-article .information, .dark .news-article .title,.dark .news-article blockquote, .subtitle, .article-comments .comment-content .title{
  color: #fff;
}

.dark .article-comments .comment {
  border-bottom: solid 1px #2d2d2d;
}

.dark input.inp, .dark textarea.form-message {
  border: solid 3px #ffffff;
  background: #000;
}

.dark input.inp:placeholder{
  color: #fff;
}

.news-article .information span{
  color: #adadad;
}

.news-article p{
  line-height: 30px;
}

.news-article .category{
  font-weight: bold;
}

.article-lightbox figure img{
  width: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  box-shadow: 0px 0px 48px 0px rgba(4, 6, 4, 0.15);
  -webkit-box-shadow: 0px 0px 48px 0px rgba(4, 6, 4, 0.15); 
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
}

.news-article blockquote{
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.article-comments .comment{    
  border-bottom: solid 1px #dfdfdf;
  padding-bottom: 30px;
}

.article-comments .comment:last-child{    
  border: none;
}

.article-comments .comment.reply{    
  padding-left: 60px;
}

.article-comments .comment figure img{
  width: 100%;    
  border-radius: 12px;
  -webkit-border-radius: 12px;
  box-shadow: 0px 0px 48px 0px rgba(4, 6, 4, 0.15);
  -webkit-box-shadow: 0px 0px 48px 0px rgba(4, 6, 4, 0.15);

}

.article-comments .comment-content .title{
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0;
}

.article-comments .comment-content .date{
  color: #818080;
  font-size: 13px;
}

.article-comments .comment-content p{
  color: #818080;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  margin-top: 15px;
}

.article-comments .comment-content .reply{
  font-size: 13.5px;
}

.article-comments .comment-content .reply:hover{
  text-decoration: none;
  color: #000;
  transition: all ease 0.3s;
}

.article-comments .comment-content .reply:before{    
  content: "\f3e5";
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  margin-right: 7px;
  font-size: 13.5px;
}

.article-video iframe{
  width: 100%;
  height: 470px;
}

.article-slider img{
  width: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
}


/*------------------------ Contact ------------------------*/   

.contact-map{
  width: 100%;
}

.contact-map iframe{
  width: 100%;
}


.getintouch .contact-info .info i, .getintouch .contact-info .info a, .getintouch .contact-info .info p{
  color: #000;
  display: block;
}

.getintouch .contact-info .info i{
  font-size: 26px;
  margin-bottom: 20px;
}

.getintouch .contact-info .info .fa-phone{
    width: 30px;
    transform: rotate(90deg);
}


.getintouch .contact-info .info p{
  font-size: 16px;
  margin-top: 6px;
  opacity: .6;    
  font-weight: 300;
}

.getintouch .contact-info .info a{
    font-size: 15px;
    font-weight: 500;
}


.getintouch .contact-info .info p.text{
    opacity: 1;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0;
}



.getintouch a{
  color: #fff;
  font-size: 18px;
}

.form-inp {
    border: 0;
    background: none;
    border-bottom: solid 1px #8c8c8c;
    width: 100%;
    margin-bottom: 60px;
    font-size: 15px;
    line-height: 45px;
}

.form-inp::placeholder, textarea::placeholder, .emailput::placeholder{
  color: #000;
}


.contact-form textarea {
    border: 0;
    background: none;
    border-bottom: solid 1px #8c8c8c;
    width: 100%;
    color: #000;
    font-size: 15px;
}

.form-inp:focus, .contact-form textarea:focus{
  border-bottom: solid 2px #000;
}

textarea::placeholder, .form-inp::placeholder {
  color: #000;  
}

footer{
  /* position: fixed; */
  background: #000;
  border-top: solid 1px #212121;
  padding: 70px 0 20PX;    
  bottom: 0;
  width: 100%;
}

footer .copyright img{
  max-height: 50px;
}

.copyrTxt{
  font-size: 13px;
  opacity: .7;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: 1px;
}  

.ftr-social{
  text-align: center;
}

.ftr-social .social{
  margin-top: 15px;
}

.ftr-social .social a{
  background: rgba(255, 255, 255, 0.15);
  padding: 9px;
  border-radius: 50px;
  display: inline-block;
  width: 41px;
  margin-right: 10px;
  font-size: 16px;
}

.ftr-social .social a:hover{
  background: rgba(255, 255, 255, 0.30);
  transform: rotate(360deg);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
}


footer .getintouch .title {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
}

footer .getintouch{
  text-align: right;
}

footer .getintouch p {
  font-size: 13px;
  opacity: .7;
  color: #fff;
  line-height: 15px;
  margin-bottom: 8px;
}

.dark, .dark .wrapper{
  background:#000;
}



.dark .about .text p, .dark .section-title .title, .dark .second-title, .dark .about .infos .info p, .dark .services .service p, .dark .service i:before, .dark .counter-value, .dark .testimonials .item p, .dark .testimonials .item .title, .dark .getintouch .contact-info .info i, .dark .getintouch .contact-info .info a, .dark .getintouch .contact-info .info p, .dark .anews .date, .dark .anews .title, .dark textarea::placeholder, .dark .form-inp::placeholder, .dark .portfolio_filter ul li a {
  color: #fff;
}

.graybg .testimonials .outitem, .graybg .anews, .graybg .service{
  background: #fff;
}

.dark .counter {
  border-top: solid 1px #2b2b2b;
}

.dark .graybg{
  background: #191919;
}

.dark .graybg .service{
  background: #000;
}

.dark  .service{
  background: #191919;
}


.dark .testimonials .outitem{
  background: #191919;
}

.dark .anews{
  background:#2b2b2b;
}

.dark .graybg .testimonials .outitem, .dark .graybg .anews {
  background: #000;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.animated {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.bx-wrapper{
  border-top: solid 1px #dfdfdf;
  border-left: 0;
  border-right:0;
  border-bottom:0;
  padding-top: 20px;
  margin-top: 90px;
  box-shadow: none;
  background: none;
  margin-bottom: 0;
}

.dark .bx-wrapper{
  border-top: solid 1px #5f5f5f;
}

.contact{
  padding-bottom:20px;
}


/*------------------------ Color ------------------------*/   


.slider-content span:before, .site-btn, .section-title::after, .swiper-pagination-bullet-active{
  background: #ffcc00;
}


.testimonials .item span, .anews .category, .article-comments .comment-content .reply, .news-article .category {
  color: #999999;
}

.work-title span{
  color: #999999;
  font-size: 22px;
font-family: 'gillsanbold';
}

.service:hover{
  background: #fec908 !important;
}

.hmabtimg{
  /* height: 450px; */
  height: 100%;
}

.yell_corner-1{
  position: relative;
}

.yell_corner-1::before{
  display: block;
  content: "";
  width: 50px;
  height: 70px;
  position: absolute;
  top: -25px;
  right: -25px;
  border-top: 6px solid #ffcc00;
  border-right: 6px solid #ffcc00;
}

.yell_corner-2::after{
  display: block;
  content: "";
  width: 50px;
  height: 70px;
  position: absolute;
  bottom: -25px;
  left: -10px;
  border-bottom: 6px solid #ffcc00;
  border-left: 6px solid #ffcc00;
}

.abt_brd{
  position: relative;
  padding-bottom: 10px;
}

.abt_brd::after{
    content: '';
    width: 70px;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ffcc00;
  }

  .abt_brd-t{
    position: relative;
  }


  .abt_brd-t::after{
    content: '';
    width: 70px;
    height: 3px;
    position: absolute;
    left: 47.5%;
    bottom: 40px;
    background: #ffcc00;
  }


/* .site-btn:hover{
  background: #000;
} */

.nav-icon{
  display: none;
}


.bx-wrapper img {
  max-width: 51% !important;
}
.page-banner {
  position: relative;
  padding: 0;
  color: #ffffff;
  background: #222429;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-banner .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}
.page-banner .banner-inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 3;
}

.page-banner .inner-container {
  position: relative;
  padding: 240px 0px 120px;
}

.page-banner h1 {
  position: relative;
  font-size: 80px;
  color: #ffffff;
  line-height: 0.9em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.page-banner .page-nav {
  position: relative;
  padding-top: 5px;
  text-align: center;
}

.page-banner .bread-crumb {
  position: relative;
  display: inline-block;
}
.page-banner .bread-crumb li a:hover, .page-banner .bread-crumb li.active {
  color: #fec63f;
}
.page-banner .bread-crumb li {
  position: relative;
  float: left;
  font-size: 16px;
  line-height: 30px;
  color: #ccd6df;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: default;
  padding-right: 15px;
  margin-right: 15px;
  letter-spacing: 0.1em;
  /* font-family: 'Gilroy'; */
}
.page-banner .bread-crumb li:before {
  position: absolute;
  right: -15px;
  width: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  content: "-";
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.page-banner .bread-crumb li:before {
  position: absolute;
  right: -15px;
  width: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  content: "-";
}

.page-banner .bread-crumb li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.page-banner .bread-crumb li:last-child:before {
  display: none;
}

.page-banner .bread-crumb li a {
  color: #ffffff;
  font-weight: 400;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.page-nav ul{
  list-style-type: none;
}
.page-banner .bread-crumb li a:hover,
.page-banner .bread-crumb li.active {
  color: #fec63f;
}


.contact-sec{

}


.contact-sec .contact-timeline__card .row:nth-child(even){
   
}


.contact-timeline__card .row{
padding-top: 80px;
}



.contact_add_box {
  display: flex;
  /* background-color: #ffcc0073; */
  margin-bottom: 50px;
  padding: 30px 25px;
  position: relative;
}


.contact_add_box::before {
  display: block;
  content: "";
  width: 50px;
  height: 60px;
  position: absolute;
  top: 0px;
  right: 0px;
  border-top: 6px solid #ffcc00;
  border-right: 6px solid #ffcc00;
 
}

.contact_add_box::after {
  display: block;
  content: "";
  width: 50px;
  height: 60px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  border-bottom: 6px solid #ffcc00;
  border-left: 6px solid #ffcc00;
 
}
/* horizontal line */

.add_icon i.fa{
  font-size: 24px;
  color: #999;
}

.add_icon i.fa-phone {
  transform: rotate(90deg);
}   


.add_content {
  margin-left: 25px;
}

.add_content p{
  margin-bottom: 10px;
    line-height: 24px;
    color: #999999;
    font-weight: 600;
    font-size: 18px;
}

.add_content p a{
  color: #999999;
  text-decoration: none;
}

.add_content h4{
  color: #999999;
}

.contact_form{
  padding-left: 50px;
}

.contact_form h2{
  /* padding: 20px 0 10px;  */
  font-size: 40px;
  text-align: left;
  text-transform: uppercase;
  line-height: normal;
  position: relative;
  margin-bottom: 10px;
  color: #ffcc00;
  line-height: 84px;
}

.contact_form h4{
  color: #999999;
}


.contact_form h2::after{
content: '';
width: 70px;
height: 3px;
position: absolute;
left: 0;
bottom: 5px;
background: #ffcc00;
}


.form_wrapp{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.form_wrapp .form-group{
  width: 48%;
}

.contact_form_wrapp .form-group{
  position:relative;
}

.contact_form_wrapp .form-group label {
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    color: #999999;
    pointer-events: none;
    -webkit-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
}

.contact_form_wrapp .form-group input {
    display: inline-block;    
    font-family: 'gillsansMTregular';
    padding: 20px;
    margin: 0px 0 0 0;
    border-radius: 5px;
    font-size: 16px;
    background: none;
    color: #999999;
    box-shadow: none;
    outline: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
   position: relative;
}

.asterisk {
  position: absolute;
  font-size: 14px;
  top: 20px;
  right: 10px;
  color: red;
  font-weight: bold;
}



::placeholder{
  color: #000;
}

.contact_form_wrapp .form-group input:focus + label, .contact_form_wrapp .form-group textarea:focus + label,
.contact_form_wrapp .form-group input:not(:placeholder-shown) + label, .contact_form_wrapp .form-group textarea:focus + label, .contact_form_wrapp .form-group textarea:not(:placeholder-shown) + label {
  top: 0;
  background-color: #fff;
}


.homeContact .form-group input:not(:placeholder-shown) + label{
  background-color: #f3f3f3;
}

.homeContact .form-group input:focus + label, .homeContact .form-group textarea:focus + label{
   background-color: #f3f3f3;
}

.contact_form_wrapp .form-group textarea{    
padding: 20px 10px;
background: none;
}


.contact_form_wrapp .form-group .form-control:focus {
  border-color: #feca08;
}



.btn-primary:hover {
  color: #000;
  background-color: #ffcc00;
  border-color: #ffcc00;
}


.msgTxt label{
  /* top: 20% !important; */
}

.mapLoc{
  padding: 0px 0 90px;
}



.services_timeline_card{

}

.serv_wrapp{
  position: relative;
}
.serv_wrapp h2, .work_wrapp h2{
    font-size: 40px;
    text-transform: uppercase;
    position: relative;
    line-height: 80px;
    color: #ffcc00;
}

.serv_wrapp h2::after{
  content: '';
    width: 70px;
    height: 3px;
    position: absolute;
    left: 43%;
    bottom: 0;
    background: #ffcc00;
}

.work_wrapp h2::after{
  content: '';
    width: 70px;
    height: 3px;
    position: absolute;
    left: 47%;
    bottom: 3px;
    background: #ffcc00;
    
}

.clientsWrapp{
  padding-bottom: 0px;
}

.clientWrp::after{
  left: 47%;
}


a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bg-gray {
  background-color: #f9f9f9;
}

.site-heading h2 {
display: block;
font-weight: 700;
margin-bottom: 10px;
text-transform: uppercase;
}

.site-heading h2 span {
color: #ffcc00;
}

.site-heading h4 {
display: inline-block;
padding-bottom: 20px;
position: relative;
text-transform: capitalize;
z-index: 1;
}

.site-heading h4::before {
background: #ffcc00 none repeat scroll 0 0;
bottom: 0;
content: "";
height: 2px;
left: 50%;
margin-left: -25px;
position: absolute;
width: 50px;
}

.site-heading {
margin-bottom: 60px;
overflow: hidden;
margin-top: -5px;
}

.carousel-shadow .owl-stage-outer {
margin: -15px -15px 0;
padding: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
background: #ffffff none repeat scroll 0 0;
border: 2px solid;
height: 15px;
margin: 0 5px;
width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
background: #ffcc00 none repeat scroll 0 0;
border-color: #ffcc00;
}

.we-offer-area .item {
background: #ffffff none repeat scroll 0 0;
border-left: 2px solid #ffcc00;
-moz-box-shadow: 0 0 10px #cccccc;
-webkit-box-shadow: 0 0 10px #cccccc;
-o-box-shadow: 0 0 10px #cccccc;
box-shadow: 0 0 10px #cccccc;
overflow: hidden;
padding: 30px;
position: relative;
z-index: 1;
}

.we-offer-area.text-center .item {
background: #ffffff none repeat scroll 0 0;
border: medium none;
padding: 40px 40px 40px;
height: 350px;
}

.we-offer-area.text-center .item i {
/* background: #ffcc00 none repeat scroll 0 0; */
background: #1e1e1e none repeat scroll 0 0;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
color: #ffffff;
font-size: 40px;
height: 120px;
line-height: 120px;
position: relative;
text-align: center;
width: 120px;
z-index: 1;
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
border: 2px solid #1e1e1e;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
content: "";
height: 130px;
left: -5px;
position: absolute;
top: -5px;
width: 130px;
z-index: -1;
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
border: medium none;
}


.less-carousel{
  padding-top: 50px;
}


.we-offer-area .our-offer-items.less-carousel .equal-height {
margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
font-family: "Poppins",sans-serif;
font-size: 50px;
font-weight: 900;
opacity: 0.1;
position: absolute;
right: 30px;
top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
background: #ffcc00 none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
color: #ffffff;
}

.we-offer-area .item i {
color: #ffcc00;
display: inline-block;
font-size: 60px;
margin-bottom: 20px;
}

.we-offer-area .item h4 {
font-weight: 600;
text-transform: capitalize;
}

.we-offer-area .item p {
margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
background: #ffcc00 none repeat scroll 0 0;
content: "";
height: 100%;
left: -100%;
position: absolute;
top: 0;
transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
width: 100%;
z-index: -1;
}

.we-offer-area .item:hover::after {
left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
color: #000 !important;
}

.yl_icon{
  display: none;
}

.we-offer-area .item:hover i .yl_icon{
  display: block;
}
.we-offer-area .item:hover i .wht_icon{
  display: none;
}


.we-offer-area.text-center .item:hover i::after {
border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
background-color: #ffffff !important;
color: #ffcc00 !important;
}

.we-offer-area.text-left .item i {
background: #ffcc00 none repeat scroll 0 0;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
color: #ffffff;
display: inline-block;
font-size: 60px;
height: 100px;
line-height: 100px;
margin-bottom: 30px;
position: relative;
width: 100px;
z-index: 1;
text-align: center;
}

.we-offer-area.text-left .item i::after {
border: 2px solid #ffcc00;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
content: "";
height: 120px;
left: -10px;
position: absolute;
top: -10px;
width: 120px;
}

 .item span img{
  width: 60px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #000; 
  transition: all 500ms;
  transition-timing-function: cubic-bezier(.445,.05,.55,.95);
}


/*work page style start*/


.grid {
  position: relative;
      margin: 0 auto;
      padding: 1em 0 0em;
      list-style: none;
      text-align: center;
      display: flex;
      flex-wrap: wrap;
  }
  
  /* Common style */
  .grid figure {
    position: relative;
      float: left;
      display: flex;
      overflow: hidden;
      /* margin-right: 10px;    */
      width: 33%;
      background: #3085a3;
      text-align: center;
      cursor: pointer;
      margin-bottom: 5px;
      margin-right: 5px;
  }

  .grid figure:nth-child(3), .grid figure:nth-child(6), .grid figure:nth-child(9), .grid figure:nth-child(12), .grid figure:nth-child(15), .grid figure:nth-child(18) {
    margin-right: 0;
  }
  
  .grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
  }
  
  .grid figure figcaption {
    padding: 1em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .grid figure figcaption::before,
  .grid figure figcaption::after {
    pointer-events: none;
  }
  
  .grid figure figcaption,
  .grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
  }
  
  .grid figure h2 {

    font-weight: 300;
  }
  
  .grid figure h2 span {
    /* font-weight: 800; */
  }

  .subHeadwrk{
    font-size: 16px;   
   font-family: 'gillsanbold';
  }
  
  .grid figure h2,
  .grid figure p {
    margin: 0;
  }
  
  .grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
  }
  
  
  /*---------------*/
  /***** Ruby *****/
  /*---------------*/
  
  figure.effect-ruby {
    background-color: #000;
  }
  
  figure.effect-ruby img {
    opacity: 0.3;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    /* -webkit-transform: scale(1.15);
    transform: scale(1.15); */
    max-width: 100%;
    height: 100%;
  }
  
  /* figure.effect-ruby:hover img {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  } */

  /* .grid figure:hover{
    background-color: #ffcc00;
  } */
  
  figure.effect-ruby h2 {   
    /* margin-top: 250px; */
    margin-top: 0px;
    font-size: 20px;
    line-height: 40px;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
  }
  
  figure.effect-ruby p {
    padding: 1em;   
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,20px,0) scale(1.1);
    transform: translate3d(0,20px,0) scale(1.1);
    color: #000;
    font-size: 20px;
  } 
  
  /* figure.effect-ruby:hover h2 {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    color: #000;
  }
  
  figure.effect-ruby:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0) scale(1);
    transform: translate3d(0,0,0) scale(1);
  } */

  .videoCoverImage{
    position:relative;
    height: 100%;
  }

  .youtubevd{
    height: 100%;
  }

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

.vidTxt h2{
    font-size: 28px;
    line-height: 40px;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
    color:#fff;
    text-transform:uppercase;
}


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

.vddescTxt h4{
      font-size: 20px;
      line-height: 40px;
      -webkit-transition: -webkit-transform 0.35s;
      transition: transform 0.35s;
      -webkit-transform: translate3d(0,20px,0);
      transform: translate3d(0,20px,0);
      color:#fff;
      text-transform:uppercase;
  } 


.video-play-button {
  position: absolute;
  z-index: 10;
  bottom: -59%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;

  /* 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: #ffcc00;
  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: #ffcc00;
  border-radius: 50%;
  transition: all 200ms;
}

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

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

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

.vidhmtxt{
  top: 16%;
}

.hmvdplaybtn{
  bottom: -70%;
}

@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;
  }
}


/*work page style end*/



.history-timeline {
  padding-bottom: 40px;
  padding-top: 90px;
}


.history-timeline__year {
  width: 85px;
  height: 85px;
  background-color: var(--thm-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--thm-black);
  font-size: 30px;
  font-family: var(--thm-font);
  border-radius: 50%;
  padding-top: 2px;
  margin-bottom: 0px;
  position: relative;
  z-index: 10;
}



.history-timeline__date {
  font-size: 16px;
  color: #fec63f;
  text-transform: uppercase;
  margin: 0;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
}



.history-timeline__title {
 font-size: 28px;
 text-transform: uppercase;
line-height: 32px;
}

.history-timeline__text {
  margin: 0;
  /* line-height: 34px; */
}

.history-timeline__image {
  /* background-color: #222429; */
  border-radius: 8px;
  display: inline-block;
  margin-top: 30px;
}


.history-timeline__image img {
  max-width: 100%;
  border-radius: 5px;
  /* mix-blend-mode: luminosity; */
  /* mix-blend-mode: hard-light; */
}

.history-timeline__card .row {
  position: relative;
  padding-top: 40px;
}



.history-timeline__card .row:last-child {
  padding-bottom: 0;
}



.history-timeline__card {
  margin-bottom: 40px;
}

.history-timeline__info .section-title .title{
  font-size: 32px;
}



.about-me-one__image img {
  border-radius: 8px;
  /* -webkit-filter: grayscale(100%);
  filter: grayscale(100%); */
  max-width: 100%;
  margin-bottom: 50px;
}



.about-me-one__content .sec-title {
  margin-bottom: 0;
}

.about-me-one__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}



.about-me-one__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 44px;
  height: 44px;
  background-color: #f4f5f8;
  color: var(--thm-black);
  font-size: 16px;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-me-one__social a+a {
  margin-left: 10px;
}

.about-me-one__social a:hover {
  background-color: var(--thm-base);
  color: var(--thm-black);
}

.about-me-one__certificate-row {
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 30px;
  max-width: 500px;
}


.about-me-one__certificate-row [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.about-me-one__certificate-row img {
  max-width: 100%;
  border-radius: 8px;
  mix-blend-mode: luminosity;
  margin-bottom: 20px;
}


.about-me-one__qoute {
  color: var(--thm-base);
  font-size: 30px;
  line-height: 34px;
  margin: 0;
  font-weight: 400;
}



.about-me-one__text {
  margin: 0;
  margin-bottom: 30px;
  color: #000;
  line-height: 24px;
}



/* about me progress */
.about-me-counter {
  background-color: #f4f5f8;
  padding-top: 90px;
  padding-bottom: 60px;
}



.about-me-counter .counter-block h4 {
  font-size: 26px;
}

.about-me-counter .sec-title {
  text-align: center;
  margin-bottom: 40px;
}


/*about testimonials start */


.gtco-testimonials {
  position: relative;
  margin-top: 30px;
}
.gtco-testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
    font-weight: 700;
    padding-top: 0px;
}

.gtco-testimonials .section-title::after{
  left: 47%;
}

.gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.gtco-testimonials .owl-nav {
  display: none;
}
.gtco-testimonials .owl-dots {
  text-align: center;
}
.gtco-testimonials .owl-dots span {
  position: relative;
  height: 12px !important;
  width: 12px !important;
  border-radius: 50%;
  display: block;
  background: #fff;
  margin: 0 5px;
}
.gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.gtco-testimonials .owl-dots .active span {
  background: #ffcc00 !important;
  box-shadow: none;
  height: 12px;
  width: 12px; 
}
.gtco-testimonials .card {
  background: #fff;
  /* box-shadow: 0 8px 5px 0px #000; */
  margin: 0 20px;
  padding: 0 10px;
  border-radius: 20px;
  border: 0;
  height: 480px;
}
.gtco-testimonials .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: 15px auto 20px;
  box-shadow: 0 8px 20px -4px #95abbb;
  width: 100px;
  height: 100px;

}
.gtco-testimonials .card h5 {
  color: #292b2c;
  font-size: 21px;
  line-height: 1.3;
}
.gtco-testimonials .card h5 span {
  font-size: 18px;
  color: #666;
}
.gtco-testimonials .card p {
  font-size: 16px;
  color: #999999;
  padding-bottom: 15px;
}
.gtco-testimonials .active {
  opacity: 0.2;
  transition: all 0.3s;
}


.gtco-testimonials .center .card{
  /* background-color: #fec908; */
}

.gtco-testimonials .center .card::before{
display: block;
content: "";
width: 50px;
height: 50px;
position: absolute;
top: 0px;
left: 0px;
border-top: 6px solid #ffcc00;
border-left: 6px solid #ffcc00;
}


.gtco-testimonials .center .card::after{
display: block;
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-bottom: 6px solid #ffcc00;
    border-right: 6px solid #ffcc00;
}


.gtco-testimonials .center {
  opacity: 1;
}
.gtco-testimonials .center h5 {
  font-size: 24px;
  color: #ffcc00;
  text-transform: uppercase;
}
.gtco-testimonials .center h5 span {
    font-size: 20px;
    color: #999999;
    text-transform: capitalize;

}
.gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 120px;
  width: 120px;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  outline: 0;
}
.owl-carousel button.owl-dot {
  outline: 0;
  opacity: 1;
}


/*about testimonials end*/

.yell_corner figure{
  position: relative;
}

.yell_corner::before {
  display: block;
  content: "";
  width: 50px;
  height: 70px;
  position: absolute;
  top: -24px;
  right: -8px;
  border-top: 6px solid #ffcc00;
  border-right: 6px solid #ffcc00;
}

.yell_corner::after {
  display: block;
  content: "";
  width: 50px;
  height: 70px;
  position: absolute;
  bottom: -6px;
  left: -8px;
  border-bottom: 6px solid #ffcc00;
  border-left: 6px solid #ffcc00;
}




#parallax{
  /* display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
background: url("../img/dev.jpg");
background-size: contain; */
background-image: url('../img/parallax.jpg');
background-attachment: fixed;
background-size: cover; 
height: 100vh; 
}

.load-more{
  padding-bottom: 40px;
}


.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{
  font-size: 30px;
}

.icon_arrow{
  font-size: 34px;
  background-color: #3a3a3a;
  border-radius: 100%;
  color: #ffcc00;
  padding: 10px 18px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: none !important;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  cursor: url(../img/cursor.png) 32 32, auto;
}



.slide {
  position: relative;
  margin: 0;
  padding: 0;
}
.slide .item {
  position: relative;
  height: 100%;
}
/* .slide .item::before {
  display: block;
  padding-top: 39%;
  content: "";
} */
.slide .item .image {
  position: relative;
  overflow: hidden;
}
.slide .item img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
}
.slide > .slick-list,
.slide > .slick-list > .slick-track,
.slide > .slick-list > .slick-track > .slick-slide > div {
  position: relative;
  height: 100%;
}
.slide-animation{
   animation: fadeIn 5s;
}
/* @keyframes fadeIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
} */

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.circl{
  width: 570px;
  height: 743px;
  border-radius: 20px;
  position: relative; 
}

.circl img{
  width: 570px;
  height: 743px;
  max-width: 100%;
  border-radius: 8px;
  mix-blend-mode: luminosity;
}



.clients_box{
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 25px;
  padding: 25px;
  
}

.clients_box img{
  width: 150px;
  max-width: 100%;
  transition: 0.3s;
}

.clients_box:hover img{
transform: scale(1.5);
}




/*services new style*/

.services .section-title::after{
 left: 47% !important;
}

.g-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 50px 0;
}

.circle-container {
  position: relative;
  width: 20em;
  height: 20em;
  padding: 0;
  border-radius: 50%;
  list-style: none;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0;
  border: solid 2px #70d6fe;
  background-color: #ffcc00;
}

.brd_wind{
  position: absolute;
    width: 300px;
    height: 300px;
}

.brd_wind:before {
  display: block;
  content: "";
  width: 100px;
  height: 145px;
  position: absolute;
  top: 80px;
  right: 8px;
  border-top: 25px solid #fff;
  border-right: 25px solid #fff;
  z-index: 9999;
}

.brd_wind:after{
  display: block;
  content: "";
  width: 100px;
  height: 143px;
  position: absolute;
  bottom: 80px;
  left: 8px;
  border-bottom: 25px solid #ffffff;
  border-left: 25px solid #ffffff;
  z-index: 999;
}

.circle-container > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -2em;
}
.circle-container > *:nth-of-type(1) {
  -moz-transform: rotate(0deg) translate(9.5em) rotate(0deg);
  -ms-transform: rotate(0deg) translate(9.5em) rotate(0deg);
  -webkit-transform: rotate(0deg) translate(9.5em) rotate(0deg);
  transform: rotate(0deg) translate(-40px) rotate(0deg);
  top: -5px;
}
.circle-container > *:nth-of-type(2) {
  -moz-transform: rotate(45deg) translate(9.5em) rotate(-45deg);
  -ms-transform: rotate(45deg) translate(9.5em) rotate(-45deg);
  -webkit-transform: rotate(45deg) translate(9.5em) rotate(-45deg);
  transform: rotate(45deg) translate(4px) rotate(-45deg) translate(-340px);
  top: 110px;
}
.circle-container > *:nth-of-type(3) {
  -moz-transform: rotate(90deg) translate(9.5em) rotate(-90deg);
  -ms-transform: rotate(90deg) translate(9.5em) rotate(-90deg);
  -webkit-transform: rotate(90deg) translate(9.5em) rotate(-90deg);
  transform: rotate(90deg) translate(145px) rotate(-90deg) translate(205px);
  top: -15px;
}
.circle-container > *:nth-of-type(4) {
  -moz-transform: rotate(135deg) translate(9.5em) rotate(-135deg);
  -ms-transform: rotate(135deg) translate(9.5em) rotate(-135deg);
  -webkit-transform: rotate(135deg) translate(9.5em) rotate(-135deg);
  transform: rotate(135deg) translate(170px) rotate(-135deg) translate(-70px, 0px);
}
.circle-container > *:nth-of-type(5) {
  -moz-transform: rotate(180deg) translate(9.5em) rotate(-180deg);
  -ms-transform: rotate(180deg) translate(109.5em) rotate(-180deg);
  -webkit-transform: rotate(180deg) translate(9.5em) rotate(-180deg);
  transform: rotate(180deg) translate(100px) rotate(-180deg) translate(270px, 120px);
}
.circle-container > *:nth-of-type(6) {
  -moz-transform: rotate(225deg) translate(9.5em) rotate(-225deg);
  -ms-transform: rotate(225deg) translate(9.5em) rotate(-225deg);
  -webkit-transform: rotate(225deg) translate(9.5em) rotate(-225deg);
  transform: rotate(225deg) translate(94px) rotate(-225deg) translate(0px, 260px);
  
}
.circle-container > *:nth-of-type(7) {
  -moz-transform: rotate(270deg) translate(9.5em) rotate(-270deg);
  -ms-transform: rotate(270deg) translate(9.5em) rotate(-270deg);
  -webkit-transform: rotate(270deg) translate(9.5em) rotate(-270deg);
  transform: rotate(270deg) translate(9.5em) rotate(-270deg);
}
.circle-container > *:nth-of-type(8) {
  -moz-transform: rotate(315deg) translate(9.5em) rotate(-315deg);
  -ms-transform: rotate(315deg) translate(9.5em) rotate(-315deg);
  -webkit-transform: rotate(315deg) translate(9.5em) rotate(-315deg);
  transform: rotate(315deg) translate(9.5em) rotate(-315deg);
}
.circle-container a {
  display: block;
  height: 100%;
  width: 100%;  
  color: #292b2c;     
}
.circle-container i {
  display: block;
  padding: 10px;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
  border-radius: 50%;
}
.circle-container .active i {
  color: #f9a732;
}
.circle-container:before {
  content: 'SERVICES WE PROVIDE';
  position: absolute;
  z-index: 100;
  color: #000;
  top: 46%;
  text-align: center;
  width: 42%;
  font-size: 22px;
  margin: 0 auto;
  left: 0;
  right: 0;
  line-height: 24px;
  display: block;
  margin-top: -10px;
  font-weight: 300;
}
.services-container li {
  display: none;
}
.services-container li.active {
  display: block;
}
.service-item {
  background: rgba(255, 255, 255, 0.34);
  padding: 0;
  margin-top: 11.26%;
  width: 100%;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  line-break: auto;
}
.service-item .header {
  background: #009fe3;
  padding: 10px 20px;
  border-radius: 4px 4px 0 0;
}
.service-item .body {
  padding: 20px 20px;
  color: #fff;
}
.service-item .header .icon {
  float: left;
  display: table;
}
.service-item .header .icon i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  position: relative;
  top: -7px;
  left: -10px;
  display: table-cell;
  color: #fff;
  font-size: 200%;
  vertical-align: bottom;
  text-align: center;
}
.service-item .header h4 {
  margin: 0px;
  color: #fff;
}
.service-item .footer {
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 0 0 4px 4px;
  border-top: 1px solid #5cc2ea;
}



.testi_prof{

}

.testi_prof img{
    max-width: 100%;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin: 15px auto 20px;
    box-shadow: 0 8px 20px -4px #95abbb;
}

.testi_proofhead span{
   font-size: 22px; 
 font-family: 'gillsanbold';
   color: #999999;
}




.clientsWrapp .box2 {
  max-height: 350px;
  height: 350px;
  background-color: #eee;
  background-size: cover;
  background-position: center center;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-content: center;
  justify-content: center;
}
.clientsWrapp .box2 .hover {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  flex-flow: column;
  transition: all 0.5s ease-in-out;
  padding: 2em 2em;
}
.clientsWrapp .box2 .hover h1 {
  color: #fff;
  font-size: 1.8em;
  text-transform: uppercase;
  font-family: "Patua One", cursive;
}
.clientsWrapp .box2 .hover p {
  color: #fff;
}
.clientsWrapp .box2:hover {
  filter: grayscale(100%);
}
.clientsWrapp .box2:hover .hover {
  opacity: 1;
  cursor: pointer;
}
.clientsWrapp .box {
  position: relative;
  max-height: 255px;
  height: 255px;
  background-color: #eee;
  display: flex;
  align-content: center;
  justify-content: center;
  overflow: hidden;
}
.clientsWrapp .box .content-hover2 {
  transform: scale(0, 0);
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #d32222;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 2em 2em;
}
.clientsWrapp .box .content-hover2 h1 {
  color: #fff;
  font-size: 1.5em;
  text-transform: uppercase;
  font-family: "Patua One", cursive;
  font-style: italic;
}
.clientsWrapp .box .content-hover2 p {
  color: #fff;
}
.clientsWrapp .box .content-hover {
  transform: scale(0, 0);
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #252525;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 2em 2em;
}
.clientsWrapp .box .content-hover h1 {
  color: #fff;
  font-size: 1.5em;
  text-transform: uppercase;
  font-family: "Patua One", cursive;
  font-style: italic;
}
.clientsWrapp .box .content-hover p {
  color: #fff;
}
.clientsWrapp .box .content {
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.clientsWrapp .box .content img {
  width: 160px;
}
.clientsWrapp .box .content p {
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -2em;
}
.clientsWrapp .box:hover > .content-hover, clientsWrapp .box:hover > .content-hover2 {
  transform: scale(1, 1);
  cursor: pointer;
}
.clientsWrapp .box-tech {
  position: relative;
  max-height: 255px;
  height: 255px;
  /* background-color: #eee; */
  display: flex;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  padding: 0em;
  border: 1px solid #b0b0b0;
  border-radius: 5px;
}


.clientsWrapp .box-tech .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  /* padding-top: 1em; */
  transition: all 0.2s ease-in-out;
  transition: 0.5s;
  /* filter: grayscale(1); */
}

.clientsWrapp .box-tech .content:hover{
  transform: scale(1.1);
}


.clientsWrapp .box-tech .content img {
  width: 220px;
  transition: all 0.2s ease-in-out;
  
}
.clientsWrapp .box-tech .content p {
  font-size: 1.2em;
  font-weight: 700;
  color: #8e8e8e;
  text-transform: uppercase;
  margin-top: 10px;
  transition: all 0.2s ease-in-out;
  margin-bottom: 0;

}

.clientsWrapp .box-tech .content .desc {
  transform: scale(0, 0);
  transition: all 0.2s ease-in-out;
  display: none;
}
.clientsWrapp .box-tech .content .desc .line {
  border-top: 1px solid #000;
  width: 0px;
  margin-top: 0em;
  margin-bottom: 1em;
  transition: all 0.2s ease-in-out;
}
.clientsWrapp .box-tech .content .desc p {
  font-size: 1em !important;
  font-weight: 600;
  text-transform: none;
  margin-top: 0em;
  text-align: center;
}

.clientsWrapp .box-tech .content .desc ul {
  padding: 0 20px;
  margin:0 15px
}

.clientsWrapp .box-tech .content .desc ul li{
  list-style: none;  
  font-family: 'gillsansMTregular';
  font-size: 16px;
}

.clientsWrapp .box-tech:hover .content {
  padding-top: 0em;
  cursor: pointer;
  filter: grayscale(0);
}
.clientsWrapp .box-tech:hover .content img {
  /* width: 260px;   */
  /* margin-bottom: 10px; */
  
}
 .clientsWrapp .box-tech:hover .content p, 
.clientsWrapp .box-tech:hover .content .desc ul li {
  color: #2c2c2c;
}
.clientsWrapp .box-tech:hover .content .desc {
  display: block !important;
  transform: scale(1, 1);
}
.clientsWrapp .box-tech:hover .content .desc .line {
  width: 50px;
}


.servHome{
  position: relative;
 /* padding-bottom: 180px; */
 padding-bottom: 230px;
}

.container.astrSec {
  position: absolute;
  bottom: 40px;
  width: 100%;
}


/* Tabs */

.tabs {
  /* width: 50%; */
  width: 100%;
  margin: 30px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}



ul#tabs-nav {
  list-style: none;
  margin: 0;
  padding: 5px;
  position: absolute;
  z-index: 999;
  text-align: center;
  width: 600px;
  height: 100%;
 
}

ul#tabs-nav li {
  float: left;
  margin-right: 2px;
  padding: 8px 10px;
  border-radius: 5px 5px 5px 5px;
  background: #fff;
  border: 4px solid #ffcc00;
  height: 160px;
  width: 160px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 24px;
  position: relative;

}

.starText span{
  color: #ff0000;
  font-size: 15px;
  vertical-align: text-bottom;
}

.starmark{
  color: #ff0000;
  font-size: 15px;
  vertical-align: text-bottom;
  position: absolute;
  bottom: 4px;
  right: 34px;
}

.starmark1{
  color: #ff0000;
  font-size: 15px;
  vertical-align: text-top;
  position: absolute;
  top: -8px;
  right: -8px;
}

.tabtext span{
font-weight: normal;
font-size: 16px;
line-height: normal;
position: relative;
line-height: 22px;
}



.tabtext span::before{
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #999999;
  left: -12px;
  top: 7px;

}

ul#tabs-nav li .tabtext{
  visibility: hidden;
  width: 200px;
  height: auto;
  background-color: white;
  border: 3px solid #ffcc00;
  color: #999999;
  text-align: left;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 110%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}

ul#tabs-nav li .tabtext::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent transparent #ffcc00;
}


ul#tabs-nav li:nth-child(1) .tabtext {
  top: 10px;
  right: 115%;
  }


  ul#tabs-nav li:nth-child(2) .tabtext{
    top: -45px;
    right: 175px;
  }

  ul#tabs-nav li:nth-child(3) .tabtext{
    top: -225px;
    left: -25px;
    margin-left: 0;
    z-index: 9999;
    }


    ul#tabs-nav li:nth-child(4) .tabtext{
      top: 0px;
      left: 115%;
    }
  
    ul#tabs-nav li:nth-child(3) .tabtext::after {
      content: "";
      position: absolute;
      top: 106%;
      left: 50%;
      margin-left: -16px;
      border-width: 8px;
      border-style: solid;
      border-color: #ffcc00 transparent transparent transparent;
    }

    ul#tabs-nav li:nth-child(5) .tabtext{
      z-index: 1;
      top: 25px;
    left: 115%;
    }

    ul#tabs-nav li:nth-child(6) .tabtext{
      z-index: 1;
      top: -20px;
      left: 115%;
    }

    ul#tabs-nav li:nth-child(7) .tabtext{
      z-index: 1;
      top: 10px;
      left: 115%;
    } 

    ul#tabs-nav li:nth-child(4) .tabtext::after,  ul#tabs-nav li:nth-child(5) .tabtext::after, ul#tabs-nav li:nth-child(6) .tabtext::after, ul#tabs-nav li:nth-child(7) .tabtext::after{
      top: 50%;
      left: -18px;
      margin-top: -5px;
      border-width: 8px;
      border-style: solid;
      border-color: transparent #ffcc00 transparent transparent;
  }


ul#tabs-nav li:hover .tabtext {
  visibility: visible;
}


ul#tabs-nav li:nth-child(1){
  transform: translate(-25px, -10px);
}

ul#tabs-nav li:nth-child(2){
  transform: translate(-175px, 172px);
}

ul#tabs-nav li:nth-child(3){
  transform: translate(-205px, 298px);
}

ul#tabs-nav li:nth-child(4){
  transform: translate(300px, 135px);
}

ul#tabs-nav li:nth-child(5){
  transform: translate(275px, 10px);
  z-index: -3;
}
ul#tabs-nav li:nth-child(6){
  transform: translate(130px, -170px);
}
/* ul#tabs-nav li:nth-child(7){
  transform: translate(185px, -157px);
} */

.starText p{
  margin-bottom: 0px;  
  font-family: 'gillsanbold';
  text-align: center;
}

/* ul#tabs-nav li:hover,
ul#tabs-nav li.active {
  background-color: #ffcc00;
} */
#tabs-nav li a {
  text-decoration: none;
  color: #999999;
  position: relative;
}


#tabs-content{
  position: relative;
  width: 300px;
  height: 300px;background-color: #ffcc00;
  /* border: 1px solid #000; */
  border-radius: 50%;
  /* margin: 22px 0px 47px 28px; */
  margin: 0;
}

#tabs-content::before{
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 5px solid #ffcc00;
  border-radius: inherit;
  box-sizing: border-box;
}


.tab-content {
  padding: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.tab-content p{
  margin: 0px;
}

#tab1 h2{
font-family: 'gillsanbold';
  text-transform: uppercase;
}

.prosecWrapp{
  display: flex;
  justify-content: space-between;
}

.prosecWrapp {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.prosecItem {
  background-color: #ffcc00;
  border-radius: 50%;
  padding: 3em;
  position: relative;
  padding: 50px;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
}

.remprop{
  background-color: transparent;
}

.circle__content{
  text-align: center;
  padding: 0px 0px;
}

.circle__content .team-title{ 
 font-family: 'gillsanbold';
  font-size: 24px;
  color: #000;
}

#firstProfile {
  background-color: #ffcc00;
}

#firstPropImg img, #secondPropImg img{
  max-width: 100%;
  transition-duration: 1s;
}


.recentsAdd{
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.recentsAdd figure{
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}



.vidTxt h3{
  margin-top: 20px;
  color: #fff;
  font-size: 22px;
}

.testServInner .col-lg-6, .testServInner .col-md-12{
  margin-bottom: 50px;
}

.testinner{
    padding: 50px 20px 20px;
    background-color: #efefef;
    height: 100%;
    position: relative;
}

.quote {
  position: absolute;
  top: -25px;
  background: #fec63f;
  z-index: 999;
  padding: 12px 20px;
  width: 50px;
  height: 50px;
  left: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote span img {
  width: auto;
  max-width: inherit;
  height: auto;
  border-radius: inherit;
  box-shadow: none;
}

.testi_proofhead h2{
  font-size: 24px;
  margin-bottom: 0;
  width: 100%;
  max-width: fit-content;
  text-align: center;
  margin: 0 auto;
  position: relative;
  line-height: 64px;
}


.testi_proofhead h2::after {
  left: 30%;
  bottom: 5px;
}

.brdcntr h2::after{
  left: 38%;
}


.testinner p{
  text-align: justify;
}

.testi_proofhead p{
  text-align: center;
}

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

.captchDiv{
  display: flex;  
  width: 48%;
}

#captcha-text{
  font-size: 16px;
  font-weight: bold;
}

.captchDiv input{
  width: 100%;
}

#captcha-challenge{
  user-select: none;
  background-image: url(../img/captcha-bg-optimize.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 150px;
  margin: 10px 0;
  padding: 0;
  text-align: center;
  font-style: italic;
  font-size: 24px;
}

#capchabg{
  background: #fff;
  padding: 0px;
  border: none;
  outline: 0px;
  margin-left: 20px;
}




