/**
 * 	Name: components.css
 *
 *  Styling for the components that create the page content: accordion, tabs, pie charts etc.
 *
 *  T.O.C
 *
 *	=Accordions and Toggles
 *	=Alerts
 *	=Animations
 *  =Boxes
 *	=Buttons
 *  =Callout
 *	=Clients logos
 *	=Countdown
 *	=Contact form
 *	=Dividers
 *  =Dropcaps
 *	=Features list
 *	=Galleries
 *	=Google Maps
 *	=Headlines
 *	=Icon Boxes
 *  =Image Box
 *	=Info box 
 *	=Milestones
 *  =Modal window
 *	=Our Process
 *	=Pie charts
 *	=Pricing Tables
 *	=Progress Bar
 *	=Revolution Slider
 *	=Services list
 *	=Social Media
 *	=Tabs
 *	=Testimonials
 *	=Team Member
 *	=Portfolio Item
 *	=Portfolio Filter
 *	=Portfolio Pagination
 *	=Portfolio Grid
 *	=Portfolio Strip
 *	=Bx Slider 
 *
 */
 
/* ==========================================================================
   =Accordions and Toggles
   ========================================================================== */

/* =Accordion
   ========================================================================== */
	
	.accordion { margin: 30px 0 30px; }

	.accordion-item {
		position: relative;
		display: block;
		padding: 15px 25px 15px 25px;
		margin-bottom: 20px;
		background-color: #da2028;
		color: #da2028;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	a.accordion-item { 
		color: #da2028;
		font-size: 14px;
		letter-spacing: 1px;

}
	
	.accordion-item span { 
		color: #da2028;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.accordion-item:after {
		position: absolute;
		top: 12px;
		right: 15px;
		display: block;
		width: 30px;
		height: 30px;
		background-color: #252525;		
		font-size: 14px;
		color: #fff;
		line-height: 30px;
		text-align: center;
		content: "＋";
	}
	


	.accordion-item.active:after { content: "-";
		color: #fff;
}
	
	.accordion-item:hover {
		background-color: #252525;
		color: #da2028;
		text-decoration: none;

	}


	.accordion-item.active {
		border-top: 4px solid #da2028; 
		background-color: rgba(255,255,255,0.00);
		color: #000;
		text-decoration: none;		

	}
	
	.accordion-item:hover span { color: #fff; }

	.accordion-item.active span { color: #da2028; }
	
	.accordion-item-content { 
		display: none; 
		padding: 15px 5px 25px 5px; 
	}
	
	.accordion-item-content *:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.accordion-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (max-width: 767px) {
		
		.accordion-item { padding-left: 15px; }
		
		.accordion-item-content { padding: 15px 15px 25px 15px;  }
		
	}





@media (max-width: 1200px) {
		
		.footer-desktop { display: none; }
		
	}



   @media (min-width: 1200px)  {
		
		.footer-tab { display: none; }
		
	}

	   @media (max-width: 991px)  {
		
		.footer-tab { display: none; }
		
	}







@media (max-width: 1200px) {
		
		.desktop { display: none; }
		
	}

	@media (min-width: 1200px)  {
		
		.tab { display: none; }
		
	}

	@media (max-width: 991px)  {
		
		.tab { display: none; }
		
	}


   @media (min-width: 991px) {
		
		.mobile { display: none; }
		
	}




	
/* =Toggle
   ========================================================================== */
	
	.toggle { margin-bottom: 30px; }

	.toggle-item {
		position: relative;
		display: block;
		padding: 15px 55px 15px 35px;
		margin-bottom: 20px;
		background-color: #f8f8f8;
		color: #252525;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	a.toggle-item { color: #252525; }
	
	.toggle-item:after {
		position: absolute;
		top: 12px;
		right: 15px;
		display: block;
		width: 30px;
		height: 30px;
		background-color: #252525;
		color: #fff;
		font-size: 14px;
		line-height: 30px;
		text-align: center;
		content: "+";
	}
	
	.toggle-item.active:after { content: "-"; }
	
	.toggle-item:hover,
	.toggle-item.active {
		background-color: #da2028;
		color: #fff;
		text-decoration: none;
	}
	
	.toggle-item-content { 
		display: none; 
		padding: 15px 35px 25px 35px; 
	}
	
	.toggle-item-content *:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.toggle-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (max-width: 767px) {
		
		.toggle-item { padding-left: 15px; }
		
		.toggle-item-content { padding: 15px 15px 25px 15px;  }
		
	}

/* ==========================================================================
   =Alerts
   ========================================================================== */

	.alert {
		padding: 13px 15px;
		border: 1px solid #e0e0e0;	
		margin-bottom: 30px;
		text-align: center;
	}
	
	.alert i {
		position: relative;
		top: 1px;
		margin-right: 7px;
		font-size: 36px;
	}
	
	.alert.info {
		border: 1px solid #252525;
		background-color: #252525;
		color: #fff;
	}
	
	.alert.success {
		margin: 10px 0 10px 0;
		border-radius: 6px;
		border: 1px solid #da2028;
		background-color: #da2028;
		color: #fff;
	}
	
	.alert.error {
		margin: 10px 0 10px 0;
		border-radius: 6px;
		border: 1px solid #282828;
		background-color: #282828;
		color: #fff;
	}
	
	.alert.warning {
		border-radius: 6px;
		border: 1px solid #ffd24d;
		background-color: #ffd24d;
		color: #fff;
	}
	
/* ==========================================================================
   =Animations
   ========================================================================== */
   
   .animate {
		-webkit-animation-duration: 1s;
				animation-duration: 1s;
		-webkit-animation-fill-mode: both;
				animation-fill-mode: both;
		visibility: hidden;
	}

	.animate.visible { visibility: visible; }
	.animate.hidden { visibility: hidden; }

/* ==========================================================================
   =Boxes
   ========================================================================== */

	.box { 
		padding: 30px; 
		margin-bottom: 30px;
	}
	
	.box  > *:last-child { margin-bottom: 10px; } 

	.box.box-style-1 {
		border-radius: 6px;
		border: 1px solid #e0e0e0;
		background-color: #fff; }


		.box.box-style-outline {
		border-radius: 0px;
		border: 1px solid #585858;
		background-color: none; }


		
		.box.box-style-outline-left {
		border-radius: 0px;
		border-left: 1px solid #fff;
		 }

		.box.box-style-1.dark {
		border-radius: 6px;
		color: #fff;
		background-color: #000; }



				.box.box-style-rounded.outline {
		border-radius: 60px;
		border: 2px solid #d55b59;
		background-color: #fff;
		padding: 40px; 
    text-align: center;
		margin-bottom: 10px;

		h1 {text-align: center;}
		p {text-align: center;}


	}

		.box.box-style-rounded.large {
		border-radius: 80px;

	}


		.box.box-style-circle {
		border-radius: 50%;
		border: 0px solid #e0e0e0;
		background-color: #fff;
		padding: 30px; 
    text-align: center;
		margin-bottom: 0px;

	}

		.box.box-style-circle-large {
		border-radius: 50%;
		border: 0px solid #e0e0e0;
		color: #fff;
		background-color: #218fb2;
		padding: 80px 50px 80px 50px; 
    text-align: left;
		margin-bottom: 10px;

	}

		.box-small { 
		padding: 10px 10px 2px 10px ; 
		margin-bottom: 2px;
	}


		.box.box-style-rounded{
		border-radius: 20px;
		background-color: #a2685c;
		padding: 20px; 
    text-align: center;
		margin-bottom: 0px;


	}

	.box.box-arrow-up {
		padding: 0px; 
    border-left: 20px solid transparent;
    margin-top: 0px; 
    border-top: 80px solid #fff;
    height: 0px;
    margin-left: 100px;
    width: 0px;
}

	.box.box-arrow-down {
		padding: 0px; 
    border-left: 30px solid transparent;
    border-right: 0px solid transparent;
    margin-top: -10px; 
    border-top: 50px solid #fff;
    height: 0px;
    margin-left: 100px;
    width: 0px;
}



	.box.box-arrow-down.blue {
		padding: 0px; 
    border-left: 40px solid transparent;
    border-right: 0px solid transparent;
    margin-top: -30px; 
    border-top: 50px solid #218fb2;
    height: 0px;
    margin-left: 200px;
    width: 0px;
    border-top: 80px solid #218fb2;
}



	.box.box-arrow-down-right {
		padding: 0px; 
    border-left: 0px solid transparent;
    border-right: 30px solid transparent;
    margin-top: -10px; 
    border-top: 50px solid #fff;
    height: 0px;
    margin-left: 100px;
    width: 0px;
}





	@media (max-width: 420px) {



		.box.box-style-circle {
		border-radius: 50%;
		background-color: #fff;
		padding: 30px; 


	}




.box { 
		padding: 20px; 
	}
	}
	

	@media (min-width: 421px) and (max-width: 767px) {

.box { 
		padding: 15px; 
	}
	}	
	
   
	/*
	 * 1. Clearfix hack 
	 */
	 
	.box:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* ==========================================================================
   =Buttons
   ========================================================================== */

/* =Default Button
   ========================================================================== */
   
	.btn { 
		display: inline-block; 
		padding: 10px 30px; 
		margin: 0 5px 20px 0;
		background-color: #bc3a2c;
		color: #fff !important;
		line-height: 18px;
		letter-spacing: 1px;
		font-size: 14px;
		font-weight: 400;
		min-width: 120px;
		text-align: center;
		text-decoration: none !important;
		vertical-align: middle;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

   
	.btn-small { 
		display: inline-block; 
		padding: 10px 30px; 
		margin: 0 5px 5px 0;
		color: #fff !important;
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 2px;
		font-weight: 400;
		text-decoration: none !important;
		vertical-align: middle;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

		.btn-small.short { 
		min-width: 50px;

	}

		.btn-small.medium { 
		min-width: 80px;

	}



		.btn-small.rounded { 
		 font-size: 14px;
		 line-height: 16px;
		 letter-spacing:1px;
	   border-radius:18px;
	   margin: 0 2px 2px 0;
	   padding: 6px 10px 6px 10px; 


	   	}


	 @media (min-width: 360px) {
		
		.btn-small.rounded { 
		 font-size: 12px;
		 line-height: 15px;
		 letter-spacing:1px;

	   border-radius:18px;
	   margin: 0 2px 2px 0;
	   padding: 3px 7px 3px 7px; 	   	}
		
	}



	.btn-xsmall { 
		display: inline-block; 
		padding: 8px 12px; 
		margin: 0 2px 2px 0;
		color: #fff !important;
		font-size: 12px;
		line-height: 14px;
		letter-spacing: 2px;
		font-weight: 400;
		text-decoration: none !important;
		vertical-align: middle;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

		.btn-xsmall.rounded { 
		 font-size: 12px;
	   border-radius:16px;
	   margin: 0 2px 2px 0;
	   padding: 4px 4px; 


	   	}


	.btn-outline { 

		border:  2px solid #da2028;
		display: inline-block; 
		padding: 10px 30px; 
		margin: 0 5px 5px 0;
		color: #fff !important;
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 2px;
		font-weight: 400;
		text-decoration: none !important;
		vertical-align: middle;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.btn-outline-orange { 
		border:  1px solid #df6d27;
		display: inline-block; 
		padding: 5px 10px; 
		vertical-align: middle;
		margin: 10px 0px 10px 0px;
		background-color: #fff;

		color: #585858;
		font-size: 20px;
		line-height: 24px;
		letter-spacing: 1px;
		font-weight: 600;

	}


	.rounded { 
		    border-radius: 6px;
	}

	
	.btn:focus { outline: 0; }
	
	.btn-large {
		padding: 20px 50px;
		font-size: 16px;
	}

	.btn-fix {
      width:160px;
		text-align:center;
	}



	.btn-mp3 { 
		background: linear-gradient(to bottom, #cbc8c8 10%, #d3d3d3 80%);
		display: inline-block; 
		padding: 10px 20px; 
		margin: 0 5px 5px 0;
		border: 3px;
      border:  2px solid #da2028;
		border-radius: 8px;

		color: #da2028 !important;
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 2px;
		font-weight: 700;
		text-decoration: none !important;
		vertical-align: middle;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}


	.btn-mp3 i,
	 { 
		float: left; 
		margin: 2px 8px 0 -4px;
		font-size: 16px; 
		line-height: 14px; 
	}

	
	.btn-gray {
	background-color: #585858;
	}	

   .btn-light {
	background-color: #707880;
	}	


	.btn-black {
	background-color: #000000;
	}

			.btn-ocean {
	background-color: #2ea6b7;
	}

	.btn-green {
	background-color: #687916;
	}


	
	.btn i,
	.btn-gray i,
	.btn-light i,
  .btn-black i,
	.btn-large i { 
		float: left; 
		margin: 2px 8px 0 -4px;
		font-size: 18px; 
		line-height: 14px; 
	}
	
	.btn:hover { background-color: #252525; }



/* ==========================================================================
   =3D button
   ========================================================================== */


button {
  position: relative;
  margin: 1em 1em 0.3em 0em;
  border: solid 0.125em transparent;
  padding: 0;
  width: 10.0em;
  height: 2em;
  border-radius: 1em;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 1px 1px var(--c-sh-txt, rgba(0, 0, 0, 0.5));
  font-weight: 700;
  font-size: 0.9em;

  filter: contrast(0.65);
  transition: 0.2s ease-out;
  cursor: pointer;
}


button .fa {padding-left: 5px;}

button:hover, button:focus {
  outline: none;
  filter: none;
}
button:active {
  transform: translatey(0.125em);
}

.press-on:after {
  position: absolute;
  top: calc(100% + 0.25em);
  right: -1em;
  left: -1em;
  height: 0.5em;
  background: radial-gradient(rgba(0, 0, 0, 0.25), transparent 50%);
  transition: inherit;
  content: "";
}
.press-on:active:after {
  transform: translatey(-0.125em) scale(1.125, 1.25);
}

.invert {
  color: #000;
  --c-sh-txt: rgba(255, 255, 255, 0.5);
}

#b00 {
  box-shadow: inset 0 0 0.125em rgba(255, 255, 255, 0.75);
  background: linear-gradient(#f8e7e8, #e30001, #bc0000) content-box, linear-gradient(-80deg, #f11f20, #9c1c1c, #f11f20) 0/37% 100% border-box;
}

#b01 {
  background: radial-gradient(at 50% 100%, #005e9b, rgba(0, 115, 191, 0) 70%) left 50% bottom 0.125em/41% 0.125em no-repeat content-box, radial-gradient(at 50% 0, #2b9bd8, rgba(43, 155, 216, 0) 70%) 50% 100%/41% 0.125em no-repeat content-box, radial-gradient(at 90% 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 51%) 50%/100% 215% border-box, linear-gradient(#2899e9, #0161b0) content-box, linear-gradient(#1a77be, #5bbaf5) border-box;
}

#b02 {
  border-radius: 0.25em;
  box-shadow: inset 0 0.125em 0.125em -0.125em #fff;
  background: linear-gradient(#e7aaaa, #bc0001) content-box, linear-gradient(#ca7574, #910000) border-box;
}
#b02:before {
  box-sizing: border-box;
  display: block;
  margin: -0.28125em auto -1.01875em;
  border: solid 0.0625em transparent;
  width: 75%;
  height: 1.3em;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  background: linear-gradient(#e1e1e1, #656668 21%, #fefefe 65%, #78787a) content-box, repeating-linear-gradient(20deg, #eeefef 0, #7f7c7d 19%, #eeefef 38%) 1.3em/100% 35% border-box;
  content: "";
}

#b03 {
  box-shadow: inset 0 2px 1px -1px rgba(255, 255, 255, 0.5), inset 0 -2px 1px -1px rgba(255, 255, 255, 0.5);
  background: linear-gradient(175deg, #ed4213 5%, rgba(237, 66, 19, 0)) content-box, radial-gradient(at 20% -29%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 51%) content-box, linear-gradient(#ea3403, #af2621) content-box, linear-gradient(#f15326, #ce2623) border-box;

  position: relative;
  margin: 0.2em 0.2em 0.2em 0em;
  border: solid 0.125em transparent;
  padding: 0;
  width: 12.0em;
  height: 2.2em;
  border-radius: 1em;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 1px 1px var(--c-sh-txt, rgba(0, 0, 0, 0.5));
  font-weight: 700;
  font-size: 0.7em;

  filter: contrast(0.65);
  transition: 0.2s ease-out;
  cursor: pointer;

}

#b04 {
  box-shadow: inset 0 -0.5em 0.5em #0569b7, inset 0 -0.5em 0.125rem 0.5em #1680cf;
  background: linear-gradient(#3ba1e9, #3996db 50%) content-box, linear-gradient(#317bb5, #2499e6) border-box;
}
#b04:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1875em;
  background: radial-gradient(closest-side, #30a2dd, rgba(48, 162, 221, 0)) 50%/75% 100% no-repeat;
  content: "";
}

#b05 {
  background: none;
}
#b05:before {
  position: absolute;
  z-index: -1;
  top: -0.125em;
  right: -0.125em;
  bottom: -0.125em;
  left: -0.125em;
  border: inherit;
  border-radius: inherit;
  box-shadow: inset 0 -0.5em 0.125rem 0.5em rgba(148, 10, 0, 0.35);
  background: radial-gradient(closest-side, #ff532b, rgba(255, 83, 43, 0)) 50% 100%/100% 50% no-repeat content-box, linear-gradient(90deg, #d02804, rgba(208, 40, 4, 0) 10%, rgba(208, 40, 4, 0) 90%, #d02804) content-box, linear-gradient(#df4d2a, #c84636 29%) content-box, linear-gradient(#e3380e, #cd2002) border-box;
  content: "";
}
#b05:after {
  position: absolute;
  z-index: -1;
  left: 15%;
  top: -0.375em;
  width: 2em;
  height: 1.5em;
  border-radius: 0.25em;
  background: radial-gradient(circle at 50% 0.25em, #88837f, #bebcbd 0.25em, transparent 0.25em) -1em, radial-gradient(#fff, rgba(255, 255, 255, 0) 70%) 0 50%/0.5em 100% no-repeat, radial-gradient(#fff, rgba(255, 255, 255, 0) 70%) 100% 50%/0.5em 100% no-repeat, linear-gradient(to right top, #fff 50%, rgba(255, 255, 255, 0) 61%) 0 100%/50% 0.25em no-repeat, linear-gradient(to left top, #fff 50%, rgba(255, 255, 255, 0) 61%) 100% 100%/50% 0.25em no-repeat, linear-gradient(#e9e9e9 0.25em, #f0f0f0 43%, #9d9d9f);
  clip-path: polygon(0 0, 0 0.25em, 0.25em 0.25em, 0.25em calc(100% - 0.25em), 50% 100%, calc(100% - 0.25em) calc(100% - 0.25em), calc(100% - 0.25em) 0.25em, 100% 0.25em, 100% 0);
  content: "";
}

#b06 {
  border-radius: 0.5em;
  box-shadow: inset 0 1px 1px #9c9c9c;
  background: radial-gradient(at 0 -15%, rgba(255, 255, 255, 0.07) 70%, rgba(255, 255, 255, 0) 71%) 0 0/80% 90% no-repeat content-box, linear-gradient(#4e4e4e, #040404) content-box, linear-gradient(#292929, #010101) border-box;
}

#b07 {
  border-radius: 0.5em;
  box-shadow: inset 0 1px 1px #6ab9f0, inset 0 -1px 1px #6ab9f0, inset 0 -1.25em 0.125rem #238cd8, inset 0 -0.75em 0.5em -0.25em;
  background: linear-gradient(#61a0d1, #3d8ecd) border-box;
}
#b07:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80%;
  height: 0.1875em;
  transform: translate(-50%);
  background: radial-gradient(closest-side, rgba(0, 255, 255, 0.5), rgba(106, 185, 240, 0));
  content: "";
}

#b08 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  border-width: 0.0625em;
  border-radius: 0.375em;
  box-shadow: inset 0 0 1px 1px #0277c7, inset 0 -1em 0.125rem #1a7dce;
  background: linear-gradient(#3d99d8, #4398da 33%) content-box, linear-gradient(#8bc1e5, #1078c4) border-box;
}
#b08:before, #b08:after {
  order: 1;
  content: "";
}
#b08:before {
  margin-top: -0.5625em;
  margin-right: 0.1875em;
  margin-left: -0.4375em;
  width: 0.875em;
  height: 0.875em;
  transform: translate(-1px) rotate(45deg);
  box-shadow: inset -1px 1px 2px #78b9e5;
  background: linear-gradient(45deg, #78b9e5 50%, rgba(120, 185, 229, 0) calc(50% + 2px)) 0 0/0.234375em 0.234375em no-repeat, linear-gradient(45deg, #78b9e5 50%, rgba(120, 185, 229, 0) calc(50% + 2px)) 100% 100%/0.234375em 0.234375em no-repeat, linear-gradient(-45deg, #2497ea, #2999ea);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  filter: drop-shadow(1px 0 1px #17639a);
}
#b08:after {
  margin-left: -0.25em;
  width: 1.25em;
  height: 1.25em;
  border-radius: 100% 0 0 0.1875em/0.375em 0.1875em;
  box-shadow: inset 0 1px 1px #78b9e5, inset 0 0.34375em 0.5rem #2999ea, inset 0 calc(0.6875em - 2px) 1px #2497ea, inset 0 calc(0.6875em - 1px) 1px #78b9e5, inset 0 0.6875em 1px #17639a;
  background: radial-gradient(circle at 0.1875em calc(100% - 0.1875em), #2189d9 0.16875em, #3690d6 0.1875em, transparent 0), linear-gradient(90deg, #3690d6 0.1875em, transparent 0);
  clip-path: polygon(0 0, 0 100%, 0.1875em 100%, 0.1875em calc(100% - 0.375em), 100% calc(100% - 0.375em), 100% 0);
}

#b09 {
  background: radial-gradient(at 80% 0, rgba(255, 221, 221, 0.15) 50%, transparent 51%) 50%/150% 210% border-box, radial-gradient(closest-side, #ff5735, rgba(207, 39, 5, 0)) 50% 100%/80% 0.125em no-repeat, linear-gradient(#e73200, crimson) content-box, linear-gradient(#ba3e38, #f07252) border-box;
}

#b10 {
  box-shadow: 0 0 0 0.0625em #cbcbcb;
  background: linear-gradient(#b2b2b2, #f4f4f4) content-box, radial-gradient(#ededed, rgba(222, 222, 222, 0)) 50% 100%/80% 0.125em no-repeat border-box, linear-gradient(#f4f4f4, #c9c9c9) border-box;
}

#b11 {
  box-shadow: inset 0 -0.5em 0.125rem 0.5em #cb2406;
  background: linear-gradient(#df330a, #d24324 33%) content-box, linear-gradient(#bd291b, #e54419) border-box;
}
#b11:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.25em;
  background: radial-gradient(at 50% 100%, #ab1207, transparent 70%) 50% 0/75% 0.125em no-repeat, radial-gradient(closest-side, #ea5027, transparent) 50% 100%/80% 0.125em no-repeat;
  content: "";
}

#b12 {
  padding-right: 1em;
  background: radial-gradient(at 50% 100%, #a5a5a5, rgba(213, 213, 213, 0) 70%) left 50% bottom 0.125em/80% 0.125em no-repeat padding-box, radial-gradient(closest-side, #f5f5f5, rgba(213, 213, 213, 0)) 50% 100%/80% 0.125em no-repeat padding-box, linear-gradient(#f8f8f8, #b5b5b5) padding-box, linear-gradient(#c4c4c4, #d2d2d2) border-box;
}
#b12:before, #b12:after {
  width: 0.75em;
  height: 0.75em;
  top: calc(50% - 0.375em);
  right: 0.375em;
  position: absolute;
  border-radius: 0.125em;
  background: #fff;
  color: #b2b2b2;
  content: "";
}
#b12:before {
  z-index: 2;
  border-radius: 0.125em 0.125em 0 0;
  transform: translatey(-10%) scalex(0.75);
  box-shadow: inset 0 0.125rem currentcolor, inset 0.1875rem 0 currentcolor, inset -0.1875rem 0 currentcolor;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 90%);
}
#b12:after {
  box-shadow: inset -0.125rem 0.125rem 0 currentcolor;
  transform: translatey(19%) rotate(135deg);
  background: linear-gradient(45deg, currentcolor calc(50% + 0.125rem), #fff 0);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}



/* ==========================================================================
   =Callouts
   ========================================================================== */

	.callout {
		position: relative;
		padding: 30px 50px 30px 50px;
		margin-bottom: 30px;
		margin-top: 50px;

		background-color: #fff;
	}
	
	.callout .callout-content { padding-left: 140px; }
	
	.callout .callout-content h3 {
		font-weight: 900;
		text-transform: uppercase;
	}
	
	.callout .callout-content > i {
		position: absolute;
		top: -30px;
		bottom: -30px;
		left: -35px;
		display: block;
		width: 180px;
		background-color: #da2028;
		color: #fff;
		font-size: 50px;
		line-height: 190px;
		text-align: center;
	}
	
	.callout .callout-action { 
		padding-top: 25px;
		text-align: center;
	}
	
	.callout .callout-content *:last-child, 
	.callout .callout-action *:last-child { margin-bottom: 0; }

	/*
	 * 1. Clearfix hack 
	 */
	 
	.callout:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.callout { padding: 30px 10px 30px 5px;
		
				margin-top: 50px;
}
		
		.callout .callout-content > i {
			left: 5px;
			width: 80px;
		}
		
		.callout .callout-content { padding-left: 100px; }
		
	}
	
	@media (max-width: 767px) {		
		
		
		.callout  {
			margin-top: 70px;

		}
		.callout .callout-content > i {
			position: relative;
			left: 0;
			width: 100%;
			margin-top: 20px;

		}
		
		.callout .callout-content { padding: 20px 0; }
		
	}


	
	
/* ==========================================================================
   =Clients logos
   ========================================================================== */
	
	.clients-logos {
		padding:20px 0 0 0px;
		margin-bottom: 40px;
		list-style: none;
	}
	


	.clients-logos li {
		float: left;
		width: 25%;
		height: 100px;
		margin-bottom: 40px;

		background: no-repeat top center;
		-webkit-transition: background-position 0.3s;
				transition: background-position 0.3s;
	}
	
	.clients-logos li:hover { background-position: bottom center; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.clients-logos:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	
	
		@media (max-width: 991px) {
		
	.clients-logos {
		padding:20px 20px 0 20px;
		margin-bottom: 10px;
	}
	
		.clients-logos li { 
			width: 25%;
			margin-bottom: 20px;
		}
		
		.clients-logos li:last-child { margin-bottom: 20px; }
		
	}
	
	
	
	
	
	
	@media (max-width: 767px) {
		
	
    .clients-logos {
		padding:20px 30px 0 20px;
		margin-bottom: 10px;
	}		
		
		.clients-logos li { 
			width: 50%;
			margin-bottom: 20px;
		}
		
		.clients-logos li:last-child { margin-bottom: 10px; }
		
	}
	
/* ==========================================================================
   =Countdown
   ========================================================================== */
	
	#countdown {
		margin: 150px 0;
		text-align: center;
	}
	
	.countdown-section {
		position: relative;
		display: inline-block;
		width: 170px;
		padding: 50px 0;
		border: 10px solid #da2028;
		border-radius: 50%;
		margin-right: 50px;
	}
	
	.countdown-section:after {
		position: absolute;
		top: 50%;
		right: -40px;
		color: #da2028;
		font-size: 48px;
		font-weight: 700;
		content: ":";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.countdown-section:last-child { margin-right: 0; }
	
	.countdown-section:last-child:after { content: none; }
	
	.countdown-amount {
		display: block;
		color: #da2028;
		font-size: 30px;
		line-height: 42px;
		font-weight: 700;
	}
	
	.countdown-period {
		font-size: 16px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	#countdown:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 1200px) {
		
		.countdown-section {
			width: 200px;
			padding: 65px 0;
			margin-right: 80px;
		}
		
		.countdown-section:after { right: -55px; }
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.countdown-section {
			width: 120px;
			padding: 27px 0;
			margin-right: 50px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.countdown-section {
			display: block;
			width: 120px;
			padding: 27px 0;
			margin: 0 auto 20px auto;
		}
		
		.countdown-section:last-child {
			margin-right: auto;
			margin-bottom: 0;
		}
		
		.countdown-section:after { content: none; }
		
	}
   
/* ==========================================================================
   =Contact form
   ========================================================================== */
  
	#contact-form { 
		overflow: hidden; 
		margin: 30px 0 50px 0; 
	}
	
	#contact-form fieldset {}
	
	label.validation-error { color: #d50f25; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border: 1px solid #e0e0e0; }
	
	#contact-form #formstatus {}
		
	#contact-form textarea {}	
	
	/*
	 * 1. Clearfix hack 
	 */
	#contact-form:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}

/* ==========================================================================
   =Contact form sea
   ========================================================================== */



	#contact-form-sea { 
		overflow: hidden; 
		margin: 30px 0 50px 0; 
	}
	
	#contact-form-sea fieldset {}
	
	label.validation-error { color: #d50f25; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border: 1px solid #e0e0e0; }
	
	#contact-form-sea #formstatus {}
		
	#contact-form-sea textarea {}	
	
	/*
	 * 1. Clearfix hack 
	 */
	#contact-form-sea:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}

/* ==========================================================================
   =Dividers
   ========================================================================== */

	.divider { margin: 30px 0; }

	.divider.single-ocean-line { border-top: 2px solid #218fb2; }

	.divider.single-gray-line { border-top: 2px solid #585858; }


	
	.divider.single-line { border-top: 2px solid #e0e0e0; }
	
	.divider.red-line { border-top: 2px solid #c53b37; }
	
	.divider.white-line { border-top: 2px solid #FFFFFF; }
	
	.divider.gray-line { border-top: 2px solid #585858; }

	.divider.green-line { border-top: 2px solid #687916; }
	
	.divider.olive-line { border-top: 2px solid #a39b39; }

	.divider.pine-line { border-top: 2px solid #234F1E; }

	.divider.turquoise-line { border-top: 2px solid #00a9a5; }

	.divider.blue-line { border-top: 2px solid #0785ca; }

	.divider.pink-line { border-top: 2px solid #a7899e; }

	.divider.teal-line { border-top: 2px solid #809b95; }


	.divider.royalblue-line { border-top: 2px solid #2843b9; }

	.divider.grape-line { border-top: 2px solid #5f4097; }

	.divider.purple-line { border-top: 2px solid #6b3075; }

	.divider.orange-line { border-top: 2px solid #df6d27; }

	.divider.chilli-line { border-top: 2px solid #ed1c24; }
	
	.divider.maroon-line { border-top: 2px solid #b51e3e; }

	.divider.magenta-line { border-top: 2px solid #dc0078; }

	.divider.rose-line { border-top: 2px solid #d55b59; }

	.divider.ocean-line { border-top: 2px solid #218fb2; }

	.divider.indigo-line { border-top: 2px solid #0a528d; }

	.divider.brown-line { border-top: 2px solid #8d3122; }

	.divider.mocha-line { border-top: 2px solid #56524c; }

	.divider.coffee-line { border-top: 2px solid #4b371c; }

	.divider.bronze-line { border-top: 2px solid #a96734; }

	.divider.earth-line { border-top: 2px solid #a1820b; }



	.xlg-margin { margin: 80px 0 20px; }

	.lg-margin { margin: 60px 0 20px; }
   
  .md-margin { margin: 0px 0 20px; }

	.sm-margin { margin: 10px 0 10px; }

	.no-margin { margin: 0px; }

	
	.divider.double-line { border-top: 4px double #da2028; }
	
	.divider.shadow {
		height: 1px;
		margin: 100px 0;
		background-color: #edf1f0;
		border-radius: 50%;
		box-shadow: 0 0 30px 20px rgba(0, 0, 0, 0.07);
	}

/* ==========================================================================
   =Dropcaps
   ========================================================================== */
   
	.dropcap {
		float: left;
		display: block;
		margin: 5px 10px 0 0;
		font-size: 34px;
		line-height: 42px;
	}
	
	.dropcap.dropcap-square {
		width: 42px;
		height: 42px;
		background-color: #da2028;		
		color: #ffffff;
		font-size: 22px;		
		line-height: 42px;
		text-align: center;
		
	}
	
	.dropcap.dropcap-circle {
		width: 42px;
		height: 42px;
		border-radius: 50%;
		background-color: #da2028;		
		color: #ffffff;
		font-size: 22px;		
		line-height: 42px;
		text-align: center;
	}
	
/* ==========================================================================
   =Features list
   ========================================================================== */
   	
	.features-list {
		margin: 50px 0 100px 0;
		list-style: none;
		overflow: hidden;
	}
	
	.features-list li {
		position: relative;
		overflow: hidden;
		float: left;
		width: 33.333333333%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	.features-list li .features-list-content {
		padding: 60px;
		background-color: #da2028;
		color: #fff;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.features-list li img { 
		display: block;
		width: 100%;
	}
	
	.features-list li h1 {
		margin-bottom: 50px;
		font-size: 48px;
		font-weight: 900;
		text-transform: uppercase;
	}
	
	.features-list li h1 small { font-size: 24px; }
	
	.features-list li p:last-of-type { margin-bottom: 50px; }
	
	.features-list li .btn { 
		background-color: #fff;
		color: #da2028 !important;
	}
	
	.features-list li .btn:hover { background-color: #252525; }
	
	.features-list li .image-wrapper { margin: -50px; }
	
	.features-list li:hover .features-list-content {
		background-color: #392525;
		-webkit-transform: scale(0.9);
			-ms-transform: scale(0.9);
				transform: scale(0.9);
	}
	
	.features-list li .features-list-content:before,
	.features-list li .features-list-content:after {
		position: absolute;
		top: -50px;
		bottom: -50px;
		border-top: 50px solid transparent; 
		border-bottom: 50px solid transparent; 
		opacity: 0;
		content: "";
	}
	
	.features-list li .features-list-content:before {
		left: -50px;
		border-left: 50px solid #da2028;
	}
	
	.features-list li .features-list-content:after {
		right: -50px; 
		border-right: 50px solid #da2028;
	}
	
	.features-list li:hover .features-list-content:before,
	.features-list li:hover .features-list-content:after { opacity: 1.0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.features-list:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.features-list li {
			float: none;
			width: 100%;
		}
		
		.features-list li .features-list-content:before,
		.features-list li .features-list-content:after {
			position: absolute;
			right: -100px;
			left: -100px;
			border-right: 100px solid transparent; 
			border-left: 100px solid transparent; 
			opacity: 0;
			content: "";
		}
		
		.features-list li .features-list-content:before {
			top: -100px;
			bottom: auto;
			border-top: 100px solid #96d741;
		}
		
		.features-list li .features-list-content:after {
			top: auto;
			bottom: -100px;
			border-bottom: 100px solid #96d741;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.features-list li {
			float: none;
			width: 100%;
		}
		
		.features-list li .features-list-content:before,
		.features-list li .features-list-content:after {
			position: absolute;
			right: -100px;
			left: -100px;
			border-right: 100px solid transparent; 
			border-left: 100px solid transparent; 
			opacity: 0;
			content: "";
		}
		
		.features-list li .features-list-content:before {
			top: -100px;
			bottom: auto;
			border-top: 100px solid #96d741;
		}
		
		.features-list li .features-list-content:after {
			top: auto;
			bottom: -100px;
			border-bottom: 100px solid #96d741;
		}
		
	}
	
/* ==========================================================================
   =Galleries
   ========================================================================== */
	
	
	
/* ==========================================================================
   =Google Maps
   ========================================================================== */

	.google-map {
		width: 100%; 
		height: 400px;
	}
	
	/**
	 * 1. needed so that Google Maps controls are not distorted
	 */
	
	.google-map  img { max-width: none; }	/* 1 */
	
	.map { margin-bottom: 50px; }
	
	@media (max-width: 767px) {

		.map { padding: 0 20px; }
		.row .map { padding: 0; }
		
	}

/* ==========================================================================
   =Headlines
   ========================================================================== */

	.headline  {
		position: relative;
		margin-top: 40px;
		margin-bottom: 60px;
		text-align: center;

	}

	.headline .logo {
		margin-top: 20px;
		margin-bottom: 20px;

	}

	.headline .logo-2 {
		margin-top: 30px;
		margin-bottom: 30px;


	}


   .headline .logo img {
		margin-bottom: 20px;
		max-width:450px;
}


 .headline .logo-2 img {
		margin-bottom: 5px;
		max-width:360px;
}

	.logo-2 h4 {
    font-size: 21px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 40px;
	}

.logo-2 p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;

		
	}



	@media (max-width: 420px) {
		
    .headline .logo {
		margin-top: 40px;
		margin-bottom: 20px;

	}		

	 .headline .logo-2 {
		margin-top: 40px;
		margin-bottom: 20px;

	}		
				

	}



	@media (max-width: 767px) {
		
    .headline {
		margin-top: 20px;
		margin-bottom: 20px;

	}		
				
    .headline .logo img {
		margin-bottom: 20px;
		max-width:260px;
	}

	.logo h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
		
	}

	  .headline .logo-2 img {
		margin-bottom: 20px;
		max-width:320px;
	}
		
	.logo-2 h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 40px;
	}


	.logo-2 p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
		
	}



	}



	@media (max-width: 420px) {
		
    .headline {
		margin-top: 0px;
		margin-bottom: 10px;

	}		
				
    .headline .logo img {
		margin-bottom: 10px;
		max-width:280px;

	}

	.logo h3 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 200;
		
	}

	 .headline .logo-2 img {
		margin-bottom: 10px;
		max-width:280px;
	}
		
	

	.logo-2 h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
 }

	.logo-2 h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;

	}





	}

	
	.headline-left {
		text-align: left;
	}
	
	.headline:before {
		color: #da2028;
		font-size: 18px;
		font-weight: 500;
		letter-spacing: -2px;
		content: "";
	}
	
	.headline:after {
		position: absolute;
		top: 12px;
		left: 0;
		right: 0;
		width: 75px;
		margin: 0 auto;
		border-top: 0px solid #da2028;
		content: "";
	}
	
	.headline h2 {
		margin-bottom: 5px;
		font-weight: 500;
		letter-spacing: 1.2px;
		text-transform: uppercase;
	}
	
	.headline h5 {
		letter-spacing: 2px;
	}
	
	.headline.error {
		margin-bottom: 50px;
		text-align: left; 
	}
	
	.headline.error:before { margin-left: 25px; }
	.headline.error:after { margin: 0; }
	
	.headline.error h1 {
		margin-top: 15px;
		color: #da2028;
		font-size: 72px;
		font-weight: 500;
		text-transform: uppercase;
	}
	
/* ==========================================================================
   =Icon Boxes
   ========================================================================== */

/* =Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin-bottom: 50px; 
	}
		
	.icon-box-1 > i { 
		float: left;
		display: block;
		color: #da2028;  
		font-size: 28px; 
		line-height: 28px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	} 
	
	.icon-box-1 h3 {
		font-weight: 200;
		color: #58585b;  
		text-transform: uppercase;
	} 
	
	.icon-box-1 { margin: 25px; }
	.icon-box-content { margin: 10px; 
	}

	
	.icon-box-1:hover > i { color: #252525; }

/* =Icon Box 2
   ========================================================================== */
   
	.icon-box-2 { 
		position: relative; 
		margin-bottom: 50px;
		text-align: center;
	}
	
	
	.icon-box-2 p { 
       text-align: justify;		
	}
	
    .icon-box-2	img { 
		max-width: 100%;
		float: left;
		border-radius: 50%;
		margin-right: 30px;
	}	
	
		
	.icon-box-2 > i {
		position: relative;
		overflow: hidden; 
		display: block;
		width: 68px;
		height: 68px;
		border-radius: 50%;
		margin: 0 auto 25px auto;
		background-color: #000;
		color: #585858; 
		font-size: 28px;
		line-height: 68px;
		-webkit-transform: translateZ(0);
			-ms-transform: translateZ(0);
				transform: translateZ(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-2 > i:after {
		position: absolute;
		z-index: -1;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		border-radius: 50%;
		background-color: #585858;
		content: "";
		-webkit-transform: scale(0);
			-ms-transform: scale(0);
				transform: scale(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-2 h2 { margin-bottom: 30px;
 }
	
	.icon-box-2 .icon-box-content {}	
	
	.icon-box-2:hover > i {
		background-color: #da2028;
		color: #585858;
	}
	
	.icon-box-2:hover > i:after {
		-webkit-transform: scale(1);
			-ms-transform: scale(1);
				transform: scale(1);
	}

/* =Icon Box 3
   ========================================================================== */
   
	.icon-box-3 { 
		position: relative; 
		margin-bottom: 50px; 
	}	
	
	.icon-box-3 > i { 
		float: left;
		margin-right: 30px;		 
		color: #da2028;
		font-size: 28px; 
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	} 
	
	.icon-box-3 h3 {
		margin-bottom: 15px;
		font-weight: 700;
		text-transform: uppercase;
	} 
	
	.icon-box-3 .icon-box-content {}
	
	.icon-box-3:hover > i {
		-webkit-transform: scale(1.2);
			-ms-transform: scale(1.2);
				transform: scale(1.2);
	}

/* =Icon Box 4
   ========================================================================== */
   
	.icon-box-4 { 
		position: relative; 
		margin-bottom: 50px;
		text-align: right;
	}	
	
	.icon-box-4 > i { 
		float: right;
		margin-left: 30px;		 
		color: #da2028;
		font-size: 28px; 
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	} 
	
	.icon-box-4 h3 {
		margin-bottom: 15px;
		font-weight: 700;
		text-transform: uppercase;
	} 
	
	.icon-box-4 .icon-box-content {}
	
	.icon-box-4:hover > i {
		-webkit-transform: scale(1.2);
			-ms-transform: scale(1.2);
				transform: scale(1.2);
	}
	
/* =Icon Box 5
   ========================================================================== */
   
	.icon-box-5 { 
		position: relative;
		padding: 30px 15px; 
		margin-bottom: 20px;
		text-align: center;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}


.icon-box-5.bg-green { 
		background: linear-gradient(to bottom, #d2d5bc 0%, #ffffff 100%);
	}


.icon-box-5.bg-beige { 
		background: linear-gradient(to bottom, #d7ceb2 0%, #ffffff 100%);
	}

.icon-box-5.bg-pink { 
		background: linear-gradient(to bottom, #e1cccc 0%, #ffffff 100%);
	}

.icon-box-5.bg-blue { 
		background: linear-gradient(to bottom, #b5d0cc 0%, #ffffff 100%);
	}

.icon-box-5.bg-purple { 
		background: linear-gradient(to bottom, #bba8bf 0%, #ffffff 100%);
	}


		
	.icon-box-5 > i {
		position: relative;
		overflow: hidden; 
		display: block;
		width: 68px;
		height: 68px;
		border-radius: 50%;
		margin: 0 auto 25px auto;
		background-color: #252525;
		color: #fff; 
		font-size: 28px;
		line-height: 68px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	
	.icon-box-5 img {
		float: center;
		border-radius: 50%;
		margin: 30px 0 10px;
	}
	
	.icon-box-5 h3 { margin: 20px 0 10px; }
	
	
	.icon-box-5 h5:hover {
		color: #da2028;
	}
	.icon-box-5 h5 { margin-bottom: 30px;
	
	color: #252525; }

	.icon-box-5 p { text-align: center; }
	
	
	.icon-box-5 .icon-box-content {}	
	
	
	
	.icon-box-5:hover {
		
		border-top: 4px solid #da2028;
		background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
		color: #da2028;
	}
	

	.icon-box-5:hover > i {
		background-color: #fff;
		color: #da2028;
	}
	
	.icon-box-5:hover a { color: #282828; }
	


/* =Icon Box 6
   ========================================================================== */
   
	.icon-box-6 { 
		position: relative;
		padding: 80px 15px 40px 15px; 
		margin-bottom: 50px;
		background-color: #687916;
		color: #fff;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}


	
	.icon-box-6 a { color: #fff; }
	.icon-box-6 a:hover { color: #252525; }
		
	.icon-box-6 > i {
		display: inline-block;
		border-radius: 50%;
		margin-bottom: 15px;
		font-size: 32px;
	}
	
	.icon-box-6 h3 { margin-bottom: 30px; }
	
	.icon-box-6 h3:after {
		display: block;
		width: 35px;
		border-bottom: 2px solid #fff;
		margin: 15px auto;
		content: "";
	}
	
	.icon-box-6 .icon-box-content {
		opacity: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-6 .icon-box-content *:last-child { margin-bottom: 0; }
	
	.icon-box-6:hover { padding: 60px 15px; }
	
	.icon-box-6:hover .icon-box-content { opacity: 1; }

/* ==========================================================================


/* =Icon Box outline
   ========================================================================== */
   
	.icon-box-outline { 
		position: relative;
		padding: 5px; 
		margin: 5px 0 5px 0px;
		min-height: 90px;
		background-color: #d6cfcf;
		color: #000;
		border: 2px solid #d6cfcf;

		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}


	
	.icon-box-outline a { color: #000; }
	.icon-box-outline a:hover { color: #252525;
	}
		
	.icon-box-outline > i {
		display: inline-block;
		border-radius: 50%;
		border: 2px solid #000;
		margin-bottom: 25px;
		font-size: 32px;
	}
	
	
	.icon-box-outline .icon-box-content {
		opacity: 1;
		-webkit-transition: all 0.3s;
				  transition: all 0.3s;
	}
	
	.icon-box-outline .icon-box-content *:last-child { margin-bottom: 0; }
	
	.icon-box-outline:hover { padding: 5px;		background-color: #c4b0b0; border: 2px solid #c4b0b0; 
 }
	
	.icon-box-outline:hover .icon-box-content { opacity: 1; }


/* =Icon Box 7
   ========================================================================== */
   
	.icon-box-7 { 
		position: relative;
		padding: 80px 15px 40px 15px; 
		margin-bottom: 20px;
		background-color: #727272;
		color: #fff;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
				
	}
	
    .icon-box-7	img { 
		max-width: 95%;
		border-radius: 0%;
	}		
	
	
	.icon-box-7 a { color: #fff; }
	.icon-box-7 a:hover { color: #252525; }
		
	.icon-box-7 > i {
		display: inline-block;
		border-radius: 50%;
		margin-bottom: 15px;
		font-size: 32px;
	
	
	}
	
	.icon-box-7 h3 { margin-top: 20px; }
	
	.icon-box-7 h3:after {
		display: block;
		width: 35px;
		border-bottom: 2px solid #fff;
		margin: 15px auto;
		content: "";
	}
	
	.icon-box-7 .icon-box-content {
		opacity: 0.7;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-7 .icon-box-content *:last-child { margin-bottom: 0; }
	
	.icon-box-7:hover { padding: 60px 15px; }
	
	.icon-box-7:hover .icon-box-content { opacity: 1; }



/* =Icon Box 8
   ========================================================================== */
   


.icon-box-8 { 
		position: relative;
		padding: 60px 60px 60px 60px; 
		margin-bottom: 20px;
		background-color: #d9d7c8;
		color: #585858;
		text-align: left;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
				
	}

@media (max-width: 420px) {
		.icon-box-8 { 
		padding: 30px 30px 30px 30px; }
		
}

	
    .icon-box-8	img { 
		max-width: 100%;
		border-radius: 0%;
	}		
	
	
	.icon-box-8 a { color: #8d3122; }
	.icon-box-8 a:hover { color: #252525; }
		
	.icon-box-8 > i {
		display: inline-block;
		border-radius: 50%;
		margin-bottom: 15px;
		font-size: 32px;
	
	
	}
	
	.icon-box-8 h3 { margin-top: 0px; }
	
	
	.icon-box-8 .icon-box-content {
		opacity: 1;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-8 .icon-box-content *:last-child { margin-bottom: 0; }
	
	.icon-box-8:hover { padding: 60px; }
	
	.icon-box-8:hover .icon-box-content { opacity: 1; }


/* =Icon Box 9
   ========================================================================== */
   


.icon-box-9 { 
		position: relative;
		padding: 20px 20px 20px 20px; 
		margin-bottom: 20px;
		background-color: #f8eadf;
		color: #585858;
		text-align: center;

		border-radius: 16px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
				
	}

@media (max-width: 420px) {
		.icon-box-9 { 
		padding: 20px 20px 20px 20px; }
		
}

	
    .icon-box-9	img { 
    verticle-align: middle;
		max-width: 100%;
		border-radius: 0%;
	}		
	
	
	.icon-box-9 a { color: #8d3122; }
	.icon-box-9 a:hover { color: #252525; }
		
	.icon-box-9 > i {
		display: inline-block;
		border-radius: 50%;
		margin-bottom: 15px;
		font-size: 32px;
	
	
	}
	
	.icon-box-9 h3 { margin-top: 0px; }
	
	
	.icon-box-9 .icon-box-content {
		opacity: 1;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-9 .icon-box-content *:last-child { margin-bottom: 0; }
	
	.icon-box-9:hover { padding: 20px; }
	
	.icon-box-9:hover .icon-box-content { opacity: 1; }

	/* =Icon Box 6
   ========================================================================== */
   
	.icon-box-10 { 
		position: relative;
		padding: 20px 10px 0px 10px; 
		margin-bottom: 10px;
		background-color: #da2028;
		color: #fff;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}


	
	.icon-box-10 a { color: #fff; }
	.icon-box-10 a:hover { color: #252525; }
		
	.icon-box-10 > i {
		display: inline-block;
		border-radius: 50%;
		margin-bottom: 15px;
		font-size: 32px;
	}
	
	.icon-box-10 h3 { margin-bottom: 20px; }
	
	.icon-box-10 h3:after {
		display: block;
		width: 35px;
		border-bottom: 2px solid #fff;
		margin: 15px auto;
		content: "";
	}
	
	.icon-box-10 .icon-box-content {
		opacity: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

		.icon-box-10 .icon-box-content p {
		text-align: center;
		font-size: 16px;
	}

	
	.icon-box-10 .icon-box-content *:last-child { margin-bottom: 0; }
	
	.icon-box-10:hover { padding: 20px 0 10px; }
	
	.icon-box-10:hover .icon-box-content { opacity: 1; }

/* ==========================================================================


/* =Icon Box 11
   ========================================================================== */
   
	.icon-box-11 { 
		border-radius: 0px;
		min-height: 700px;
		position: relative;
		padding: 10px 5px 10px 5px; 
		margin-bottom: 20px;
		text-align: center;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;

	}


	.icon-box-11 .icon-box-content {
		margin: 5px;
	}


.icon-box-11.bg-pink { 
		border-radius: 16px;
		border-top: 0px solid #f0c8ca;
		border-bottom: 0px solid #f0c8ca;
		background: #f0c8ca;
	}

	.icon-box-11.bg-beige { 
		border-radius: 16px;
		border-top: 0px solid #eadcbf;
		border-bottom: 0px solid #eadcbf;
		background: #eadcbf;
	}

.icon-box-11.bg-gray { 
		border-radius: 16px;
		border-top: 0px solid #707880;
		border-bottom: 0px solid #707880;
		background-color: #707880;

	}

	.icon-box-11.bg-brown { 
		border-radius: 16px;
		border-top: 0px solid #c0b4a5;
		border-bottom: 0px solid #c0b4a5;
		background-color: #c0b4a5;

	}

.icon-box-11.bg-red { 
		border-radius: 16px;
		border-top: 0px solid #ff3131;
		border-bottom: 0px solid #ff3131;
		background: #ff3131;
	}

		
	.icon-box-11 > i {
		position: relative;		
		overflow: hidden; 
		display: block;
		width: 68px;
		height: 68px;
		border-radius: 0%;
		margin: 0 auto 25px auto;
		background-color: #ff3131;
		color: #fff; 
		font-size: 28px;
		line-height: 68px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	
	.icon-box-11 img {
		float: center;
		border-radius: 0%;
		margin: 10px 0 10px;
	}

	.icon-box-11 .social-icon { 
		margin: 5px 5px 5px 5px; 
		max-width:30px
	
	}



	.icon-box-11 h1 { color: #000; margin: 20px 0 10px;  }

	
	.icon-box-11 h2 { color: #000; margin: 20px 0 10px;  }

	.icon-box-11 h3  {
		color: #000;
	}
	
	.icon-box-11 h4  {
		color: #000;
	}

	.icon-box-11 h4:hover {
		color: #000;
	}

	.icon-box-11 p { text-align: center; color: #000;  }
	
	
	.icon-box-11 .icon-box-content {
		padding: 10px 10px 10px 10px; 


	}	
	
	.icon-box-11 h1:hover {
		color: #ff3131;
	}

	.icon-box-11 h2:hover {
		color: #000;
	}

		.icon-box-11.bg-red h2 {
		color:  #fff;
	}

			.icon-box-11.bg-red h1 {
		color:  #fff;
	}

				.icon-box-11.bg-red i {
		color:  #000;
	}


		.icon-box-11.bg-red h2:hover {
		color:  #ff3131;
	}

			.icon-box-11.bg-red fa:hover {
		color:  #000;
	}


	.icon-box-11 h3:hover {
		color: #ff3131;
	}


	.icon-box-11:hover {
	
		border-top: 6px solid #ff3131;
		background-color: #b7b0b0;
		color: #da2028;
	}

	.icon-box-11.bg-gray:hover {
		
		border-top: 0px solid #ff3131;
		border-bottom: 0px solid #ff3131;
		background-color: #dbd8d8;
		color: #da2028;
	}

		.icon-box-11.bg-brown:hover {
		
		border-top: 0px solid #ff3131;
		border-bottom: 0px solid #ff3131;
		background-color: #dbd8d8;
		color: #da2028;
	}

	.icon-box-11.bg-pink:hover {
		
		border-top: 0px solid #ff3131;
		border-bottom: 0px solid #ff3131;

		background-color: #dbd8d8;
		color: #da2028;
	}


	.icon-box-11.bg-beige:hover {
		
		border-top: 0px solid #ff3131;
		border-bottom: 0px solid #ff3131;

		background-color: #dbd8d8;
		color: #da2028;
	}

	.icon-box-11.bg-red:hover {

		border-top: 0px solid #ff3131;
		border-bottom: 0px solid #ff3131;
		background-color: #b7b0b0;
		color: #ff3131;

	}


	
	.icon-box-11:hover > i {
		background-color: #fff;
		color: #fff;
	}
	
	.icon-box-11:hover a { color: #282828; }


	@media (min-width: 2257px) {
		.icon-box-11 .bx-wrapper img {
		margin-left: 40px;
			}

		.icon-box-11 { 
		padding: 20px 50px 20px 50px;
		min-height: 700px;
	 }

	 	.icon-box-11 .social-icon { 
		margin: 5px 8px 5px 8px; 
		max-width:35px
	
	}

			}
	
	@media (min-width: 2049px) and (max-width: 2256px) {
		.icon-box-11 .bx-wrapper img {
		margin-left: 10px;
			}

		.icon-box-11 { 
		padding: 20px 50px 20px 50px;
		min-height: 750px;
	 }

			}



	@media (min-width: 1921px) and (max-width: 2048px) {
		.icon-box-11 .bx-wrapper img {
		margin-left: 20px;
			}

		.icon-box-11 { 
		padding: 20px 50px 20px 50px;
		min-height: 850px;
	 }


			}


	@media (min-width: 1681px) and (max-width: 1920px) {

		.icon-box-11 .bx-wrapper img {
		margin-left: 20px;
			}

	.icon-box-11 { 
		padding: 10px 10px 10px 10px;
		min-height: 800px;
	 }

	}


	@media (min-width: 1281px) and (max-width: 1680px) {

	.icon-box-11 .bx-wrapper img {
		margin-left: 0px;
			}

	.icon-box-11 { 
		padding: 10px 10px 10px 10px;
		min-height: 900px;
	 }

	.icon-box-11 .social-icon { 
		margin: 5px 5px 5px 5px; 
		max-width:30px
	
	}

	}



	@media (min-width: 1025px) and (max-width: 1280px) {

	.icon-box-11 { 
		padding: 5px 0px 5px 0px;
		min-height: 850px;
	 }

	 	.icon-box-11 .icon-box-content {
		margin: 0px;
	}

	}

		@media (min-width: 992px) and (max-width: 1024px) {

	.icon-box-11 { 
		padding: 10px 5px 10px 5px;
		min-height: 950px;
	 }

	.icon-box-11 .icon-box-content {
		margin: 0px;
	}

	}
	

	@media (min-width: 768px) and (max-width: 991px) {

	.icon-box-11 { 
		padding: 5px 5px 5px 5px; 
		min-height: 750px; 
	 }

	.icon-box-11 .icon-box-content {
		margin: 0px;
	}

	 	.icon-box-11 .area {
		padding: 5px 5px 5px 20px;
				
		 }


		
	}

	@media (min-width: 481px) and (max-width: 767px) {
		.icon-box-11 {
		padding: 10px 5px 10px 5px;
		min-height: 0px; 
		 }

		 	.icon-box-11 .area {
		padding: 10px 10px 10px 150px;
				
		 }

			}


	@media (max-width: 480px) {
		.icon-box-11 {
		padding: 10px 10px 10px 10px;
				min-height: 0px; 
		 }

		.icon-box-11 .area {
		padding: 10px 10px 10px 50px;
				
		 }

			}

			/* =Icon Box 12
   ========================================================================== */
   


.icon-box-12 { 
		position: relative;
		padding: 10px 5px 5px 5px; 
		margin-bottom: 10px;
		background-color: #df6d27;
		color: #FFF;
		text-align: center;

		border-radius: 0 0 0 30px ;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
				
	}

@media (max-width: 420px) {
		.icon-box-12 { 
		padding: 5px 5px 5px 5px; }
		
}

	
  .icon-box-12	img { 
    verticle-align: middle;
		max-width: 100%;
		border-radius: 50%;
	}		
	
	
	.icon-box-12 a { color: #8d3122; }
	.icon-box-12 a:hover { color: #252525; }
		
	.icon-box-12 > i {
		display: inline-block;
		border-radius: 20px;
		margin-bottom: 15px;
		font-size: 32px;
	
	
	}
	
	.icon-box-12 h3 { margin-top: 0px; }

	.icon-box-12 h4 { margin-bottom: 2px; 
		font-weight:400;}

	
	
	.icon-box-12 .icon-box-content {
		opacity: 1;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-12 .icon-box-content *:last-child { margin-bottom: 0; }
	



/* =Icon Box 13
   ========================================================================== */
   


.icon-box-13 { 
		position: relative;
		padding: 45px 30px 20px 30px; 
		margin-bottom: 10px;
		background-color: #4B371C;
		color: #FFF;
		text-align: center;

		border-radius: 0 0 0 0px ;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
				
	}

	@media (min-width: 2257px) {
		.icon-box-13 .bx-wrapper img {
		margin-left: 40px;
			}

		.icon-box-13 { 
		padding: 45px 30px 20px 30px; 
	 }

			}
	
	@media (min-width: 2049px) and (max-width: 2256px) {
		.icon-box-13 .bx-wrapper img {
		margin-left: 10px;
			}

		.icon-box-13 { 
		padding: 45px 20px 40px 20px; 
	 }

			}



	@media (min-width: 1921px) and (max-width: 2048px) {
		.icon-box-13 .bx-wrapper img {
		margin-left: 20px;
			}

		.icon-box-13 { 
		padding: 45px 30px 40px 30px; 
	 }


			}


	@media (min-width: 1681px) and (max-width: 1920px) {

		.icon-box-13 .bx-wrapper img {
		margin-left: 20px;
			}

	.icon-box-13 { 
		padding: 45px 20px 20px 20px; 
	 }

	}






	@media (min-width: 481px) and (max-width: 767px) {
		.icon-box-13 {
		padding: 10px 10px 10px 10px;
		 }


			}


	@media (max-width: 480px) {
		.icon-box-13 {
		padding: 10px 10px 10px 10px;
		 }

			}


			/* =Icon Box 14
   ========================================================================== */
   


.icon-box-14 { 
		position: relative;
		padding: 30px 25px 30px 25px; 
		margin-bottom: 10px;
		background-color: #56524c;
		color: #FFF;
		text-align: center;

		border-radius: 0 0 0 0px ;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
				
	}

	@media (min-width: 2257px) {
		.icon-box-14 .bx-wrapper img {
		margin-left: 40px;
			}

		.icon-box-14 { 
		padding: 30px 25px 30px 25px; 
		min-height: 320px;
	 }

	 	.icon-box-14 .social-icon { 
		margin: 5px 8px 5px 8px; 
		max-width:35px
	
	}

			}
	
	@media (min-width: 2049px) and (max-width: 2256px) {
		.icon-box-14 .bx-wrapper img {
		margin-left: 10px;
			}

		.icon-box-14 { 
		padding: 30px 25px 30px 25px; 
		min-height: 320px;
	 }

			}



	@media (min-width: 1921px) and (max-width: 2048px) {
		.icon-box-14 .bx-wrapper img {
		margin-left: 20px;
			}

		.icon-box-14 { 
		padding: 30px 25px 30px 25px; 
		min-height: 320px;
	 }


			}


	@media (min-width: 1681px) and (max-width: 1920px) {

		.icon-box-14 .bx-wrapper img {
		margin-left: 20px;
			}

	.icon-box-14 { 
		padding: 30px 25px 30px 25px; 
		min-height: 320px;
	 }

	}


	@media (min-width: 1281px) and (max-width: 1680px) {

	.icon-box-14 .bx-wrapper img {
		margin-left: 0px;
			}

	.icon-box-14 { 
		padding: 30px 25px 30px 25px; 
		min-height: 350px;
	 }


	}



	@media (min-width: 1025px) and (max-width: 1280px) {

	.icon-box-14 { 
		padding: 30px 25px 30px 25px; 
		min-height: 370px;
	 }


	}

		@media (min-width: 992px) and (max-width: 1024px) {

	.icon-box-14 { 
		padding: 30px 25px 30px 25px; 
		min-height: 350px;
	 }

	.icon-box-14 .icon-box-content {
		margin: 0px;
	}

	}
	

	@media (min-width: 768px) and (max-width: 991px) {

	.icon-box-14 { 
		padding: 30px 25px 30px 25px; 
		min-height: 550px; 
	 }

	.icon-box-14 .icon-box-content {
		margin: 0px;
	}

	 	.icon-box-14 .area {
		padding: 30px 25px 30px 25px; 
				
		 }


		
	}

	@media (min-width: 481px) and (max-width: 767px) {
		.icon-box-13 {
		padding: 30px 25px 30px 25px; 
		min-height: 0px; 
		 }

		 	.icon-box-14 .area {
		padding: 10px 10px 10px 150px;
				
		 }

			}


	@media (max-width: 480px) {
		.icon-box-14 {
		padding: 30px 25px 30px 25px; 
				min-height: 0px; 
		 }

		.icon-box-14 .area {
		padding: 10px 10px 10px 50px;
				
		 }

			}


/* ==========================================================================



	/* =Icon Box 15
   ========================================================================== */
   


.icon-box-15 { 
		position: relative;
		padding: 30px 25px 30px 25px; 
		margin-bottom: 10px;
		background-color: #bc5f4c;
		color: #FFF;
		text-align: center;

		border-radius: 15px ;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
				
	}

	@media (min-width: 2257px) {
		.icon-box-15 .bx-wrapper img {
		margin-left: 40px;
			}

		.icon-box-15 { 
		padding: 30px 25px 30px 25px; 
		min-height: 500px;
	 }

	 	.icon-box-15 .social-icon { 
		margin: 5px 8px 5px 8px; 
		max-width:35px
	
	}

			}
	
	@media (min-width: 2049px) and (max-width: 2256px) {
		.icon-box-15 .bx-wrapper img {
		margin-left: 10px;
			}

		.icon-box-15 { 
		padding: 30px 25px 30px 25px; 
		min-height: 500px;
	 }

			}



	@media (min-width: 1921px) and (max-width: 2048px) {
		.icon-box-15 .bx-wrapper img {
		margin-left: 20px;
			}

		.icon-box-15 { 
		padding: 30px 25px 30px 25px; 
		min-height: 480px;
	 }


			}


	@media (min-width: 1681px) and (max-width: 1920px) {

		.icon-box-15 .bx-wrapper img {
		margin-left: 20px;
			}

	.icon-box-15 { 
		padding: 30px 25px 30px 25px; 
		min-height: 500px;
	 }

	}


	@media (min-width: 1281px) and (max-width: 1680px) {

	.icon-box-15 .bx-wrapper img {
		margin-left: 0px;
			}

	.icon-box-15 { 
		padding: 30px 25px 30px 25px; 
		min-height: 500px;
	 }


	}



	@media (min-width: 1025px) and (max-width: 1280px) {

	.icon-box-15 { 
		padding: 30px 25px 30px 25px; 
		min-height: 500px;
	 }


	}

		@media (min-width: 992px) and (max-width: 1024px) {

	.icon-box-15 { 
		padding: 30px 25px 30px 25px; 
		min-height: 350px;
	 }

	.icon-box-15 .icon-box-content {
		margin: 0px;
	}

	}
	

	@media (min-width: 768px) and (max-width: 991px) {

	.icon-box-15 { 
		padding: 30px 25px 30px 25px; 
		min-height: 550px; 
	 }

	.icon-box-15 .icon-box-content {
		margin: 0px;
	}

	 	.icon-box-15 .area {
		padding: 30px 25px 30px 25px; 
				
		 }


		
	}

	@media (min-width: 481px) and (max-width: 767px) {
		.icon-box-15 {
		padding: 30px 25px 30px 25px; 
		min-height: 0px; 
		 }

		 	.icon-box-15 .area {
		padding: 10px 10px 10px 150px;
				
		 }

			}


	@media (max-width: 480px) {
		.icon-box-15 {
		padding: 30px 25px 30px 25px; 
				min-height: 0px; 
		 }

		.icon-box-15 .area {
		padding: 10px 10px 10px 50px;
				
		 }

			}


/* ==========================================================================


	/* =Icon Box 16
   ========================================================================== */
   


.icon-box-16 { 
		position: relative;
		padding: 30px 25px 30px 25px; 
		margin-bottom: 10px;
		background-color: #cfd9db;
		color: #585858;
		text-align: left;

		border-radius: 15px ;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
				
	}



	@media (min-width: 2257px) {
		.icon-box-16 .bx-wrapper img {
		margin-left: 40px;
			}

		.icon-box-16 { 
		padding: 30px 25px 30px 25px; 
		min-height: 450px;
	 }

	 	.icon-box-16 .social-icon { 
		margin: 5px 8px 5px 8px; 
		max-width:35px
	
	}

			}
	
	@media (min-width: 2049px) and (max-width: 2256px) {
		.icon-box-16 .bx-wrapper img {
		margin-left: 10px;
			}

		.icon-box-16 { 
		padding: 30px 25px 30px 25px; 
		min-height: 500px;
	 }

			}



	@media (min-width: 1921px) and (max-width: 2048px) {
		.icon-box-16 .bx-wrapper img {
		margin-left: 20px;
			}

		.icon-box-16 { 
		padding: 30px 25px 30px 25px; 
		min-height: 480px;
	 }


			}


	@media (min-width: 1681px) and (max-width: 1920px) {

		.icon-box-16 .bx-wrapper img {
		margin-left: 20px;
			}

	.icon-box-16 { 
		padding: 30px 25px 30px 25px; 
		min-height: 420px;
	 }

	}


	@media (min-width: 1281px) and (max-width: 1680px) {

	.icon-box-16 .bx-wrapper img {
		margin-left: 0px;
			}

	.icon-box-16 { 
		padding: 30px 25px 30px 25px; 
		min-height: 420px;
	 }


	}



	@media (min-width: 1025px) and (max-width: 1280px) {

	.icon-box-16 { 
		padding: 30px 25px 30px 25px; 
		min-height: 480px;
	 }


	}

		@media (min-width: 992px) and (max-width: 1024px) {

	.icon-box-16 { 
		padding: 30px 25px 30px 25px; 
		min-height: 350px;
	 }

	.icon-box-16 .icon-box-content {
		margin: 0px;
	}

	}
	

	@media (min-width: 768px) and (max-width: 991px) {

	.icon-box-16 { 
		padding: 30px 25px 30px 25px; 
		min-height: 500px; 
	 }

	.icon-box-16 .icon-box-content {
		margin: 0px;
	}

	 	.icon-box-16 .area {
		padding: 30px 25px 30px 25px; 
				
		 }


		
	}

	@media (min-width: 481px) and (max-width: 767px) {
		.icon-box-16 {
		padding: 30px 25px 30px 25px; 
		min-height: 0px; 
		 }

		 	.icon-box-16 .area {
		padding: 10px 10px 10px 150px;
				
		 }

			}


	@media (max-width: 480px) {
		.icon-box-16 {
		padding: 30px 25px 30px 25px; 
				min-height: 0px; 
		 }

		.icon-box-16 .area {
		padding: 10px 10px 10px 50px;
				
		 }

			}

			/* =Icon Box 17 paypal
   ========================================================================== */
   


.icon-box-17 { 
		position: relative;
		padding: 30px 25px 30px 25px; 
		margin-bottom: 40px;
		background-color: #cfd9db;
		color: #585858;
		text-align: left;

		border-radius: 15px ;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
				
	}

.icon-box-17 img {
		margin-bottom: 5px;

			}

.icon-box-17 .social-icon { 
		margin: 5px 8px 5px 8px; 
		max-width:35px
	
	}



			/* =Icon Box 18
   ========================================================================== */
   


.icon-box-18 { 
		position: relative;
		padding: 5px 5px 5px 5px; 
		margin-bottom: 2px;
		background-color: #a96734;
		color: #FFF;
		text-align: center;

		border-radius: 0 20px 0 0 ;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
				
	}

@media (max-width: 420px) {
		.icon-box-12 { 
		padding: 5px 5px 5px 5px; }
		
}

	
  .icon-box-18	img { 
    verticle-align: middle;
		max-width: 100%;
		border-radius: 50%;
	}		
	
	
	.icon-box-18 a { color: #8d3122; }
	.icon-box-18 a:hover { color: #252525; }
		
	.icon-box-18 > i {
		display: inline-block;
		border-radius: 20px;
		margin-bottom: 15px;
		font-size: 32px;
	
	
	}
	
	.icon-box-18 h3 { margin-top: 0px; }

	.icon-box-18 h4 { margin-bottom: 2px; 
		font-weight:400;}

	
	
	.icon-box-18 .icon-box-content {
		opacity: 1;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-18 .icon-box-content *:last-child { margin-bottom: 0; }
	






/* ==========================================================================
   =Image Box
   ========================================================================== */

	.image-box {
		overflow: hidden;
		padding: 30px;
		margin-bottom: 30px;	
		border: 1px solid #e0e0e0;
		box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.03);
	}
	
	.image-box-img { margin: -30px -30px 30px; }
	
	.image-box-img  img {
		display: block;
		width: 100%;
	}
	
	.image-box > *:last-child { margin-bottom: 0; }
	
/* ==========================================================================
   =Info box
   ========================================================================== */
   	
	.info-box {
		position: relative;
		overflow: hidden;
		padding: 100px 0;
		margin: 50px 0 0 0;
		background: #f8f8f8;
		color: #585858;

	}
	
	.info-box.bg-red-gradient { 
		background: linear-gradient(to bottom, #da2028 0%, #b4181d 100%);
		color: #000;
	}

	.info-box.bg-red { 
		background: #ff3131;
		color: #000;
	}

	.info-box.bg-red-light { 
		background: #d1c1c1;
		color: #585858;
	}	
	
	
	.info-box-img {
		position: absolute;
		z-index: 0;
		top: 0;
		width: 50%;
		height: 75%;
		background: no-repeat center;
		-webkit-background-size: cover;
				background-size: cover;
	}
	
	.info-box-bg-left .info-box-img { left: -15px; }
	.info-box-bg-right .info-box-img { right: -15px; }
	
	.info-box-img img { display: none; }
	
	#info-box-1 {
		padding-top: 100px;
		padding-bottom: 0;
	}
	
	
	
	#info-box-1 .box.box-style-2 {
		padding: 130px 60px;
		margin-top: -500px;
		margin-bottom: 0;
		background-color: #a8b6bcfa;
	}

	
	#info-box-3 {
		margin-top: 100px;
		margin-bottom: 0;
	}
	
	#info-box-4 {
		margin-top: 50px;
	}
	
	#info-box-5 {
		padding-top: 100px;
		padding-bottom: 50px;
		margin-top: 0;
	}

	#info-box-6 {
		padding-top: 20px;
		padding-bottom: 20px;
		margin-top: 0;
	}

		#info-box-6 .box-small .box-style-3 {
		padding: 20px;
		margin-top: 100px;
		margin-bottom: 10px;
		background-color: #47292a;
	}

	
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#info-box-1 .box.box-style-2 { padding: 30px 20px; }
		
	}
	
	@media (max-width: 767px) {
		
		.info-box { padding: 100px 20px 80px 20px; }
		
		.info-box-img {
			position: relative;
			width: 100%;
			background: none !important;		 
		}
		
		.info-box-bg-left .info-box-img { left: 0; }
		.info-box-bg-right .info-box-img { right: 0; }
		
		.info-box-img img { 
			display: block;
			width: 100%;
			margin-bottom: 50px;
		}
		
		#info-box-1 .box.box-style-2 {
			padding: 30px 20px;
			margin-top: 0px;
		}
		
	}
   
/* ==========================================================================
   =Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 30px;
		text-align: center;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone i {
		margin-right: 10px;
		font-size: 32px;
	}
	
	.milestone .milestone-content {
		font-size: 42px;
		line-height: 54px;
		font-weight: 700;
	}
	
	.milestone .milestone-description {
		margin-top: 5px;
		font-size: 18px; 
		line-height: 24px;
		text-transform: uppercase;
	}

		.milestone .milestone-text {
		margin-top: 10px;
		font-size: 16px; 
		font-weight: 400;
		line-height: 20px;
		text-transform: uppercase;
	}

/* ==========================================================================
   =Modal window
   ========================================================================== */	
   
	.white-popup {
		position: relative;
		width: auto;
		max-width: 500px;
		padding: 20px;
		margin: 20px auto;
		background: #fff;
	}
	
/* ==========================================================================
   =Our Process
   ========================================================================== */

/* =Horizontal process
   ========================================================================== */

	.horizontal-process-builder { 
		position: relative;
		margin-bottom: 40px;
		list-style: none;
		text-align: center; 
	}
	
	.horizontal-process-builder:before {
		position: absolute;
		z-index: 1;
		top: 60px;
		left: 130px;
		display: block;
		width: 75%;
		border-top: 1px solid #e0e0e0;
		content: "";
	}
	
	.horizontal-process-builder li { 
		float: left;
		width: 25%;  
	}
	
	.horizontal-process-builder li i,
	.horizontal-process-builder li h1 {
		position: relative;
		z-index: 2;
		display: block;
		width: 120px; 
		height: 120px;
		overflow: hidden;  
		border: 1px solid #e0e0e0;
		border-radius: 50%;
		margin: 0 auto 20px;
		outline: 5px solid #fff;
		background-color: #fff;
		background-clip: padding-box;
		color: #252525;
		font-size: 48px; 
		line-height: 120px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	}
	
	.horizontal-process-builder li:hover i,
	.horizontal-process-builder li:hover h1 {
		border-color: #da2028;
		background-color: #da2028;
		color: #fff;
	}

	.horizontal-process-builder.three-items li { width: 33.3333333333%; }
	.horizontal-process-builder.four-items li { width: 25%; }
	.horizontal-process-builder.five-items li { width: 20%; }
	
	/*
	 * 1. Clearfix hack 
	 */
	.horizontal-process-builder:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {
		
		.horizontal-process-builder li { 
			float: none;
			width: 100%;
			margin-bottom: 40px; 
		}
		
		.horizontal-process-builder:before { content: none; }
		
		.horizontal-process-builder.three-items li { width: 100%; }
		.horizontal-process-builder.four-items li { width: 100%; }
		.horizontal-process-builder.five-items li { width: 100%; }
		
	}
	
/* =Vertical process
   ========================================================================== */

	.vertical-process-builder {
		position: relative;
		margin-bottom: 50px;
		list-style: none;
	}
	
	.vertical-process-builder:before {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 26px;
		display: block;
		height: 105%;
		border-left: 2px solid #fff;
		content: "";
	}
	
	.vertical-process-builder li { margin-bottom: 30px; }
	
	.vertical-process-builder li i,
	.vertical-process-builder li h1 {
		position: relative;
		z-index: 2;
		float: left;
		display: block;
		width: 20px;
		height: 20px;
		overflow: hidden;
		border: none;
		border-radius: 50%;
		margin-left: 17px;
		outline: 10px solid #fff;
		background-color: #fff;
		background-clip: padding-box;
		color: #252525;
		font-size: 16px;
		line-height: 40px;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	
		.vertical-process-builder li h3 {
		font-size: 26px;
		line-height: 22px;
	}
	
		.vertical-process-builder li p {
		font-size: 16px;
		line-height: 20px;
	}

	
	.vertical-process-builder .process-description { margin-left: 60px; }
	
	.vertical-process-builder li:hover i,
	.vertical-process-builder li:hover h1 { 
		border-color: #da2028;
		background-color: #da2028;
		color: #fff;
	}
	
	@media (max-width: 767px) {
		
		.vertical-process-builder li i,
		.vertical-process-builder li h1 { 
		margin-left: 28px;
		
		
		
		
		}
		
		.vertical-process-builder:before { left: 36px; }
		
	}

/* ==========================================================================
   =Pie charts
   ========================================================================== */

	.pie-chart {
		position: relative;	
		margin: 50px auto 20px auto;
		text-align: center;
	}
	
	.pie-chart canvas {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
	}
	
	.pie-chart i, 
	.pie-chart .pie-chart-custom-text, 
	.pie-chart .pie-chart-percent {
		position: absolute;
		z-index: 2;
		top: 0px;
		left: 0;
		display: block;
		width: 100%;
		text-align: center;
	}
	
	.pie-chart img {
		max-width: 100%;
		vertical-align: middle;
	}
	
	.pie-chart .pie-chart-custom-text {
		position: absolute;
		top: 140px;
		left: 0;
		right: 0;
		color: #303030;
		font-size: 18px;
		font-weight: 400;
		text-transform: uppercase;
	}
	
	.pie-chart .pie-chart-percent { font-size: 60px; }
	
	.pie-chart-description {
		display: block;
		font-size: 12px;
		text-align: center;
	}


/* ==========================================================================
   =Pricing Tables
   ========================================================================== */

	.pricing-table {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding-bottom: 60px;
		margin-bottom: 30px;
		background-color: #f8f8f8;
		color: #252525;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.pricing-table-header {	margin-bottom: 40px; }

	.pricing-table-header h1 {
		margin-bottom: 0;
		color: #252525;
		font-size: 60px;
		font-weight: 700;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}
	
	.pricing-table-header h1 small {
		margin-right: -10px;
		color: #da2028;
		font-size: 48px;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}
	
	.pricing-table-header h1 sup {
		margin-left: -10px;
		font-size: 32px; 
	}

	.pricing-table-header h5 {
		padding: 30px 0;
		margin-bottom: 40px;
		background-color: #da2028;
		color: #fff;
		font-weight: 900;
		letter-spacing: 0.75px;
		text-transform: uppercase;
		-webkit-transition: background-color 0.3s;
				transition: background-color 0.3s;
	}			
		
	.pricing-table-offer {}
	
	.pricing-table-offer ul {
		margin-bottom: 50px;
		list-style: none; 
	}
	
	.pricing-table-offer ul li { 
		border-top: 1px solid #e0e0e0; 
		padding: 10px 0;
		font-weight: 700;
		text-transform: uppercase; 
	}
	
	.pricing-table-offer ul li:last-child {
		border-bottom: 1px solid #e0e0e0; 
	}
	
	.pricing-table .btn { margin: 0; }
	
	.pricing-table:hover {
		background-color: #A7D766;
		color: #fff;
	}
	
	.pricing-table:hover .pricing-table-header h5 { background-color: #252525; }
	
	.pricing-table:hover .pricing-table-header h1 { color: #252525 }
	.pricing-table:hover .pricing-table-header h1 small { color: #fff }

/* ==========================================================================
   =Progress Bar
   ========================================================================== */

	.progress-bar-description {
		display: block;
		margin-bottom: 30px;
		font-size: 14px;
		letter-spacing: 0.3px;
		font-weight: 400;
		
	}
	
	.progress-bar {
		position: relative;
		display: block;
		height: 10px;
		margin-top: 40px;
		margin-bottom: 10px;
		background-color: #b4abab;
	}
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: #da2028;
	}
	
	.progress-bar .progress-bar-outer .progress-bar-inner {
		position: absolute;
		z-index: 1;
		overflow: hidden;
		top: 0;
		left: 0;
		display: block;
		height: 100%;
		width: 100%;
	}
	
	.progress-percentage {
		position: absolute;
		top: -28px;
		right: -35px;
		font-size: 18px;
		font-weight: 900;
		letter-spacing: 0.75px;
	}

/* ==========================================================================
   =Revolution Slider
   ========================================================================== */
   
/* =Rev Slider Basics
   ========================================================================== */   
	
	
	
	.rev_slider_wrapper { margin-bottom: 0px; }

/* =Rev Slider Pager
   ========================================================================== */

   /**
 	 * 1. changing the z-index from 1000 so that the bullets don't go over the sticky menu
 	 */
   
	.tp-bullets { 
		z-index: 100; /* 1 */
	}
	   
	.tp-bullets.default .tp-bullet {
		width: 10px;
		height: 10px;
		background: rgba(255,255,255,0.5);
	}

	.tp-bullets.default .tp-bullet:hover,
	.tp-bullets.default .tp-bullet.selected { background: #da2028; }

/* =Rev Slider navigation
   ========================================================================== */

	.tp-leftarrow.default,
	.tp-rightarrow.default {
		width: 50px;
		height: 50px;
		background-color: none;
	}
	
	.tp-leftarrow.default:before,
	.tp-rightarrow.default:before {
		font-family: "FontAwesome";
		color: #ffffff;
		font-size: 40px;
		line-height: 50px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.tp-leftarrow.default:hover:before,
	.tp-rightarrow.default:hover:before { 
		background-color: none;
		color: #da2028;
	}
	
	.tp-leftarrow.default:before { content: "\f104"; }
	.tp-rightarrow.default:before { content: "\f105"; }
	
/* =Rev Slider typography
   ========================================================================== */


   .tp-caption.subtitle-2 img {
		width: 300px;
    height: 100%;
}

   	
	.tp-caption.subtitle-2 {
		color: #da2028;
		font-size: 25px;
		font-weight: 200;
		letter-spacing: 0.5px;
	}
	
	.tp-caption.subtitle {
		color: #fff;
		font-size: 48px;
		font-weight: 200;
		line-height:48px;
		letter-spacing: 0.5px;

	}
	
	.tp-caption.title {
		color: #fff;
		font-size: 50px;
		font-weight: 200;
	}
	
	.tp-caption.title-2 {
		color: #fff;
		font-size: 50px;
		font-weight: 200;
	}
	
	.tp-caption.title-3 {
		color: #303030;
		font-size: 50px;
		font-weight: 200;
	}
	
	.tp-caption.text {
		color: #fff;
		font-size: 18px;
	}
	
	.tp-caption.text-2 {
		color: #fff;
		font-size: 18px;
	}

	@media (min-width: 768px) and (max-width: 991px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.tp-caption .btn { padding: 7px 15px; }
		
	}

	@media (max-width: 767px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.tp-bullet {
			top: auto !important;
			bottom: -30px !important; 
		}
		
		.tp-caption .btn { 
			padding: 5px 10px;
			line-height: 10px;
		}
		
		
		
	}
	
	@media (max-width: 420px) {
	.rev_slider_wrap,
	.rev_slider { display: none; }
	
	}	
	
			

 	
	
	
/* ==========================================================================
   =Services list
   ========================================================================== */		
	
	.services-list {
		margin-bottom: 50px;
		list-style: none; 
	}
	
	.services-list li {
		float: left;
		width: 33.33333%;
	}
	
	.services-list.two-cols li { width: 50%; }
	.services-list.three-cols li { width: 33.33333%; }
	.services-list.four-cols li { width: 25%; }
	
	.services-list li .icon-box-6 { margin-bottom: 0; }
	
	.services-list li:nth-child(1) .icon-box-6 { background-color: #727272; }
	.services-list li:nth-child(2) .icon-box-6 { background-color: #838282; }
	.services-list li:nth-child(3) .icon-box-6 { background-color: #9f9e9e; }
	.services-list li:nth-child(4) .icon-box-6 { background-color: #b3b0b0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	.services-list:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {
		
		.services-list li {
			float: none;
			width: 100%;
		}
		.services-list.two-cols li { width: 100%; }
		.services-list.three-cols li { width: 100%; }
		.services-list.four-cols li { width: 100%; }
		
	}





/* ==========================================================================
   =Flag
   ========================================================================== */


	a.flag {
		display: inline-block;
		margin-right: 20px;
		margin-bottom: 1px;
		color: #252525;
		font-size: 18px;
		font-weight: 700;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	a.flag:last-child { margin-right: 0; }

	a.flag i {
		display: inline-block;
		margin-right: 5px;
		font-size: 22px;
		vertical-align: text-bottom;
	}
	
	a.flag:hover { text-decoration: none; }
	
	a.flag:hover { color: #0e59a0 !important; }
	a.usa-flag:hover { color: #0ea4ff !important; }

.flag {
	width: 24px;
	height: 16px;
	background: url(images/flags.png) no-repeat;
}

.flag.flag-ca {
	background-position: -120px -32px;
}


.flag.flag-hk {
	background-position: 0px -96px;
}

.flag.flag-my {
	background-position: -72px -128px;
}


.flag.flag-sg {
	background-position: -96px -192px;
}

.flag.flag-tw {
	background-position: -120px -208px;
}

.flag.flag-us {
	background-position: -168px -224px;
}







/* ==========================================================================
   =Social Media
   ========================================================================== */

	a.social-icon {
		display: inline-block;
		margin-right: 10px;
		margin-bottom: 1px;
		color: #252525;
		font-size: 16px;
		font-weight: 500;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	a.social-icon:last-child { margin-right: 0; }

	a.social-icon i {
		display: inline-block;
		margin-right: 5px;
		font-size: 22px;
		vertical-align: text-bottom;
	}
	
	a.social-icon:hover { text-decoration: none; }
	
	a.facebook-icon:hover { color: #0e59a0 !important; }
	a.twitter-icon:hover { color: #0ea4ff !important; }
	a.dribble-icon:hover { color: #ea73a0 !important; }
	a.pinterest-icon:hover { color: #d73532 !important; }
	a.googleplus-icon:hover { color: #282927 !important; }
	a.tumblr-icon:hover { color: #586980 !important; }
	a.instagram-icon:hover { color: #82685a !important; }
	a.rss-icon:hover { color: #f79638 !important; }
	a.linkedin-icon:hover { color: #018faf !important; }
	a.skype-icon:hover { color: #00b0f6 !important; }
	a.flickr-icon:hover { color: #0061db !important; }
	a.vimeo-icon:hover { color: #63879c !important; }
	a.github-icon:hover { color: #3b3b3b !important; }
	a.youtube-icon:hover { color: #cc181e !important; }
	a.windows-icon:hover { color: #6dc2e9 !important; }
	a.dropbox-icon:hover { color: #007ee5 !important; }
	a.xing-icon:hover { color: #026566 !important; }	
	a.adn-icon:hover { color: #1ea076 !important; }
	a.android-icon:hover { color: #98cb02 !important; }
	a.apple-icon:hover { color: #000000 !important; }
	a.behance-icon:hover { color: #2d9ad2 !important; }
	a.bitbucket-icon:hover { color: #214f81 !important; }
	a.bitcoin-icon:hover { color: #f7931b !important; }
	a.codepan-icon:hover { color: #000000 !important; }
	a.css3-icon:hover { color: #3289ce !important; }
	a.delicious-icon:hover { color: #3399fe !important; }
	a.deviantart-icon:hover { color: #c8da30 !important; }
	a.digg-icon:hover { color: #0080c2 !important; }
	a.drupal-icon:hover { color: #0077b9 !important; }
	a.empire-icon:hover { color: #000000 !important; }
	a.foursquare-icon:hover { color: #daecb0 !important; }
	a.git-icon:hover { color: #f34f29 !important; }
	a.gitti-icon:hover { color: #634c3e !important; }
	a.hacker-news-icon:hover { color: #f18642 !important; }
	a.html5-icon:hover { color: #e54c1f !important; }
	a.joomla-icon:hover { color: #016fb9 !important; }
	a.jsfiddle-icon:hover { color: #4679a4 !important; }
	a.linux-icon:hover { color: #fece0e !important; }
	a.maxcdn-icon:hover { color: #f36f20 !important; }
	a.openid-icon:hover { color: #fe6101 !important; }
	a.pagelines-icon:hover { color: #3783e3 !important; }
	a.pied-piper-icon:hover { color: #0c7b48 !important; }
	a.qq-icon:hover { color: #23286c !important; }
	a.rebel-icon:hover { color: #000000 !important; }
	a.reddit-icon:hover { color: #cee3f8 !important; }
	a.renren-icon:hover { color: #0d81e4 !important; }
	a.share-icon:hover { color: #252525 !important; }
	a.slack-icon:hover { color: #453744 !important; }
	a.soundcloud-icon:hover { color: #fe4e00 !important; }
	a.spotify-icon:hover { color: #80bb41 !important; }
	a.stack-exchange-icon:hover { color: #265a93 !important; }
	a.stackoverflow-icon:hover { color: #fea501 !important; }
	a.steam-icon:hover { color: #191919 !important; }
	a.stumbleupon-icon:hover { color: #f04f23 !important; }
	a.tencent-weibo-icon:hover { color: #0063a7 !important; }
	a.trello-icon:hover { color: #226784 !important; }
	a.vine-icon:hover { color: #00b081 !important; }
	a.vk-icon:hover { color: #50769d !important; }
	a.wechat-icon:hover { color: #a4dc31 !important; }
	a.weibo-icon:hover { color: #d82828 !important; }
	a.wordpress-icon:hover { color: #454442 !important; }
	a.yahoo-icon:hover { color: #4b04a8 !important; }



/* ========================================================================
   =article and navigation tabs-menu
   ========================================================================== */
   
   .article { margin-bottom: 50px; margin-top: 20px; }

	/*
	 * 1. Clearfix hack 
	 */
	.article:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0px;
		content: " ";
		clear: both;		
	}	
	
	.article .nav-links {}

	
	.article .tabs-menu {
		
		float: center;
		display: inline-block;
		margin: 0px 5px 5px 0;
    
    padding: 10px 30px;
    width: 100px;

		background-color: #da2028;
		color: #fff;
		font-size: 14px;
		line-height: 18px;
		letter-spacing:2px;
		text-align: center;
		text-decoration: none;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
				}
				
  .article .tabs-menu.short {
		
		float: center;
		display: inline-block;
		margin: 0px 5px 10px 0;
    padding: 10px 10px;

				}



	
	.article .tabs-menu:last-child { margin-right: 0; }

	.article .tabs-menu:hover { 
		background-color: #585858;
		color: #fff;
	}

		.article .tabs-menu.current { 
		background-color: #000;
		color: #fff;
	}

	.article .tabs-menu:hover,{ 
		background-color: #282828;
		color: #fff;
	}

	.article .current {}
	
	.article .tabs-menu.dots { 
		background-color: transparent;
		color: #252525;
	}
	
	.article .tabs-menu.dots:hover {}

	.article .prev,
	.article .next {}

	.article .prev:before,
	.article .next:before { font-family: "FontAwesome"; }

	.article .prev:hover,
	.article .prev:focus,
	.article .next:hover,
	.article .next:focus {}

	.article .prev {}

	.article .prev:before { content: "\f104"; }

	.article .next {}

	.article .next:before { content: "\f105"; }



.article {} /* 1 */

	.article .tabs-menu {
		margin-top: 50px;
		margin-bottom: 20px;
		list-style: none; 
	}



	
	
	.article .tabs-menu  { display: inline-block; }
	
	.article .tabs-menu  a { 
		float: left; 
		display: block;
		padding: 15px 35px;
		background-color: #f8f8f8;
		color: #252525;
		text-decoration: none;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}


	
	.article .tabs-menu a:hover,
	.article .tabs-menu .active a {
		background-color: #none;
		color: #fff;
	}

    .article .tabs-menu a:hover,
	.article .tabs-menu .active a {
		background-color: #da2028;
		color: #fff;
	}
	
	
	.article .tabs { margin-bottom: 50px; }
	
	.article .tab-content {}
	
	/*
	 * 1. Clearfix hack 
	 */
	.article .tabs-menu:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {

		.article {
		margin-top: 30px;
		margin-bottom: 10px;
		 
		}
		
		
		.article .tabs-menu {
		margin-top: 30px;
		margin-bottom: 10px;
		list-style: none; 
		}
		
	
		.article .tabs-menu { border-bottom: none; }
		
		.article .tabs-menu { display: block; }
	
		.article .tabs-menu a { 
			float: none; 
			display: block;
			padding: 20px 25px;
			border: 1px solid #e1e1e1;
			border-top: none;
			margin: 0;
		}
		
		.article .tabs-menu a:hover { text-decoration: none; }
		
		.article .tabs-menu :first-child a { border-top: 1px solid #e1e1e1; }
		
		.article .tabs-menu .active a {  
			padding: 20px 25px;
			margin: 0;
			background-color: #da2028;
			color: #fff; 
		}	
		
		.article .alignleft,
		.article .alignright { float: none; } 
	  
	}




/* =========================================================================
   = registration and navigation tabs-menu
   ========================================================================== */
   
   .registration { margin-bottom: 50px; }

	/*
	 * 1. Clearfix hack 
	 */
	.registration:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}	
	
	.registration .nav-links {}

	
	.registration .tabs-menu {
		
		float: center;
		display: inline-block;
		margin-right: 5px;
		margin-bottom: 10px;
    padding: 10px 40px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 2px;
		background-color: #F8F8F8;
		color: #252525;
		text-align: center;
		text-decoration: none;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
				}
				
	}
	
	.registration .tabs-menu:last-child { margin-right: 0; }
	.registration .tabs-menu:hover,
	.registration .tabs-menu.current { 
		background-color: #da2028;
		color: #fff;
	}

	.registration .tabs-menu:hover { 
		background-color: #585858;
		color: #fff;
	}

	.registration .current {}
	
	.registration .tabs-menu.dots { 
		background-color: transparent;
		color: #252525;
	}
	
	.registration .tabs-menu.dots:hover {}

	.registration .prev,
	.registration .next {}

	.registration .prev:before,
	.registration .next:before { font-family: "FontAwesome"; }

	.registration .prev:hover,
	.registration .prev:focus,
	.registration .next:hover,
	.registration .next:focus {}

	.registration .prev {}

	.registration .prev:before { content: "\f104"; }

	.registration .next {}

	.registration .next:before { content: "\f105"; }







.registration {} /* 1 */

	.registration .tabs-menu {
		margin-top: 50px;
		margin-bottom: 20px;
		list-style: none; 
	}



	
	
	.registration .tabs-menu  { display: inline-block; }
	
	.registration .tabs-menu  a { 
		float: left; 
		display: block;
		padding: 15px 35px;
		background-color: #f8f8f8;
		color: #252525;
		text-decoration: none;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}


.registration .tabs-menu :last-child { margin-right: 0; }

	.registration .tabs-menu :hover,
	.registration .tabs-menu .current { 
		background-color: #ba2028;
		color: #fff;
	}

	.registration .current {}
	
	.registration .tabs-menu a:hover,
	.registration .tabs-menu .active a {
		background-color: #none;
		color: #fff;
	}

    .registration .tabs-menu a:hover,
	.registration .tabs-menu .active a {
		background-color: #da2028;
		color: #fff;
	}
	
	
	.registration .tabs { margin-bottom: 50px; }
	
	.registration .tab-content {}
	
	/*
	 * 1. Clearfix hack 
	 */
	.registration .tabs-menu:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {
		
		
		.registration .tabs-menu {
		margin-top: 30px;
		margin-bottom: 10px;
		list-style: none; 
		}
		
	
		.registration .tabs-menu { border-bottom: none; }
		
		.registration .tabs-menu { display: block; }
	
		.registration .tabs-menu a { 
			float: none; 
			display: block;
			padding: 20px 25px;
			border: 1px solid #e1e1e1;
			border-top: none;
			margin: 0;
		}
		
		.registration .tabs-menu a:hover { text-decoration: none; }
		
		.registration .tabs-menu :first-child a { border-top: 1px solid #e1e1e1; }
		
		.registration .tabs-menu .active a {  
			padding: 20px 25px;
			margin: 0;
			background-color: #da2028;
			color: #fff; 
		}	
		
		.registration .alignleft,
		.registration .alignright { float: none; } 
	  
	}

















/* ==========================================================================
   =Tabs
   ========================================================================== */























/* =Horizontal tabs
   ========================================================================== */
		
   /*
    *  1. Wraps around a horizontal tab group
	*/
   
	.tabs-container {} /* 1 */

	.tabs-container .tabs-menu {
		margin-bottom: 50px;
		list-style: none; 
	}
	
	.tabs-container .tabs-menu li { display: inline-block; }
	
	.tabs-container .tabs-menu li a { 
		float: left; 
		display: block;
		padding: 15px 35px;
		background-color: #f8f8f8;
		color: #252525;
		text-decoration: none;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.tabs-container .tabs-menu li a:hover,
	.tabs-container .tabs-menu li.active a {
		background-color: #da2028;
		color: #fff;
	}
	
	.tabs-container .tabs { margin-bottom: 50px; }
	
	.tabs-container .tab-content {}
	
	/*
	 * 1. Clearfix hack 
	 */
	.tabs-container .tabs-menu:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {
	
		.tabs-container .tabs-menu { border-bottom: none; }
		
		.tabs-container .tabs-menu li { display: block; }
	
		.tabs-container .tabs-menu li a { 
			float: none; 
			display: block;
			padding: 20px 25px;
			border: 1px solid #e1e1e1;
			border-top: none;
			margin: 0;
		}
		
		.tabs-container .tabs-menu li a:hover { text-decoration: none; }
		
		.tabs-container .tabs-menu li:first-child a { border-top: 1px solid #e1e1e1; }
		
		.tabs-container .tabs-menu li.active a {  
			padding: 20px 25px;
			margin: 0;
			background-color: #da2028;
			color: #fff; 
		}	
		
		.tabs-container .alignleft,
		.tabs-container .alignright { float: none; } 
	  
	}
	
/* ==========================================================================
   =Testimonials
   ========================================================================== */

	.testimonial {
		padding: 70px 10px 70px 10px;
		margin-bottom: none;
		background-color: none;
		color: #585858;
	}
	
	.testimonial blockquote { margin-bottom: 0; }
	
	.testimonial blockquote p { font-style: normal; }
	
	.testimonial blockquote p:last-child { margin-bottom: 0; }
	
	.testimonial img {
		float: left;
		border-radius: 50%;
		margin-right: 30px;
	}
	
	.testimonial > h5 {
		margin-bottom: 15px;
		font-weight: 500;
		text-transform: uppercase;
	}
	
	.testimonial > h5 span {
		margin-left: 3px;
		color: #da2028;
		font-weight: 400;
		text-transform: none;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.testimonial:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}		
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.testimonial { padding: 30px 20px; }
		
		.testimonial img { 
			float: none;
			display: block;
			margin-bottom: 20px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.testimonial { padding: 30px 20px; }
		
		.testimonial img { 
			float: none;
			display: block;
			margin-bottom: 20px;
		}
		
	}
	
/* ==========================================================================
   =Team Member
   ========================================================================== */

	.team-member {
		overflow: hidden;
		min-height: 800px;
		margin-bottom: 50px;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.team-member-preview { position: relative; }
	
	.team-member-preview img {
	    vertical-align: middle;
		border-radius: 50%;
		width: 70%;
		margin: 50px 0 10px;

	}


	@media (min-width: 768px) {

	#team .span3 {width: 33.33334%;} 

}
	
	
	
	.team-member h4 {
		color: #252525;
		font-weight: 900;
		letter-spacing: 0.75px;
		text-transform: uppercase;
	}
	
	.team-member h5 {
		margin-bottom: 20px;
		color: #da2028; 
		font-weight: 400;
		letter-spacing: 0.75px;
		text-transform: uppercase;
	}
	
	.team-member a,
	.team-member h5 {
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.team-member-description { padding: 40px 20px 30px 20px; }
	
	.team-member-description p { text-align: center; }
	
	.team-member:hover {
		background-color: #604b4b;
		color: #fff;
	}
	
	.team-member:hover a,
	.team-member:hover h5 { color: #fff; }
	
	.team-member:hover h4 { color: #252525; }
	
/* ==========================================================================
   =Portfolio Item
   ========================================================================== */
	
	.portfolio-item { 
		position: relative; 
		margin-bottom: 30px;
	}
	
	.portfolio-item-preview { 
		position: relative; 
	  min-height: 550px;

}

	
	.portfolio-item-preview > img {
		display: block;
		width: 100%;
	}
	
	.portfolio-item-overlay {
		position: absolute; 
		top: 0; 
		right: 0; 
		bottom: 0; 
		left: 0; 
		background-color: rgba(0, 0, 0, 0.5);
		opacity: 0;
		-webkit-transform: scale(0);
			-ms-transform: scale(0);
				transform: scale(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-item-overlay a { color: #fff; }
	
	.portfolio-item:hover .portfolio-item-overlay { 
		opacity: 1;
		-webkit-transform: scale(1);
			-ms-transform: scale(1);
				transform: scale(1);
	}		
		
	.portfolio-item-overlay-actions a {
		position: absolute;
		top: 50%;
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		color: #fff;
		font-size: 32px;
		line-height: 32px;
		text-align: center;
		text-decoration: none;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.portfolio-item-description { padding: 0 30px; }
	
	.portfolio-item-description h3 {
		margin-bottom: 0;
		font-weight: 700; 
	}
	
	.portfolio-item-description h6 { color: #da2028; }
	
	.portfolio-item-overlay .portfolio-item-description {
		position: absolute;
		bottom: 30px;
		left: 0;
		width: 100%;
		color: #fff;
	}
	
	.portfolio-item-preview + .portfolio-item-description { margin: 30px 0; }
	
/* ==========================================================================
   =Portfolio Filter
   ========================================================================== */
	
	.portfolio-filter ul {
		margin: 0px 10px 40px 10px;
		list-style: none;
		text-align: center;
	}
	
	.portfolio-filter ul li { 
		display: inline-block;
		margin-right: 5px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.portfolio-filter ul li:last-child { margin-right: 0; }
	
	.portfolio-filter ul li a { 
		color: #000;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-filter ul li a:hover,
	.portfolio-filter ul li a.active { color: #da2028; }	

	.portfolio-filter .btn { background-color: #da2028; }
	.portfolio-filter .btn:hover { background-color: #585858; }
	.portfolio-filter .btn.active { background-color: #000; }



	@media (max-width: 767px) {
		
		.portfolio-filter ul li { 
			display: block;
			margin-right: 0;
	    	margin: 20px 0 20px 0;
		}
		
		.portfolio-filter ul li:last-child { margin-bottom: 0; }
		
	}








@media (max-width: 420px) {
		
		.portfolio-filter ul  { 
	    	margin: 40px 0px 0px 0;
		}
		
		
	}

/* ==========================================================================
   =Portfolio Pagination
   ========================================================================== */
	
	.portfolio-pagination { 
		margin-bottom: 30px;
		text-align: center;
	}

	/*
	 * 1. Clearfix hack 
	 */
	.portfolio-pagination:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}	
	
	.portfolio-pagination .nav-links {}

	.portfolio-pagination .page-numbers {
		display: inline-block;
		width: 46px;
		height: 46px;
		margin-right: 5px;
		background-color: #edf1f0;
		color: #252525;
		line-height: 46px;
		font-weight: 900;
		text-align: center;
		text-decoration: none;
		-webkit-transition: background-color 0.3s;
				transition: background-color 0.3s;
	}
	
	.portfolio-pagination .page-numbers:last-child { margin-right: 0; }

	.portfolio-pagination .page-numbers:hover,
	.portfolio-pagination .page-numbers.current { 
		background-color: #da2028;
		color: #fff;
	}

	.portfolio-pagination .current {}
	
	.portfolio-pagination .page-numbers.dots { 
		background-color: transparent;
		color: #252525;
	}
	
	.portfolio-pagination .page-numbers.dots:hover {}

	.portfolio-pagination .prev,
	.portfolio-pagination .next {}

	.portfolio-pagination .prev:before,
	.portfolio-pagination .next:before { font-family: "FontAwesome"; }

	.portfolio-pagination .prev:hover,
	.portfolio-pagination .prev:focus,
	.portfolio-pagination .next:hover,
	.portfolio-pagination .next:focus {}

	.portfolio-pagination .prev {}

	.portfolio-pagination .prev:before { content: "\f104"; }

	.portfolio-pagination .next {}

	.portfolio-pagination .next:before { content: "\f105"; }
   
/* ==========================================================================
   =Portfolio Grid
   ========================================================================== */

   .portfolio-grid {
		margin-bottom: 100px;
		list-style: none;
	}
	
	.portfolio-grid.gutter { margin: -15px -15px 60px -15px; }
	
	.portfolio-grid .item {
		float: left;
		width: 33.3333333333%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	.portfolio-grid.gutter .item { padding: 15px; }
	
	.portfolio-grid .portfolio-item { margin-bottom: 0; }
	
	.portfolio-grid.three-cols .item { width: 33.3333333333%; } 
	.portfolio-grid.four-cols .item { width: 25%; }
	
	.portfolio-grid .item.width-1 { width: 33.3333333333%; } 
	.portfolio-grid .item.width-2 { width: 66.6666666666%; } 
	
	/*
	 * 1. Clearfix hack 
	 */
	.portfolio-grid:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 1400px) {
		
		.portfolio-grid.four-cols .item { width: 25%; }
		
		.portfolio-grid .item.width-1 { width: 20%; } 
		.portfolio-grid .item.width-2 { width: 40%; } 
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.portfolio-grid.item,
		.portfolio-grid.three-cols .item,
		.portfolio-grid.four-cols .item { width: 50%; } 
		
		.portfolio-grid .item.width-1 { width: 50%; } 
		.portfolio-grid .item.width-2 { width: 100%; } 
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-grid .item {
			float: none;
			width: 100%; 
		}
		
		.portfolio-grid.three-cols .item,
		.portfolio-grid.four-cols .item, 
		.portfolio-grid .item.width-1, 
		.portfolio-grid .item.width-2 { width: 100%; }
		
	}
   
/* ==========================================================================
   =Portfolio Strip
   ========================================================================== */
   
   .portfolio-strip {
		margin-bottom: 30px;
		list-style: none;
	}
	
	.portfolio-strip .item {
		float: left;
		width: 25%;
	}
	
	.portfolio-strip .item:last-child { display: none; }
	
	.portfolio-strip .portfolio-item { margin-bottom: 0; } 
	
	/*
	 * 1. Clearfix hack 
	 */
	.portfolio-strip:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 1200px) {
		
		.portfolio-strip .item { width: 20%; }
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.portfolio-strip .item { width: 33.3333333333%; }
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-strip .item {
			float: none;
			width: 100%; 
		}
		
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.portfolio-strip .item {
			float: left;
			width: 50%; 
		}
		
	}
	
/* ==========================================================================
   =Bx Slider
   ========================================================================== */
   
/* =Bx Slider reset
   ========================================================================== */
   
	.bx-wrapper { margin: 0 auto 40px; }
   
	.bx-pager,
	.bx-controls-auto,
	.bx-controls-direction  { z-index: 100; }
   
/* =Bx Slider theme
   ========================================================================== */   
   
   .bx-wrapper {		
		border: none;
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
				box-shadow: none;		
		background: none;
	}

/* =Bx Slider Pager
   ========================================================================== */ 
   
	.bx-wrapper .bx-pager.bx-default-pager a, 
	.bx-wrapper .bx-pager.bx-default-pager a:focus {
		width: 10px;
		height: 10px;
		border-radius: 0;
		background: #252525;
	}
		
	.bx-wrapper .bx-pager.bx-default-pager a:hover,
	.bx-wrapper .bx-pager.bx-default-pager a.active { background: #da2028; }
	
	.bx-wrapper .bx-pager,
	.bx-wrapper .bx-controls-auto { bottom: 0px; }

	.bx-pager-none .bx-pager {
		display: none; }



/* =Bx Slider Dir Nav
   ========================================================================== */ 
   
	.bx-wrapper .bx-prev {
		left: 0;
		background: #252525 url(../images/left.png) no-repeat center center;
	}

	.bx-wrapper .bx-next {
		right: 0;
		background: #252525 url(../images/right.png) no-repeat center center;
	}
	
	.bx-wrapper .bx-prev:hover, 
	.bx-wrapper .bx-next:hover { background-position: center center; }
	
	/*
	 * 1. We are changing the original z-index from 9999 to 1000 so that it doesn't overlap other elements that need to be above this one
	 */
	.bx-wrapper .bx-controls-direction a {
		width: 48px;
		height: 48px;
		z-index: 1000; /* 1 */	
	}
	
	.images-slider.alt .bx-wrapper .bx-pager,
	.images-slider.alt .bx-wrapper .bx-controls-auto { bottom: 30px; }
	
	.images-slider.alt .bx-wrapper .bx-pager.bx-default-pager a, 
	.images-slider.alt .bx-wrapper .bx-pager.bx-default-pager a:focus { background: #f8f8f8; }
	
	.images-slider.alt .bx-wrapper .bx-pager.bx-default-pager a:hover,
	.images-slider.alt .bx-wrapper .bx-pager.bx-default-pager a.active { background: #da2028; }
	
/* ==========================================================================
   =Fullwidth Section
   ========================================================================== */	
	
	
	.fullwidth-section.custom-color-selected {
		background-color: #333;
		color: #fff;
	}
	
	.fullwidth-section.custom-color-selected a, 
	.fullwidth-section.custom-color-selected .icon-box-1:hover > i, 
	.fullwidth-section.custom-color-selected .team-member h4, 
	.fullwidth-section.custom-color-selected .portfolio-pagination .page-numbers.dots, 
	.fullwidth-section.custom-color-selected .ewf_widget_latest_posts ul li .title { color: inherit; }
	
	.fullwidth-section.custom-color-selected a:hover { color: #da2028; }
	
	.fullwidth-section.custom-color-selected .accordion-item { color: #fff; } 


	.fullwidth-section.custom-color-selected .toggle-item, 
	.fullwidth-section.custom-color-selected .portfolio-pagination .page-numbers, 
	.fullwidth-section.custom-color-selected .callout { color: #252525; }
	
	.fullwidth-section.custom-color-selected .accordion-item:hover { color: #fff; }
	.fullwidth-section.custom-color-selected .accordion-item.active { color: #585858; }

	.fullwidth-section.custom-color-selected .toggle-item:hover, 
	.fullwidth-section.custom-color-selected .toggle-item.active, 
	.fullwidth-section.custom-color-selected .pricing-table .btn, 
	.fullwidth-section.custom-color-selected .portfolio-pagination .page-numbers:hover,
	.fullwidth-section.custom-color-selected .portfolio-pagination .page-numbers.current { color: #fff; }
	
	.fullwidth-section .horizontal-process-builder li i,
	.fullwidth-section .horizontal-process-builder li h1, 
	.fullwidth-section .vertical-process-builder li i,
	.fullwidth-section .vertical-process-builder li h1 { outline: none; }
	
	.fullwidth-section.custom-color-selected .bx-wrapper .bx-pager.bx-default-pager a, 
	.fullwidth-section.custom-color-selected .bx-wrapper .bx-pager.bx-default-pager a:focus { background: rgba(255,255,255,0.3); }
	
	.fullwidth-section.custom-color-selected .bx-wrapper .bx-pager.bx-default-pager a:hover,
	.fullwidth-section.custom-color-selected .bx-wrapper .bx-pager.bx-default-pager a.active { background: #da2028; }
	
	.fullwidth-section.slanted {
      clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
		padding-bottom: 100px;
		margin-top: -1px;


     }

    .fullwidth-section.slantedtop {
      clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
	  margin-top: -150px;
	  padding-top: 200px;

     }



	
	@media (max-width: 767px) {
	
    .fullwidth-section.slanted {
      clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
		padding-bottom: 100px;

     }	
		
  .fullwidth-section.slantedtop {
     clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
	  margin-top: -60px;
	  padding-top: 150px;

     }
	}
		

		
	
	
	#bg-1 {
		padding: 100px 0 50px 0;
		margin-top: 50px;
		margin-bottom: 0;
	}
	
	#bg-2 {
		padding: 100px 0 80px 0;
		margin-bottom: 0;
		background-image: url(../../images/zero-bird.jpg);
	}
	
	#bg-3 {
		padding: 160px 0 140px 0;
		margin-bottom: 0;
	}
	
	#bg-4 {
		padding: 60px 0 10px 0;
		margin-bottom: 0;
		background-image: url(../../images/bg-world.jpg);
	}
	
	#bg-5 { background-color: #da2028; }
	
	
	#bg-black { 
		   background: #000;
	       color: #fff; }
	
	#bg-red-gradient { 
		   background: linear-gradient(to bottom, #ff3131 0%, #da2028 100%);
	       color: #fff; }  

	#bg-gray { 
		   background: #e1e1e1;
	       color: #282828; }

    #bg-dark-gray { 
		   background: #61605e;
	       color: #fff; }



	#bg-white { 
		padding: 60px 0 40px 0;
        background: #fff;
		margin-bottom: 20px;
 }


	.border-top { 
		border-top: 6px solid #da2028;
 }
 
	
	#bg-transparent{ 
		padding: 0 0 30px 0;
        background: none}

	#bg-gray-gradient-border-top { 
		border-top: 6px solid #da2028;
		padding: 60px 0 80px 0;
        background: linear-gradient(to bottom, #e1e1e1 0%, #ffffff 80%); }

	#bg-gray-gradient { 
		padding: 60px 0 80px 0;
        background: linear-gradient(to bottom, #e1e1e1 0%, #ffffff 80%); }

	#bg-light-blue { 
		padding: 60px 0 80px 0;
		background-color: #b5d0cc; 
        }

        	#bg-light-green { 
		padding: 60px 0 80px 0;
		background-color: #e0e5d5; 
        }

        	#bg-light-red { 
		padding: 60px 0 80px 0;
		background-color: #ead9d6; 
        }

    #bg-light-yellow { 
		padding: 60px 0 80px 0;
		background-color: #ecdfbb; 
        }
	
	
    #bg-green-gradient { 
		padding: 60px 0 60px 0;
        background: linear-gradient(to bottom, #8ea034 0%, #3c4510 95%); 
        color: #fff; }


    #bg-gray-green { 
		padding: 60px 0 60px 0;
        background-color: #6a6d5a; 
        color: #fff; 
}
     
    #bg-gray-blue { 
		padding: 60px 0 60px 0;
        background-color: #5b7381; 
        color: #fff; 
}


    #bg-gray-red { 
		padding: 60px 0 60px 0;
        background-color: #674f4b; 
        color: #fff; 
}

	#bg-light { 
		padding: 40px 10px 40px 10px;
        background: linear-gradient(to bottom, #f6f6f6 0%, #ffffff 100%); 
        color: #585858; }
	
	#bg-abalone { 
				background-color: #d9d1c9; 
	      color: #000; }


	#bg-red { 
				background-color: #ff3131; 
	      color: #000; }

	#bg-6 {
		padding: 100px 0 20px 0;
		margin-bottom: 50px;
		background-image: url(../../images/bg-hand.jpg);
	
	}

		#bg-hand {
		padding: 100px 0 80px 0;
		margin-bottom: 0px;
		background-image: url(../../images/bg-hand.jpg);
	
	}

#bg-north-caucasus {
		padding: 30px 20px 30px 20px;
		margin-bottom: 0;
		background-image: url(../../images/prayer/2023/aug/bg-north-caucasus.jpg);
		color: #fff; 
	}

#bg-pray {
		padding: 100px 0 80px 0;
		margin: 0px 0 0px 0;
		background-image: url(../../images/bg-camel.jpg);
	
	}

#bg-camel {
		padding: 100px 0 80px 0;
		margin: 0px 0 0px 0;
		background-image: url(../../images/bg-camel.jpg);
	
	}
	
#bg-hand {
		padding: 100px 0 80px 0;
		margin: 0px 0 0px 0;
		background-image: url(../../images/bg-hand.jpg);
	
	}
	
	
	
	#bg-people {
		padding: 100px 0 80px 0;
		margin: 0px 0 0px 0;
		background-image: url(../../images/bg-people.jpg);
	
	}

		#bg-youth {
		padding: 100px 0 80px 0;
		margin: 0px 0 0px 0;
		background-image: url(../../images/bg-youth.jpg);
	
	}


	   @media (max-width: 991px) {
		
			#bg-people {

		padding: 0px 0 60px 0;
	
	}
	
	}



	
	#bg-7 {
		padding-top: 100px;
		padding-bottom: 0;
		margin-top: 50px;
		margin-bottom: 0;
	}
	
	#bg-8 {
		padding: 100px 0;
		margin-top: 80px;
		background-image: url(../../images/header-03.jpg);
	}
	
	#bg-9 {
		padding: 100px 0 80px 0;
		margin-bottom: 0;
		background-image: url(../../content/backgrounds/3180x500.jpg);
	}
	
	#bg-10 {
		padding-top: 100px;
		padding-bottom: 0;
		margin-top: 100px;
	}
	
	#bg-11 {
		padding: 100px 0 70px 0;
		margin-top: 50px;
		background-image: url(../../content/backgrounds/1920x1320.jpg);
	}
	
	#bg-12 {
		overflow: visible;
		padding-top: 0;
		padding-bottom: 80px;
		margin-top: 100px;
		margin-bottom: 0;
		background: linear-gradient(to bottom, #e1e1e1 0%, #ffffff 100%); 
	}
	
	#bg-12 img { margin: -100px 0 30px 0; }
	
	#bg-13 {
		padding: 80px 0 60px 0;
		margin-top: 80px;
		margin-bottom: 0;
		background-color: #da2028;
	}
	
	#bg-14 {
		padding: 100px 0;
		margin-top: 70px;
		margin-bottom: 0;
		background-image: url(../../content/backgrounds/1920x1080-1.jpg);
	}
	
	#bg-15 {
		padding: 100px 0 50px 0;
		margin-top: 80px;
	}
	
	#bg-15 h1 { margin-bottom: 250px; }
	
	#bg-16 {
		margin-top: 70px;
		margin-bottom: 0;
		background-color: #da2028;
	}
	
	#bg-17 {
		background-image: url(../../content/backgrounds/1920x1080-2.jpg);
	}
	
	#bg-17:before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		width: 95%;
		background-color: #f8f8f8;
		content: "";
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
	#bg-18 {
		padding: 100px 0 80px 0;
		margin-top: 50px;
		margin-bottom: 0;
		background-image: url(../../content/backgrounds/1920x1080-3.jpg);
	}
	
	#bg-19 {
		padding: 480px 0;
		margin-bottom: -50px;
		background-image: url(../../content/backgrounds/1920x1080-4.jpg);
	}
	
#bg-app-download {
		margin-top: 0px;
		margin-bottom: 0px;
		background: linear-gradient(to bottom,  #b4181d 0%, #da2028 100%);
	  color: #fff; 
		padding: 30px 0 0px 0;
	}


#app-download .box-wrapper img { 
	max-width: 200px;
	display:  block;
}





	#bg-20 {
		margin-top: 80px;
		margin-bottom: 0;
		background-color: #da2028;
	}
	
	#bg-21 {
		padding: 100px 0;
		margin-top: 70px;
		margin-bottom: -80px;
		background-image: url(../../content/backgrounds/1920x1080-5.jpg);
	}
	
	#bg-22 {
		padding-top: 100px;
		margin-bottom: 0;
		background-image: url(../../content/backgrounds/1920x1280.jpg);
		-webkit-background-size: cover;
				background-size: cover;
	}
	
	#bg-23 {
		padding: 30px 0;
		margin-bottom: 0;
		background-color: #0e0e0e;
	}
	
	@media (min-width: 1400px) {
		
		#bg-17:before { width: 66.66666667%; }
		
	}
	
	@media (max-width: 767px) {
		
		
	#bg-north-caucasus {
		padding: 30px 160px 30px 160px;
	}


      #bg-light-blue { padding: 20px 0 20px 0;	}
		
		#bg-12 { margin-top: 200px; }
		
		#bg-12 img { margin: -130px 0 30px 0; }
		
		#bg-17:before { width: 100%; }
		
	}


	@media (max-width: 420px) {
		
       	
	#bg-1 {
		padding: 50px 0 25px 0;
		margin-top: 25px;
	}
	
	#bg-2 {
		padding: 50px 0 40px 0;
	}
	
	#bg-3 {
		padding: 80px 0 70px 0;
	}
	
	#bg-4 {
		padding: 30px 0 10px 0;
		
	}
	
	#bg-5 { background-color: #da2028; }
	
	
	#bg-black { 
		   }
	
	#bg-red-gradient { 
		   }

	#bg-gray { 
		  }

    #bg-dark-gray { 
		   }



	#bg-white { 
		padding: 5px 0 5px 0;
        background: #fff;
		margin-bottom: 10px;
 }


	.border-top { 
		border-top: 6px solid #da2028;
 }
 
	
	#bg-transparent{ 
		padding: 0 0 30px 0;
        background: none}

	#bg-gray-gradient-border-top { 
		border-top: 6px solid #da2028;
		padding: 30px 0 40px 0;
        background: linear-gradient(to bottom, #e1e1e1 0%, #ffffff 80%); }

	#bg-gray-gradient { 
		padding: 60px 0 80px 0;
        background: linear-gradient(to bottom, #e1e1e1 0%, #ffffff 80%); }

	#bg-light-blue { 
		padding: 60px 0 80px 0;
		background-color: #b5d0cc; 
        }
	
    #bg-green-gradient { 
		padding: 60px 0 60px 0;
        background: linear-gradient(to bottom, #8ea034 0%, #3c4510 95%); 
        color: #fff; }


    #bg-gray-green { 
		padding: 60px 0 60px 0;
        background-color: #6a6d5a; 
        color: #fff; 
}
     
    #bg-gray-blue { 
		padding: 60px 0 60px 0;
        background-color: #5b7381; 
        color: #fff; 
}


    #bg-gray-red { 
		padding: 60px 0 60px 0;
        background-color: #674f4b; 
        color: #fff; 
}

	#bg-light { 
		padding: 30px 0 30px 0;
        background: linear-gradient(to bottom, #e1e1e1 0%, #ffffff 95%); 
        color: #585858; }
	

	#bg-red { 
	       color: #000; }

	#bg-6 {
		padding: 100px 0 80px 0;
		margin-bottom: 0;
		background-image: url(../../images/bg-hand.jpg);
	
	}

	#bg-north-caucasus {
		padding:30px 60px 30px 30px;
	}

#bg-pray {
		padding: 100px 0 80px 0;
		margin: 0px 0 0px 0;
		background-image: url(../../images/bg-camel.jpg);
	
	}

#bg-camel {
		padding: 100px 0 80px 0;
		margin: 0px 0 0px 0;
		background-image: url(../../images/bg-camel.jpg);
	
	}
	
#bg-hand {
		padding: 100px 0 80px 0;
		margin: 0px 0 0px 0;
		background-image: url(../../images/bg-hand.jpg);
	
	}
	
	
	
	#bg-people {
		padding: 100px 0 80px 0;
		margin: 0px 0 0px 0;
		background-image: url(../../images/bg-people.jpg);
	
	}
	
	#bg-7 {
		padding-top: 100px;
		padding-bottom: 0;
		margin-top: 50px;
		margin-bottom: 0;
	}
	
	#bg-8 {
		padding: 100px 0;
		margin-top: 80px;
		background-image: url(../../images/header-03.jpg);
	}
	
	#bg-9 {
		padding: 100px 0 80px 0;
		margin-bottom: 0;
		background-image: url(../../content/backgrounds/3180x500.jpg);
	}
	
	#bg-10 {
		padding-top: 100px;
		padding-bottom: 0;
		margin-top: 100px;
	}
	
	#bg-11 {
		padding: 100px 0 70px 0;
		margin-top: 50px;
	}
	
	#bg-12 {
		overflow: visible;
		padding-top: 0;
		padding-bottom: 80px;
		margin-top: 50px;
		margin-bottom: 0;
		background: linear-gradient(to bottom, #e1e1e1 0%, #ffffff 100%); 
	}
	
	#bg-12 img { margin: -50px 0 30px 0; }
	
	#bg-13 {
		padding: 40px 0 30px 0;
		margin-top: 40px;
		margin-bottom: 0;
	}
	
	#bg-14 {
		padding: 50px 0;
		margin-top: 35px;
		margin-bottom: 0;
	}
	
	#bg-15 {
		padding: 50px 0 25px 0;
		margin-top: 40px;
	}
	
	#bg-15 h1 { margin-bottom: 150px; }
	
	#bg-16 {
		margin-top: 35px;
		margin-bottom: 0;
	}
	
	#bg-17 {
	}
	
	#bg-17:before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		width: 95%;
	}
	
	#bg-18 {
		padding: 100px 0 80px 0;
		margin-top: 50px;
		margin-bottom: 0;
	}
	
	#bg-19 {
		padding: 480px 0;
		margin-bottom: -50px;
	}
	
	#bg-20 {
		margin-top: 80px;
		margin-bottom: 0;
		background-color: #da2028;
	}
	
	#bg-21 {
		padding: 50px 0;
		margin-top: 35px;
		margin-bottom: -80px;
	}
	
	#bg-22 {
		padding-top: 50px;
		margin-bottom: 0;
		
	}
	
	#bg-23 {
		padding: 15px 0;
		margin-bottom: 0;
	}
}