@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap');
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	color: #444;
}
section {
	width: 100%;
	float: left;
	position: relative;
}
a {
	color: #444;
	transition: All 1s ease;
	-webkit-transition: All 1s ease;
	-moz-transition: All 1s ease;
	-o-transition: All 1s ease;
	text-decoration: none;
}
a:hover {
	color: #d52c2f;
	text-decoration: none;
}
.img-responsive {
	width:100%;
	float:left;
}
ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
a:focus, button:focus {
	outline: none
}
.sec-padding {
	padding:80px 0;
}
.custom-btn {
	position: relative;
	color: #d52c2f;
	text-transform: uppercase;
	border: 2px solid #d52c2f;
	padding: 0.5em 1em;
	-webkit-border-radius: 20px;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius: 20px;
	-moz-border-radius-bottomright: 0;
	border-radius: 20px;
	border-bottom-right-radius: 0;
	display: inline-block;
}
.custom-btn::before {
 content: "";
 display: block;
 position: absolute;
 width: 10%;
 background: #444;
 height: 0.3em;
 right: 20%;
 top: -0.21em;
 transform: skewX(-45deg);
 -webkit-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
 transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}
.custom-btn::after {
 content: "";
 display: block;
 position: absolute;
 width: 10%;
 background: #444;
 height: 0.3em;
 left: 20%;
 bottom: -0.25em;
 transform: skewX(45deg);
 -webkit-transition: all 0.45 cubic-bezier(0.86, 0, 0.07, 1);
 transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}
.custom-btn:hover::before {
 right: 80%;
}
.custom-btn:hover::after {
 left: 80%;
}
.sec-hd {
	font-weight: 600;
	display: inline-block;
	margin-bottom: 30px;
	font-size: 52px;
	text-shadow: 4px 4px 0px transparent, 7px 7px 0px rgba(0, 0, 0, 0.2);
}
 @media (min-width: 1400px) {
 .container, .container-lg, .container-md, .container-sm, .container-xl {
 max-width: 1340px;
}
}
/* header css here */
.animenu {
	width: 100%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	position: fixed;
	padding: 15px 0;
	top: 0;
	z-index: 99999;
	left: 0;
}
nav.animenu.sticky {
	background: #fff;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	padding: 7px 0;
}
.logo {
	width: 220px;
	float: left;
}
.logo img {
	width: 100%;
	float: left;
}
.animenu-nav {
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	position: relative;
	float: right;
}
.animenu-toggle {
	display: none;
	cursor: pointer;
	background-color: #444;
	border: 0;
	padding: 10px;
	height: 40px;
	width: 40px;
}
.animenu-nav--open {
	display: block;
}
.animenu-toggle:hover {
	background-color: #d62d30;
}
.animenu-toggle-bar {
	display: block;
	width: 20px;
	height: 2px;
	background-color: #fff;
	transition: 0.15s cubic-bezier(0.75, -0.55, 0.25, 1.55);
}
.animenu-toggle-bar + .animenu-toggle-bar {
	margin-top: 4px;
}
.animenu-toggle--active .animenu-toggle-bar {
	margin: 0;
	position: absolute;
}
.animenu-toggle--active .animenu-toggle-bar:nth-child(1) {
 transform: rotate(45deg);
}
.animenu-toggle--active .animenu-toggle-bar:nth-child(2) {
 opacity: 0;
}
.animenu-toggle--active .animenu-toggle-bar:nth-child(3) {
 transform: rotate(-45deg);
}
.animenu-toggle {
	display: none;
}
.animenu-nav > li {
	position: relative;
	font-size: 16px;
	margin: 15px 15px;
	float: left;
}
.animenu-nav > li > a {
	text-transform: uppercase;
	color: #fff;
	float: left;
}
nav.animenu.sticky .animenu-nav > li > a {
	color:#444;
}
/* header css here */

/* banner-slider section here */
.banner-slider {
	background: #fff;
	margin-bottom: 110px;
}
.banner-slider .owl-dots {
	position: absolute;
	width: 15px;
	right: 20px;
	top: 35%;
}
.banner-slider .owl-dots .owl-dot {
	background-color: #d62d30;
	height: 15px;
	width: 15px;
	border-radius: 50px;
	display: inline-block;
}
.banner-slider .owl-dots .owl-dot.active {
	background-color: #fff;
	height: 40px;
}
.banner-content h2 {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 36px;
}
.banner-content p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 15px;
}
.banner-slider .item {
	width: 100%;
	float: left;
	position: relative;
}
.banner-content {
	width: 40%;
	left: 30%;
	position: absolute;
	top: 30%;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	padding: 15px 15px 30px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.banner-content .custom-btn {
	color: #fff;
	border-color: #fff;
}
.banner-image {
	width: 100%;
	float: right;
	position:relative;
}
.banner-slider .owl-item img {
	object-fit: cover;
	height: 65vh;
}
/* banner-slider section here */

/* about-us section here */
.about-us {
	background: #fff;
	color: #444;
	text-align: center;
}
.about-us p {
	padding: 0 15%;
	line-height: 28px;
	font-size: 16px;
	margin-bottom: 45px;
	display: inline-block;
}
.customer-service {
	width: 80%;
	position: absolute;
	margin: 0 auto;
	bottom: -100px;
	z-index: 9;
	display: inline-block;
	left: 10%;
	text-align: center;
}
.customer-service li {
	width: 29%;
	float: left;
	background: #fff;
	color: #444;
	position: relative;
	margin: 0 15px 15px;
	padding: 10px;
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.16);
	min-height: 165px;
}
.customer-service li .fa {
	font-size: 28px;
	color: #d62d30;
}
.customer-service li h3 {
	font-size: 22px;
	margin: 10px 0 15px;
}
.customer-service li p {
	padding: 0 5px;
	margin-bottom: 15px;
}
/* about-us section here */

/* service section here */
.service-sec {
	text-align: center;
	background: #f2f2f2;
}
.service-list {
	width: 100%;
	float: left;
	position: relative;
	margin-top: 40px;
}
.service-list li {
	width: 29.3%;
	float: left;
	margin: 15px 2% 30px;
	background: #fff;
	box-shadow: -1px 2px 6px rgba(180, 180, 180, 0.7);
	padding: 30px 15px;
	border: 1px solid #f2f2f2;
	position: relative;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
	z-index: 1;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #444;
}
.service-list li:hover {
	border-bottom-color: #d52c2f;
	border-top-color: #d52c2f;
}
.service-list li:hover::before {
 height: 100%;
 -webkit-transition: all ease-in-out 0.5s;
 -moz-transition: all ease-in-out 0.5s;
 -o-transition: all ease-in-out 0.5s;
 transition: all ease-in-out 0.5s;
}
.service-list li::before {
 position: absolute;
 content: "";
 left: 0;
 bottom: 0;
 right: 0;
 width: 100%;
 height: 0;
 z-index: -1;
 background: rgba(0, 0, 0, 0.05);
 -webkit-transition: all ease-in-out 0.5s;
 -moz-transition: all ease-in-out 0.5s;
 -o-transition: all ease-in-out 0.5s;
 transition: all ease-in-out 0.5s;
}
.service-list p {
	line-height: 28px;
	margin-bottom: 30px;
	padding: 0 15px;
}
.service-list li i.fa {
	max-width: 80px;
	border: 3px solid #fff;
	line-height: 74px;
	margin-bottom: 30px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
	transform: scale(1);
	display: block;
	font-size: 34px;
	margin: 0 auto 25px;
	color: #444;
	background: #e2e4e5;
	box-shadow: 0px 0px 0px 3px #444;
}
.service-list li:hover i.fa {
	transform: scale(0.9);
	background: #d52c2f;
	box-shadow: 0px 0px 0px 3px #d52c2f;
	color: #fff;
}
/* service section here */

/* portfalio css here */
.portfalio {
	text-align: center;
	background: #fff;
	clip-path: polygon(0 8%, 100% 0, 100% 93%, 0 97%);
}
button.custom-btn {
	background: #fff;
	margin: 0 15px 30px;
}
.gallery-product {
	width: 22.7%;
	float: left;
	margin: 0 15px 30px;
}
.gallery-product img {
	width: 100%;
	float: left;
}
/* portfalio css here */

/* counter section here */
.counter-sec .counter-icon {
	font-size: 65px;
	width: 150px;
	text-align: center;
	height: 150px;
	line-height: 150px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background: #f2f2f2;
	color: #444;
	overflow: hidden;
	z-index: 1;
	border: solid #ddd 1px;
	margin: 0 auto;
	cursor: pointer;
	position: relative;
}
.counter-sec .counter-icon::before {
 position: absolute;
 content: "";
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 z-index: -1;
 -webkit-border-radius: 50%;
 -moz-border-radius: 50%;
 border-radius: 50%;
 background: rgba(249, 212, 0, 0.8);
 transform: scale(0);
 -webkit-transition: all ease-in-out 0.5s;
 -moz-transition: all ease-in-out 0.5s;
 -o-transition: all ease-in-out 0.5s;
 transition: all ease-in-out 0.5s;
}
.counter-sec .counter-icon i {
	color: #444;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
	transform: scale(1);
}
section.counter-sec.sec-padding {
	padding-top: 120px;
}
.counter-sec .counter-heading {
	margin: 15px 0;
	font-weight: 600;
	font-size: 18px;
}
.counter-sec .counter-count {
	margin: 0;
	width: 100%;
	padding: 0;
	text-align: center;
	font-size: 40px;
	font-weight: 600;
}
.counter-sec::before {
 position: absolute;
 content: "";
 background: url(../images/content-bg.png) no-repeat;
 background-position: center 80px;
 top: 0;
 left: 0;
 bottom: 0;
 right: 0;
 z-index: -1;
}
/* counter section here */

/* review section here */
#review-slider {
	width: 100%;
	float: left;
	position: relative;
}
.review-main {
	float: right;
}
.review-slider h2 {
	float: left;
}
.review-main .ratings {
	margin: 0;
}
.review-main span {
	font-size: 14px;
	color: #ddd;
}
.review-slider {
	background: #444;
	text-align: center;
	color: #fff;
}
.review-slider .item {
	padding: 15px;
	color: #444;
	width: 90%;
	float: left;
	margin: 0 5%;
	background: #fff;
}
.review-slider .owl-item {
	opacity: .25;
	transform: scale(.9);
 -webkit-transition: all .5s linear;
 -o-transition: all .5s linear;
 transition: all .5s linear;
}
.review-slider .owl-item.active.center {
	opacity: 1;
	transform: scale(1);
}
.review-slider .owl-item .client-image {
	width: 80px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin: 0 auto 15px;
}
.review-slider p {
	width: 100%;
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
}
.review-slider h6 {
	display: inline-block;
	margin-bottom: 15px;
	font-weight: 600;
	width: 100%;
}
.review-slider h6 span {
	color: #d62d30;
}
.review-slider .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	left: -20px;
	font-size: 0 !important;
}
.review-slider .owl-nav .owl-prev:after {
	content: "\f104";
	font-family: 'FontAwesome';
	font-size: 34px;
	color: #fff;
	font-weight: bold;
	display: inline-block;
	text-align: center;
	position: relative;
	transition: All 1s ease;
	-webkit-transition: All 1s ease;
	-moz-transition: All 1s ease;
	-o-transition: All 1s ease;
	opacity: 0;
	line-height: 34px;
}
.review-slider .owl-nav .owl-next {
	position: absolute;
	font-size: 0 !important;
	top: 50%;
	right: -20px;
}
.review-slider .owl-nav .owl-next:before {
	content: "\f105";
	font-family: 'FontAwesome';
	font-size: 34px;
	color: #fff;
	font-weight: bold;
	display: inline-block;
	text-align: center;
	position: relative;
	transition: All 1s ease;
	-webkit-transition: All 1s ease;
	-moz-transition: All 1s ease;
	-o-transition: All 1s ease;
	opacity: 0;
	line-height: 34px;
}
.review-slider:hover .owl-nav .owl-next::before, .review-slider:hover .owl-nav .owl-prev::after {
 opacity: 1;
}
/************* rating ******************/
.ratings {
	position: relative;
	vertical-align: middle;
	display: inline-block;
	overflow: hidden;
	margin: 0 0 15px;
}
.empty-stars:before {
	-webkit-text-stroke: 1px #FFD119;
	color: transparent;
}
.empty-stars:before, .full-stars:before {
	content: "\2605\2605\2605\2605\2605";
	font-size: 16px;
}
.full-stars:before {
	-webkit-text-stroke: 1px #FFD119;
}
.full-stars {
	color: #FFD119;
}
.full-stars {
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
	overflow: hidden;
	color: #FFD119;
}
/* review section here */

/* footer css here */
footer {
	position: relative;
	padding: 30px 0;
	width: 100%;
	float: left;
	color: #fff;
	background: #4a4a4a url(../images/footer-pattern.png) no-repeat bottom right;
	background-repeat: no-repeat;
}
footer h2 {
	font-size: 22px;
	margin-bottom: 30px;
}
footer p {
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-link {
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 30px;
	display: inline-block;
	margin-top: 20px;
	width: 100%;
}
.footer-link .fa {
	margin-left: 15px;
}
.social-icon li {
	float: left;
	font-size: 22px;
	margin-right: 20px;
	margin-bottom: 10px;
}
.social-icon li a {
	color: #fff;
}
.get-touch {
	font-size: 16px;
	margin-top: 20px;
}
.get-touch li {
	margin-bottom:7px;
}
.get-touch i.fa {
	margin-right: 5px;
	min-width: 17px;
}
.copyright {
	background: #f2f2f2;
	padding: 10px 0;
	text-align: center;
	font-weight: 600;
}
.copyright p {
	margin:0;
}
/* footer css here */

/* newsletter css here */
.newsletter {
	width:100%;
	float:left;
	position:relative;
	margin-bottom: 15px;
}
.newsletter input[type="email"] {
	outline: none;
	width: 100%;
	background: #fff;
	border: none;
	font-size: 15px;
	color: #212121;
	border-radius: 35px;
	padding: 12px 12px 12px 25px;
	box-sizing: border-box;
}
.newsletter input[type="submit"] {
	outline: none;
	padding: 12px 0;
	width: 38%;
	background: #d62d30;
	border: none;
	font-size: 15px;
	letter-spacing: 1px;
	color: #fff;
	border-radius: 35px;
	box-sizing: border-box;
	position: absolute;
	right: -1px;
	top: 0;
}
/* newsletter css here */

/* contact page css here */
.page-banner img {
	width: 100%;
	height: 340px;
	object-fit: cover;
}
.page-banner h2 {
	position: absolute;
	top: 38%;
	color: #fff;
	text-align: center;
	width: 100%;
	font-size: 44px;
	text-shadow: 4px 4px 0px transparent, 7px 7px 0px rgba(0, 0, 0, 0.2);
	font-weight: 600;
}
.contact-box .col-12 {
	margin-top: 30px;
	margin-bottom: 30px;
}
.contact-form {
	padding: 3em;
	background: #f2f2f2;
	margin: 4em 0;
	width:100%;
	float:left;
}
.contact-form span {
	padding: .5em 0;
	display: block;
}
.contact-form span i {
	color: #212121;
	font-size: 14px;
	text-transform: uppercase;
	font-style: normal;
	float: left;
	width: 9%;
	margin: .8em 0 0;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
	outline: none;
	width: 91%;
	background: #fff;
	color: #212121;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #E7E7E7;
}
.contact-form textarea {
	min-height: 200px;
}
.contact-form input[type="submit"]:hover {
	background: #444;
	color: #fff;
}
.contact-form input[type="submit"] {
	outline: none;
	width: 25%;
	background: #d62d30;
	color: #fff;
	min-width: 140px;
	padding: 10px 0;
	font-size: 14px;
	text-transform: uppercase;
	border: none;
	margin: .5em 0 0 7.7em;
	transition: All 1s ease;
	-webkit-transition: All 1s ease;
	-moz-transition: All 1s ease;
	-o-transition: All 1s ease;
	cursor:pointer;
}
.contact-inner-box {
	background: #f2f2f2;
	padding: 5em 2.7em 5em;
	position: relative;
	width: 100%;
	float: left;
}
.contact-inner-box:before {
	content: '';
	position: absolute;
	top: 0px;
	right: 0;
	width: 0;
	height: 0;
	border-bottom: 45px solid #d62d30;
	border-right: 349px solid transparent;
	border-left: 0px solid transparent;
	transform: rotate(-180deg);
}
.contact-inner-box:after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 0;
	height: 0;
	border-bottom: 45px solid #d62d30;
	border-right: 349px solid transparent;
	border-left: 0px solid transparent;
	transform: rotate(0deg);
}
.contact-box p {
	padding: 0;
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	font-weight: 400;
}
.contact-list li {
	width: 100%;
	float: left;
	font-size: 16px;
	line-height: 22px;
}
.contact-list li i {
	float: left;
	margin-right: 10px;
	font-size: 18px;
	position: relative;
	top: 4px;
}
.social-icons {
	width:100%;
	float:left;
	margin-top:40px;
}
.contact-box i {
	font-size: 18px;
	margin-right: 10px;
	display: inline-block;
	color: #000;
}
.social-icons li {
	display: inline-block;
}
.social-icons li a i.fa.fa-facebook:hover {
	background-color: #002573;
}
.social-icons li a i {
	background-color: #3b5998;
	width: 36px;
	line-height: 36px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
.social-icons li a i.fa.fa-twitter {
	background-color: #55acee;
}
.social-icons li a i.fa.fa-linkedin {
	background-color: #e68523;
}
.social-icons li a i.fa.fa-google-plus {
	background-color: #dc4e41;
}
.social-icons li a i.fa.fa-twitter:hover {
	background-color: #004A82;
}
.social-icons li a i.fa.fa-linkedin:hover {
	background-color: #BB5E00;
}
.social-icons li a i.fa.fa-google-plus:hover {
	background-color: #8A0B00;
}
/* contact page css here */

/* about us page css here */
.cus-heading {
	font-size: 28px;
	color: #444;
	padding-left: 20px;
	position: relative;
	width: 100%;
	float: left;
	margin-bottom:30px
}
.cus-heading:before {
	content: "";
	width: 2px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #d62d30;
}
.cus-heading span {
	color: #d62d30;
}
.about-us-section .box-img {
	position: relative;
	box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.2);
	width: 100%;
	float: left;
}
.about-us-section .box-img .section-line {
	position: absolute;
	top: 70px;
	left: -110px;
	background-color: #212121;
	height: 3px;
	width: 150px;
}
 @-webkit-keyframes load {
 0% {
 stroke-dashoffset: 0;
}
}
@keyframes load {
 0% {
 stroke-dashoffset: 0;
}
}
.skill-progress {
	position: relative;
	display: inline-block;
	padding: 30px;
	text-align: center;
	width: 100%;
	background: #e6e6e6;
}
.skill-progress > li {
	display: inline-block;
	position: relative;
	color: #444;
	font-weight: 100;
	margin: 4rem;
}
.skill-progress > li:before {
	content: attr(data-name);
	position: absolute;
	width: 100%;
	bottom: -2rem;
	font-weight: 400;
}
.skill-progress > li:after {
	content: attr(data-percent);
	position: absolute;
	width: 100%;
	top: 3.7rem;
	left: 0;
	font-size: 2rem;
	text-align: center;
}
.skill-progress svg {
	width: 10rem;
	height: 10rem;
}
.skill-progress svg:nth-child(2) {
 position: absolute;
 left: 0;
 top: 0;
 -webkit-transform: rotate(-90deg);
 transform: rotate(-90deg);
}
.skill-progress svg:nth-child(2) path {
 fill: none;
 stroke-width: 20;
 stroke-dasharray: 629;
 stroke: #fff;
 opacity: .9;
 -webkit-animation: load 10s;
 animation: load 10s;
}
.team-box {
	border: 1px solid #eee;
 border-radius: .25rem;
 -webkit-transition: all .8s ease-in-out;
	padding: 25px 20px;
	margin-bottom: 30px;
	width:100%;
	float:left;
	position:relative;
}
.team-pic {
	width:100%;
	float:left;
	border-bottom: 1px solid #eee;
}
.team-pic img {
	filter: grayscale(1);
	-webkit-filter: grayscale(1);
 -webkit-transition: all .8s ease-in-out;
	max-width: 100%;
	border-radius: 1px;
}
.team-info h4 {
	font-size: 16px;
	margin:15px 0;
	color: #444;
}
.team-info {
	width:100%;
	float:left;
}
.team-info ul {
	margin-bottom:20px;
}
.team-info ul li {
	display:inline-block;
}
.team-info ul li a {
	font-size: 16px;
	color: #444;
	margin: 0 5px;
}
.support-box {
	background: #e6e6e6;
	padding: 45px 15px;
	color: #444;
	text-align:center;
}
/* about us page css here */

/* portfolio page css here */
.portfolio-section h1 {
	text-align: center;
	width: 100%;
	font-size: 42px;
	text-shadow: 4px 4px 0px transparent, 3px 3px 0px rgba(0, 0, 0, 0.2);
	margin-bottom: 50px;
	padding-bottom: 21px;
	border-bottom: 1px solid #ddd;
	font-weight: 600;
}
.thumbnail {
	position: relative;
	display: block;
	padding: 4px;
	margin-bottom: 20px;
	line-height: 1.42857143;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
 -webkit-transition: border .2s ease-in-out;
 -o-transition: border .2s ease-in-out;
 transition: border .2s ease-in-out;
}
.portfolio-section .thumbnail img {
	height: 280px;
	object-fit: cover;
}
.thumbnail-hover {
	position: absolute;
	top: 2px;
	left: 2px;
	height: 99%;
	width: 99%;
	opacity: 0;
	transition:2s;
}
.thumbnail-hover:hover {
	top: 2px;
	left: 2px;
	position: absolute;
	height: 99%;
	width: 99%;
	background-color: rgba(0, 0, 0, 0.8);
	margin: 0 auto;
 transition:.5s;
	opacity: 1;
	padding-top: 30%;
	border-radius: 5px;
}
.thumbnail-hover i {
	text-decoration: none;
	color: white;
}
.thumbnail .caption {
	padding: 10px;
	display: inline-block;
	width: 100%;
}
.thumbnail .caption h3 {
	text-transform: capitalize;
	font-size: 22px;
	font-weight: 600;
}
.thumbnail .caption p {
	margin: 0;
}
/* portfolio page css here */


/* career page css here */
.career-accordion-head {
	font-size: 18px;
	background: #d62d30;
	color: #fff;
	padding: 10px;
	line-height: 24px;
	width: 100%;
	float: left;
	position: relative;
	margin-bottom:15px;
}
.career-accordion-head.active {
	margin-bottom: 0;
}
.career-accordion-head .fa {
	float: right;
	cursor: pointer;
	position: relative;
	top: 3px;
}
.career-accordion-panel {
	padding: 15px;
	margin-bottom: 30px;
	border: 1px solid #ddd;
	width: 100%;
	float: left;
	position: relative;
}
.career-box ul {
	margin-bottom: 30px;
	list-style: decimal;
	padding-left: 30px;
	list-style-position: inside;
	margin-top: 30px;
}
.career-box ul li {
	font-size: 16px;
	line-height: 28px;
}
/* career page css here */

.service-block-container {
	display: flex;
	justify-content: center;
}
.service-block {
	min-width: 240px;
	width: 240px;
	height: 240px;
	position: relative;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	display: flex;
	justify-content: center;
	text-align: center;
	background-color: #fff;
	color: #666;
	border: 1px solid #ccc;
	margin-bottom: 30px;
	padding: 0 10px;
	margin-top: 30px;
}
.service-underlay {
	position: absolute;
	height: 60px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgb(226, 226, 226);
	padding-top: 18px;
	transition: all 0.3s ease-in-out;
}
.service-icon {
	position: absolute;
	top: 30px;
	left:0;
	right: 0;
	font-size: 30px;
	transition: all 0.3s ease-in-out;
	color: #737373;
}
.service-name {
	margin: 0 auto;
	display: block;
	text-transform: Capitalize;
}
.service-desc {
	display: block;
	font-size: 12px;
	margin-top: 75px;
}
.service-underlay .cta {
	margin-top: 115px;
	display: inline-block;
	color: #fff;
	font-size: 14px;
}
.service-block:hover {
	transform: scale(1.1);
	cursor: pointer;
	border: 1px solid #d62d30;
}
.service-block:hover .service-underlay {
	height: 100%;
	background-color: #d62d30;
}
.service-block:hover .service-icon {
	color: #fff;
	transform: scale(1.5);
	top: 80px;
}
.service-block:hover .service-name {
	color: #fff;
	font-weight: bold;
}
.service-block:hover .service-desc {
	display: none;
}
.service-block .service-underlay .cta:hover {
	text-decoration: none;
}
