/*------------------------------------*\
		#BACKGROUNDS
\*------------------------------------*/
.bg-theme {
	background-color: #e11d07 !important;
}

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

.bg-dark-gray {
	background-color: #3a3a3a;
}

.bg-dark {
	background-color: #222222 !important;
}

.bg-blue {
	background-color: #165153 !important;
}

.bg-secondary {
	background-color: #282828;
}

/* Background Image */
.bg-section {
	position           : relative;
	overflow           : hidden;
	z-index            : 1;
	background-size    : cover;
	background-repeat  : no-repeat;
	background-position: center center;
	width              : 100%;
	height             : 100%;
}

.bg-parallax {
	background-attachment: fixed;
}

.bg-overlay:before {
	content : "";
	display : inline-block;
	height  : 100%;
	left    : 0;
	position: absolute;
	top     : 0;
	width   : 100%;
	z-index : -1;
}

.bg-overlay-2:before {
	content : "";
	display : inline-block;
	height  : 100%;
	left    : 0;
	position: absolute;
	top     : 0;
	width   : 100%;
	z-index : 0;
}

.bg-overlay-light:before {
	background-color: #ffffff;
	opacity         : 0.8;
}

.bg-overlay-dark:before {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#1B1A1A), color-stop(90%, rgba(27, 26, 26, 0)));
	background-image: -o-linear-gradient(top, #1B1A1A 0%, rgba(27, 26, 26, 0) 90%);
	background-image: linear-gradient(180deg, #1B1A1A 0%, rgba(27, 26, 26, 0) 90%);
}

.bg-overlay-dark2:before {
	background-color: #1B1A1A5e;
}

.bg-overlay-theme:before {
	background-color: #e11d07;
	opacity         : 0.9;
}

.bg-overlay-theme2:before {
	background-color: #e11d07;
	opacity         : 0.96;
}

/* Background Video */
.bg-video {
	position: relative;
}

.bg-video iframe {
	position         : absolute;
	top              : 0;
	left             : 0;
	right            : 0;
	-o-object-fit    : cover;
	object-fit       : cover;
	width            : 100%;
	height           : 100%;
	-webkit-transform: rotateZ(0);
	-ms-transform    : rotate(0);
	transform        : rotateZ(0);
}

.bg-video h2 {
	text-transform   : capitalize;
	position         : absolute;
	top              : 50%;
	left             : 50%;
	-webkit-transform: translate(-50%);
	-ms-transform    : translate(-50%);
	transform        : translate(-50%);
	z-index          : 5;
}

.no-shadow {
	-webkit-box-shadow: none !important;
	box-shadow        : none !important;
}

.bg-animate {
	background-size    : cover;
	background-position: 0px 0px;
	background-repeat  : repeat-x;
	-webkit-animation  : animatedBackground 30s linear infinite;
	animation          : animatedBackground 30s linear infinite;
}

@-webkit-keyframes animatedBackground {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 100% 0;
	}
}

@keyframes animatedBackground {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 100% 0;
	}
}

/* Elements Background */
.el-bg {
	height           : 550px;
	display          : -webkit-box;
	display          : -ms-flexbox;
	display          : flex;
	-webkit-box-pack : center;
	-ms-flex-pack    : center;
	justify-content  : center;
	-webkit-box-align: center;
	-ms-flex-align   : center;
	align-items      : center;
}

.el-bg h2 {
	color: #ffffff;
}


/* Custom, iPhone Retina */
/*------------------------------------*\
		#Counters
\*------------------------------------*/
.counters {
	padding-top   : 140px;
	padding-bottom: 275px;
	position      : relative;
	overflow      : visible;
}

.counters .counters-container {
	display          : -webkit-box;
	display          : -ms-flexbox;
	display          : flex;
	-webkit-box-align: center;
	-ms-flex-align   : center;
	align-items      : center;
	-webkit-box-pack : justify;
	-ms-flex-pack    : justify;
	justify-content  : space-between;
}

@media screen and (max-width: 767.98px) {
	.counters .counters-container {
		-webkit-box-orient   : vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction   : column;
		flex-direction       : column;
	}
}

.counters .counter-img {
	width             : 850px;
	height            : 320px;
	border-radius     : 4px;
	-webkit-box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
	box-shadow        : 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
	position          : absolute;
	bottom            : -155px;
}

@media screen and (max-width: 991.98px) {
	.counters .counter-img {
		left : 0px;
		width: calc(100% - 40px);
	}
}

.counter {
	background-color     : #e11d07;
	color                : #ffffff;
	border-radius        : 4px;
	padding              : 25px 40px 30px;
	display              : -webkit-inline-box;
	display              : -ms-inline-flexbox;
	display              : inline-flex;
	-webkit-box-orient   : vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction   : column;
	flex-direction       : column;
	-webkit-box-align    : center;
	-ms-flex-align       : center;
	align-items          : center;
}

.counter .counter-icon {
	margin-bottom: 15px;
}

.counter .counter-icon i::before {
	font-size  : 65px;
	margin-left: 0;
}

.counter .counter-num {
	margin-bottom: 6px;
	display      : -webkit-box;
	display      : -ms-flexbox;
	display      : flex;
}

.counter .counter-num span,
.counter .counter-num p {
	font-size  : 38px;
	font-family: "Rubik", sans-serif;
	font-weight: 400;
	line-height: 29px;
	display    : inline-block;
	color      : #ffffff;
}

.counter .counter-num p {
	margin-bottom: 0;
}

.counter .counter-name h6 {
	margin-bottom : 0;
	font-family   : "Roboto", sans-serif;
	font-weight   : 700;
	font-size     : 14px;
	line-height   : 29px;
	color         : #ffffff;
	text-transform: capitalize;
}

.counter.counter-2 {
	background-color: transparent;
	padding         : 0;
}

@media screen and (min-width: 992px) {
	.counter.counter-2 {
		-webkit-box-align: start;
		-ms-flex-align   : start;
		align-items      : flex-start;
		border-radius    : 0;
		min-width        : 200px;
	}
}

.counter.counter-2:hover .counter-icon {
	-webkit-animation: Bounce 1.5s ease-in-out;
	animation        : Bounce 1.5s ease-in-out;
}

.counter.counter-2 .counter-icon i {
	color: #fac7c7;
}

@-webkit-keyframes Bounce {
	0% {
		-webkit-transform: translateY(0px);
		transform        : translateY(0px);
	}

	25% {
		-webkit-transform: translateY(-15px);
		transform        : translateY(-15px);
	}

	50% {
		-webkit-transform: translateY(0px);
		transform        : translateY(0px);
	}

	75% {
		-webkit-transform: translateY(-15px);
		transform        : translateY(-15px);
	}

	100% {
		-webkit-transform: translateY(0px);
		transform        : translateY(0px);
	}
}

@keyframes Bounce {
	0% {
		-webkit-transform: translateY(0px);
		transform        : translateY(0px);
	}

	25% {
		-webkit-transform: translateY(-15px);
		transform        : translateY(-15px);
	}

	50% {
		-webkit-transform: translateY(0px);
		transform        : translateY(0px);
	}

	75% {
		-webkit-transform: translateY(-15px);
		transform        : translateY(-15px);
	}

	100% {
		-webkit-transform: translateY(0px);
		transform        : translateY(0px);
	}
}

/*------------------------------------*\
		#Call To Action
\*------------------------------------*/
.cta {
	overflow      : visible;
	padding-top   : 147px;
	padding-bottom: 0;
}

.cta .icon-set {
	display        : -webkit-box;
	display        : -ms-flexbox;
	display        : flex;
	-ms-flex-pack  : distribute;
	justify-content: space-around;
	margin-top     : 47px;
}

@media screen and (max-width: 991.98px) {
	.cta .icon-set {
		margin-bottom: 30px;
	}
}

.cta .icon-set .icon-panel {
	display              : -webkit-box;
	display              : -ms-flexbox;
	display              : flex;
	-webkit-box-orient   : vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction   : column;
	flex-direction       : column;
	-webkit-box-align    : center;
	-ms-flex-align       : center;
	align-items          : center;
}

@media screen and (min-width: 992px) {
	.cta .icon-set .icon-panel {
		-webkit-box-align: start;
		-ms-flex-align   : start;
		align-items      : flex-start;
		margin-left      : 50px;
	}
}

.cta .icon-set .icon-panel .icon {
	margin-bottom: 20px;
}

.cta .icon-set .icon-panel .icon::before {
	color      : #ffffff;
	font-size  : 70px;
	margin-left: 0;
}

.cta .icon-set .icon-panel span {
	font-family   : "Rubik", sans-serif;
	font-weight   : 500;
	font-size     : 18px;
	line-height   : 27px;
	color         : #ffffff;
	text-transform: capitalize;
	text-align    : center;
}

@media screen and (min-width: 992px) {
	.cta .icon-set .icon-panel span {
		text-align: left;
	}
}

.cta .icon-set.icon-set2 {
	margin-top      : 44px;
	margin-bottom   : 37px;
	-webkit-box-pack: start;
	-ms-flex-pack   : start;
	justify-content : flex-start;
}

@media screen and (max-width: 991.98px) {
	.cta .icon-set.icon-set2 {
		-webkit-box-pack: justify;
		-ms-flex-pack   : justify;
		justify-content : space-between;
		margin-bottom   : 40px;
	}
}

.cta .icon-set.icon-set2 .icon-panel {
	max-width   : 130px;
	margin-right: 65px;
}

@media screen and (max-width: 991.98px) {
	.cta .icon-set.icon-set2 .icon-panel {
		margin-right: 0;
	}
}

@media screen and (min-width: 992px) {
	.cta .icon-set.icon-set2 .icon-panel {
		margin-left: 0px;
	}
}

@media screen and (min-width: 992px) {
	.cta .prief-set {
		-webkit-transform: translateY(-5px);
		-ms-transform    : translateY(-5px);
		transform        : translateY(-5px);
	}
}

.cta .prief-set p {
	font-family  : "Roboto", sans-serif;
	font-weight  : 500;
	font-size    : 17px;
	line-height  : 27px;
	color        : #f9f9f9;
	margin-bottom: 42px;
}

@media screen and (max-width: 991.98px) {
	.cta .prief-set p {
		text-align: center;
	}
}

.cta .prief-set .advantages-list {
	margin       : 0;
	display      : -webkit-box;
	display      : -ms-flexbox;
	display      : flex;
	-ms-flex-wrap: wrap;
	flex-wrap    : wrap;
}

@media screen and (min-width: 992px) {
	.cta .prief-set .advantages-list {
		text-align: left;
	}
}

.cta .prief-set .advantages-list li {
	display         : -webkit-box;
	display         : -ms-flexbox;
	display         : flex;
	-webkit-box-flex: 0;
	-ms-flex        : 0 0 50%;
	flex            : 0 0 50%;
	max-width       : 50%;
	font-family     : "Roboto", sans-serif;
	font-weight     : 700;
	font-size       : 15px;
	line-height     : 30px;
	color           : #f9f9f9;
	text-transform  : capitalize;
	margin-bottom   : 5px;
}

@media screen and (max-width: 467px) {
	.cta .prief-set .advantages-list li {
		-webkit-box-flex: 0;
		-ms-flex        : 0 0 100%;
		flex            : 0 0 100%;
		max-width       : 100%;
	}
}

.cta .prief-set .advantages-list li i {
	color       : #f9f9f9;
	line-height : 30px;
	margin-right: 10px;
}

.cta .prief-set.prief-set-2 {
	margin-bottom: 118px;
}

.cta .contact-panel {
	-webkit-box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
	box-shadow        : 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
	-webkit-transform : translateY(340px);
	-ms-transform     : translateY(340px);
	transform         : translateY(340px);
	margin-top        : -340px;
	padding-top       : 90px;
}

.cta .action-panel {
	position: relative;
}

.cta .action-panel .action-panel-img {
	position: relative;
	height  : 460px;
}

.cta .action-panel .action-panel-img::before {
	content   : '';
	position  : absolute;
	top       : 0;
	left      : 0;
	bottom    : 0;
	width     : 100%;
	height    : 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 26, 26, 0)), color-stop(0%, rgba(27, 26, 26, 0)), color-stop(105%, #1b1a1a));
	background: -o-linear-gradient(top, rgba(27, 26, 26, 0) 0%, rgba(27, 26, 26, 0) 0%, #1b1a1a 105%);
	background: linear-gradient(180deg, rgba(27, 26, 26, 0) 0%, rgba(27, 26, 26, 0) 0%, #1b1a1a 105%);
}

.cta .action-panel .action-panel-img img {
	height       : 460px;
	max-width    : 100%;
	border-radius: 4px;
}

.cta .action-panel .action-panel-content {
	position             : absolute;
	bottom               : 0;
	left                 : 0;
	background-color     : #e11d07;
	-webkit-transition   : 0.3s ease-in-out;
	-o-transition        : 0.3s ease-in-out;
	transition           : 0.3s ease-in-out;
	padding              : 35px 40px;
	border-radius        : 0 4px 0 4px;
	display              : -webkit-box;
	display              : -ms-flexbox;
	display              : flex;
	-webkit-box-orient   : vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction   : column;
	flex-direction       : column;
	max-width            : 230px;
	z-index              : 99;
}

.cta .action-panel .action-panel-content:hover {
	background-color: #1b1a1a;
}

.cta .action-panel .action-panel-content .panel-icon {
	margin-bottom: 10px;
}

.cta .action-panel .action-panel-content .panel-icon i::before {
	color      : #ffffff;
	font-size  : 50px;
	margin-left: 0;
}

.cta .action-panel .action-panel-content .panel-heading {
	margin-bottom: 13px;
}

.cta .action-panel .action-panel-content .panel-heading h3 {
	font-family       : "Roboto", sans-serif;
	font-weight       : 700;
	font-size         : 16px;
	line-height       : 29px;
	margin-bottom     : 0;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition     : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
	color             : #ffffff;
}

.cta .action-panel .action-panel-content a i {
	display           : inline-block;
	color             : #ffffff;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition     : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}

.cta .action-panel .action-panel-content a:hover i {
	-webkit-transform: translateX(10px);
	-ms-transform    : translateX(10px);
	transform        : translateX(10px);
}

.cta .action-panel .action-panel-content.inverted {
	background-color: #1b1a1a;
}

.cta .action-panel .action-panel-content.inverted:hover {
	background-color: #e11d07;
}

.cta.cta-2 {
	padding-top: 130px;
	position   : relative;
	z-index    : 6;
}

.cta.cta-2 .contact-panel {
	padding-top      : 98px;
	-webkit-transform: translateY(507px);
	-ms-transform    : translateY(507px);
	transform        : translateY(507px);
	margin-top       : -507px;
}

.cta.cta-2 .contact-panel.contact-panel-2 {
	padding-top: 0;
}

.cta.cta-2 .contact-panel .contact-types .button {
	background-color: #2e1b19;
}

.cta.cta-2 .contact-panel .contact-types .button.active {
	background-color: #ffffff;
	color           : #1b1a1a;
}

.cta.cta-3 {
	padding-top: 130px;
}

.cta.cta-3 .action-panels {
	padding-top      : 95px;
	-webkit-transform: translateY(245px);
	-ms-transform    : translateY(245px);
	transform        : translateY(245px);
	margin-top       : -245px;
}

.cta.cta-4 {
	padding-top: 215px;
}

.cta.cta-5 {
	padding-top          : 117px;
	padding-bottom       : 65px;
	background-image     : url(../images/background/pattern-red.png);
	background-attachment: fixed;
}

@media screen and (min-width: 992px) {
	.cta.cta-5 {
		padding-left : 130px;
		margin-bottom: -119px;
	}
}

@media screen and (max-width: 991.98px) {
	.cta.cta-5 {
		padding-left : 70px;
		padding-right: 70px;
	}
}

@media screen and (max-width: 767.98px) {
	.cta.cta-5 {
		padding-left : 30px;
		padding-right: 30px;
	}
}

.cta.cta-6 {
	padding-left : 130px;
	padding-right: 135px;
	overflow     : visible;
}

@media screen and (max-width: 991.98px) {
	.cta.cta-6 {
		padding-left : 50px;
		padding-right: 50px;
	}
}

@media screen and (max-width: 767.98px) {
	.cta.cta-6 {
		padding-left : 20px;
		padding-right: 20px;
	}
}

.cta.cta-6 .video-btn {
	margin-bottom: 59px;
}

@media screen and (max-width: 991.98px) {
	.cta.cta-6 .video-btn {
		display         : -webkit-box;
		display         : -ms-flexbox;
		display         : flex;
		-webkit-box-pack: center;
		-ms-flex-pack   : center;
		justify-content : center;
	}
}

.cta.cta-6 .contact-panel {
	position         : relative;
	z-index          : 8;
	-webkit-transform: translateY(100px);
	-ms-transform    : translateY(100px);
	transform        : translateY(100px);
	margin-top       : -100px;
	width            : 700px;
	padding-top      : 0;
}

@media (min-width: 992px) and (max-width: 1275px) {
	.cta.cta-6 .contact-panel {
		width: 550px;
	}
}

@media screen and (max-width: 991.98px) {
	.cta.cta-6 .contact-panel {
		width: 100%;
	}
}

.cta.cta-6 .contact-panel .contact-types {
	padding         : 50px 50px 10px;
	background-color: #ffffff;
}

@media screen and (max-width: 767.98px) {
	.cta.cta-6 .contact-panel .contact-types {
		padding: 50px 20px 10px;
	}
}

.cta.cta-6 .contact-panel .contact-types .button {
	height          : 71px;
	color           : #1b1a1a;
	background-color: #eaeaea;
	border-radius   : 4px 0 0 4px;
}

.cta.cta-6 .contact-panel .contact-types .button:last-child {
	border-radius: 0 4px 4px 0;
}

@media screen and (max-width: 767.98px) {
	.cta.cta-6 .contact-panel .contact-types .button {
		border-radius: 4px 4px 0 0;
	}

	.cta.cta-6 .contact-panel .contact-types .button:last-child {
		border-radius: 0px 0px 4px 4px;
	}
}

.cta.cta-6 .contact-panel .contact-types .button.active {
	background-color: #e11d07;
	color           : #ffffff;
}

@media screen and (max-width: 767.98px) {
	.cta.cta-6 .contact-panel .contact-card {
		padding-left : 20px;
		padding-right: 20px;
	}
}

/*------------------------------------*\
		#404
\*------------------------------------*/
.page-404 h3 {
	font-size    : 280px;
	font-weight  : 600;
	line-height  : 1.1;
	margin-bottom: 0;
}

.page-404 p {
	color        : #a5a5a5;
	font-size    : 15px;
	font-weight  : 400;
	line-height  : 23px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
	.page-404 h3 {
		font-size: 150px;
	}

	.page-404 .btn {
		width: 125px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.page-404 h3 {
		font-size: 180px;
	}
}

/*--------------------------------
		#services
---------------------------------*/
@media screen and (min-width: 992px) {
	.services {
		padding-top   : 130px;
		padding-bottom: 60px;
	}
}

.services .service-panel {
	margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
	.services .service-panel {
		max-width   : 370px;
		margin-right: auto;
		margin-left : auto;
	}
}

.services .service-panel:hover .service-panel-container .service-img img {
	-webkit-transform: scale(1.1);
	-ms-transform    : scale(1.1);
	transform        : scale(1.1);
}

.services .service-panel .service-panel-container {
	overflow: hidden;
}

.services .service-panel .service-panel-container .service-img {
	position     : relative;
	overflow     : hidden;
	border-radius: 4px;
	margin       : 0 auto;
	max-width    : 370px;
}

.services .service-panel .service-panel-container .service-img::before {
	content   : '';
	position  : absolute;
	top       : 0;
	left      : 0;
	right     : 0;
	width     : 100%;
	height    : 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(transparent));
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.3), transparent);
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.3), transparent);
	z-index   : 1;
}

.services .service-panel .service-panel-container .service-img a {
	position: absolute;
	top     : 0;
	left    : 0;
	right   : 0;
	width   : 100%;
	height  : 100%;
	z-index : 2;
}

.services .service-panel .service-panel-container .service-img img {
	max-width         : 100%;
	height            : auto;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition     : 0.5s ease-in-out;
	transition        : 0.5s ease-in-out;
}

.services .service-panel .service-panel-container .service-content {
	padding: 33px 50px 0;
}

@media screen and (max-width: 991px) {
	.services .service-panel .service-panel-container .service-content {
		padding: 30px;
	}
}

@media screen and (min-width: 992px) {
	.services .service-panel .service-panel-container .service-content {
		text-align: left;
	}
}

.services .service-panel .service-panel-container .service-content .service-title h4 {
	font-family   : "Rubik", sans-serif;
	font-size     : 21px;
	font-weight   : 500;
	line-height   : 29px;
	margin-bottom : 13px;
	text-transform: capitalize;
}

.services .service-panel .service-panel-container .service-content .service-title h4 a {
	color: #1b1a1a;
}

.services .service-panel .service-panel-container .service-content .service-title h4 a:hover:hover {
	color: #e11d07;
}

.services .service-panel .service-panel-container .service-content .service-desc {
	margin-bottom: 27px;
}

.services .service-panel .service-panel-container .service-content .service-desc p {
	font-family  : "Roboto", sans-serif;
	color        : #9b9b9b;
	font-size    : 14px;
	font-weight  : 400;
	line-height  : 24px;
	margin-bottom: 0;
}

.services .service-panel .service-panel-container .service-content .service-list {
	margin-bottom: 32px;
}

.services .service-panel .service-panel-container .service-content .service-list ul {
	margin-bottom: 0;
}

.services .service-panel .service-panel-container .service-content .service-list ul li {
	margin-bottom: 10px;
}

.services .service-panel .service-panel-container .service-content .service-list ul li:last-child {
	margin-bottom: 0;
}

.services .service-panel .service-panel-container .service-content .service-list ul li a {
	font-family      : "Roboto", sans-serif;
	font-size        : 15px;
	font-weight      : 700;
	color            : #222222;
	text-transform   : capitalize;
	display          : -webkit-box;
	display          : -ms-flexbox;
	display          : flex;
	-webkit-box-align: center;
	-ms-flex-align   : center;
	align-items      : center;
	-webkit-box-pack : start;
	-ms-flex-pack    : start;
	justify-content  : flex-start;
	cursor           : pointer;
}

.services .service-panel .service-panel-container .service-content .service-list ul li a:hover {
	color: #e11d07;
}

.services .service-panel .service-panel-container .service-content .service-list ul li a i {
	font-size   : 20px;
	color       : #e11d07;
	margin-right: 10px;
}

.services .service-panel .service-panel-container .service-content .service-more a {
	font-size         : 14px;
	font-weight       : 700;
	background-color  : #1b1a1a;
	color             : #ffffff;
	font-family       : "Roboto", sans-serif;
	text-transform    : capitalize;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition     : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
	width             : 130px;
	height            : 40px;
	line-height       : 40px;
}

.services .service-panel .service-panel-container .service-content .service-more a:hover {
	background-color: #e11d07;
}

.services .service-panel .service-panel-container .service-content .service-more a i {
	color       : #ffffff;
	display     : inline-block;
	font-size   : 11px;
	margin-right: 10px;
}

.services.services-2 {
	overflow: visible;
	position: relative;
	z-index : 7;
}

.services.services-2 .services-container {
	-webkit-transform: translateY(215px);
	-ms-transform    : translateY(215px);
	transform        : translateY(215px);
	margin-top       : -215px;
}

.services.services-2 .services-container .service-panel {
	-webkit-box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
	box-shadow        : 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
}

.services.services-2 .services-container .service-panel .service-panel-container .service-img {
	border-radius: 4px 4px 0 0;
}

.services.services-2 .services-container .service-panel .service-panel-container .service-content {
	border-radius   : 0 0 4px 4px;
	background-color: #ffffff;
	padding-bottom  : 45px;
}

.services.services-3 {
	padding-top: 254px;
}

.services-bar {
	margin  : 0;
	padding : 0;
	overflow: visible;
	z-index : 9999;
	position: relative;
}

.services-bar .row {
	-webkit-box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
	box-shadow        : 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
	-webkit-transform : translateY(-62px);
	-ms-transform     : translateY(-62px);
	transform         : translateY(-62px);
	border-radius     : 3px;
	overflow          : hidden;
}

.services-bar .services-bar-card {
	height            : 125px;
	padding           : 0 30px;
	display           : -webkit-box;
	display           : -ms-flexbox;
	display           : flex;
	display           : flex;
	-webkit-box-pack  : start;
	-ms-flex-pack     : start;
	justify-content   : flex-start;
	-webkit-box-align : center;
	-ms-flex-align    : center;
	align-items       : center;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition     : 0.5s ease-in-out;
	transition        : 0.5s ease-in-out;
	background-color  : #ffffff;
	border-right      : 3px solid #eaeaea;
}

@media screen and (max-width: 991.98px) {
	.services-bar .services-bar-card {
		border-bottom: 3px solid #eaeaea;
	}
}

@media screen and (max-width: 767.98px) {
	.services-bar .services-bar-card {
		border-right: 0;
	}
}

.services-bar .services-bar-card:hover,
.services-bar .services-bar-card.active {
	background-color: #e11d07;
	border-color    : #e11d07;
}

.services-bar .services-bar-card:hover .thumb-icon,
.services-bar .services-bar-card.active .thumb-icon {
	color: #ffffff;
}

.services-bar .services-bar-card:hover .thumb-body p,
.services-bar .services-bar-card.active .thumb-body p {
	color: #ffffff;
}

.services-bar .services-bar-card:hover .thumb-body h3,
.services-bar .services-bar-card.active .thumb-body h3 {
	color: #ffffff;
}

.services-bar .services-bar-card:hover .thumb-body h3 a,
.services-bar .services-bar-card.active .thumb-body h3 a {
	color: #ffffff;
}

.services-bar .services-bar-card:last-child {
	border-right: 0;
}

.services-bar .services-bar-card .thumb-icon {
	margin-right      : 20px;
	color             : #e11d07;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition     : 0.5s ease-in-out;
	transition        : 0.5s ease-in-out;
}

.services-bar .services-bar-card .thumb-icon::before {
	font-size  : 58px;
	margin-left: 0;
}

.services-bar .services-bar-card .thumb-body p {
	font-family       : "Roboto", sans-serif;
	font-weight       : 400;
	font-size         : 14px;
	line-height       : 33px;
	color             : #9b9b9b;
	text-transform    : capitalize;
	margin-bottom     : 0;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition     : 0.5s ease-in-out;
	transition        : 0.5s ease-in-out;
}

.services-bar .services-bar-card .thumb-body h3 {
	font-family       : "Rubik", sans-serif;
	font-weight       : 500;
	font-size         : 18px;
	line-height       : 25px;
	color             : #1b1a1a;
	text-transform    : capitalize;
	margin-bottom     : 0;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition     : 0.5s ease-in-out;
	transition        : 0.5s ease-in-out;
}

.services-bar .services-bar-card .thumb-body h3 a {
	color: #1b1a1a;
}


.default-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}


.header.header-transparent {
	background-color: transparent;
	position        : relative;
	top             : 0;
	left            : 0;
	width           : 100%;
	z-index         : 1001;
}

.header.header-transparent .navbar-brand .logo-dark {
	display: none;
}



.how-it-work-area {
    background: url(assets/img/bg-img/howit.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 115px 0 82px;
}

.row.it-shape {
    position: relative;
    padding-top: 40px;
}

.row.it-shape:after {
    position: absolute;
    content: "";
    top: -7px;
    left: 162px;
    background: url(assets/img/icon/sp.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 10%;
    margin: auto;
}

.single-how-it-work {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.how-it-work-icon i {
    display: inline-block;
    height: 150px;
    width: 150px;
    text-align: center;
    line-height: 172px;
    background: #F5CFCC;
    font-size: 80px;
    color: #F02830;
    border-radius: 100px 100px 100px 0;
    transition:.5s;
}

.how-it-work-content h2 {
    font-size: 22px;
    padding: 15px 0 12px;
}

.single-how-it-work:hover .how-it-work-icon i{
    background:#FF3C00;
    color:#fff;
}

.icon-box {
   font-size: 2rem;
}

