






/******************************************************************/
/****************************** GENERAL ***************************/
/******************************************************************/
body {
  background: #fff;
  margin: 0;
  padding: 0;
  font-family: 'Blinker', sans-serif;
  font-family: 'Quicksand', sans-serif;
}





.display-4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
}

.nav-link {
  font-family: 'Quicksand', sans-serif;
  letter-spacing: .5px;
  font-weight: 500;
}

.lead {
  font-family: 'Quicksand', sans-serif;
  /* font-size: 17px; */
}

h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
}

h3 {
  font-family: 'Blinker', sans-serif;
}

p {
  font-size: 17px;
}

.big-one {
  color: #EF5D20;
  font-weight: bold;
}

.page-featured-image {
  width: 100%;
}






/******************************************************************/
/******************************HOME PAGE***************************/
/******************************************************************/



.carousel-caption {
	position: absolute;
	right: 15%;
	/* bottom: 20px; */
  left: 15%;
  top: 40%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
  text-align: center;
}


.carousel-item {
  position: relative;
}

.slider-caption {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
}

/* -------------------------topIcon-content---------------------- */


#topIcon-content {
  background: #fff;
}


#topIcon-content .top-icon-card {
  background: #f8f8f8;
  border: 0;
  border-radius: 0;

}

.icon-top-box {
  transition: transform .4s ease; /* Animation */
}
.icon-top-box:hover {
  transform: scale(1.1); /* Animation */
}

.icon-top-box:nth-child(1) .top-icon-card {
  /* border-bottom: 1px solid rgba(0,0,0,.125) !important;
  border-right: 1px solid rgba(0,0,0,.125) !important; */
  -webkit-box-shadow: 10px 10px 8px -10px rgba(112,112,112,1);
  -moz-box-shadow: 10px 10px 8px -10px rgba(112,112,112,1);
  box-shadow: 10px 10px 8px -10px rgba(112,112,112,1);
}
.icon-top-box:nth-child(2) .top-icon-card {
  border-bottom: 1px solid rgba(0,0,0,.125) !important;
  /* border-right: 1px solid rgba(0,0,0,.125) !important;
  border-left: 1px solid rgba(0,0,0,.125) !important; */
  -webkit-box-shadow: 0px 10px 8px -10px rgba(112,112,112,1);
  -moz-box-shadow: 0px 10px 8px -10px rgba(112,112,112,1);
  box-shadow: 0px 10px 8px -10px rgba(112,112,112,1);
}
.icon-top-box:nth-child(3) .top-icon-card {
  /* border-bottom: 1px solid rgba(0,0,0,.125) !important;
  border-left: 1px solid rgba(0,0,0,.125) !important; */
  -webkit-box-shadow: -10px 10px 8px -10px rgba(112,112,112,1);
  -moz-box-shadow: -10px 10px 8px -10px rgba(112,112,112,1);
  box-shadow: -10px 10px 8px -10px rgba(112,112,112,1);
}




/* ---------------SHORT ABOUT------------------- */



.short-about-img {
  width: 100%;
}




/* -----------------------------WHAT WE DO / SERVICE--------------------------------- */

#whatWeDo {
  background: #fff;
}

.what-we-do-card:nth-child(1) i {
  color: #FFAF19;
}
.what-we-do-card:nth-child(2) i {
  color: #C71056;
}
.what-we-do-card:nth-child(3) i {
  color: #238DAD;
}
.what-we-do-card:nth-child(4) i {
  color: #003050;
}
.what-we-do-card:nth-child(5) i {
  color: red;
}
.what-we-do-card:nth-child(6) i {
  color: green;
}









/* -------------------WORK/IMAGE GALLERY---------------------- */

/* [1] The container */
.img-hover-zoom {
  /* width: 100%; */
   /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.2);
}


.workBox {
  position: relative;
  width: 100%;
}

.work-box-img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgb(0, 0, 0, .8);
}

.workBox:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}



/* -------------------WHY CHOOSE US---------------------- */

#whyChoose {
  /* background: url('../images/choose2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 500px; */
}

.choose-image {
  /* position: relative; */
}

.choose-img {
  width: 100%;
  /* position: absolute;
  top: 0;
  left: -5%; */
}

.choose-icon i {
  color: #E44400;
}


#skills {
  background:linear-gradient(0deg,rgba(0,0,0,0.4),rgba(0,0,0,0.7)),url('../images/choose1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.skill-hr {
  background: #f8f8f8;
}

.progress {
  height: 25px;
}

.progress-bar {
  background: #E44400 !important;
  font-size: 16px;
}





/******************************************************************/
/****************************** FOOTER ***************************/
/******************************************************************/

.foot-nav-link {
  display: inline-block !important;
  color: #f8f8f8;
}

.foot-nav-link:hover {
  color: #E44400;
}


.foot-nav-link::before {
  content: '\25AE';
  color: #E44400;
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
}




.form-control {
  background: transparent;
  color: #f8f8f8;
}







/*/////////////////////////////////////////////////////////////////////////////*/

#up {
  background: #f3f3f3;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.up {
  background: #f3f3f3;
  transform: skew(0deg, -3deg) translate(-0px);
  
}

.my-curv {  
  transform: skew(0deg, 3deg);
}
/*/////////////////////////////////////////////////////////////////////////////*/







/*****************************************************************/
/**************************** ABOUT PAGE *************************/
/*****************************************************************/

#pageBanner {
  background:linear-gradient(0deg,rgba(0,0,0,0.5),rgba(0,0,0,0.3)),url('../images/slider3.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}




.about-card:nth-child(1) .card {
  background: #0069D9;
  color: #fff;
}
.about-card:nth-child(2) .card {
  background: #EF5D20;
  color: #fff;
}
.about-card:nth-child(3) .card {
  background: #0069D9;
  color: #fff;
}



#testimonial {
  background:linear-gradient(0deg,rgba(0,0,0,0.8),rgba(0,0,0,0.9)),url('../images/testimonial-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.card-testimonial {
  background: transparent;
  border-color: #EFf;
}

.lead-testimoni {
  color: #EF5D20;
}

.team-image {
  width: 50%;
  margin-top: -15% !important;
}

.team-card {
  background: #f8f8f8;
}

.team-card:hover {
  background: #E44400;
  transition: .5s ease all;
  color: #fff !important;
}

.team-card:hover .subtitle {
  color: #f8f8f8 !important;
}



/*****************************************************************/
/**************************** ABOUT PAGE *************************/
/*****************************************************************/

.service-icon {
  background: #0069D9;
  color: #fff;
}

.service-image {
  width: 30%;
}

.service-card {
  position: relative;
  background: #f8f8f8;
}

.service-main {
  display: block;
  width: 100%;
  height: auto;
}

.service-main i {
  color: #EF5D20;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0069D9;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.service-card:hover .service-overlay {
  height: 60%;
}

.service-list-item {
  margin-bottom: 0.7rem;
}







/*****************************************************************/
/************************** PRICING PAGE *************************/
/*****************************************************************/

.price-top-box:nth-child(1) i {
  color: #EF5D20;
}
.price-top-box:nth-child(2) i {
  color: #6a6a6a;
}
.price-top-box:nth-child(3) i {
  color: #207196;
}



/*****************************************************************/
/************************** TEMPLATE PAGE ************************/
/*****************************************************************/



/* [1] The container */
.img-hover-zoom {
  /* width: 100%; */
   /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.2);
}


.workBox {
  position: relative;
  width: 100%;
}

.work-box-img {
  display: block;
  width: 100%;
  height: auto;
}





.template-img-box img {
  width: 100%;
}




