@charset "UTF-8";

/* Main Style */
html {
	overflow-x: hidden;
}
body {
	font-size: 16px;
	font-family: 'DM Sans', sans-serif;
	color: #fff;
	background: #000;
	overflow-x: hidden;
}
body.body-color-three {
	background-color: #f5f7fa;
}
.container {
	max-width: 1260px;
}
a {
	display: inline-block;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	text-decoration: none;
	color: #4b5280;
}
a:hover {
	text-decoration: none;
	color: #ca0420;
}
a:focus {
	text-decoration: none;
}
button {
	outline: 0 !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
}
.listyle2 {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-left: 30px;
}
.listyle2 h2:before {
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 0;
    content: "";
    font-size: 24px;
    width: 12px;
    height: 12px;
    background: #ca0420;
}
.listyle2 h2 {
    position: relative;
    padding-left: 32px;
    font-weight: 400!important;
    margin: 10px!important;
    font-size: 18px!important;
    line-height: 28px!important;
    font-size: 18px!important;
    line-height: 28px!important;
  
    letter-spacing: 0;
    color: #131313!important;
}
button:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	color: #fff;
	font-weight: 700;
}
h3 {
	font-size: 20px;
	line-height: 1.4;
}
.d-table {
	width: 100%;
	height: 100%;
}
.d-table-cell {
	vertical-align: middle;
}
p {
	font-size: 18px;
	margin-bottom: 15px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: 1px;
}
p:last-child {
	margin-bottom: 0;
}
img {
	max-width: 100%;
	height: auto;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.form-control {
	height: 50px;
	color: #ca0420;
	border: 1px solid #ebebeb;
	background-color: transparent;
	border-radius: 0;
	font-size: 16px;
	padding: 10px 20px;
	width: 100%;
}
 .form-control::-webkit-input-placeholder {
 color: #676a6a;
}
 .form-control:-ms-input-placeholder {
 color: #676a6a;
}
 .form-control::-ms-input-placeholder {
 color: #676a6a;
}
 .form-control::placeholder {
 color: #676a6a;
}
.form-control:focus {
	color: #000000;
	background-color: transparent;
	-webkit-box-shadow: unset;
	box-shadow: unset;
	outline: 0;
	border: 1px solid #ca0420;
}
.form-control:hover:focus, .form-control:focus {
	-webkit-box-shadow: unset;
	box-shadow: unset;
}
textarea.form-control {
	height: auto;
}
.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}
.ptb-70 {
	padding-top: 70px;
	padding-bottom: 70px;
}
.pt-100 {
	padding-top: 100px;
}
.pb-100 {
	padding-bottom: 100px;
}
.pt-70 {
	padding-top: 70px;
}
.pb-70 {
	padding-bottom: 70px;
}
.mt-100 {
	margin-top: 100px;
}
.mt-minus-100 {
	margin-top: -100px;
}
.mt-30 {
	margin-top: 30px;
}
.mb-30 {
	margin-bottom: 30px;
}
/*
Bg-color Style*/
.bg-color {
	background-color: #f9fafb;
}
.white-bg {
	background-color: #ffffff;
}
/*
Default Btn Area Style*/
.default-btn {
	z-index: 1;
	font-weight: 500;
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	padding: 15px 30px 16px;
	line-height: 1;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	text-align: center;
	background-color: #ca0420;
	position: relative;
	overflow: hidden;
	letter-spacing: 2px;
}
.default-btn span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(transparent));
	background: linear-gradient(top, #ffffff, transparent);
	-webkit-animation: top 2s linear infinite;
	animation: top 2s linear infinite;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.default-btn span::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 2px;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(transparent));
	background: linear-gradient(bottom, #ffffff, transparent);
	-webkit-animation: bottom 2s linear infinite;
	animation: bottom 2s linear infinite;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.default-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, right top, left top, from(#ffffff), to(transparent));
	background: linear-gradient(right, #ffffff, transparent);
	-webkit-animation: right 2s linear infinite;
	animation: right 2s linear infinite;
}
.default-btn::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(transparent));
	background: linear-gradient(left, #ffffff, transparent);
	-webkit-animation: left 2s linear infinite;
	animation: left 2s linear infinite;
}
.default-btn:hover {
	background-color: #131313;
	color: #ffffff;
}
 @-webkit-keyframes left {
 0% {
 -webkit-transform: translateX(100%);
 transform: translateX(100%);
}
 100% {
 -webkit-transform: translateX(-100%);
 transform: translateX(-100%);
}
}
 @keyframes left {
 0% {
 -webkit-transform: translateX(100%);
 transform: translateX(100%);
}
 100% {
 -webkit-transform: translateX(-100%);
 transform: translateX(-100%);
}
}
 @-webkit-keyframes right {
 0% {
 -webkit-transform: translateX(-100%);
 transform: translateX(-100%);
}
 100% {
 -webkit-transform: translateX(100%);
 transform: translateX(100%);
}
}
 @keyframes right {
 0% {
 -webkit-transform: translateX(-100%);
 transform: translateX(-100%);
}
 100% {
 -webkit-transform: translateX(100%);
 transform: translateX(100%);
}
}
 @-webkit-keyframes top {
 0% {
 -webkit-transform: translateY(100%);
 transform: translateY(100%);
}
 100% {
 -webkit-transform: translateY(-100%);
 transform: translateY(-100%);
}
}
 @keyframes top {
 0% {
 -webkit-transform: translateY(100%);
 transform: translateY(100%);
}
 100% {
 -webkit-transform: translateY(-100%);
 transform: translateY(-100%);
}
}
 @-webkit-keyframes bottom {
 0% {
 -webkit-transform: translateY(-100%);
 transform: translateY(-100%);
}
 100% {
 -webkit-transform: translateY(100%);
 transform: translateY(100%);
}
}
 @keyframes bottom {
 0% {
 -webkit-transform: translateY(-100%);
 transform: translateY(-100%);
}
 100% {
 -webkit-transform: translateY(100%);
 transform: translateY(100%);
}
}
/*
Read More Btn Area Style*/
.read-more {
	font-weight: 600;
	font-size: 15px;
	color: #ca0420;
}
.read-more i {
	position: relative;
	position: relative;
	top: 1.7px;
	margin-left: 5px;
}
.read-more:hover {
	color: #ca0420;
}
/*
Section Title Area Style*/
.section-title {
	max-width: 1100px;
	margin: -5px auto 50px;
	text-align: center;
	position: relative;
}
.section-title span {
	display: block;
	margin-bottom: 25px;
	color: #ca0420;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.section-title h1 {
	font-size: 40px;
	margin-bottom: 15px;
	position: relative;
	line-height: 1.4;
	letter-spacing: 1px;
}
.section-title h1:last-child {
	margin-bottom: 25px;
}
.section-title h2 {
	font-size: 40px;
	margin-bottom: 15px;
	position: relative;
	line-height: 1.4;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.section-title h2:last-child {
	margin-bottom: 25px;
}
.section-title.white-title span {
	color: #ffffff;
}
.section-title.white-title h2 {
	color: #fafafa;
}
.section-title.white-title p {
	color: #ffffff;
}
/*
Header Area Style
======================================================*/
.header-area {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
}
.header-area.p-relative {
	position: relative;
}
.top-header {
	background-color: #ca0420;
	padding-top: 10px;
	/*padding-bottom: 10px;*/
}
.top-header .header-left-content {
	line-height: 1;
}
.top-header .header-left-content li {
	display: inline-block;
	margin-right: 30px;
	color: #999999;
	font-size: 14px;
	position: relative;
	padding-left: 0;
	font-weight: 400;
}
.top-header .header-left-content li:last-child {
	margin-right: 0;
}
.top-header .header-left-content li i {
	color: #ffffff;
	display: inline-block;
	margin-right: 10px;
	font-size: 18px;
	position: absolute;
	top: -2px;
	left: 0;
}
.top-header .header-left-content li a {
	display: block;
	color: #ffffff;
}
.top-header .header-left-content li a:hover {
	color: #ffffff;
}
.top-header .header-right-content {
	line-height: 1;
	text-align: right;
}
.top-header .header-right-content li {
	display: inline-block;
	margin-right: 15px;
}
.top-header .header-right-content li:last-child {
	margin-right: 0;
}
.top-header .header-right-content li a i {
	color: #ffffff;
	display: inline-block;
	font-size: 18px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	text-align: center;
}
.top-header .header-right-content li a:hover i {
	color: #ffffff;
}
.top-header.bg-dark {
	background-color: #000000 !important;
}
.top-header.top-header-three .header-left-content li {
	color: #131313;
}
.top-header.top-header-three .header-left-content li i {
	color: #ca0420;
}
.top-header.top-header-three .header-left-content li a {
	color: #131313;
}
.top-header.top-header-three .header-left-content li a:hover {
	color: #ca0420;
}
.top-header.top-header-three .header-right-content li a i {
	color: #131313;
}
.top-header.top-header-three .header-right-content li a:hover i {
	color: #ca0420;
}
.top-header.top-header-four {
	background-color: transparent;
}
.top-header.top-header-five {
	background-color: transparent;
}
/*
Navbar Area Style
======================================================*/
.navbar-area {
	background-color: rgb(0 0 0 / 60%);
}

.navbar-area .main-nav {
	padding-top: 0;
	padding-bottom: 0;
}
.navbar-area .main-nav .navbar {
	padding: 0;
	/*padding: 0 15px;
	background-color: rgb(0 0 0 / 60%);
	margin-top: 20px;*/
}
.navbar-area .main-nav .navbar .navbar-brand {
	font-size: 0;
	padding: 0;
	margin-right: 0.5rem;
}
.navbar-area .main-nav .navbar .navbar-brand img {
	max-width: 170px;
	margin: 15px 0;
}
.navbar-area .main-nav nav .navbar-nav .nav-item {
	position: relative;
	padding: 0 0;
}
.navbar-area .main-nav nav .navbar-nav .nav-item a {
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	text-transform: capitalize;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	padding: 35px 0;
	position: relative;
	letter-spacing: 1px;
	z-index: 1;
	margin: 0 13px;
	display: flex;
	white-space: nowrap;
}
.navbar-area .main-nav nav .navbar-nav .nav-item a svg {
	line-height: 0;
	position: relative;
	top: 0px;
	margin-left: 4px;
	width: 10px;
	fill: #fff;
}
.navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
	color: #ffffff;
}
.navbar-area .main-nav nav .navbar-nav .nav-item a.active {
	color: #ffffff;
	font-weight: 400;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 15px;
	opacity: 0;
	width: 270px;
	visibility: hidden;
	z-index: 99;
	display: block;
	padding: 0;
	background-color: #212121;
	border: none;
	border-radius: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	border-top: 2px solid #ca0420;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li {
	position: relative;
	padding: 0;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
	font-size: 14px;
	color: #fff;
	position: relative;
	padding: 10px 15px;
	border-bottom: 1px dashed #3d3d3d;
	margin-left: 0;
	margin-right: 0;
	text-transform: capitalize;
	display: block;
	font-weight: 400;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
	float: right;
	top: 12px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	font-size: 20px;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
	display: none;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
	color: #ca0420;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
	color: #ca0420;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
	left: 100%;
	top: 0;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a {
	border-bottom: none;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
	position: inherit;
	left: -98%;
	top: 20px !important;
	opacity: 0 !important;
	visibility: hidden !important;
	display: none;
	border-top: none;
	border-bottom: 2px solid #ca0420;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
	display: block;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
	position: absolute;
	right: -100%;
	top: 0;
	opacity: 0 !important;
	visibility: hidden !important;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
	color: #fff;
	font-weight: 400;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover {
	color: #ca0420;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
	color: #ca0420;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
	color: #ca0420;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
	opacity: 1 !important;
	visibility: visible !important;
	top: -4px !important;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
	opacity: 1 !important;
	visibility: visible !important;
	top: -20px !important;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu:last-child .dropdown-menu {
	left: auto;
	/*right: -100%;*/
}
.navbar-area .main-nav nav .navbar-nav .nav-item:hover ul {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li.has-submenu li {
	padding-left: 20px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li.has-submenu::before {
    position: absolute;
    content: "\f107";
    right: 20px;
    top: 22px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    font: normal normal normal 14px/1 FontAwesome;
    color: #fff;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li.has-submenu:hover::before {
	position: absolute;
	/*content: "\f105";*/
	content: "\f107";
	right: 20px;
    top: 22px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    font: normal normal normal 14px/1 FontAwesome;
    color: #fff;
}

.navbar-area .others-option .get-quote {
	display: inline-block;
	position: relative;
	top: 3.5px;
}
.navbar-area .others-option .cart-icon {
	top: 0;
	display: inline-block;
	margin-right: 40px;
	position: relative;
}
.navbar-area .others-option .cart-icon a i {
	font-size: 30px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	line-height: 1;
	line-height: 50px;
	text-align: center;
	display: inline-block;
	color: #ffffff;
	border-radius: 50px;
}
.navbar-area .others-option .cart-icon a span {
	position: absolute;
	top: 5px;
	right: -10px;
	width: 15px;
	height: 15px;
	line-height: 15px;
	background-color: #ca0420;
	border-radius: 50%;
	text-align: center;
	color: #ffffff;
	font-size: 11px;
}
.navbar-area .others-option .cart-icon a:hover i {
	color: #ca0420;
}
.navbar-area.navbar-area-two {
	background-color: #ffffff;
}
.navbar-area.navbar-area-two .main-nav nav .navbar-nav .nav-item a {
	color: #000000;
}
.navbar-area.navbar-area-two .main-nav nav .navbar-nav .nav-item a:hover {
	color: #ca0420;
}
.navbar-area.navbar-area-two .main-nav nav .navbar-nav .nav-item a.active {
	color: #ca0420;
}
.navbar-area.navbar-area-two .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
	color: #131313;
}
.navbar-area.navbar-area-two .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
	color: #ca0420;
}
.navbar-area.navbar-area-two .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
	color: #ca0420;
}
.navbar-area.navbar-area-two .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
	color: #131313;
}
.navbar-area.navbar-area-two .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover {
	color: #ca0420;
}
.navbar-area.navbar-area-two .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
	color: #ca0420;
}
.navbar-area.navbar-area-two .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
	color: #ca0420;
}
.navbar-area.navbar-area-two .others-option .cart-icon a i {
	color: #000000;
}
.navbar-area.navbar-area-two .others-option .cart-icon a:hover i {
	color: #ca0420;
}
.navbar-area.navbar-area-two.is-sticky {
	background-color: #ffffff !important;
}
.navbar-area.navbar-area-four .others-option .cart-icon {
	margin-left: 30px;
	margin-right: 10px;
}
.navbar-area.navbar-area-five {
	background-color: rgba(0, 2, 25, 0.6);
}
.navbar-area.navbar-area-five .others-option .cart-icon {
	margin-left: 30px;
	margin-right: 10px;
}
.navbar-area.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	background-color: #131313;
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
/*
Mobile Navbar Area Style
======================================================*/
.mobile-nav {
	display: none;
}
 @media only screen and (max-width: 991px) {
.mobile-nav {
	display: block;
	position: relative;
}
.mobile-nav .logo {
	text-decoration: none;
	position: absolute;
	top: 10px;
	z-index: 999;
	left: 15px;
	color: #ffffff;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 20px;
	max-width: 145px;
}
.mobile-nav .logo img {
	max-width: 150px;
	margin-top: 12px;
}
.mobile-nav nav .navbar-nav {
	height: 90vh;
	overflow-y: scroll !important;
}
.mobile-nav nav .navbar-nav .nav-item a svg {
	display: none;
}
.mean-container .mean-bar {
	background-color: rgb(0 0 0 / 60%);
	height: 70px;
	padding: 0;
}
.mean-container .mean-nav {
	margin-top: 70px;
}
.mean-container .mean-nav ul li a:hover {
	color: #ca0420;
}
.mean-container .mean-nav ul li a.active {
	color: #ca0420;
}
.mean-container a.meanmenu-reveal {
	padding: 23px 15px 0 0;
	color: #ffffff;
}
.mean-container a.meanmenu-reveal span {
	background-color: #ffffff;
	position: relative;
	top: 8px;
	margin-top: -5px;
	border-radius: 0;
}
.main-nav {
	display: none !important;
}
.navbar-area .others-option {
	display: none;
}
.navbar-area .others-option .get-quote {
	top: 4.5px;
}
.navbar-area .others-option .cart-icon {
	margin-right: 10px;
	margin-left: 20px;
}
.navbar-area.is-sticky .mean-container .mean-bar {
	background-color: #131313;
	border: none;
}
.navbar-area.navbar-area-two .mean-container .mean-bar {
	background-color: #ffffff;
	border: none;
}
.navbar-area.navbar-area-two .mean-container a.meanmenu-reveal {
	color: #000000;
}
.navbar-area.navbar-area-two .mean-container a.meanmenu-reveal span {
	background-color: #000000;
}
.navbar-area.navbar-area-two .others-option-for-responsive .dot-menu .inner .circle {
	background-color: #000000;
}
.top-header.top-header-three .appointment {
	display: none;
}

/***/
.header-area {
    position: inherit;
}

.mean-container .mean-bar {
	position: inherit;
	background-color: #131313;
}

.clr-bt {
	clear: both;
}

}
/*
Others Option For Responsive Area Style
======================================================*/
.others-option-for-responsive {
	display: none;
}
.others-option-for-responsive .dot-menu {
	padding: 0 10px;
	height: 30px;
	cursor: pointer;
	z-index: 9991;
	position: absolute;
	right: 60px;
	top: 21px;
}
.others-option-for-responsive .dot-menu .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 30px;
}
.others-option-for-responsive .dot-menu .inner .circle {
	height: 5px;
	width: 5px;
	border-radius: 100%;
	margin: 0 2px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	background-color: #ffffff;
}
.others-option-for-responsive .dot-menu:hover .inner .circle {
	background-color: #ca0420;
}
.others-option-for-responsive .container {
	position: relative;
}
.others-option-for-responsive .container .container {
	position: absolute;
	right: 0;
	top: 10px;
	max-width: 262px;
	margin: auto;
	opacity: 0;
	visibility: hidden;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	z-index: 2;
	padding-left: 15px;
	padding-right: 15px;
}
.others-option-for-responsive .container .container.active {
	opacity: 1;
	visibility: visible;
}
.others-option-for-responsive .option-inner {
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
}
.others-option-for-responsive .option-inner .others-option {
	background-color: #ffffff;
	padding: 10px;
	position: absolute;
	top: 61px;
	right: 0;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.others-option-for-responsive .option-inner .others-option .option-item {
	margin-left: 15px;
	padding-left: 15px;
	position: relative;
}
.others-option-for-responsive .option-inner .others-option .option-item:first-child {
	margin-left: 0;
	padding-left: 0;
}
.others-option-for-responsive .sidebar-menu {
	display: inline-block;
	margin-left: 10px;
}
.others-option-for-responsive .sidebar-menu a i {
	font-size: 25px;
	background-color: #ca0420;
	height: 50px;
	width: 50px;
	line-height: 50px;
	display: inline-block;
	text-align: center;
	color: #ffffff;
	border-radius: 50px;
}
 @media only screen and (max-width: 991px) {
.others-option-for-responsive {
	display: block;
}
.others-option-for-responsive .container {
	max-width: 100%;
}
.others-option-for-responsive .container .container {
	max-width: 400px;
	margin: auto;
}
.others-option-for-responsive .option-inner .others-option {
	background-color: #000000;
	margin-right: 15px;
}
.others-option-for-responsive .option-inner .others-option .dot-menu:hover .inner .circle {
	background-color: #ffffff;
}
.others-option-for-responsive .option-inner .others-option .cart-icon a i {
	color: #ffffff;
}
.others-option-for-responsive .option-inner .others-option .cart-icon a span {
	background-color: #ffffff !important;
	color: #000000;
}
.others-option-for-responsive .option-inner .others-option .search-btn {
	color: #ffffff;
}
.others-option-for-responsive .option-inner .others-option .search-btn:hover {
	color: #ffffff !important;
}
.others-option-for-responsive .option-inner .others-option .close-btn {
	color: #ffffff;
}
}
/*
Banner Area Style
======================================================*/
.banner-area {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	padding-top: 120px;
	padding-bottom: 120px;
}

.banner-area.banner-area-two {
	height: auto;
	padding-top: 300px;
	padding-bottom: 270px;
}
.banner-area.banner-area-two .banner-content {
	max-width: 590px;
}
.banner-area.banner-area-two .banner-content .top-title {
	color: #ca0420;
	font-weight: 800;
}
.banner-area.banner-area-two .banner-content h2 {
	margin-bottom: 25px;
	color: #ffffff;
}
.banner-area.banner-area-two .banner-content p {
	color: #ffffff;
}
.banner-area.banner-area-three {
	height: auto;
	background-color: #eae1d6;
	padding-top: 100px;
	padding-bottom: 170px;
}
.banner-area.banner-area-three .banner-content .top-title {
	color: #ca0420;
}
.banner-area.banner-area-three .banner-content h2 {
	font-size: 62px;
	color: #131313;
	margin-bottom: 25px;
}
.banner-area.banner-area-three .banner-content p {
	color: #4b5280;
}
.banner-area.banner-area-four {
	height: 820px;
}
.banner-area.banner-area-four .banner-content {
	background-color: rgb(0 0 0 / 60%);
    padding: 25px 25px;
    max-width: fit-content;
    float: right;
}
.banner-area.banner-area-four .banner-content.p-center {
	text-align: center;
	max-width: inherit;
}
.banner-area.banner-area-four .banner-content .top-title {
	color: #ffffff;
}
.banner-area.banner-area-four .banner-content h2 {
	color: #ffffff;
}
.banner-area.banner-area-four .banner-content p {
	color: #ffffff;
}
.banner-area.banner-area-four .banner-video {
	position: relative;
	top: 15px;
	right: -15px;
}
.banner-area.banner-area-five .banner-content {
	max-width: 680px;
	text-align: center;
	margin: 140px auto 0;
}
.banner-area.banner-area-five .banner-content img {
	margin-bottom: 20px;
}
.banner-area.banner-area-five .banner-content .top-title {
	color: #ca0420;
}
.banner-area.banner-area-five .banner-content h2 {
	color: #ffffff;
}
.banner-area.banner-area-five .banner-content p {
	color: #ffffff;
}
.banner-content .top-title {
	display: block;
	margin-bottom: 0px;
	font-weight: 100;
	font-size: 32px;
}
.banner-content h2 {
	font-family: 'DM Sans', sans-serif;
	font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
    line-height: 50px;
}
.banner-content p {
	margin-bottom: 30px;
	font-size: 16.5px;
}
.banner-image {
	text-align: center;
}
.banner-image img {
	-webkit-animation: border-transform 10s linear infinite alternate forwards;
	animation: border-transform 10s linear infinite alternate forwards;
}
 @-webkit-keyframes border-transform {
 0%, 100% {
 border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}
 14% {
 border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
}
 28% {
 border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
}
 42% {
 border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
}
 56% {
 border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
}
 70% {
 border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
}
 84% {
 border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
}
}
 @keyframes border-transform {
 0%, 100% {
 border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}
 14% {
 border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
}
 28% {
 border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
}
 42% {
 border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
}
 56% {
 border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
}
 70% {
 border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
}
 84% {
 border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
}
}

.home-main-banner-video video {
	width: 100%;
	margin-bottom: -8px;
}
/*
Feature Area Style
======================================================*/
.feature-area {
	/*position: relative;
	margin-top: -130px;
	z-index: 1;
	overflow: hidden;*/
	background: #000;
	margin-bottom: -2px;
	padding-top: 58px;
	padding-bottom: 60px;
}
.feature-area.feature-area-two {
	margin-top: 0;
}
.feature-area.feature-area-two .single-feature {
	margin-top: 0;
	position: relative;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.feature-area.feature-area-two .single-feature .feature-shape {
	position: absolute;
	bottom: 0;
	right: 0;
}
.feature-area.feature-area-two .single-feature:hover {
	background-color: #ca0420;
}
.feature-area.feature-area-two .single-feature:hover i {
	color: #ffffff;
}
.feature-area.feature-area-three {
	z-index: 1;
	position: relative;
}
.feature-area.feature-area-three .feature-shape {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0.4;
}
.feature-area.feature-area-four .single-feature {
	background-color: #000000;
}
.feature-area.feature-area-four .single-feature h3 {
	color: #ffffff;
}
.feature-area.feature-area-four .single-feature p {
	color: #ffffff;
}
.feature-area.feature-area-five .single-feature {
	background-color: #131313;
}
.feature-area.feature-area-five .single-feature h3 {
	color: #ffffff;
}
.feature-area.feature-area-five .single-feature p {
	color: #ffffff;
}
.single-feature {
	
}
.single-feature .title {
	position: relative;
	margin-bottom: 0;
}
.single-feature .title svg {
	position: absolute;
	top: 0;
	font-size: 50px;
	line-height: 1;
	fill: #ca0420;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-feature .title h3 {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	padding-left: 65px;
	padding-top: 0;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.single-feature p {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	margin-bottom: 0;
}
/*.single-feature:hover {
	background-color: #ca0420;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}*/
.single-feature:hover .title svg {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
	fill: #ffffff;
}
.single-feature:hover .title h3 {
	color: #ffffff;
}
.single-feature:hover p {
	color: #ffffff;
}
/*
Our Approach Area Style
======================================================*/
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(1) .single-approach {
	background-color: transparent;
	background-color: #ffffff;
	z-index: 1;
}
/*.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(1) .single-approach::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #131313;
	z-index: -1;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}*/
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(1) .single-approach:hover::before {
	width: 0;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(1) .single-approach:hover h3 {
	color: #131313;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(1) .single-approach:hover p {
	color: #4b5280;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(2) .single-approach {
	background-color: transparent;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(2) .single-approach h3 {
	color: #131313;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(2) .single-approach p {
	color: #4b5280;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(2) .single-approach::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #131313;
	z-index: -1;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(2) .single-approach:hover::before {
	width: 100%;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(2) .single-approach:hover h3 {
	color: #ffffff;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(2) .single-approach:hover p {
	color: #ffffff;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(3) .single-approach {
	background-color: transparent;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(3) .single-approach h3 {
	color: #131313;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(3) .single-approach p {
	color: #4b5280;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(3) .single-approach::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #131313;
	z-index: -1;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(3) .single-approach:hover::before {
	width: 100%;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(3) .single-approach:hover h3 {
	color: #ffffff;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(3) .single-approach:hover p {
	color: #ffffff;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(4) .single-approach {
	background-color: transparent;
	background-color: #ffffff;
	z-index: 1;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(4) .single-approach::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #131313;
	z-index: -1;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(4) .single-approach:hover::before {
	width: 0;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(4) .single-approach:hover h3 {
	color: #131313;
}
.our-approach-area.our-approach-area-four .col-lg-6 .row .col-lg-6:nth-child(4) .single-approach:hover p {
	color: #4b5280;
}
.our-approach-area.our-approach-area-four .single-approach h3 {
	color: #ca0420;
}
.our-approach-area.our-approach-area-four .single-approach p {
}
.approach-content {
	margin-left: 30px;
	margin-right: 30px;
	/*margin-top: -70px;*/
	margin-bottom: 50px;
}
.approach-content h3 {
	font-weight: 400;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.5;
    margin-bottom: 30px;
}
.single-approach {
	background-color: #ffffff;
	border-left: 4px solid #ca0420;
	padding: 40px;
	margin-bottom: 30px;
	margin: 15px;
	margin-left: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	position: relative;
}
.single-approach .icon svg {
	width: 250px;
	fill: #ca042017;
	position: absolute;
	top: 0;
	right: 0;
}
.single-approach h3 {
	margin-bottom: 20px;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 2px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-approach p {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	font-size: 16px;
}
.single-approach:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
.approach-img {
	margin-bottom: 30px;
}

/*.challenges-area {*/
/*	background-position: right center;*/
/*	background-repeat: no-repeat;*/
/*	background-size: cover;*/
/*	position: relative;*/
/*	overflow: hidden;*/
/*	z-index: 1;*/
/*}*/
.sectors-area {
	background-image: url(../images/sectors-bg.webp);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	z-index: 1;

	height: 100%;
	padding-top: 200px;
	padding-bottom:170px;
}
.highlight-area {
	background-image: url(../images/usp-bg.webp);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	z-index: 1;

	height: 100%;
	padding-top: 200px;
	padding-bottom:170px;
}
.mission-area {
	background: linear-gradient( to right, #000 0%, #000  50%, #c2081c 50%, #c2081c 100% );
}
.challenges-area.challenges-area-two {
	background-image: unset;
	background-color: #131313;
}
.challenges-area.challenges-area-two::before {
	display: none;
}
.challenges-area.challenges-area-two .challenges-shape {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.challenges-area.challenges-area-two .single-challenges i {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.challenges-area.challenges-area-two .single-challenges h3 {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.challenges-area.challenges-area-two .single-challenges p {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.challenges-area.challenges-area-two .single-challenges:hover {
	background-color: #ca0420;
}
.challenges-area.challenges-area-two .single-challenges:hover i {
	color: #ffffff;
}
.challenges-area.challenges-area-two .single-challenges:hover h3 {
	color: #ffffff;
}
.challenges-area.challenges-area-two .single-challenges:hover p {
	color: #ffffff;
}
.single-challenges {
	position: relative;
	margin-bottom: 30px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 30px 25px;
	text-align: center;
	z-index: 1;
	min-height: 280px;
}
.single-challenges svg {
	width: 70px;
	fill: #ca0420;
	line-height: 1;
	display: block;
	margin: auto;
	margin-bottom: 20px;
}
.single-challenges h3 {
	margin-bottom: 10px;
	color: #131313;
}
.single-challenges p {
	margin-bottom: 0;
	font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 1px;
	color: #131313;
}
.single-challenges span {
	position: absolute;
	left: 0;
	right: 0;
	font-size: 100px;
	z-index: -1;
	opacity: 0.06;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.single-challenges:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
/*
Services Area Style
======================================================*/
.single-services {
	position: relative;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	overflow: hidden;
	margin-bottom: 30px;
	padding: 15px;
}
.single-services .services-img .img-box {
	position: relative;
}
.single-services .services-img .img-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(#1313139c), to(transparent));
	background: linear-gradient(bottom, #131313, transparent);
}
.single-services .services-content {
	position: absolute;
	bottom: -230px;
	left: 0;
	right: 0;
	/*padding: 30px;*/
	margin: 15px;
	padding: 15px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	min-height: 305px;
}
.single-services .services-content h3 {
	margin-bottom: 35px;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.single-services .services-content h3 a {
	color: #ffffff;
}
.single-services .services-content h3 a:hover {
	color: #ca0420;
}
.single-services .services-content p {
	color: #ffffff;
	font-size: 16px;
    line-height: 26px;
}
.single-services:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
.single-services:hover .services-content {
	bottom: 0;
    /*background-color: rgb(0 0 0 / 60%);*/
}
.single-services:hover .services-img .img-box::before {
	background-color: rgb(0 0 0 / 60%);
}

.single-services:hover .services-content h3 {
	margin-top: 10px;
	margin-bottom: 15px;
}
/*
Solution Area Style
======================================================*/
.solution-area {
	overflow: hidden;
	background: #fff;
}
.solution-area .col-lg-6.pr-0 {
	padding-right: 0;
}
.solution-area.solution-area-three {
	position: relative;
	z-index: 1;
}
.solution-area.solution-area-three .container-fluid {
	max-width: 100%;
}
.solution-area.solution-area-three .solution-shape-left {
	z-index: -1;
	position: absolute;
	top: 50px;
	left: 50px;
	-webkit-animation: movebounce 5s linear infinite;
	animation: movebounce 5s linear infinite;
}
.solution-content {
	max-width: 560px;
	margin-right: auto;
	padding-top: 60px;
	padding-bottom: 60px;
	padding-left: 30px;
}
.solution-content.aboutus {
	max-width: 600px;
	margin-left: auto;
	margin-right: 0;
}
.solution-title {
	margin-bottom: 40px;
}
.solution-title > span {
	display: block;
    margin-bottom: 15px;
    color: #131313;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.solution-title h2 {
	font-size: 24px;
	margin-bottom: 15px;
	position: relative;
	line-height: 1.4;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #131313;
}
.single-solution {
	padding: 30px;
	position: relative;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	margin-bottom: 30px;
}
.single-solution h3 {
	margin-bottom: 12px;
	color: #000000;
	font-size: 18px;
	font-weight: 700;
}
.single-solution h3 a {
	color: #000000;
}
.single-solution p {
	margin-bottom: 0;
}
.single-solution span {
	position: absolute;
	top: -13px;
	right: -4px;
	line-height: 1;
	font-size: 80px;
	opacity: 0.1;
	font-weight: 700;
}
.solution-img::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
}
.get-in-touch-area {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.get-in-touch-area.get-in-touch-area-two {
	background-image: unset;
	z-index: 1;
}
.get-in-touch-area.get-in-touch-area-two::before {
	display: none;
}
.get-in-touch-area.get-in-touch-area-two .get-in-touch-shape {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: -1;
}
.get-in-touch-area.get-in-touch-area-two .get-in-touch-form .form-group label {
	color: #000000;
}
.get-in-touch-area.get-in-touch-area-two .get-in-touch-form .form-group .form-control {
	border: 1px solid #ebebeb !important;
}
.get-in-touch-area.get-in-touch-area-two .get-in-touch-form .form-group .form-control:focus {
	border-color: #ca0420 !important;
}
.get-in-touch-form {
	text-align: center;
	max-width: 810px;
	margin: auto;
}
.get-in-touch-form .form-group {
	margin-bottom: 30px;
}
.get-in-touch-form .form-group label {
	text-align: left;
	display: block;
	color: #ffffff;
	margin-bottom: 10px;
	font-weight: 600;
}
.get-in-touch-form .form-group .form-control {
	background-color: #f1f1f1;
    border: none !important;
    height: 50px;
    padding-left: 15px;
    color: #131313;
}
.get-in-touch-form .form-group textarea {
	height: 100% !important;
}
/*
Protect Area Style
======================================================*/
.protect-area {
	overflow: hidden;
}
.protect-area .single-challenges {
	background-color: #ffffff;
	padding: 20px;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(2) .single-challenges {
	margin-top: 30px;
	background-color: #ca0420;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(2) .single-challenges i {
	color: #ffffff;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(2) .single-challenges h3 {
	color: #ffffff;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(2) .single-challenges p {
	color: #ffffff;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(3) .single-challenges {
	margin-top: -30px;
	background-color: #ca0420;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(3) .single-challenges i {
	color: #ffffff;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(3) .single-challenges h3 {
	color: #ffffff;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(3) .single-challenges p {
	color: #ffffff;
}
.protect-area.protect-area-three {
	position: relative;
	z-index: 1;
}
.protect-area.protect-area-three .single-challenges {
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.protect-area.protect-area-three .single-challenges i {
	color: #ca0420;
}
.protect-area.protect-area-three .single-challenges h3 {
	color: #131313;
}
.protect-area.protect-area-three .single-challenges p {
	color: #4b5280;
}
.protect-area.protect-area-three .protect-left-shape {
	z-index: -1;
	position: absolute;
	top: 50px;
	left: 50px;
	-webkit-animation: movebounce 5s linear infinite;
	animation: movebounce 5s linear infinite;
}
.protect-area.protect-area-four .single-challenges {
	background-color: #131313;
}
.protect-area.protect-area-four .single-challenges i {
	color: #ffffff;
}
.protect-area.protect-area-four .single-challenges h3 {
	color: #ffffff;
}
.protect-area.protect-area-four .single-challenges p {
	color: #ffffff;
}
.protect-content {
	margin-right: 30px;
}
.protect-content .protect-title {
	margin-bottom: 40px;
}
.protect-content .protect-title span {
	font-weight: 600;
	display: block;
	margin-bottom: 10px;
	color: #ca0420;
}
.protect-content .protect-title h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 0;
	line-height: 1.4;
}
.protect-img {
	margin-bottom: 30px;
}
/*
Testimonials Area Style
======================================================*/
.testimonials-area {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.testimonials-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #131313;
	opacity: 0.75;
	z-index: -1;
}
.testimonials-area.testimonials-page-area {
	background-image: unset;
}
.testimonials-area.testimonials-page-area::before {
	display: none;
}
.testimonials-area.testimonials-page-area .testimonials-item {
	margin-bottom: 30px;
	text-align: center;
}
.testimonials-area.testimonials-page-area .testimonials-item p {
	color: #4b5280;
}
.testimonials-area.testimonials-page-area .testimonials-item h3 {
	color: #131313;
}
.testimonials-area.testimonials-page-area .testimonials-item span {
	color: #4b5280;
}
.testimonials {
	text-align: center;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.testimonials span {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 50px;
	display: block;
	color: #ffffff;
}
.testimonials .owl-nav .owl-prev {
	position: absolute;
	left: -50px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.testimonials .owl-nav .owl-prev i {
	font-size: 20px;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.8);
	width: 40px;
	height: 40px;
	line-height: 38px;
	border-radius: 50%;
	display: inline-block;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.testimonials .owl-nav .owl-prev:hover i {
	background-color: #ca0420;
	border-color: #ca0420;
}
.testimonials .owl-nav .owl-next {
	position: absolute;
	right: -50px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.testimonials .owl-nav .owl-next i {
	font-size: 20px;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.8);
	width: 40px;
	height: 40px;
	line-height: 38px;
	border-radius: 50%;
	display: inline-block;
	-webkit-transition: all ease 0.5s;

	transition: all ease 0.5s;
}
.testimonials .owl-nav .owl-next:hover i {
	background-color: #ca0420;
	border-color: #ca0420;
}
.testimonials .owl-nav [class*=owl-]:hover {
	background-color: transparent;
}
.testimonials-item i {
	color: #ca0420;
	font-size: 50px;
	line-height: 1;
	display: block;
	margin-bottom: 10px;
}
.testimonials-item p {
	color: #ffffff;
	margin-bottom: 22px;
	font-size: 20px;
}
.testimonials-item ul {
	line-height: 1;
	margin-bottom: 5px;
}
.testimonials-item ul li {
	display: inline-block;
	margin: 0 1px;
}
.testimonials-item ul li i {
	font-size: 18px;
	color: #ca0420;
}
.testimonials-item h3 {
	color: #ffffff;
	margin-bottom: 10px;
}
.testimonials-item span {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	margin-bottom: 0;
	display: block;
}
/*
Partner Area Style
======================================================*/
.partner-area {
	text-align: center;
	background: #fafafa;
}
.partner-area .owl-carousel .owl-item {
	line-height: 1;
}
.partner-area .owl-carousel .owl-item img {
	width: auto;
}
.partner-area .section-title h2 {
	color: #131313;
}
.partner-area .section-title p {
	color: #131313;
	max-width: 950px;
    margin: auto;
}
/*
Blog Area Style
======================================================*/
.blog-area.blog-area-three {
	position: relative;
	z-index: 1;
}
.blog-area.blog-area-three .blog-left-shape {
	z-index: -1;
	position: absolute;
	bottom: 50px;
	left: 0;
	-webkit-animation: movebounce 5s linear infinite;
	animation: movebounce 5s linear infinite;
}
.blog-area.blog-area-four .single-blog {
	position: relative;
}
.blog-area.blog-area-four .single-blog .blog-img a {
	position: relative;
}
.blog-area.blog-area-four .single-blog .blog-img a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(#131313), to(transparent));
	background: linear-gradient(bottom, #131313, transparent);
}
.blog-area.blog-area-four .single-blog .blog-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.blog-area.blog-area-four .single-blog .blog-content span {
	color: #ffffff;
	display: block;
	margin-bottom: 10px;
}
.blog-area.blog-area-four .single-blog .blog-content h3 {
	margin-bottom: 15px;
}
.blog-area.blog-area-four .single-blog .blog-content h3 a {
	color: #ffffff;
}
.blog-area.blog-area-four .single-blog .blog-content h3 a:hover {
	color: #ca0420;
}
.blog-area.blog-area-four .single-blog .blog-content p {
	color: #ffffff;
}
.blog-area.blog-area-four .single-blog:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
.single-blog {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	margin-bottom: 30px;
}
.single-blog .blog-img a {
	display: block;
}
.single-blog .blog-content {
	margin-top: 25px;
}
.single-blog .blog-content span {
	display: block;
	margin-bottom: 12px;
}
.single-blog .blog-content h3 {
	margin-bottom: 0;
}
.single-blog .blog-content h3 a {
	color: #000000;
}
.single-blog .blog-content h3 a:hover {
	color: #ca0420;
}
/*
Footer Top Area Style
======================================================*/
.footer-area {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.footer-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.95;
	z-index: -1;
}
.single-footer-widget {
/* margin-bottom: 30px; */
}
.single-footer-widget .logo {
	margin-bottom: 20px;
}
.single-footer-widget p {
	margin-bottom: 20px;
	color: #ffffff;
}
.single-footer-widget .social-icon {
	line-height: 1;
}
.single-footer-widget .social-icon li {
	display: inline-block;
	margin-right: 5px;
}
.single-footer-widget .social-icon li a i {
	width: 38px;
	height: 38px;
	line-height: 38px;
	color: #ffffff;
	text-align: center;
	font-size: 18px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	border-radius: 2px;
	background-color: rgba(255, 255, 255, 0.1);
}
.single-footer-widget .social-icon li a:hover {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}
.single-footer-widget .social-icon li a:hover i {
	background-color: #ca0420;
}
.single-footer-widget h3 {
	color: #ffffff;
	margin-bottom: 30px;
	padding-bottom: 15px;
	position: relative;
}
.single-footer-widget h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #31354d;
}
.single-footer-widget .address {
	color: #ffffff;
}
.single-footer-widget .address .location {
	padding-left: 20px;
	position: relative;
	font-size: 14px;
	letter-spacing: 1px;
}
.single-footer-widget .address .location i {
	position: absolute;
	color: #ca0420;
	left: 0;
	top: 5px;
	font-size: 25px;
}
.single-footer-widget .address li {
	padding-left: 20px;
	position: relative;
	margin-bottom: 5px;
	color: #ffffff;
	font-size: 14px;
	letter-spacing: 1px;
}
.single-footer-widget .address li a {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 6px;
}
.single-footer-widget .address li a:last-child {
	margin-bottom: 0;
}
.single-footer-widget .address li a:hover {
	color: #ffffff;
}
.single-footer-widget .address li:last-child {
	margin-bottom: 0;
}
.single-footer-widget .address li i {
	position: absolute;
	color: #ca0420;
	left: 0;
	top: 5px;
	font-size: 25px;
}
.single-footer-widget .import-link li {
	margin-bottom: 11px;
	position: relative;
	padding-left: 20px;
	padding-right: 0;
	color: rgba(255, 255, 255, 0.9);
}
.single-footer-widget .import-link li::before {
	content: "";
	position: absolute;
	top: 7px;
	right: -9px;
	width: 1px;
	height: 11px;
	background-color: #ffffff;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-footer-widget .import-link li:last-child::before {
	width: 0;
}
.single-footer-widget .import-link li:last-child {
	margin-bottom: 0;
}
.single-footer-widget .import-link li a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1px;
}
.single-footer-widget .import-link li a:hover {
	color: #ffffff;
}
.single-footer-widget .import-link li:hover::before {
	border-radius: 50%;
}
/*
Copy Right Area Style
======================================================*/
.copy-right-area {
	background-color: #212121;
	border-top: 1px solid #373737;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}
.copy-right-area p {
	color: #ffffff;
	font-size: 12px;
}
.copy-right-area p i {
	position: relative;
	top: 1px;
}
.copy-right-area p a {
	color: #ca0420;
	font-weight: 600;
}
.copy-right-area .footer-menu {
	text-align: right;
}
.copy-right-area .footer-menu li {
	display: inline-block;
	margin-right: 15px;
}
.copy-right-area .footer-menu li:last-child {
	margin-right: 0;
}
.copy-right-area .footer-menu li a {
	color: #ffffff;
}
.copy-right-area .footer-menu li a:hover {
	color: #ca0420;
}
/*
About Area Style
======================================================*/
.about-content {
	margin-left: 30px;
}
.about-content .about-title {
	margin-bottom: 40px;
}
.about-content .about-title span {
	font-weight: 600;
	display: block;
	margin-bottom: 10px;
	color: #ca0420;
}
.about-content .about-title h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 0;
	line-height: 1.4;
}
.about-content .tab {
	margin-bottom: 30px;
}
.about-content .tabs {
	margin-bottom: 30px;
}
.about-content .tabs li {
	display: inline-block;
	margin-right: 30px;
	font-weight: 700;
	font-size: 16px;
	color: #131313;
	border-bottom: 2px solid #131313;
	padding-bottom: 5px;
	cursor: pointer;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.about-content .tabs li.current {
	border-color: #ca0420;
	color: #ca0420;
}
.about-content .tab_content .tabs_item p {
	margin-bottom: 0;
}
.about-content .tab_content .tabs_item ul {
	margin-top: 25px;
}
.about-content .tab_content .tabs_item ul li {
	margin-bottom: 10px;
	font-weight: 600;
	color: #131313;
	position: relative;
	font-size: 16px;
	padding-left: 25px;
}
.about-content .tab_content .tabs_item ul li i {
	position: absolute;
	top: 4px;
	left: 0;
	font-size: 18px;
	color: #ca0420;
}
.about-content .tab_content .tabs_item ul li:last-child {
	margin-bottom: 0;
}
.about-img {
	margin-bottom: 30px;
}
/*
Pricing Area Style
======================================================*/
.pricing-area {
	overflow: hidden;
}
.pricing-area .shape-three {
	display: none;
}
.single-pricing {
	text-align: center;
	margin-bottom: 30px;
	padding: 30px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
	position: relative;
	z-index: 1;
}
.single-pricing .pricing-shape {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.single-pricing .pricing-shape-2 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0;
}
.single-pricing .pricing-title {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-pricing .pricing-title h3 {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-pricing .pricing-title h2 {
	color: #ca0420;
	font-size: 50px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	margin-bottom: 0;
}
.single-pricing .pricing-title h2 sub {
	font-size: 35px;
	position: relative;
	top: 0;
}
.single-pricing .pricing-title span {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	display: block;
	margin-bottom: 0;
}
.single-pricing ul {
	padding: 30px 0;
}
.single-pricing ul li {
	padding-bottom: 15px;
	color: #555555;
	font-size: 16px;
	font-weight: 600;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-pricing ul li:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.single-pricing.active {
	background-color: #131313;
}
.single-pricing.active .pricing-title h3 {
	color: #ffffff;
}
.single-pricing.active .pricing-title h2 {
	color: #ffffff;
}
.single-pricing.active .pricing-title span {
	color: #ffffff;
}
.single-pricing.active .pricing-title h4 {
	color: #ffffff;
	border-color: #ffffff;
}
.single-pricing.active ul li {
	color: #ffffff;
}
.single-pricing.active .pricing-shape {
	opacity: 0;
}
.single-pricing.active .pricing-shape-2 {
	opacity: 1;
}
.single-pricing:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	background-color: #131313;
}
.single-pricing:hover .pricing-title h3 {
	color: #ffffff;
}
.single-pricing:hover .pricing-title h2 {
	color: #ffffff;
}
.single-pricing:hover .pricing-title span {
	color: #ffffff;
}
.single-pricing:hover .pricing-title h4 {
	color: #ffffff;
	border-color: #ffffff;
}
.single-pricing:hover ul li {
	color: #ffffff;
}
.single-pricing:hover .pricing-shape {
	opacity: 0;
}
.single-pricing:hover .pricing-shape-2 {
	opacity: 1;
}
/*
Counter Area Style
======================================================*/
.counter-area {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.counter-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #131313;
	opacity: 0.2;
	z-index: -1;
}
.counter-area .section-title span {
	color: #ca0420;
	font-weight: 800;
}
.counter-area .counter-max-wide {
	max-width: 810px;
	margin-left: auto;
}
.counter-area .overly-one::before {
	bottom: -1px;
}
.counter-area .overly-one::after {
	left: -1px;
}
.counter-area .overly-one .overly-two::before {
	top: -1px;
}
.counter-area .overly-one .overly-two::after {
	right: -1px;
}
.counter-area.counter-area-three {
	background-image: unset;
}
.counter-area.counter-area-three::before {
	display: none;
}
.counter-area.counter-area-three .container-fluid {
	max-width: 100%;
}
.counter-area.counter-area-three .counter-max-wide {
	margin-left: 0;
	margin-right: auto;
	max-width: 825px;
}
.counter-area.counter-area-three .single-counter {
	border-color: #edeaea;
}
.counter-area.counter-area-three .single-counter i {
	border-color: #edeaea;
}
.counter-area.counter-area-three .single-counter h2 {
	color: #131313;
}
.counter-area.counter-area-three .single-counter h3 {
	color: #000000;
}
.single-counter {
	border: 1px solid #202132;
	padding: 30px;
	position: relative;
	margin-bottom: 30px;
	padding-left: 170px;
}
.single-counter i {
	font-size: 80px;
	color: #ca0420;
	position: absolute;
	top: 30px;
	left: 30px;
	line-height: 1;
	border-right: 1px solid #202132;
	padding-right: 30px;
}
.single-counter h2 {
	color: #ffffff;
	font-size: 40px;
	margin-bottom: 5px;
	line-height: 1;
}
.single-counter h2 .target {
	position: relative;
	top: 2px;
}
.single-counter h3 {
	color: #ffffff;
	font-weight: normal;
	font-size: 15px;
	font-weight: 600;
}
/*
Team Area Style
======================================================*/
.team-area.team-area-three {
	position: relative;
	z-index: 1;
}
.team-area.team-area-three .single-team .team-content {
	background-color: #f5f7fa;
}
.team-area.team-area-three .single-team .team-content h3 {
	color: #131313;
}
.team-area.team-area-three .single-team .team-content span {
	color: #4b5280;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.team-area.team-area-three .single-team .team-content ul {
	background-color: #ffffff;
}
.team-area.team-area-three .single-team .team-content ul li a i {
	color: #131313;
}
.team-area.team-area-three .single-team .team-content ul li a:hover i {
	color: #ca0420;
}
.team-area.team-area-three .single-team:hover .team-content {
	background-color: #eae1d6;
}
.team-area.team-area-three .single-team:hover .team-content ul {
	background-color: #eae1d6;
}
.team-area.team-area-three .single-team:hover .team-content span {
	color: #131313;
}
.team-area.team-area-three .team-right-shape {
	z-index: -1;
	position: absolute;
	bottom: 50px;
	right: 50px;
	-webkit-animation: movebounce 5s linear infinite;
	animation: movebounce 5s linear infinite;
}
.single-team {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	margin-bottom: 30px;
	text-align: center;
}
.single-team .team-content {
	position: relative;
	background-color: #131313;
	padding: 20px 5px;
	margin-top: -20px;
	margin-left: 10px;
	margin-right: 10px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-team .team-content h3 {
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
}
.single-team .team-content span {
	color: #ffffff;
	font-size: 14px;
}
.single-team .team-content ul {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	background-color: #ca0420;
	padding: 10px 20px 25px;
	line-height: 1;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
}
.single-team .team-content ul li {
	display: inline-block;
	padding: 0 10px;
}
.single-team .team-content ul li a {
	color: #ffffff;
}
.single-team .team-content ul li a i {
	font-size: 20px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	position: relative;
	top: 4px;
}
.single-team .team-content ul li a:hover i {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}
.single-team:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
.single-team:hover .team-content {
	background-color: #ca0420;
}
.single-team:hover .team-content ul {
	bottom: -35px;
	opacity: 1;
}
/*
Approach Area Style
======================================================*/
.our-approach-area-three {
	overflow: hidden;
	position: relative;
}
.our-approach-area-three .approach-right-shape {
	position: absolute;
	top: 0;
	right: 50px;
	-webkit-animation: movebounce 5s linear infinite;
	animation: movebounce 5s linear infinite;
}
.single-approach-box {
	position: relative;
	margin-bottom: 30px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 30px 20px;
	text-align: center;
	margin-top: 40px;
	z-index: 1;
}
.single-approach-box .icon {
	font-size: 40px;
	color: #ffffff;
	display: inline-block;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: #ca0420;
	border-radius: 50%;
	position: absolute;
	top: -35px;
	left: 0;
	right: 0;
	margin: auto;
}
.single-approach-box .icon::after {
	content: "";
	position: absolute;
	top: -5px;
	left: -5px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	border: 1px solid #ca0420;
	border-radius: 50%;
}
.single-approach-box h3 {
	margin-bottom: 12px;
	margin-top: 35px;
}
.single-approach-box p {
	margin-bottom: 0;
}
.single-approach-box .approach-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: .7;
	z-index: -1;
}
.single-approach-box:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
 @-webkit-keyframes movebounce {
 0% {
 -webkit-transform: translateY(0px);
 transform: translateY(0px);
}
 50% {
 -webkit-transform: translateY(30px);
 transform: translateY(30px);
}
 100% {
 -webkit-transform: translateY(0px);
 transform: translateY(0px);
}
}
 @keyframes movebounce {
 0% {
 -webkit-transform: translateY(0px);
 transform: translateY(0px);
}
 50% {
 -webkit-transform: translateY(30px);
 transform: translateY(30px);
}
 100% {
 -webkit-transform: translateY(0px);
 transform: translateY(0px);
}
}
 @-webkit-keyframes movebounce-right {
 0% {
 -webkit-transform: translateX(0px);
 transform: translateX(0px);
}
 50% {
 -webkit-transform: translateX(30px);
 transform: translateX(30px);
}
 100% {
 -webkit-transform: translateX(0px);
 transform: translateX(0px);
}
}
 @keyframes movebounce-right {
 0% {
 -webkit-transform: translateX(0px);
 transform: translateX(0px);
}
 50% {
 -webkit-transform: translateX(30px);
 transform: translateX(30px);
}
 100% {
 -webkit-transform: translateX(0px);
 transform: translateX(0px);
}
}
/*
Safety Area Style
======================================================*/
.safety-area {
	overflow: hidden;
	background-color: #fffaf3;
	position: relative;
	z-index: 1;
}
.safety-area .safety-shape-1 {
	position: absolute;
	top: 50px;
	left: 50px;
	z-index: -1;
	-webkit-animation: movebounce 5s linear infinite;
	animation: movebounce 5s linear infinite;
}
.safety-area .safety-shape-2 {
	position: absolute;
	bottom: 50px;
	left: 50px;
	z-index: -1;
	-webkit-animation: movebounce-right 5s linear infinite;
	animation: movebounce-right 5s linear infinite;
}
.safety-area .safety-shape-3 {
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index: -1;
	-webkit-animation: movebounce 5s linear infinite;
	animation: movebounce 5s linear infinite;
}
.single-safety {
	text-align: center;
	padding: 30px;
}
.single-safety img {
	margin-bottom: 30px;
}
.single-safety h3 {
	margin-bottom: 12px;
}
.single-safety a {
	display: block;
}
.single-safety a h3 {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-safety:hover a h3 {
	color: #ca0420;
}
/*====================================================
INNER PAGE STYLE AREA
======================================================*/
/* 
Page Title Area Style
=====================================================*/
.page-title-area {
	position: relative;
	overflow: hidden;
	text-align: center;
	z-index: 1;
	background-color: #131313;
	padding-top: 100px;
	padding-bottom: 100px;
}
.page-title-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url();
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	opacity: 1;
}
.page-title-area.contact::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/contact-us-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	opacity: 1;
}
.page-title-area.carrers::before {
	background-image: url(../images/careers-bg.jpg);
}
.page-title-area.services::before {
	background-image: url(../images/services-all.jpg);
}
.page-title-area .page-title-content {
	position: relative;
	margin-top: -10px;
}
.page-title-area .page-title-content h2 {
	margin-bottom: 15px;
	color: #ffffff;
	font-size: 40px;
	letter-spacing: 3px;
	text-transform: uppercase;
}
.page-title-area .page-title-content ul {
	padding-left: 0;
	list-style-type: none;
	margin-top: 10px;
	margin-bottom: -5px;
}
.page-title-area .page-title-content ul li {
	display: inline-block;
	position: relative;
	font-size: 16px;
	padding-right: 15px;
	margin-left: 15px;
	font-weight: 500;
}
.page-title-area .page-title-content ul li::before {
	content: "";
	position: absolute;
	top: 6px;
	right: -3px;
	background-color: #ffffff;
	width: 1px;
	height: 15px;
	-webkit-transform: rotate(25deg);
	transform: rotate(25deg);
}
.page-title-area .page-title-content ul li:last-child::before {
	display: none;
}
.page-title-area .page-title-content ul li a {
	color: #ffffff;
}
.page-title-area .page-title-content ul li a:hover {
	color: #ca0420;
}
.page-title-area .page-title-content ul .active {
	color: #ffffff;
}
.page-title-area.page-title-style-two {
	padding-top: 260px;
	padding-bottom: 100px;
}
 @-webkit-keyframes FocuS {
 0% {
 opacity: 0;
}
 75% {
 opacity: 1;
}
 100% {
 opacity: 0;
}
}
 @keyframes FocuS {
 0% {
 opacity: 0;
}
 75% {
 opacity: 1;
}
 100% {
 opacity: 0;
}
}
/*
FAQ Area Style
======================================================*/
.faq-area {
	position: relative;
	z-index: 1;
}
.faq-area .faq-right-shape {
	z-index: -1;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-animation: movebounce 5s linear infinite;
	animation: movebounce 5s linear infinite;
}
.faq-bg {
	max-width: 700px;
	margin: auto;
}
.faq-accordion .faq-title {
	margin-bottom: 25px;
}
.faq-accordion .faq-title h2 {
	font-size: 40px;
	margin-bottom: 15px;
}
.faq-accordion .faq-title span {
	font-size: 18px;
}
.faq-accordion .accordion {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}
.faq-accordion .accordion .accordion-item {
	display: block;
	margin-bottom: 10px;
}
.faq-accordion .accordion .accordion-item:last-child {
	margin-bottom: 0;
}
.faq-accordion .accordion .accordion-item.active {
	margin-bottom: 0;
}
.faq-accordion .accordion .accordion-title {
	padding: 15px 15px 15px 30px;
	color: #131313;
	text-decoration: none;
	position: relative;
	display: block;
	border-bottom: 1px solid #e7e7e7;
	font-size: 18px;
	font-weight: 600;
}
.faq-accordion .accordion .accordion-title i {
	position: absolute;
	left: unset;
	left: 0;
	top: 17px;
	font-size: 25px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	color: #ca0420;
}
.faq-accordion .accordion .accordion-title.active i::before {
	content: "\eaf8";
}
.faq-accordion .accordion .accordion-content {
	display: none;
	position: relative;
	margin-top: -5px;
	padding-top: 15px;
}
.faq-accordion .accordion .accordion-content span {
	font-weight: 500;
	color: #131313;
}
.faq-accordion .accordion .accordion-content p {
	margin-bottom: 0;
}
.faq-accordion .accordion .accordion-content.show {
	display: block;
}
/*
Privacy PolicyArea Style
=====================================================*/
.privacy-policy {
	max-width: 800px;
	margin: auto;
}
.privacy-policy .title {
	margin-bottom: 30px;
	text-align: center;
}
.privacy-policy .title h2 {
	font-size: 36px;
}
.privacy-policy .privacy-content {
	margin-bottom: 30px;
}
.privacy-policy .privacy-content h3 {
	margin-bottom: 15px;
}
.privacy-policy .privacy-content p {
	margin-bottom: 10px;
}
.privacy-policy .privacy-content ul {
	margin-left: 20px;
	margin-bottom: 15px;
	list-style-type: disc;
	margin-top: 15px;
}
.privacy-policy .privacy-content ul li {
	margin-bottom: 10px;
}
.privacy-policy .privacy-content ul li:last-child {
	margin-bottom: 0;
}
.privacy-policy .privacy-content.eight {
	margin-bottom: 0;
}
.privacy-policy .privacy-content.eight p {
	margin-bottom: 0;
}
/*
Terms Conditions Area Style
=====================================================*/
.terms-conditions {
	max-width: 800px;
	margin: auto;
}
.terms-conditions .title {
	margin-bottom: 30px;
}
.terms-conditions .title span {
	color: #ca0420;
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
}
.terms-conditions .title h2 {
	font-size: 36px;
}
.terms-conditions img {
	margin-bottom: 30px;
}
.terms-conditions .conditions-content {
	margin-bottom: 30px;
}
.terms-conditions .conditions-content h3 {
	margin-bottom: 15px;
}
.terms-conditions .conditions-content p {
	margin-bottom: 10px;
}
.terms-conditions .conditions-content ul {
	margin-left: 20px;
	margin-bottom: 15px;
	list-style-type: disc;
	margin-top: 15px;
}
.terms-conditions .conditions-content ul li {
	margin-bottom: 10px;
}
.terms-conditions .conditions-content ul li:last-child {
	margin-bottom: 0;
}
.terms-conditions .conditions-content.six {
	margin-bottom: 0;
}
.terms-conditions .conditions-content.six p {
	margin-bottom: 0;
}
/*
Coming Soon Area CSS
=====================================================*/
.coming-soon-area {
	height: 100vh;
	position: relative;
	z-index: 1;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}
.coming-soon-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #131313;
	opacity: 0.9;
	z-index: -1;
}
.coming-soon-area .coming-soon-content {
	max-width: 700px;
	border-radius: 5px;
	overflow: hidden;
	text-align: center;
	padding: 40px 60px;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
	position: relative;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
}
.coming-soon-area .coming-soon-content .logo {
	display: inline-block;
}
.coming-soon-area .coming-soon-content h2 {
	font-size: 48px;
	margin-top: 30px;
	margin-bottom: 0;
}
.coming-soon-area .coming-soon-content #timer {
	margin-top: 40px;
}
.coming-soon-area .coming-soon-content #timer div {
	background-color: #131313;
	color: #ffffff;
	width: 100px;
	height: 105px;
	border-radius: 5px;
	font-size: 40px;
	font-weight: 800;
	margin-left: 10px;
	margin-right: 10px;
}
.coming-soon-area .coming-soon-content #timer div span {
	display: block;
	margin-top: -2px;
	font-size: 17px;
	font-weight: 600;
}
.coming-soon-area .coming-soon-content form {
	position: relative;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
.coming-soon-area .coming-soon-content form .form-group {
	margin-bottom: 25px;
	width: 100%;
	position: relative;
}
.coming-soon-area .coming-soon-content form .form-group .label-title {
	margin-bottom: 0;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	pointer-events: none;
	width: 100%;
	height: 100%;
	color: #131313;
}
.coming-soon-area .coming-soon-content form .form-group .label-title i {
	position: absolute;
	left: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	top: 9px;
	font-size: 22px;
}
.coming-soon-area .coming-soon-content form .form-group .label-title::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	background: #ca0420;
}
.coming-soon-area .coming-soon-content form .form-group .input-newsletter {
	border-radius: 0;
	border: none;
	border-bottom: 1px solid #eeeeee;
	padding: 0 0 0 32px;
	color: #131313;
	height: 45px;
	display: block;
	width: 100%;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	font-size: 16px;
	font-weight: 400;
	background-color: transparent;
}
 .coming-soon-area .coming-soon-content form .form-group .input-newsletter::-webkit-input-placeholder {
 color: #4b5280;
 -webkit-transition: all ease 0.5s;
 transition: all ease 0.5s;
}
 .coming-soon-area .coming-soon-content form .form-group .input-newsletter:-ms-input-placeholder {
 color: #4b5280;
 -webkit-transition: all ease 0.5s;
 transition: all ease 0.5s;
}
 .coming-soon-area .coming-soon-content form .form-group .input-newsletter::-ms-input-placeholder {
 color: #4b5280;
 -webkit-transition: all ease 0.5s;
 transition: all ease 0.5s;
}
 .coming-soon-area .coming-soon-content form .form-group .input-newsletter::placeholder {
 color: #4b5280;
 -webkit-transition: all ease 0.5s;
 transition: all ease 0.5s;
}
.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus {
	border-color: #ca0420;
	outline: 0 !important;
}
 .coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus::-webkit-input-placeholder {
 color: transparent;
}
 .coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus:-ms-input-placeholder {
 color: transparent;
}
 .coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus::-ms-input-placeholder {
 color: transparent;
}
 .coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus::placeholder {
 color: transparent;
}
.coming-soon-area .coming-soon-content form .default-btn {
	border-radius: 0;
	position: relative;
}
.coming-soon-area .coming-soon-content form .default-btn::before {
	border-radius: 0;
}
.coming-soon-area .coming-soon-content form .validation-danger {
	margin-top: 15px;
	color: #ff0000;
}
.coming-soon-area .coming-soon-content form .validation-success {
	margin-top: 15px;
}
.coming-soon-area .coming-soon-content form p {
	margin-bottom: 0;
	margin-top: 20px;
}
.coming-soon-area .online-treatment-shape-1 {
	position: absolute;
	top: 0;
	right: 0;
}
.coming-soon-area .online-treatment-shape-2 {
	position: absolute;
	bottom: 0;
	left: 0;
}
/*
404 Error Area Style
=====================================================*/
.error-area {
	text-align: center;
	position: relative;
	z-index: 1;
}
.error-area .error-content {
	z-index: 1;
	position: relative;
}
.error-area .error-content h1 {
	font-size: 300px;
	line-height: 1;
	font-weight: 700;
	color: #ca0420;
	margin-top: -48px;
}
.error-area .error-content h1 .a {
	display: inline-block;
}
.error-area .error-content h1 .red {
	color: #ff0000;
	display: inline-block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.error-area .error-content h1 .b {
	display: inline-block;
}
.error-area .error-content h3 {
	margin: 30px 0 0;
	position: relative;
	color: #ff0000;
}
.error-area .error-content p {
	margin: 20px 0 20px;
	font-size: 19px;
	color: #ca0420;
}
/*
User Area CSS
=====================================================*/
.user-area-style {
	position: relative;
	z-index: 1;
}
.user-area-style .contact-form-action {
	max-width: 600px;
	border-bottom: none;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
	padding: 30px;
	margin: auto;
}
.user-area-style .contact-form-action .account-title {
	margin-bottom: 30px;
}
.user-area-style .contact-form-action .account-title h2 {
	font-size: 30px;
	position: relative;
	line-height: 1;
	padding-left: 10px;
}
.user-area-style .contact-form-action .account-title h2::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: #ca0420;
}
.user-area-style .contact-form-action form .form-condition {
	margin-bottom: 20px;
}
.user-area-style .contact-form-action form .form-condition .agree-label {
	font-weight: 600;
}
.user-area-style .contact-form-action form .form-condition .agree-label a {
	color: #ca0420;
}
.user-area-style .contact-form-action form .form-group {
	margin-bottom: 30px;
}
.user-area-style .contact-form-action form .login-action {
	margin-bottom: 30px;
}
.user-area-style .contact-form-action form .login-action .log-rem {
	display: inline-block;
}
.user-area-style .contact-form-action form .login-action .log-rem label {
	margin-bottom: 0;
}
.user-area-style .contact-form-action form .login-action .forgot-login {
	display: inline-block;
	float: right;
}
.user-area-style .contact-form-action form .right {
	float: right;
}
.user-area-style .contact-form-action p {
	margin-top: 25px;
	line-height: 1;
}
.user-area-style .contact-form-action p a {
	color: #131313;
}
.user-area-style .contact-form-action p a:hover {
	color: #ca0420;
}
.user-area-style.recover-password-area .recover {
	max-width: 600px;
	margin: auto;
	border-top: 1px solid #ebebeb;
	padding-top: 30px;
}
.user-area-style.recover-password-area .recover .default-btn {
	margin-bottom: 0;
	margin-top: 30px;
}
.user-area-style.recover-password-area h3 {
	font-size: 40px;
	margin-top: -11px;
}
.user-area-style.recover-password-area p {
	margin-bottom: 30px;
	line-height: 1.8;
}
.user-area-style.recover-password-area .now-register {
	float: right;
	margin: 0;
}
/*
Product Area Style
======================================================*/
.showing-result {
	margin-bottom: 30px;
	margin-right: 15px;
	background-color: #eaecf1;
	padding: 10px;
}
.showing-result .showing-top-bar-ordering {
	text-align: right;
}
.showing-result .showing-top-bar-ordering .nice-select {
	color: #ca0420;
	border-radius: 0;
	border: none;
	float: unset;
	height: unset;
	line-height: initial;
	padding: 15px 35px 15px 15px;
	font-size: 16px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.showing-result .showing-top-bar-ordering .nice-select .list {
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	border-radius: 0;
	margin-top: 0;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	height: 250px;
	overflow-y: scroll;
}
.showing-result .showing-top-bar-ordering .nice-select .list .option {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	font-size: 16px;
	padding-left: 20px;
	padding-right: 20px;
}
.showing-result .showing-top-bar-ordering .nice-select .list .option:hover {
	background-color: #ca0420 !important;
	color: #ffffff;
}
.showing-result .showing-top-bar-ordering .nice-select .list .option.selected {
	font-weight: 500;
	color: #4b5280;
}
.showing-result .showing-top-bar-ordering .nice-select:after {
	right: 20px;
}
.showing-result .search-form .search-btn {
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
	width: 50px;
	line-height: 50px;
	background-color: #ca0420;
	color: #ffffff;
	font-size: 20px;
}
.showing-result .search-form .form-control {
	border: 1px solid #d7d7d7;
	background-color: #f5f6fa;
	font-size: 16px;
}
 .showing-result .search-form .form-control::-webkit-input-placeholder {
 color: #616161;
}
 .showing-result .search-form .form-control:-ms-input-placeholder {
 color: #616161;
}
 .showing-result .search-form .form-control::-ms-input-placeholder {
 color: #616161;
}
 .showing-result .search-form .form-control::placeholder {
 color: #616161;
}
.single-product {
	text-align: center;
	margin-bottom: 30px;
}
.single-product .product-img {
	position: relative;
	margin-bottom: 20px;
}
.single-product .product-img ul {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-product .product-img ul li {
	display: inline-block;
	margin: 0 5px;
}
.single-product .product-img ul li a i {
	font-size: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #ffffff;
	color: #131313;
	border-radius: 4px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-product .product-img ul li a:hover i {
	background-color: #ca0420;
	color: #ffffff;
}
.single-product .product-img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.20;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.single-product a h3 {
	font-size: 20px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	margin-bottom: 10px;
}
.single-product a:hover h3 {
	color: #ca0420;
}
.single-product span {
	font-size: 16px;
	display: block;
}
.single-product span del {
	margin-right: 10px;
}
.single-product .default-btn {
	width: 100%;
	margin-top: 25px;
}
.single-product:hover .product-img ul {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
.single-product:hover .product-img::before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
/*
product-view-one
=================================================*/
.product-view-one {
	padding-right: 0 !important;
}
.product-view-one.modal.show .modal-dialog {
	margin-top: 25px;
}
.product-view-one .product-view-one-image {
	background-color: #eeeeee;
	padding: 30px;
}
.product-view-one .modal-dialog {
	max-width: 900px;
	margin: 0 auto;
}
.product-view-one .modal-content {
	border: none;
	padding: 40px;
	border-radius: 0;
}
.product-view-one .modal-content button.close {
	position: absolute;
	right: 0;
	top: 0;
	outline: 0;
	opacity: 1;
	color: #131313;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	line-height: 35px;
	padding: 0;
	margin: 0;
	font-size: 20px;
	width: 35px;
	text-shadow: unset;
	height: 35px;
}
.product-view-one .modal-content button.close:hover {
	background-color: #ff0000;
	color: #ffffff;
}
.product-view-one .modal-content .product-content h3 {
	font-size: 22px;
	margin-bottom: 14px;
}
.product-view-one .modal-content .product-content h3 a {
	color: #131313;
}
.product-view-one .modal-content .product-content h3 a:hover {
	color: #131313;
}
.product-view-one .modal-content .product-content .price {
	margin-bottom: 10px;
}
.product-view-one .modal-content .product-content .price span {
	display: inline-block;
	font-size: 18px;
	color: #131313;
}
.product-view-one .modal-content .product-content .price del {
	display: inline-block;
	font-size: 18px;
	color: #c1c1c1;
	margin-left: 5px;
}
.product-view-one .modal-content .product-content .product-review {
	margin-bottom: 10px;
}
.product-view-one .modal-content .product-content .product-review .rating {
	display: inline-block;
	padding-right: 5px;
}
.product-view-one .modal-content .product-content .product-review .rating i {
	color: #ca0420;
}
.product-view-one .modal-content .product-content .product-review .rating-count {
	display: inline-block;
	color: #131313;
	border-bottom: 1px solid #131313;
	line-height: initial;
}
.product-view-one .modal-content .product-content .product-info {
	list-style-type: none;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
}
.product-view-one .modal-content .product-content .product-info li {
	font-size: 16px;
	color: #131313;
	margin-bottom: 10px;
}
.product-view-one .modal-content .product-content .product-info li:last-child {
	margin-bottom: 0;
}
.product-view-one .modal-content .product-content .product-info li span {
	color: #131313;
}
.product-view-one .modal-content .product-content .product-info li a {
	display: inline-block;
	font-weight: 500;
	color: #131313;
}
.product-view-one .modal-content .product-content .product-info li a:hover {
	color: #131313;
}
.product-view-one .modal-content .product-content .product-color-switch {
	margin-top: 10px;
	margin-bottom: 10px;
}
.product-view-one .modal-content .product-content .product-color-switch h4 {
	font-size: 16px;
	color: #131313;
	margin-bottom: 6px;
}
.product-view-one .modal-content .product-content .product-color-switch ul {
	list-style-type: none;
	margin-bottom: 0;
	margin-top: -4px;
	margin-left: -4px;
	padding-left: 0;
}
.product-view-one .modal-content .product-content .product-color-switch ul li {
	display: inline-block;
	margin-left: 4px;
	margin-top: 4px;
}
.product-view-one .modal-content .product-content .product-color-switch ul li a {
	display: inline-block;
	position: relative;
	border: 1px solid transparent;
	width: 25px;
	height: 25px;
}
.product-view-one .modal-content .product-content .product-color-switch ul li a::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #eeeeee;
	margin: 2px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.product-view-one .modal-content .product-content .product-color-switch ul li a:hover {
	border-color: #131313;
}
.product-view-one .modal-content .product-content .product-color-switch ul li a:focus {
	border-color: #131313;
}
.product-view-one .modal-content .product-content .product-color-switch ul li a.color-white::before {
	background: blue;
}
.product-view-one .modal-content .product-content .product-color-switch ul li a.color-black::before {
	background: #222222;
}
.product-view-one .modal-content .product-content .product-color-switch ul li a.color-green::before {
	background: green;
}
.product-view-one .modal-content .product-content .product-color-switch ul li a.color-yellowgreen::before {
	background: yellowgreen;
}
.product-view-one .modal-content .product-content .product-color-switch ul li a.color-teal::before {
	background: teal;
}
.product-view-one .modal-content .product-content .product-color-switch ul li.active a {
	border-color: #131313;
}
.product-view-one .modal-content .product-content .product-add-to-cart .input-counter {
	max-width: 130px;
	min-width: 130px;
	margin-right: 10px;
	text-align: center;
	display: inline-block;
	position: relative;
}
.product-view-one .modal-content .product-content .product-add-to-cart .input-counter span {
	position: absolute;
	top: 0;
	background-color: transparent;
	cursor: pointer;
	color: #4b5280;
	width: 40px;
	height: 100%;
	line-height: 50px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.product-view-one .modal-content .product-content .product-add-to-cart .input-counter span:hover {
	color: #131313;
}
.product-view-one .modal-content .product-content .product-add-to-cart .input-counter span.minus-btn {
	left: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.product-view-one .modal-content .product-content .product-add-to-cart .input-counter span.minus-btn:hover {
	background-color: #ca0420;
	color: #ffffff;
}
.product-view-one .modal-content .product-content .product-add-to-cart .input-counter span.plus-btn {
	right: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.product-view-one .modal-content .product-content .product-add-to-cart .input-counter span.plus-btn:hover {
	background-color: #ca0420;
	color: #ffffff;
}
.product-view-one .modal-content .product-content .product-add-to-cart .input-counter input {
	height: 48px;
	color: #131313;
	outline: 0;
	display: block;
	border: none;
	background-color: #f8f8f8;
	text-align: center;
	width: 100%;
	font-size: 17px;
	font-weight: 600;
}
 .product-view-one .modal-content .product-content .product-add-to-cart .input-counter input::-webkit-input-placeholder {
 color: #131313;
}
 .product-view-one .modal-content .product-content .product-add-to-cart .input-counter input:-ms-input-placeholder {
 color: #131313;
}
 .product-view-one .modal-content .product-content .product-add-to-cart .input-counter input::-ms-input-placeholder {
 color: #131313;
}
 .product-view-one .modal-content .product-content .product-add-to-cart .input-counter input::placeholder {
 color: #131313;
}
.product-view-one .modal-content .product-content .share-this-product h3 {
	font-weight: normal;
	font-size: 16px;
	margin-bottom: 8px;
	margin-top: 10px;
}
.product-view-one .modal-content .product-content .share-this-product ul li {
	display: inline-block;
	margin-right: 3px;
}
.product-view-one .modal-content .product-content .share-this-product ul li a i {
	display: inline-block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	background-color: #eeeeee;
	border-radius: 4px;
	text-align: center;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.product-view-one .modal-content .product-content .share-this-product ul li a:hover i {
	background-color: #ca0420;
	color: #ffffff;
}
.product-view-one .owl-carousel .owl-item img {
	width: unset;
	margin: auto;
}
.product-view-one #big .item {
	padding: 30px;
	background-color: #ffffff;
	margin-bottom: 30px;
}
.product-view-one .owl-item.active.current {
	background-color: #ca0420 !important;
	padding: 5px;
}
.product-view-one.fade {
	-webkit-animation: zoomIn 1s linear;
	animation: zoomIn 1s linear;
}
.product-view-one .owl-next {
	position: absolute;
	top: 50%;
	right: 50px;
	margin: 0 !important;
	border-radius: 0 !important;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	opacity: 0;
	-webkit-transform: translateY(-25px);
	transform: translateY(-25px);
}
.product-view-one .owl-next i {
	background-color: #ca0420;
	color: #ffffff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	border-radius: 4px;
	font-size: 15px;
}
.product-view-one .owl-prev {
	position: absolute;
	top: 50%;
	left: 50px;
	margin: 0 !important;
	border-radius: 0 !important;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	opacity: 0;
	-webkit-transform: translateY(-25px);
	transform: translateY(-25px);
}
.product-view-one .owl-prev i {
	background-color: #ca0420 !important;
	color: #ffffff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	font-size: 15px;
	border-radius: 4px;
}
.product-view-one:hover .owl-prev {
	opacity: 1;
	left: 0;
}
.product-view-one:hover .owl-next {
	opacity: 1;
	right: 0;
}
.product-view-one .owl-theme .owl-nav {
	margin-top: 0 !important;
}
.product-view-one .owl-theme .owl-nav [class*=owl-]:hover {
	background-color: transparent;
}
/*
Shopping Cart Area Style
======================================================*/
.shopping-cart-area .cart-controller {
	max-width: 810px;
	margin: auto;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
	padding: 30px;
}
.shopping-cart-area .product-thumbnail {
	width: 130px;
}
.shopping-cart-area .cart-table {
	text-align: center;
}
.shopping-cart-area .cart-table table thead tr th {
	border-bottom: none;
	border: none;
	border-bottom: 1px solid #dedede;
	color: #131313;
	padding-top: 0;
	font-size: 16px;
	font-weight: 600;
}
.shopping-cart-area .cart-table table tbody tr td {
	vertical-align: middle;
	border: none;
	border-bottom: 1px solid #dedede;
	white-space: nowrap;
}
.shopping-cart-area .cart-table table tbody tr td:first-child {
	text-align: left;
	padding-left: 0;
}
.shopping-cart-area .cart-table table tbody tr td a {
	color: #131313;
}
.shopping-cart-area .cart-table table tbody tr td a:hover {
	color: #ca0420;
}
.shopping-cart-area .cart-table table tbody tr td.product-subtotal {
	font-size: 15px;
}
.shopping-cart-area .cart-table table tbody tr td.product-subtotal .remove {
	margin-left: 50px;
	width: 30px;
	height: 30px;
	line-height: 34px;
	display: inline-block;
	background-color: #ffffff;
	border-radius: 50%;
	font-size: 20px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	color: #4b5280;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	float: right;
}
.shopping-cart-area .cart-table table tbody tr td.product-subtotal .remove:hover {
	background-color: #ff0000;
	color: #ffffff;
}
.shopping-cart-area .cart-table table tbody tr td.product-quantity {
	width: 145px;
}
.shopping-cart-area .cart-table table tbody tr td.product-quantity .input-counter {
	position: relative;
}
.shopping-cart-area .cart-table table tbody tr td.product-quantity .input-counter input {
	height: 45px;
	color: #131313;
	outline: 0;
	display: block;
	border: none;
	background-color: #f8f8f8;
	text-align: center;
	width: 100%;
	font-size: 15px;
	font-weight: 500;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
}
 .shopping-cart-area .cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
 color: #131313;
}
 .shopping-cart-area .cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
 color: #131313;
}
 .shopping-cart-area .cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
 color: #131313;
}
 .shopping-cart-area .cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
 color: #131313;
}
.shopping-cart-area .cart-table table tbody tr td.product-quantity .input-counter .minus-btn {
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	cursor: pointer;
	color: #131313;
	width: 40px;
	height: 100%;
	line-height: 48px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	border: 1px solid #dedede;
}
.shopping-cart-area .cart-table table tbody tr td.product-quantity .input-counter .minus-btn:hover {
	color: #ffffff;
	background-color: #ca0420;
}
.shopping-cart-area .cart-table table tbody tr td.product-quantity .input-counter .plus-btn {
	position: absolute;
	top: 0;
	right: 0;
	background-color: transparent;
	cursor: pointer;
	color: #131313;
	width: 40px;
	height: 100%;
	line-height: 48px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	border: 1px solid #dedede;
}
.shopping-cart-area .cart-table table tbody tr td.product-quantity .input-counter .plus-btn:hover {
	color: #ffffff;
	background-color: #ca0420;
}
.shopping-cart-area .coupon-cart {
	margin-top: 20px;
}
.shopping-cart-area .coupon-cart .form-group {
	position: relative;
}
.shopping-cart-area .coupon-cart .form-group .form-control {
	border: 1px solid #dedede;
}
.shopping-cart-area .coupon-cart .form-group .form-control:focus {
	border-color: #ca0420;
}
.shopping-cart-area .coupon-cart .form-group .default-btn {
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
	padding: 15px 40px;
}
.shopping-cart-area .coupon-cart .form-group .default-btn::before {
	display: none;
}
.shopping-cart-area .coupon-cart .form-group .default-btn::after {
	display: none;
}
.shopping-cart-area .coupon-cart .default-btn.update {
	background-color: transparent;
	border-color: #131313;
	color: #131313;
}
.shopping-cart-area .coupon-cart .default-btn.update:hover {
	background-color: #ca0420;
	border-color: #ca0420;
	color: #ffffff;
}
.shopping-cart-area .cart-totals {
	padding: 30px;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
	max-width: 390px;
	margin: 40px auto 0;
}
.shopping-cart-area .cart-totals h3 {
	margin-bottom: 25px;
	position: relative;
	padding-left: 10px;
}
.shopping-cart-area .cart-totals h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: #ca0420;
}
.shopping-cart-area .cart-totals ul {
	padding: 0;
	margin: 0 0 25px;
	list-style-type: none;
}
.shopping-cart-area .cart-totals ul li {
	color: #4b5280;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px dashed #dedede;
}
.shopping-cart-area .cart-totals ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}
.shopping-cart-area .cart-totals ul li span {
	float: right;
	color: #666666;
	font-weight: normal;
}
.shopping-cart-area .cart-totals .default-btn {
	display: block;
}
/* 
Checkout Area Style
=====================================================*/
.checkout-area .billing-details {
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 30px;
}
.checkout-area .billing-details h3 {
	margin-bottom: 20px;
	font-size: 30px;
}
.checkout-area .billing-details .form-group {
	margin-bottom: 20px;
}
.checkout-area .billing-details .form-group label {
	display: block;
	color: #4b5280;
	margin-bottom: 10px;
	font-size: 16px;
}
.checkout-area .billing-details .form-group label .required {
	color: #4b5280;
}
.checkout-area .billing-details .form-group .nice-select {
	float: unset;
	line-height: 45px;
	color: #4b5280;
	padding-top: 0;
	padding-bottom: 0;
}
.checkout-area .billing-details .form-group .nice-select .list {
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
	box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
	border-radius: 0;
	margin-top: 0;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}
.checkout-area .billing-details .form-group .nice-select .list .option {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	padding-left: 20px;
	padding-right: 20px;
}
.checkout-area .billing-details .form-group .nice-select .list .option:hover {
	background-color: #ca0420 !important;
	color: #ffffff;
}
.checkout-area .billing-details .form-group .nice-select .list .option.selected {
	background-color: transparent;
}
.checkout-area .billing-details .form-group .nice-select:after {
	right: 20px;
}
.checkout-area .billing-details .form-group .nice-select .option:hover, .checkout-area .billing-details .form-group .nice-select .option.focus, .checkout-area .billing-details .form-group .nice-select .option.selected.focus {
	background-color: #ca0420 !important;
	color: #ffffff !important;
}
.checkout-area .billing-details .form-group textarea {
	padding-top: 13px;
}
.checkout-area .billing-details .form-check {
	margin-bottom: 20px;
}
.checkout-area .billing-details .form-check .form-check-label {
	color: #4b5280;
	font-weight: 600;
	font-size: 14px;
}
.checkout-area .billing-details .form-check label {
	position: relative;
	top: 1px;
}
.checkout-area .billing-details .col-lg-12:last-child .form-group {
	margin-bottom: 0;
}
.checkout-area .cart-totals {
	margin-bottom: 30px;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 30px;
	background-color: #ffffff;
}
.checkout-area .cart-totals h3 {
	position: relative;
	margin-bottom: 25px;
	padding-left: 10px;
}
.checkout-area .cart-totals h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: #ca0420;
}
.checkout-area .cart-totals ul li {
	color: #4b5280;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px dashed #dedede;
}
.checkout-area .cart-totals ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.checkout-area .cart-totals ul li span {
	float: right;
	color: #666666;
	font-weight: normal;
}
.checkout-area .faq-accordion {
	margin-bottom: 30px;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
	padding: 30px;
	margin-bottom: 0;
}
.checkout-area .faq-accordion h3 {
	position: relative;
	margin-bottom: 25px;
	padding-left: 10px;
}
.checkout-area .faq-accordion h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: #ca0420;
}
.checkout-area .faq-accordion .accordion .accordion-content {
	border-top: none;
	padding: 0;
}
.checkout-area .faq-accordion .accordion .accordion-title {
	padding: 0;
	position: relative;
	padding-left: 25px;
	background-color: transparent;
	border: none;
	margin-bottom: 10px;
	color: #131313;
	font-weight: 500;
}
.checkout-area .faq-accordion .accordion .accordion-title.active::before {
	background-color: #ca0420;
}
.checkout-area .faq-accordion .accordion .accordion-title.active::after {
	background-color: #ca0420;
}
.checkout-area .faq-accordion .accordion .accordion-title::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 15px;
	height: 15px;
	background-color: #131313;
	border-radius: 50%;
}
.checkout-area .faq-accordion .accordion .accordion-title::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 2px;
	width: 11px;
	height: 11px;
	background-color: #ffffff;
	border-radius: 50%;
	border-radius: 50%;
}
.checkout-area .faq-accordion .accordion .accordion-title:hover {
	color: #ca0420;
}
.checkout-area .faq-accordion .accordion .accordion-item {
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	margin-bottom: 15px;
}
.checkout-area .faq-accordion .form-check {
	font-size: 14px;
}
.checkout-area .faq-accordion .form-check label {
	margin-bottom: 5px;
}
.checkout-area .faq-accordion .form-check label a {
	color: #ca0420;
}
.checkout-area .faq-accordion .form-check label a:hover {
	color: #ca0420;
}
/* 
Wishlist Area Style
=====================================================*/
.wishlist {
	max-width: 1080px;
	margin: auto;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 30px;
}
.wishlist .default-btn {
	float: right;
	margin-top: -11px;
	color: #ffffff !important;
	position: relative;
	top: 6px;
}
.wishlist .default-btn:hover {
	color: #ca0420 !important;
}
.wishlist .table-responsive > .table-bordered {
	margin-bottom: 0;
}
/*
Shop Details Area Style
=====================================================*/
.product-details-area .product-details-desc h3 {
	margin-bottom: 20px;
	font-size: 25px;
}
.product-details-area .product-details-desc p {
	margin-bottom: 0;
}
.product-details-area .product-details-desc .price {
	margin-bottom: 15px;
	padding-bottom: 15px;
	color: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: 500;
	border-bottom: 1px solid #eeeeee;
}
.product-details-area .product-details-desc .price span {
	padding: 0 5px;
}
.product-details-area .product-details-desc .price del {
	color: #ca0420;
	margin-right: 10px;
}
.product-details-area .product-details-desc .product-add-to-cart {
	margin-bottom: 20px;
	border-top: 1px solid #eeeeee;
	padding-top: 20px;
	margin-top: 20px;
}
.product-details-area .product-details-desc .product-add-to-cart h3 {
	display: inline-block;
	margin-right: 10px;
	font-size: 17px;
}
.product-details-area .product-details-desc .product-add-to-cart .input-counter {
	max-width: 130px;
	min-width: 130px;
	margin-right: 10px;
	text-align: center;
	display: inline-block;
	position: relative;
	border: 1px solid #cfcfcf;
}
.product-details-area .product-details-desc .product-add-to-cart .input-counter span {
	position: absolute;
	top: 0;
	background-color: transparent;
	cursor: pointer;
	color: #d0d0d0;
	width: 40px;
	height: 100%;
	line-height: 34px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.product-details-area .product-details-desc .product-add-to-cart .input-counter span:hover {
	color: #ca0420;
}
.product-details-area .product-details-desc .product-add-to-cart .input-counter span.minus-btn {
	left: 0;
	border-right: 1px solid #cfcfcf;
}
.product-details-area .product-details-desc .product-add-to-cart .input-counter span.plus-btn {
	right: 0;
	border-left: 1px solid #cfcfcf;
}
.product-details-area .product-details-desc .product-add-to-cart .input-counter input {
	height: 30px;
	color: #333333;
	outline: 0;
	display: block;
	border: none;
	background-color: #f8f8f8;
	text-align: center;
	width: 100%;
}
 .product-details-area .product-details-desc .product-add-to-cart .input-counter input::-webkit-input-placeholder {
 color: #333333;
}
 .product-details-area .product-details-desc .product-add-to-cart .input-counter input:-ms-input-placeholder {
 color: #333333;
}
 .product-details-area .product-details-desc .product-add-to-cart .input-counter input::-ms-input-placeholder {
 color: #333333;
}
 .product-details-area .product-details-desc .product-add-to-cart .input-counter input::placeholder {
 color: #333333;
}
.product-details-area .product-details-desc .social-wrap {
	margin-top: 20px;
}
.product-details-area .product-details-desc .social-wrap li {
	display: inline-block;
	padding-right: 10px;
	font-size: 17px;
	font-weight: 600;
	color: #131313;
}
.product-details-area .product-details-desc .social-wrap li span {
	display: inline-block;
	margin-right: 45px;
}
.product-details-area .product-details-desc .social-wrap li a i {
	font-size: 20px;
	line-height: 1;
	color: #131313;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.product-details-area .product-details-desc .social-wrap li a:hover i {
	color: #ca0420;
}
.product-details-area .product-details-desc .default-btn {
	margin-bottom: 0 !important;
}
.product-details-area .product-details-desc .default-btn i {
	position: relative;
	top: -1px;
	margin-right: 5px;
}
.product-details-area .product-details-desc .category {
	font-size: 17px;
	font-weight: 600;
	margin-top: 15px;
}
.product-details-area .product-details-desc .category span {
	font-weight: normal;
}
.product-details-area .product-details-desc .product-review {
	position: relative;
	margin-bottom: 10px;
}
.product-details-area .product-details-desc .product-review .rating i {
	color: #ffba0a;
}
.product-details-area .product-details-desc .product-review .rating-count {
	position: absolute;
	top: 0;
	left: 110px;
}
.product-details-area .product-details-image {
	text-align: center;
	background-color: #f7f7f7;
}
.product-details-area .tab .tabs_item {
	display: none;
}
.product-details-area .tab .tabs_item:first-child {
	display: block;
}
.product-details-area .products-details-tab {
	margin-top: 50px;
}
.product-details-area .products-details-tab .tabs {
	list-style-type: none;
	padding-left: 0;
	text-align: center;
	border-bottom: 1px solid #eaedff;
}
.product-details-area .products-details-tab .tabs li {
	display: inline-block;
	line-height: initial;
	margin-right: 15px;
	margin-left: 15px;
	margin-bottom: 20px;
}
.product-details-area .products-details-tab .tabs li a {
	display: inline-block;
	position: relative;
	color: #333333;
	border-bottom: none;
	line-height: 1;
	font-size: 16px;
	font-weight: 500;
}
.product-details-area .products-details-tab .tabs li a:hover {
	color: #ca0420;
}
.product-details-area .products-details-tab .tabs li.current a {
	color: #ca0420;
}
.product-details-area .products-details-tab .tab_content {
	padding: 30px;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content p {
	margin-bottom: 20px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content p:last-child {
	margin-bottom: 0;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
	text-align: left;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li {
	border: 1px solid #eaedff;
	border-bottom: none;
	padding: 10px 15px;
	color: #57647c;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li:last-child {
	border-bottom: 1px solid #eaedff;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li span {
	display: inline-block;
	width: 30%;
	color: #131313;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content h3 {
	margin-bottom: 15px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title {
	position: relative;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating {
	display: inline-block;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating .fas.fa-star {
	color: #ffba0a;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating i {
	color: #ffba0a;
	font-size: 14px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title p {
	margin-bottom: 0;
	display: inline-block;
	padding-left: 5px;
	line-height: initial;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .btn {
	position: absolute;
	right: 0;
	bottom: 10px;
	padding: 10px 11px;
	font-size: 11px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .btn:focus {
	border: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border: 4px;
	background-color: #ca0420;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments {
	margin-top: 35px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item {
	margin-top: 30px;
	position: relative;
	padding-right: 200px;
	border-top: 1px dashed #eaedff;
	padding-top: 30px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .rating .fas.fa-star {
	color: #ffba0a;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .rating i {
	font-size: 14px;
	color: #ffba0a;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item h3 {
	margin-top: 10px;
	margin-bottom: 10px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item span {
	margin-bottom: 10px;
	font-size: 13px;
	display: block;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item p {
	margin-bottom: 0;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .review-report-link {
	position: absolute;
	right: 0;
	color: #57647c;
	top: 40px;
	text-decoration: underline;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .review-report-link:hover {
	color: #ff4800;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form {
	margin-top: 30px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group {
	margin-bottom: 20px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group label {
	color: #444444;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group textarea {
	padding-top: 15px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group .form-control {
	font-size: 14px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .btn:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	border-radius: 0;
}
/*
Blog Details Area Style
======================================================*/
.blog-details-content .blog-top-content {
	background-color: #f9fafb;
	padding: 20px;
	margin-bottom: 35px;
}
.blog-details-content .blog-top-content .blog-details-img {
	margin-bottom: 30px;
}
.blog-details-content .blog-top-content .news-content h3 {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	margin-bottom: 20px;
	font-size: 25px;
}
.blog-details-content .blog-top-content .news-content .admin {
	padding-bottom: 24px;
}
.blog-details-content .blog-top-content .news-content .admin li {
	display: inline-block;
	font-size: 16px;
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid #ca0420;
}
.blog-details-content .blog-top-content .news-content .admin li:last-child {
	margin-right: 0;
	border-right: none;
}
.blog-details-content .blog-top-content .news-content .admin li i {
	color: #ca0420;
	font-size: 18px;
	position: relative;
	top: 1px;
	margin-right: 5px;
}
.blog-details-content .blog-top-content blockquote {
	position: relative;
	margin-top: 30px;
	margin-bottom: 30px;
	background-color: #ffffff;
	padding: 30px;
}
.blog-details-content .blog-top-content blockquote p {
	font-weight: 600;
	font-size: 18px;
	color: #131313;
	text-align: center;
	padding-left: 50px;
	margin-bottom: 0;
}
.blog-details-content .blog-top-content blockquote i {
	font-size: 50px;
	color: #ffffff;
	background-color: #ca0420;
	position: absolute;
	top: 30px;
	left: 30px;
	line-height: 1;
}
.blog-details-content .news-content-2 {
	margin-bottom: 30px;
}
.blog-details-content .news-content-2 h3 {
	font-size: 24px;
}
.blog-details-content .single-blog-post-img {
	margin-bottom: 30px;
}
.blog-details-content .tag-list {
	background-color: #ffffff;
	padding: 20px;
	margin-top: 30px;
}
.blog-details-content .tag-list span {
	margin-right: 10px;
	font-weight: 600;
	font-size: 18px;
	color: #131313;
}
.blog-details-content .tag-list ul {
	display: inline-block;
}
.blog-details-content .tag-list ul li {
	display: inline-block;
}
.blog-details-content .tag-list ul li a {
	border: 1px solid #eeeeee;
	padding: 5px;
	margin-right: 10px;
}
.blog-details-content .tag-list ul li a:hover {
	background-color: #ca0420;
	color: #ffffff;
	border-color: #ca0420;
}
.blog-details-content .tag-list ul li:last-child a {
	margin-right: 0;
}
.blog-details-content .comments {
	background-color: #f9fafb;
	padding: 20px;
	margin-bottom: 35px;
}
.blog-details-content .comments h3 {
	margin-bottom: 30px;
	font-size: 24px;
	position: relative;
	display: inline-block;
	padding-left: 10px;
}
.blog-details-content .comments h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: #ca0420;
}
.blog-details-content .comments ul li {
	position: relative;
	padding-left: 100px;
	margin-bottom: 30px;
}
.blog-details-content .comments ul li:last-child {
	margin-bottom: 0;
}
.blog-details-content .comments ul li img {
	margin-bottom: 20px;
	position: absolute;
	left: 0;
	top: 0;
}
.blog-details-content .comments ul li h3 {
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 16px;
	padding-left: 0;
}
.blog-details-content .comments ul li h3::before {
	display: none;
}
.blog-details-content .comments ul li span {
	display: block;
	margin-bottom: 15px;
}
.blog-details-content .comments ul li a {
	font-size: 14px;
	font-weight: 600;
}
.blog-details-content .comments ul li a:hover {
	letter-spacing: 1px;
}
.blog-details-content .comments ul li a i {
	margin-right: 5px;
}
.blog-details-content .leave-reply {
	background-color: #f9fafb;
	padding: 20px;
}
.blog-details-content .leave-reply .star {
	color: #ff0018;
}
.blog-details-content .leave-reply h3 {
	margin-bottom: 30px;
	font-size: 24px;
	position: relative;
	display: inline-block;
	padding-left: 10px;
}
.blog-details-content .leave-reply h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: #ca0420;
}
.blog-details-content .leave-reply p {
	margin-bottom: 30px;
}
.blog-details-content .leave-reply .form-group {
	margin-bottom: 25px;
}
.blog-details-content .leave-reply .form-group #chb1 {
	margin-right: 5px;
}
.blog-details-content .leave-reply .form-group label {
	margin-bottom: 10px;
}
.blog-details-content .leave-reply input[type=checkbox], .blog-details-content .leave-reply input[type=radio] {
	margin-right: 5px;
	position: relative;
	top: 1px;
}
.sidebar-widget {
	margin-bottom: 35px;
	position: relative;
	padding: 20px;
	background-color: #f9fafb;
}
.sidebar-widget h3 {
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	margin-top: -5px;
	display: inline-block;
	padding-left: 10px;
}
.sidebar-widget h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: #ca0420;
}
.sidebar-widget.search .search-form {
	background-color: #ffffff;
}
.sidebar-widget.search .search-form .search-button {
	position: absolute;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: #ca0420;
	top: 20px;
	right: 20px;
	font-size: 20px;
	color: #ffffff;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.sidebar-widget.search .search-form .search-button:hover {
	background-color: #131313;
}
.sidebar-widget.recent-post ul li {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eeeeee;
	position: relative;
	padding-left: 90px;
}
.sidebar-widget.recent-post ul li:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
.sidebar-widget.recent-post ul li a {
	font-size: 16px;
	color: #131313;
	margin-bottom: 10px;
	font-weight: 600;
}
.sidebar-widget.recent-post ul li a:hover {
	color: #ca0420;
}
.sidebar-widget.recent-post ul li a img {
	position: absolute;
	top: 0;
	left: 0;
}
.sidebar-widget.recent-post ul li span {
	display: block;
	font-size: 14px;
}
.sidebar-widget.categories ul li {
	position: relative;
	margin-bottom: 10px;
	font-size: 17px;
	position: relative;
	padding-left: 20px;
}
.sidebar-widget.categories ul li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 10px;
	height: 10px;
	background-color: #ca0420;
}
.sidebar-widget.categories ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.sidebar-widget.tags ul li {
	display: inline-block;
	margin-bottom: 10px;
	margin-right: 10px;
}
.sidebar-widget.tags ul li a {
	border: 1px solid #eeeeee;
	padding: 8px 12px;
}
.sidebar-widget.tags ul li a:hover {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	background-color: #ca0420;
	color: #ffffff;
	border-color: #ca0420;
}
.sidebar-widget.tags ul li:last-child {
	margin-bottom: 0;
}
/*
Services Details Area Style
======================================================*/
.services-details-content .services-content {
	margin-bottom: 30px;
}
.services-details-content .services-content h2 {
	font-size: 40px;
	margin-bottom: 15px;
}
.services-details-content .services-content .services-details-one {
	margin-top: 30px;
}
.services-details-content .single-services .services-content {
	margin-bottom: 0;
	bottom: 0;
}
.services-details-content .single-services .services-content h3 {
	margin-bottom: 0;
}
.services-details-content .related-post .title {
	margin-bottom: 25px;
}
.services-details-content .related-post .title h2 {
	font-size: 25px;
}
.services-sidebar .services-category {
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
	border: 1px solid #d9d9d9;
	margin-bottom: 30px;
}
.services-sidebar .services-category ul li a {
	font-weight: 500;
	color: #131313;
	padding: 15px 25px;
	border-bottom: 1px solid #d9d9d9;
	display: block;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.services-sidebar .services-category ul li a i {
	float: right;
	font-size: 30px;
	position: relative;
	top: -2px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.services-sidebar .services-category ul li:last-child a {
	border-bottom: none;
}
.services-sidebar .services-category ul li:hover a {
	color: #ffffff;
	background-color: #ca0420;
}
.services-sidebar .services-category ul li:hover a i {
	color: #ffffff;
}
.services-sidebar .services-pdf {
	margin-bottom: 30px;
}
.services-sidebar .services-pdf ul li {
	margin-bottom: 15px;
}
.services-sidebar .services-pdf ul li:last-child {
	margin-bottom: 0;
}
.services-sidebar .services-pdf ul li a {
	padding: 20px 30px;
	background-color: #131313;
	color: #ffffff;
	display: block;
	position: relative;
	padding-left: 75px;
}
.services-sidebar .services-pdf ul li a svg {
	fill: #ffffff;
	font-size: 40px;
	position: absolute;
	top: 13px;
	left: 30px;
}
.services-sidebar .services-pdf ul li:hover a {
	background-color: #ca0420;
}
.services-sidebar .services-contact {
	background-color: #ca0420;
	padding: 30px;
}
.services-sidebar .services-contact h3 {
	color: #ffffff;
	font-size: 25px;
	margin-bottom: 20px;
}
.services-sidebar .services-contact .default-btn {
	background-color: #ffffff;
	color: #ca0420;
}
/*
Blog Column One Area Style
======================================================*/
.single-blog-posts {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	margin-bottom: 30px;
}
.single-blog-posts .single-blog-content {
	padding: 30px;
	background-color: #f9fafb;
}
.single-blog-posts .single-blog-content span {
	text-transform: uppercase;
	color: #ca0420;
	display: block;
	margin-bottom: 10px;
}
.single-blog-posts .single-blog-content h3 {
	font-size: 25px;
	margin-bottom: 15px;
}
.single-blog-posts .single-blog-content h3 a {
	color: #131313;
}
.single-blog-posts .single-blog-content h3 a:hover {
	color: #ca0420;
}
.single-blog-posts .single-blog-content p {
	margin-bottom: 20px;
}
.single-blog-posts .single-blog-content .admin li {
	display: inline-block;
	font-size: 16px;
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid #ca0420;
}
.single-blog-posts .single-blog-content .admin li:last-child {
	margin-right: 0;
	border-right: none;
}
.single-blog-posts .single-blog-content .admin li i {
	color: #ca0420;
	font-size: 18px;
	position: relative;
	top: 1px;
	margin-right: 5px;
}
.single-blog-posts:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
/*
Solution Details Area Style
======================================================*/
.solution-details-area .solutions-content {
	margin-bottom: 30px;
}
.solution-details-area .solutions-content h3 {
	font-size: 30px;
	margin-bottom: 10px;
}
.solution-details-area .solutions-content .challenge-btn .two {
	margin-left: 30px;
}
.solution-details-area .solutions-content ul {
	margin-bottom: 30px;
}
.solution-details-area .solutions-content ul li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}
.solution-details-area .solutions-content ul li:last-child {
	margin-bottom: 0;
}
.solution-details-area .solutions-content ul li svg {
	color: #ca0420;
	position: absolute;
	top: 2px;
	left: 0;
}
.solution-details-area .solutions-content.four {
	margin-bottom: 0;
}
.solution-details-area .solution-details-one {
	margin-bottom: 30px;
}
.solution-details-area .solution-details-one img {
	width: 100%;
}
/*
Main Contact Area Style
=====================================================*/
.main-contact-area .contact-wrap {
	max-width: unset;
}
.main-contact-area .contact-wrap .contact-title {
	margin-top: -9px;
}
.main-contact-area .contact-wrap .contact-title h2 {
	margin-bottom: 30px;
	font-size: 30px;
}
.main-contact-area .contact-wrap .form-group {
	margin-bottom: 30px;
}
.main-contact-area .contact-wrap .default-btn {
	margin: auto;
	display: table;
	cursor: pointer;
}
.main-contact-area .contact-wrap .contact-form #msgSubmit {
	position: unset;
	text-align: center;
	margin-top: 20px;
}
.main-contact-area .contact-wrap .contact-form .hidden {
	display: none;
}
.main-contact-area .contact-info {
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	padding: 30px;
	padding-top: 60px;
	padding-bottom: 60px;
}
.main-contact-area .contact-info h3 {
	font-size: 24px;
	margin-bottom: 20px;
}
.main-contact-area .contact-info p {
	margin-bottom: 25px;
}
.main-contact-area .contact-info .address .location {
	padding-left: 60px;
	position: relative;
}
.main-contact-area .contact-info .address .location i {
	position: absolute;
	color: #ca0420;
	left: 0;
	top: 5px;
	font-size: 45px;
}
.main-contact-area .contact-info .address .location span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}
.main-contact-area .contact-info .address li {
	padding-left: 60px;
	position: relative;
	margin-bottom: 20px;
}
.main-contact-area .contact-info .address li a {
	color: #4b5280;
	display: block;
}
.main-contact-area .contact-info .address li a:hover {
	color: #ca0420;
}
.main-contact-area .contact-info .address li:last-child {
	margin-bottom: 0;
}
.main-contact-area .contact-info .address li i {
	position: absolute;
	color: #ca0420;
	left: 0;
	top: 0;
	font-size: 45px;
}
.main-contact-area .contact-info .address li span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}
.main-contact-area .contact-info .sidebar-follow-us {
	margin-top: 30px;
}
.main-contact-area .contact-info .sidebar-follow-us h3 {
	font-size: 20px;
	margin-bottom: 25px;
	line-height: 1;
	padding-left: 10px;
}
.main-contact-area .contact-info .sidebar-follow-us .social-wrap {
	line-height: 1;
}
.main-contact-area .contact-info .sidebar-follow-us .social-wrap li {
	display: inline-block;
	padding-right: 10px;
}
.main-contact-area .contact-info .sidebar-follow-us .social-wrap li a i {
	font-size: 15px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border: 1px solid #4b5280;
	border-radius: 50px;
	text-align: center;
	color: #4b5280;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.main-contact-area .contact-info .sidebar-follow-us .social-wrap li a:hover {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}
.main-contact-area .contact-info .sidebar-follow-us .social-wrap li a:hover i {
	border-color: #ca0420;
	background-color: #ca0420;
	color: #ffffff;
}
.main-contact-area label {
	font-size: 16px;
}
.list-unstyled {
	color: #dc3545;
	font-size: 14px;
	margin-top: 10px;
}
#msgSubmit {
	margin-top: 20px;
}
.text-success {
	color: #28a745;
}
.hidden {
	display: none;
}
.map-area iframe {
	height: 480px;
	width: 100%;
	border: none !important;
	display: block;
}
/*
Subscribe Area Style NEW CSS
======================================================*/
.subscribe-bg {
	background-color: #f0f0fa;
	padding: 50px;
	padding-bottom: 20px;
}
.subscribe-content {
	position: relative;
	padding-left: 100px;
	margin-bottom: 30px;
}
.subscribe-content img {
	position: absolute;
	top: 0;
	left: 0;
}
.newsletter-form {
	position: relative;
	margin-bottom: 30px;
}
.newsletter-form .form-control {
	background-color: #ffffff;
	border-radius: 4px;
}
.newsletter-form .default-btn {
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
}
.newsletter-form .default-btn::before {
	display: none;
}
.newsletter-form .default-btn::after {
	display: none;
}
#validator-newsletter {
	margin-top: 10px;
	color: #dc3545;
}
/*====================================================
OTHERS STYLE AREA
======================================================*/
/*
Preloader Area Style*/
.preloader {
	position: fixed;
	left: 0;
	top:0;
	width: 0;
	height: 100vh;
	width: 100%;
	text-align: center;
	z-index: 9999999;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.preloader .loader {
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: inline-block;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 45%;
	-webkit-transform: translateY(-45%);
	transform: translateY(-45%);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.preloader .loader .loader-outter {
	position: absolute;
	border-bottom: 0;
	width: 100%;
	height: 100%;
}
.preloader .loader .loader-inner {
	position: absolute;
	left: calc(40% - 21px);
	top: calc(40% - 21px);

	/*-webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
	animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;*/
	-webkit-animation: zoom-in-zoom-out 1s ease infinite;
	animation: zoom-in-zoom-out 1s ease infinite;
}
.preloader .loader .indicator {
	position: absolute;
	right: 0;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%) scale(1.5);
	transform: translateY(-50%) scale(1.5);
}
.preloader .loader .indicator svg polyline {
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.preloader .loader .indicator svg polyline#back {
	stroke: #ffffff;
}
.preloader .loader .indicator svg polyline#front {
	stroke: #ca0420;
	stroke-dasharray: 12, 36;
	stroke-dashoffset: 48;
	-webkit-animation: dash 1s linear infinite;
	animation: dash 1s linear infinite;
}
.preloader::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 60%;
	z-index: -1;
	background: #131313;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.preloader::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 60%;
	z-index: -1;
	background: #131313;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	left: auto;
	right: 0;
}
.preloader.preloader-deactivate {
	visibility: hidden;
}
.preloader.preloader-deactivate::after {
	width: 0;
}
.preloader.preloader-deactivate::before {
	width: 0;
}
.preloader.preloader-deactivate .loader {
	opacity: 0;
	visibility: hidden;
}
@-webkit-keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
 @-webkit-keyframes loader-outter {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}
 @keyframes loader-outter {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}
 @-webkit-keyframes loader-inner {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(-360deg);
 transform: rotate(-360deg);
}
}
 @keyframes loader-inner {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(-360deg);
 transform: rotate(-360deg);
}
}
 @-webkit-keyframes dash {
 62.5% {
 opacity: 0;
}
to {
	stroke-dashoffset: 0;
}
}
 @keyframes dash {
 62.5% {
 opacity: 0;
}
to {
	stroke-dashoffset: 0;
}
}
/*
Go Top Style*/
.go-top {
	position: fixed;
	cursor: pointer;
	top: 82%;
	right: -10%;
	background-color: #ca0420;
	z-index: 4;
	width: 40px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .9s;
	transition: .9s;
}
.go-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	color: #ffffff;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	font-size: 20px;
}
.go-top i:last-child {
	opacity: 0;
	visibility: hidden;
	top: 60%;
}
.go-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #ca0420;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.go-top:hover {
	color: #ffffff;
	background-color: #ca0420;
}
.go-top:hover::before {
	opacity: 1;
	visibility: visible;
}
.go-top:hover i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}
.go-top:hover i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}
.go-top:focus {
	color: #ffffff;
}
.go-top:focus::before {
	opacity: 1;
	visibility: visible;
}
.go-top:focus i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}
.go-top:focus i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}
.go-top.active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	right: 3%;
	top: 82%;
}
/*
Video wave Style*/
.video-btn {
	display: inline-block;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 0;
	position: relative;
	top: 3px;
	z-index: 1;
	background-color: rgba(255, 42, 96, 0.9);
	border-radius: 50%;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.video-btn i {
	font-size: 42px;
	color: #ffffff;
	position: absolute;
	top: 1px;
	left: 3px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
}
.video-btn::after, .video-btn::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	bottom: 0;
	left: 0;
	border-radius: 0;
	border-radius: 50%;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-animation: ripple 1.6s ease-out infinite;
	animation: ripple 1.6s ease-out infinite;
	background-color: rgba(255, 42, 96, 0.9);
}
.video-btn:hover {
	background-color: rgba(255, 90, 0, 0.9);
}
.video-btn:hover::before, .video-btn:hover::after {
	background-color: rgba(255, 90, 0, 0.9);
}
 @-webkit-keyframes ripple {
 0%, 35% {
 -webkit-transform: scale(0);
 transform: scale(0);
 opacity: 1;
}
 50% {
 -webkit-transform: scale(1.5);
 transform: scale(1.5);
 opacity: 0.8;
}
 100% {
 opacity: 0;
 -webkit-transform: scale(2);
 transform: scale(2);
}
}
 @keyframes ripple {
 0%, 35% {
 -webkit-transform: scale(0);
 transform: scale(0);
 opacity: 1;
}
 50% {
 -webkit-transform: scale(1.5);
 transform: scale(1.5);
 opacity: 0.8;
}
 100% {
 opacity: 0;
 -webkit-transform: scale(2);
 transform: scale(2);
}
}
/*
Nice select Area Style*/
.nice-select .list {
	width: 100%;
	border-radius: 0;
}
.nice-select .option:hover {
	background-color: #ca0420;
	color: #ffffff;
}
.nice-select .option.selected.focus {
	color: #ca0420;
}
.nice-select .current {
	font-size: 16px;
}
/*
Page-navigation Area Style*/
.pagination-area {
	margin-top: 10px;
	text-align: center;
}
.pagination-area .page-numbers {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #131313;
	text-align: center;
	display: inline-block;
	position: relative;
	margin-left: 3px;
	margin-right: 3px;
	font-size: 17px;
	background-color: #f5f6fa;
	border: 1px solid #d7d7d7;
}
.pagination-area .page-numbers:hover {
	color: #ffffff;
	border-color: #ca0420;
	background-color: #ca0420;
}
.pagination-area .page-numbers i {
	position: relative;
	font-size: 25px;
	top: 5px;
}
.pagination-area .page-numbers.current {
	color: #ffffff;
	border-color: #ca0420;
	background-color: #ca0420;
}
/*
Overly Area Style*/
.overly-one {
	position: relative;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.overly-one::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: -100%;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(#ca0420), to(transparent));
	background: linear-gradient(left, #ca0420, transparent);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	opacity: 0;
	z-index: 1;
}
.overly-one::after {
	content: "";
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 2px;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(#ca0420), to(transparent));
	background: linear-gradient(top, #ca0420, transparent);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	opacity: 0;
}
.overly-one .overly-two::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), to(#ca0420));
	background: linear-gradient(left, transparent, #ca0420);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	opacity: 0;
}
.overly-one .overly-two::after {
	content: "";
	position: absolute;
	top: -100%;
	right: 0;
	width: 2px;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(#ca0420), to(transparent));
	background: linear-gradient(bottom, #ca0420, transparent);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	opacity: 0;
}
.overly-one:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
.overly-one:hover .overly-two::before {
	left: 30px;
	opacity: 1;
}
.overly-one:hover .overly-two::after {
	top: 30px;
	opacity: 1;
}
.overly-one:hover::before {
	right: 30px;
	opacity: 1;
}
.overly-one:hover::after {
	bottom: 30px;
	opacity: 1;
}
/*
Tabs Area Style*/
.tab .tabs_item {
	display: none;
}
.tab .tabs_item:first-child {
	display: block;
}
/*# sourceMappingURL=style.css.map */

.wpcf7-form-control.default-btn {
	outline: none;
	border: none;
	padding: 0;
}
.wpcf7 form .wpcf7-response-output {
	color: #fff;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
body {
	font-size: 14px;
}
.container {
	max-width: 100%;
}
.ptb-100 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.pt-100 {
	padding-top: 50px;
}
.pb-100 {
	padding-bottom: 50px;
}
.pb-70 {
	padding-bottom: 20px;
}
.pt-70 {
	padding-top: 20px;
}
.default-btn {
	font-size: 15px;
	padding: 13px 25px;
}
h3 {
	font-size: 17px;
	line-height: 1.4;
}
.section-title {
	margin-bottom: 30px;
	text-align: center !important;
}
.section-title span {
	font-size: 14px;
}
.section-title h1 {
	font-size: 25px;
	letter-spacing: 1px;
}
.section-title h2 {
	font-size: 25px;
	letter-spacing: 1px;
}
p {
	font-size: 18px;
}
.single-services .services-content p {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
}
.top-header .header-left-content {
	text-align: left;
}
.top-header .header-right-content {
	float: unset;
	text-align: right;
	margin-top: 0;
}
.banner-area {
	height: 100%;
	padding-top: 160px;
	padding-bottom: 80px;
}
.banner-area.banner-area-two {
	padding-top: 150px;
	padding-bottom: 80px;
}
.banner-image {
	margin-top: 30px;
}
.banner-area.banner-area-three {
	padding-top: 175px;
	padding-bottom: 90px;
}
.about-content .tabs li {
	margin-right: 10px;
	font-size: 14px;
	padding-bottom: 3px;
}
.banner-content {
	text-align: center;
	margin-top: 0;
}
.banner-content h2 {
	font-size: 22px;
    margin-bottom: 0;
    line-height: 30px;
}
.banner-content p {
	margin-bottom: 25px;
	font-size: 14px;
}
.feature-area {
	padding-top: 48px;
    padding-bottom: 20px;
}
.banner-video {
	margin-top: 30;
	text-align: center;
	top: 0;
	left: 0;
}
.video-btn {
	width: 60px;
	height: 60px;
	height: 60px;
}
.video-btn i {
	font-size: 40px;
}
.single-feature {
	margin-top: 0;
	text-align: center;
	padding: 10px 10px 10px 10px;
}
.single-feature .title {
	position: unset;
	margin-bottom: 0;
}
.single-feature .title svg {
	position: unset;
	display: block;
	margin: auto;
	display: block;
	margin-bottom: 25px;
}
.single-feature .title h3 {
	padding-left: 0;
}
.overly-one::before {
	display: none;
}
.overly-one::after {
	display: none;
}
.overly-one .overly-two::before {
	display: none;
}
.overly-one .overly-two::after {
	display: none;
}
.approach-content {
	margin-left: 10px;
    margin-right: 10px;
	margin-bottom: 50px;
}
.approach-content h3 {
	font-size: 20px;
    margin-bottom: 30px;
    line-height: 30px;
    font-weight: 700;
}
.approach-content .single-approach h3 {
	font-size: 17px;
	margin-bottom: 10px;
}
.single-services .services-content {
	text-align: center;
	padding: 20px;
}
.single-services .services-content h3 {
	margin-bottom: 65px;
}
.single-solution h3 {
	font-size: 17px;
}
.solution-area .pr-0 {
	padding-right: 15px !important;
}
.solution-title {
	margin-bottom: 30px;
}
.solution-title h2 {
	font-size: 18px;
}
.single-solution {
	padding: 20px;
}
.get-in-touch-form .form-group {
	margin-bottom: 20px;
}
.protect-content {
	margin-right: 0;
}
.protect-content .protect-title {
	margin-bottom: 30px;
}
.protect-content .protect-title h2 {
	font-size: 25px;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(2) .single-challenges {
	margin-top: 0;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(3) .single-challenges {
	margin-top: 0;
}
.testimonials .owl-nav .owl-prev {
	left: 0;
	top: auto;
	-webkit-transform: unset;
	transform: unset;
	bottom: 0;
}
.testimonials .owl-nav .owl-next {
	right: 0;
	top: auto;
	-webkit-transform: unset;
	transform: unset;
	bottom: 0;
}
.testimonials span {
	margin-bottom: 30px;
}
.testimonials-item p {
	font-size: 16px;
}
.testimonials-item span {
	margin-bottom: 0;
}
.single-blog .blog-content {
	margin-top: 20px;
}
.single-blog .blog-img a {
	display: block;
}
.single-blog .blog-img a img {
	width: 100%;
}
.single-challenges {
	padding: 20px;
}
.copy-right-area {
	text-align: center;
}
.copy-right-area .footer-menu {
	text-align: center;
	margin-top: 12px;
}
.solution-img {
	background-image: none;
}
.solution-img img {
	display: block;
}
.banner-area.banner-area-two .banner-content {
	margin-top: 0;
}
.about-content {
	margin-left: 0;
}
.about-content .about-title {
	margin-bottom: 30px;
}
.about-content .about-title h2 {
	font-size: 25px;
}
.single-counter {
	padding-left: 30px;
	text-align: center;
}
.single-counter i {
	font-size: 35px;
	padding-right: 0;
	position: unset;
	border: none;
	margin-bottom: 10px;
	display: block;
}
.single-counter h2 {
	font-size: 40px;
}
.single-team .team-content {
	margin-left: 0;
	margin-right: 0;
}
.banner-area.banner-area-three .banner-content h2 {
	font-size: 30px;
}
.banner-img {
	margin-top: 30px;
	text-align: center;
}
.single-safety {
	padding: 15px;
}
.single-safety img {
	margin-bottom: 15px;
}
.single-safety h3 {
	margin-bottom: 10px;
}
.shape-three {
	display: none;
}
.counter-area.counter-area-three .single-counter {
	padding-left: 30px;
}
.counter-area.counter-area-three .single-counter i {
	border: none;
}
.faq-img {
	margin-bottom: 30px;
	text-align: center;
}
.faq-accordion .faq-title h2 {
	font-size: 25px;
}
.solution-img-two {
	margin-bottom: 30px;
	text-align: center;
}
.single-approach-box {
	padding: 20px;
}
.single-approach-box .icon i {
	position: relative;
	top: 6px;
}
.single-approach-box h3 {
	margin-top: 25px;
}
.counter-img {
	text-align: center;
	margin-bottom: 30px;
}
.page-title-area {

	padding-top: 130px;
	padding-bottom: 60px;
}
.page-title-area .page-title-content h2 {
	font-size: 30px;
}
.page-title-area.page-title-style-two {
	padding-top: 215px;
	padding-bottom: 70px;
}
.user-area-style .account-title h2 {
	font-size: 25px !important;
}
.user-area-style .contact-form-action {
	padding: 20px;
}
.user-area-style .contact-form-action.mb-50 {
	margin-bottom: 50px;
}
.user-area-style .contact-form-action form .form-group {
	margin-bottom: 20px;
}
.user-area-style .contact-form-action form .login-action {
	margin-bottom: 20px;
}
.user-area-style .contact-form-action form .login-action .forgot-login {
	float: unset;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: left;
	display: block;
}
.user-area-style .contact-form-action form .text-right {
	text-align: left !important;
}
.user-area-style .contact-form-action form .right {
	float: left;
}
.user-area-style.recover-password-area h3 {
	font-size: 30px;
}
.user-area-style.recover-password-area .now-register {
	float: left;
}
.user-area-style.recover-password-area p {
	margin-bottom: 20px;
}
.user-area-style.recover-password-area .default-btn {
	margin-bottom: 0 !important;
}
.coming-soon-area {
	height: 100%;
	padding-top: 120px;
	padding-bottom: 120px;
	padding-left: 15px;
	padding-right: 15px;
}
.coming-soon-area .coming-soon-content {
	padding: 30px 20px;
}
.coming-soon-area .coming-soon-content h2 {
	margin-top: 25px;
	font-size: 28px;
}
.coming-soon-area .coming-soon-content #timer {
	margin-top: 10px;
}
.coming-soon-area .coming-soon-content #timer div {
	width: 95px;
	height: 100px;
	font-size: 35px;
	margin-top: 20px;
}
.coming-soon-area .coming-soon-content #timer div span {
	font-size: 14px;
}
.coming-soon-area .coming-soon-content form {
	max-width: 100%;
	margin-top: 40px;
}
.privacy-policy .title h2 {
	font-size: 30px;
}
.terms-conditions .title h2 {
	font-size: 28px;
}
.error-area {
	padding: 70px 0;
}
.error-area .error-content p {
	margin: 15px 0 20px;
	font-size: 15px;
}
.error-area .error-content h1 {
	font-size: 100px;
}
.solution-details-area .solutions-content h3 {
	font-size: 25px;
	margin-top: -8px;
}
.solution-details-area .solutions-content .challenge-btn .two {
	float: right;
}
.product-img img {
	width: 100%;
}
.showing-result-count {
	margin-bottom: 15px;
	text-align: center;
}
.shopping-cart-area {
	overflow: hidden;
}
.shopping-cart-area .cart-table {
	text-align: center;
}
.shopping-cart-area .cart-table table thead tr th {
	font-size: 16px;
}
.shopping-cart-area .cart-table table tbody tr td a {
	font-size: 14px;
}
.shopping-cart-area .cart-table table thead tr th {
	padding: 0 40px 10px;
	white-space: nowrap;
}
.shopping-cart-area .cart-table table thead tr th:first-child {
	text-align: left;
	padding-left: 0;
}
.shopping-cart-area .cart-table table tbody tr td {
	white-space: nowrap;
}
.shopping-cart-area .cart-table table tbody tr td:first-child {
	text-align: left;
	padding-left: 0;
}
.shopping-cart-area .cart-table table tbody tr td.product-subtotal .remove {
	margin-left: 15px;
	float: unset;
}
.shopping-cart-area .coupon-cart .form-group .default-btn {
	position: unset;
	top: 0;
	right: 0;
	height: 50px;
	margin-top: 30px;
	margin-bottom: 30px;
}
.shopping-cart-area .cart-totals {
	padding: 20px;
}
.shopping-cart-area .default-btn {
	display: block;
}
.shopping-cart-area .default-btn.update {
	padding: 16px 20px;
}
.checkout-area .billing-details {
	margin-bottom: 30px;
	padding: 20px;
}
.checkout-area .billing-details h3 {
	font-size: 25px;
}
.checkout-area .cart-totals {
	padding: 20px;
}
.checkout-area .faq-accordion .default-btn {
	margin-bottom: 0;
}
.checkout-area .faq-accordion {
	padding: 20px;
}
.product-details-area .section-title {
	margin: -15px auto 30px;
}
.product-details-area .product-details-image {
	margin-bottom: 20px;
}
.product-details-area .products-details-tab {
	margin-top: 30px;
}
.product-details-area .products-details-tab .tab_content {
	padding: 0;
	padding-top: 30px;
}
.product-details-area .products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item {
	padding-right: 0;
}
.portfolio-details-content .portfolio-top-content .news-content h3 {
	font-size: 20px;
}
.portfolio-details-content .portfolio-top-content .news-content-2 h3 {
	font-size: 20px;
}
.portfolio-details-content .portfolio-top-content .news-content-3 h3 {
	font-size: 20px;
}
.product-view-one .modal-content .product-content h3 a {
	margin-top: 28px;
}
.shopping-cart-area .cart-totals {
	max-width: 100%;
}
.checkout-area .billing-details {
	margin-bottom: 35px;
}
.sidebar-widget.recent-post ul li {
	height: 100px;
}
.sidebar-widget.recent-post ul li a {
	font-size: 15px;
}
.single-blog-posts .single-blog-content {
	padding: 20px;
}
.single-blog-posts .single-blog-content h3 {
	font-size: 20px;
}
.single-blog-posts .single-blog-content .admin li {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
	margin-bottom: 10px;
}
.single-blog-posts .single-blog-content .admin li:last-child {
	margin-bottom: 0;
}
.pagination-area {
	margin-top: 0;
}
.sidebar-widget.search {
	margin-top: 35px;
}
.blog-details-content .comments ul li {
	padding-left: 0;
}
.blog-details-content .comments ul li img {
	position: unset;
	display: block;
}
.main-contact-area .contact-info {
	margin-top: 50px;
	padding: 20px;
}
.services-details-content .services-content h2 {
	font-size: 25px;
}
.blog-details-content .blog-top-content .news-content .admin {
	padding-bottom: 15px;
}
.blog-details-content .blog-top-content .news-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
}
.blog-details-content .blog-top-content blockquote {
	padding: 20px;
	z-index: 1;
}
.blog-details-content .blog-top-content blockquote p {
	padding-left: 0;
	font-size: 16px;
}
.blog-details-content .blog-top-content blockquote i {
	z-index: -1;
	opacity: 0.5;
}
.blog-details-content .tag-list ul li {
	margin: 5px;
}
.user-area-style .contact-form-action form .right {
	margin-top: 10px;
}
.user-area-style .contact-form-action form .right .remember {
	margin-bottom: 0;
}
.user-area-style .contact-form-action p {
	margin-top: 0;
}
.user-area-style .contact-form-action form .text-right {
	text-align: left !important;
	margin-top: 10px;
}
.banner-area.banner-area-four {
	height: 100%;
	padding-top: 220px;
}
.banner-area.banner-area-five {
	padding-top: 225px;
}
.banner-area.banner-area-five .banner-content {
	margin-top: 0;
}
/** NEW CSS **/
  .subscribe-bg {
	background-image: none;
	padding: 50px 20px;
	padding-bottom: 20px;
}
.subscribe-bg .newsletter-form .default-btn {
	position: unset;
	height: 50px;
	margin: 30px auto 0;
	display: table;
}
.subscribe-bg #validator-newsletter {
	text-align: center;
}
.subscribe-content {
	text-align: center;
	padding-left: 0;
}
.subscribe-content img {
	position: unset;
	margin-bottom: 30px;
}

.contact-info-section {
    padding-top: 40px!important;
    padding-bottom: 40px!important;
}
}

/* Min width 576px to Max width 767px */
@media only screen and (min-width: 576px) and (max-width: 767px) {
.container {
	max-width: 540px;
}
.solution-area .container-fluid {
	max-width: 540px;
}
.page-title-area {
	padding-top: 160px;
	padding-bottom: 80px;
}
.page-title-area.page-title-style-two {
	padding-top: 223px;
	padding-bottom: 100px;
}
.showing-result-count {
	margin-bottom: 0;
	text-align: left;
}
.single-blog-posts .single-blog-content .admin li {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid #ca0420;
	margin-bottom: 0;
}
.single-services .services-content {
	bottom: -250px;
	padding: 10px;
}
}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
.container {
	max-width: 720px;
}
.ptb-100 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.pt-100 {
	padding-top: 50px;
}
.pb-100 {
	padding-bottom: 50px;
}
.pb-70 {
	padding-bottom: 20px;
}
.pt-70 {
	padding-top: 20px;
}
.default-btn {
	font-size: 15px;
	padding: 12px 20px;
}
.section-title {
	margin-bottom: 30px;
	text-align: center !important;
}
.section-title span {
	font-size: 14px;
}
.section-title h1 {
	font-size: 30px;
}
.section-title h2 {
	font-size: 30px;
}
p {
	font-size: 18px;
}
.single-services .services-content p {
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
}
.banner-area {
	height: 100%;
	padding-top: 190px;
	padding-bottom: 50px;
}
.banner-content {
	text-align: center;
	margin-top: 0;
}
.banner-content h2 {
	font-size: 35px;
	margin-bottom: 5px;
}
.banner-content p {
	margin-bottom: 26px;
	font-size: 16px;
}
.banner-area.banner-area-three {
	padding-top: 170px;
	padding-bottom: 110px;
}
.banner-area.banner-area-two .banner-content {
	text-align: left;
}
.banner-area.banner-area-two {
	height: auto;
	padding-top: 250px;
	padding-bottom: 150px;
}
.single-feature .title {
	position: unset;
	margin-bottom: 0;
}
.single-feature .title i {
	position: unset;
	display: block;
	margin-bottom: 0;
}
.single-feature .title h3 {
	padding-left: 0;
}
.overly-one::before {
	display: none;
}
.overly-one::after {
	display: none;
}
.overly-one .overly-two::before {
	display: none;
}
.overly-one .overly-two::after {
	display: none;
}
.approach-content {
	margin-left: 0;
}
.approach-content h3 {
	font-size: 25px;
	margin-bottom: 30px;
}
.approach-content .single-approach h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
.approach-img img {
	width: 100%;
}
.single-services .services-content {
	text-align: center;
	padding: 20px;
	min-height: 300px;
}
.single-services .services-content h3 {
	margin-bottom: 25px;
}
.solution-area .pr-0 {
	padding-right: 15px !important;
}
.solution-area .container-fluid {
	max-width: 720px;
}
.solution-content {
	max-width: 100%;
}
.solution-title {
	margin-bottom: 30px;
}
.solution-title h2 {
	font-size: 25px;
}
.single-solution {
	padding: 20px;
}
.get-in-touch-form .form-group {
	margin-bottom: 20px;
}
.protect-content {
	margin-right: 0;
}
.protect-img img {
	width: 100%;
}
.protect-content .protect-title {
	margin-bottom: 30px;
}
.protect-content .protect-title h2 {
	font-size: 25px;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(2) .single-challenges {
	margin-top: 0;
}
.protect-area .col-lg-6 .row .col-lg-6:nth-child(3) .single-challenges {
	margin-top: 0;
}
.testimonials {
	margin-right: auto;
}
.testimonials .owl-nav {
	display: none;
}
.testimonials span {
	margin-bottom: 30px;
}
.testimonials-item p {
	font-size: 16px;
}
.testimonials-item span {
	margin-bottom: 0;
}
.single-blog .blog-content {
	padding: 20px;
}
.single-blog .blog-img a {
	display: block;
}
.single-blog .blog-img a img {
	width: 100%;
}
.single-challenges {
	padding: 20px;
}
.solution-img {
	background-image: none;
}
.solution-img img {
	display: block;
}
.banner-area.banner-area-two .banner-content {
	margin-top: 0;
}
.about-content {
	margin-left: 0;
}
.about-content .about-title {
	margin-bottom: 30px;
}
.about-content .about-title h2 {
	font-size: 25px;
}
.about-img img {
	width: 100%;
}
.single-counter {
	padding-left: 30px;
	text-align: center;
}
.single-counter i {
	font-size: 35px;
	padding-right: 0;
	position: unset;
	border: none;
	margin-bottom: 10px;
	display: block;
}
.single-counter h2 {
	font-size: 40px;
}
.single-team .team-content {
	margin-left: 0;
	margin-right: 0;
}
.banner-area.banner-area-three .banner-content h2 {
	font-size: 35px;
}
.banner-img {
	margin-top: 30px;
	text-align: center;
}
.single-safety {
	padding: 15px;
}
.single-safety img {
	margin-bottom: 15px;
}
.single-safety h3 {
	margin-bottom: 10px;
}
.shape-three {
	display: none;
}
.counter-area.counter-area-three .single-counter {
	padding-left: 30px;
}
.counter-area.counter-area-three .single-counter i {
	border: none;
}
.faq-img {
	margin-bottom: 30px;
	text-align: center;
}
.faq-accordion .faq-title h2 {
	font-size: 25px;
}
.solution-img-two {
	margin-bottom: 30px;
	text-align: center;
}
.single-approach-box {
	padding: 20px;
}
.single-approach-box .icon i {
	position: relative;
	top: 6px;
}
.single-approach-box h3 {
	margin-top: 25px;
}
.counter-img {
	text-align: center;
	margin-bottom: 30px;
}
.page-title-area {
	padding-top: 160px;
	padding-bottom: 90px;
}
.page-title-area .page-title-content h2 {
	font-size: 40px;
}
.page-title-area.page-title-style-two {
	padding-top: 223px;
	padding-bottom: 100px;
}
.contact-form-action.mb-50 {
	margin-bottom: 50px;
}
.error-area {
	padding: 70px 0;
}
.error-area .error-content p {
	margin: 15px 0 20px;
	font-size: 15px;
}
.error-area .error-content h1 {
	font-size: 200px;
}
.checkout-area .billing-details {
	margin-bottom: 30px;
}
.product-details-image {
	margin-bottom: 30px;
}
.product-details-image img {
	width: 100%;
}
.sidebar-widget.recent-post ul li {
	height: 100px;
}
.single-blog-posts .single-blog-content {
	padding: 20px;
}
.single-blog-posts .single-blog-content h3 {
	font-size: 20px;
}
.single-blog-posts .single-blog-content .admin li {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
	margin-bottom: 10px;
}
.single-blog-posts .single-blog-content .admin li:last-child {
	margin-bottom: 0;
}
.pagination-area {
	margin-top: 0;
}
.sidebar-widget.search {
	margin-top: 35px;
}
.main-contact-area .contact-info {
	margin-top: 50px;
	padding: 30px;
}
.services-details-content .services-content h2 {
	font-size: 25px;
}
.testimonials .owl-nav {
	display: block;
}
.testimonials .owl-nav .owl-prev {
	left: 0;
	top: auto;
	-webkit-transform: unset;
	transform: unset;
	bottom: 0;
}
.testimonials .owl-nav .owl-next {
	right: 0;
	top: auto;
	-webkit-transform: unset;
	transform: unset;
	bottom: 0;
}
.banner-video {
	margin-top: 30 !important;
	text-align: center;
	top: 0;
	left: 0;
}
.video-btn {
	width: 60px;
	height: 60px;
	height: 60px;
}
.video-btn i {
	font-size: 40px;
}
.banner-area.banner-area-four {
	height: 100%;
	padding-top: 180px;
	padding-bottom: 80px;
}
.banner-area.banner-area-four .banner-content {
	margin: auto;
}
.banner-area.banner-area-five {
	padding-top: 200px;
	padding-bottom: 80px;
}
.banner-area.banner-area-five .banner-content {
	margin-top: 0;
}
/** NEW CSS **/
  .subscribe-bg {
	background-image: none;
}
.subscribe-bg .newsletter-form .default-btn {
	position: unset;
	height: 50px;
	margin: 30px auto 0;
	display: table;
	overflow: hidden;
}
.subscribe-bg #validator-newsletter {
	text-align: center;
}
.subscribe-content {
	text-align: center;
	padding-left: 0;
}
.subscribe-content img {
	position: unset;
	margin-bottom: 30px;
}
}

/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.container {
	max-width: 960px;
}
.navbar-area .others-option .get-quote .default-btn {
	padding: 12px 15px;
}
.navbar-area .others-option .cart-icon {
	margin-left: 15px;
}
.navbar-area .main-nav nav .navbar-nav .nav-item a {
	font-size: 16px;
	margin: 0 10px;
}
.banner-video {
	top: 0;
	right: 0;
	text-align: center;
}
.banner-content {
	margin-top: 50px;
}
.single-feature {
	padding: 20px;
}
.single-feature h3 {
	font-size: 18px;
}
.approach-content {
	margin-left: 0;
	margin-bottom: 50px;
}
.single-approach {
	padding: 15px;
}
.single-approach h3 {
	font-size: 18px;
}
/*.our-approach-area .row {
	-webkit-box-align: normal !important;
	-ms-flex-align: normal !important;
	align-items: normal !important;
}
.approach-img {
	background-image: url(../../assets/img/approach-img.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 100%;
	position: relative;
}
.approach-img::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
	background-color: #ffffff;
}
.approach-img img {
	display: none;
}*/
.single-challenges {
	padding: 20px;
}
.protect-content {
	margin-left: 0;
}
.protect-img {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 100%;
	position: relative;
}
.protect-img::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
	background-color: #ffffff;
}
.protect-img img {
	display: none;
}
.testimonials {
	margin-right: auto;
}
.single-blog .blog-content {
	padding: 20px;
}
.about-us-area .row {
	-webkit-box-align: unset !important;
	-ms-flex-align: unset !important;
	align-items: unset !important;
}
.about-content {
	margin-left: 0;
}
.about-img {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 100%;
	position: relative;
}
.about-img::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
	background-color: #ffffff;
}
.about-img img {
	display: none;
}
.single-pricing {
	padding: 20px;
}
.counter-area .counter-max-wide {
	margin-right: auto;
}
.single-team .team-content {
	margin-left: 0;
	margin-right: 0;
}
.single-blog-posts .single-blog-content {
	padding: 20px;
}
.single-blog-posts .single-blog-content h3 {
	font-size: 20px;
}
.single-blog-posts .single-blog-content .admin li {
	margin-right: 10px;
	padding-right: 10px;
}
.sidebar-widget.recent-post ul li a {
	font-size: 15px;
}
.blog-details-content .blog-top-content .news-content .admin li {
	padding-right: 10px;
	margin-right: 10px;
}
.main-contact-area .contact-info {
	padding: 20px;
}
.single-services .services-content {
	bottom: -195px;
	padding: 20px;
	min-height: 270px;
}
}

/* Max width 1550px */
@media only screen and (min-width: 1550px) {
.banner-area.banner-area-four {
	height: 100vh;
}
.banner-area.banner-area-four .banner-video {
	top: 25px;
	right: -88px;
}
.banner-area.banner-area-five {
	height: 100vh;
}
.testimonials .owl-nav .owl-prev {
	left: -100px;
}
.testimonials .owl-nav .owl-next {
	right: -100px;
}
.counter-area.counter-area-three .counter-max-wide {
	max-width: 918px;
}
}
/*# sourceMappingURL=responsive.css.map */


@media only screen and (max-width: 768px) {
.single-footer-widget .import-link {
	display:none !important;
}
}

.topbar-inner {
	background-color: rgb(0 0 0 / 80%);
	padding: 15px 20px;
}

.navbar-area.is-sticky .main-nav .navbar { 
	background: none;
    margin-top: 0;
}

.single-feature .title h1 {
	color: #fafafa;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 36px;
    margin-bottom: 10px;
}

.single-feature .title h2 {
	color: #fafafa;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 32px;
    margin-bottom: 30px;
    border-left: 6px solid #ca0420;
    text-align: left;
    padding-left: 12px;
}

.single-feature p {
	color: #fafafa!important;
    font-size: 16px;
    line-height: 26px;
	font-weight: 400;
	margin-bottom: 30px;
	text-align: justify;
}

.single-challenges .icon-img {
	max-width: 80px;
    margin-bottom: 15px;
}

.feature-area.feature-area-four .single-feature video {
	width: 100%;
	margin-top: -30px;
}

.navbar-area.is-sticky .main-nav .navbar .navbar-brand img {
    max-width: 170px;
    margin: 10px 0;
}

.navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a {
	padding: 25px 0;
}

.single-challenges .icon-2-img {
    max-width: 180px;
    margin-bottom: 15px;
}

.single-challenges .icon-3-img {
    max-width: 100px;
    margin-bottom: 15px;
}

.banner-area.banner-area-four .d-table-cell {
	vertical-align: bottom;
}

.mission-area .box-left {
	/*background-color: rgb(0 0 0 / 70%);*/
	padding: 0 80px 0 0;
	margin-bottom: -50px;
}

.mission-area .box-left .box-item {
	margin-bottom: 50px;
}

.mission-area .box-left .box-item h3 {
	font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 1px;
}

.mission-area .box-left .box-item h3 span {
	min-width: 160px;
    background: #ca0420;
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 5px;
}

.mission-area .box-left .box-item h3 span:before {
    content: '';
    position: absolute;
    right: -45px;
    bottom: -0.8px;
    width: 0;
    height: 0;
    border-left: 45px solid #ca0420;
    border-bottom: 45px solid transparent;
}

.mission-area .box-left .box-item p {
	margin-bottom: 0;
	font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 1px;
	color: #fafafa;
}

.values-area .values-outer {
	background-color: rgb(0 0 0 / 30%);
}

.values-area .values-box {
	width: fit-content;
    margin: auto;
	position: relative;
	overflow: hidden;
}

.values-area .values-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, right top, left top, from(#ffffff), to(transparent));
    background: linear-gradient(right, #ffffff, transparent);
    -webkit-animation: right 2s linear infinite;
    animation: right 2s linear infinite;
}

.values-area .values-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(transparent));
    background: linear-gradient(left, #ffffff, transparent);
    -webkit-animation: left 2s linear infinite;
    animation: left 2s linear infinite;
}

.values-area .values-box video {
	width: 100%;
	max-width: 650px;
	margin-bottom: -5px;
}

.values-area .values-box span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(transparent));
    background: linear-gradient(top, #ffffff, transparent);
    -webkit-animation: top 2s linear infinite;
    animation: top 2s linear infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.values-area .values-box span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(transparent));
    background: linear-gradient(bottom, #ffffff, transparent);
    -webkit-animation: bottom 2s linear infinite;
    animation: bottom 2s linear infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.certificate-area .certificate-box {
	padding: 0px 10px;
	margin-bottom: 40px;
}

.certificate-area .certificate-box img {
	width: 100%;
}

.certificate-area .certificate-box h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    padding: 10px 20px 0 20px;
	color: #fafafa;
	margin-top: 5px;
}

.values-box {
	
}

.values-box video {
	width: 100%;
}

.home-highlight {
}

.home-highlight .highlight-box {
	text-align: center;
	margin-bottom: 35px;
}

.home-highlight .highlight-box h3 {
	/*font-size: 28px;
    line-height: 38px;*/
	font-size: 26px;
    line-height: 36px;
    font-weight: 700;
   /* letter-spacing: 1px;*/
	color: #ffff;
	margin-bottom: 2px;
}

.home-highlight .highlight-box span {
	color: #ca0420;
	font-weight: 900;
    font-family: Arial, Helvetica, sans-serif;
}

/*.home-highlight .highlight-box span {
	color: #ca0420;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;
    line-height: 68px;
	font-weight: 900;
}*/

/* #### social media icons #### */
.social-btn,
a.cop-icon {
  width: 16px;
  height: 12px;
  cursor: pointer;
  margin-top: -3px;
}

.social-btn .svg-wrapper,
a.cop-icon .svg-wrapper {
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  padding-top: 100%;
}

.social-btn .svg-wrapper svg,
a.cop-icon .svg-wrapper svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.social-btn .svg-wrapper svg path,
a.cop-icon .svg-wrapper svg path {
  fill: #fff;
}

.main-social {
  position: fixed;
  bottom: 10px;
  left: 10px;
  display: inline-block;
  height: 40px;
  background-color: rgb(0 0 0 / 70%);
  padding: 4px 12px;
  z-index:104;
}

@media only screen and (max-width: 575px) {
  .main-social {
    left: 20px;
  }
}

.main-social > * {
  position: relative;
  display: inline-block;
}

.main-social .social-icon {
  height: 20px;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

.main-social .social-icon:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #fff;
  opacity: 0.2;
  top: 5px;
  left: 27px;
  -webkit-transition: width 0.5s 0.3s;
  -o-transition: width 0.5s 0.3s;
  transition: width 0.5s 0.3s;
}

.main-social .social-network {
  overflow: hidden;
  will-change: transform;
}

.main-social .social-network li {
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  -webkit-transform: translateY(50%) rotate(15deg) scale(0.8);
  -ms-transform: translateY(50%) rotate(15deg) scale(0.8);
  transform: translateY(50%) rotate(15deg) scale(0.8);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

/*.main-social:hover .dsn-wrapper {*/
.main-social .dsn-wrapper {
  margin-right: 7px;
}

/*.main-social:hover .dsn-wrapper:last-child {*/
.main-social .dsn-wrapper:last-child {	
  margin-right: 0;
}

/*.main-social:hover .social-network {*/
.main-social .social-network {
  will-change: transform;
}

/*.main-social:hover .social-network li {*/
.main-social .social-network li {
  will-change: transform;
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.main-social:hover .social-network li:nth-of-type(0) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 200ms, visibility 0.3s 0ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 200ms, visibility 0.3s 0ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 200ms, visibility 0.3s 0ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 200ms, visibility 0.3s 0ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 200ms, visibility 0.3s 0ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0ms;
}

.main-social:hover .social-network li:nth-of-type(1) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 260ms, visibility 0.3s 45ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 60ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 260ms, visibility 0.3s 45ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 60ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 60ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 260ms, visibility 0.3s 45ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 60ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 260ms, visibility 0.3s 45ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 60ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 260ms, visibility 0.3s 45ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 60ms;
}

.main-social:hover .social-network li:nth-of-type(2) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 320ms, visibility 0.3s 90ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 120ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 320ms, visibility 0.3s 90ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 120ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 120ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 320ms, visibility 0.3s 90ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 120ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 320ms, visibility 0.3s 90ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 120ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 320ms, visibility 0.3s 90ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 120ms;
}

.main-social:hover .social-network li:nth-of-type(3) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 380ms, visibility 0.3s 135ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 180ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 380ms, visibility 0.3s 135ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 180ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 180ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 380ms, visibility 0.3s 135ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 180ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 380ms, visibility 0.3s 135ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 180ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 380ms, visibility 0.3s 135ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 180ms;
}

.main-social:hover .social-network li:nth-of-type(4) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 440ms, visibility 0.3s 180ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 240ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 440ms, visibility 0.3s 180ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 240ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 240ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 440ms, visibility 0.3s 180ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 240ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 440ms, visibility 0.3s 180ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 240ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 440ms, visibility 0.3s 180ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 240ms;
}

.main-social:hover .social-network li:nth-of-type(5) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 500ms, visibility 0.3s 225ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 300ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 500ms, visibility 0.3s 225ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 300ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 300ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 500ms, visibility 0.3s 225ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 300ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 500ms, visibility 0.3s 225ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 300ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 500ms, visibility 0.3s 225ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 300ms;
}

.main-social:hover .social-network li:nth-of-type(6) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 560ms, visibility 0.3s 270ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 360ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 560ms, visibility 0.3s 270ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 360ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 360ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 560ms, visibility 0.3s 270ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 360ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 560ms, visibility 0.3s 270ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 360ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 560ms, visibility 0.3s 270ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 360ms;
}

.main-social:hover .social-network li:nth-of-type(7) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 620ms, visibility 0.3s 315ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 420ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 620ms, visibility 0.3s 315ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 420ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 420ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 620ms, visibility 0.3s 315ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 420ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 620ms, visibility 0.3s 315ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 420ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 620ms, visibility 0.3s 315ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 420ms;
}

.main-social:hover .social-network li:nth-of-type(8) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 680ms, visibility 0.3s 360ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 480ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 680ms, visibility 0.3s 360ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 480ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 480ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 680ms, visibility 0.3s 360ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 480ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 680ms, visibility 0.3s 360ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 480ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 680ms, visibility 0.3s 360ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 480ms;
}

.main-social:hover .social-network li:nth-of-type(9) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 740ms, visibility 0.3s 405ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 540ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 740ms, visibility 0.3s 405ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 540ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 540ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 740ms, visibility 0.3s 405ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 540ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 740ms, visibility 0.3s 405ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 540ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 740ms, visibility 0.3s 405ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 540ms;
}

.main-social:hover .social-network li:nth-of-type(10) {
  -webkit-transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 800ms, visibility 0.3s 450ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 600ms;
  transition: opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 800ms, visibility 0.3s 450ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 600ms;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 600ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 800ms, visibility 0.3s 450ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 600ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 800ms, visibility 0.3s 450ms;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 600ms, opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 800ms, visibility 0.3s 450ms, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 600ms;
}

/*.main-social:hover .social-icon:after {*/
.main-social .social-icon:after {	
  width: 15px;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.main-social .social-network {
  margin-left: 30px;
}

.main-social .social-network li {
  display: inline-block;
  line-height: 30px;
  margin-right: 29px;
  font-size: 16px;
  margin-top: 2px;
}

.main-social .social-network li:last-child {
  margin-right: 0;
}
.main-social .social-network li a {
	/*color: rgba(255, 255, 255, 0.69);*/
	color: #fff;
	width: 14px;
}
.main-social .social-network li a:hover {
	color: #fff;
}
.main-social .social-network li:hover i {
  color: #fff;
}
/* END / Social Media #### */

.section-footer {
	background: #000;
	padding: 100px 0 80px 0;
}

.section-footer .footer-box {
	width: 100%;
	text-align: center;
	padding: 30px 30px;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 23px;
}

.section-footer .footer-box .box-inner {
	margin:auto;
}

.section-footer .footer-box .box-inner a {
	display: block;
}

.section-footer .footer-box.h-s {
	min-height: 165px;
}

.section-footer .footer-box.h-m {
	min-height: 245px;
}

.section-footer .footer-box.h-l {
	min-height: 433px;
}

.section-footer .footer-box.bg_white {
	background: #fff;
}

.section-footer .footer-box.bg_grey {
	background: #232220;
}

.section-footer .footer-box.bg_red {
	background: #ca0420;
}

.section-footer .footer-box h4 {
	font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 5px;
	margin-bottom: 0;
}

.section-footer .footer-box.bg_white h4 {
	color: #131313;
}

.section-footer .footer-box.bg_grey h4 {
	color: #fff;
}

.section-footer .footer-box.bg_red h4 {
	color: #fff;
}

.section-footer .footer-box h4 span {
	font-weight: 700;
}

.section-footer .footer-box img.icon-arrow {
	border-radius: 50%;
    max-width: 30px;
    padding: 2px;
    margin-bottom: 10px;
}

.section-footer .footer-box.bg_white img.icon-arrow {
    border: 2px solid #ca0420;
}

.section-footer .footer-box.bg_grey img.icon-arrow {
    border: 2px solid #ca0420;
}

.section-footer .footer-box.bg_red img.icon-arrow {
    border: 2px solid #fff;
}

.section-footer .footer-box .social-icons h4 {
	margin-top: 0;
	margin-bottom: 20px;
}

.section-footer .footer-box .social-icons .icon-list a {
	display: inline-block;
}

.section-footer .footer-box .social-icons .icon-list span {
	display: inline-block;
	width: 35px;
	height: 35px;
	padding: 4px 2px;
	text-align: center;
	border: 2px solid #131313;
	border-radius: 50%;
	margin: 0 2px;
}

.section-footer .footer-box .social-icons .icon-list span i {
	color: #131313;
}

/*.section-footer .footer-box:hover img.icon-arrow {
	margin-left: 20px;
}*/

.section-footer-2 {
	background: #000;
    padding: 60px 0 40px 0;
}

.section-footer-2 .footer-box {
	margin-bottom: 30px;
}

.section-footer-2 .footer-box h4 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;
    margin-bottom: 30px;
    color: #fafafa;
    padding-bottom: 8px;
	position: relative;
}

.section-footer-2 .footer-box h4::before {
    background: #ca0420;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 90px;
}

@-webkit-keyframes section-title-run-sm{0%{left:0}50%{left:85px}100%{left:0}}

.section-footer-2 .footer-box h4::after {
	background: #fff;
    bottom: 0;
    content: "";
    height: 3px;
    position: absolute;
    width: 4px;
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

.section-footer-2 .footer-box .item {
	margin-bottom: 20px;
}

.section-footer-2 .footer-box .item a {
	font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0;
    color: #fafafa;
}

.section-footer-2 .footer-box .item a i {
	color: #ca0420;
	margin-right: 5px;
}

.section-footer-2 .footer-box .items-list ul li {
	margin-bottom: 10px;
}

.section-footer-2 .footer-box .items-list ul li a {
	font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0;
    color: #fafafa;
}

.section-footer-2 .footer-box .items-list ul li a i {
	color: #ca0420;
	margin-right: 5px;
}

.footer-bottom {
	background: #131313;
	padding: 20px 0;
	text-align: center;
}

.footer-bottom p {
	text-align: center;
	font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 1px;
	margin-bottom: 0;
	color: #fafafa;
}

.sectors-area .single-challenges {
	min-height: inherit; 
	background: none;
}

.sectors-area .single-challenges img {
    max-width: 90px;
    margin-bottom: 15px;
}

.sectors-area .single-challenges h3 {
	color: #fff;
	font-weight: 500;
}

.services-area {
	background:#fff;
}

.inner-content-area {
	background:#fff;
}

.services-area .section-title h2 {
	color: #131313;
}

.certificate-area {
	background:#000;
}

.certificate-area .section-title h2 {
	color: #fafafa;
}


.more-services {
	display: none;
}

.btm_whatsapp_chat {
    position: fixed;
    right: 0;
    bottom: 0;
    margin-right: 15px;
    margin-bottom: 15px;
    z-index: 1;
}

.btm_whatsapp_chat img {
    width: 140px;
}

.highlight-area {
}

.our-approach-area {
	background: #fff;
	padding-bottom:0;
}

.our-approach-area .section-title h2 {
	color: #131313;
}

.our-approach-area .approach-img {
	margin-bottom: 0;
}

.our-approach-area .approach-content h3 {
	color: #131313;
}

.txt_left {
	text-align: left;
}

.go-top {
	display: none;
}

.go-top.active {
	right: 18px;
    bottom: 0;
    width: 52px;
	display:inline-block;
}

.submitting_form {
	display: none;
}

.client-logos-area {
	background: #fff;
    padding: 30px 0;
}

.contact-info-section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.contact-info-box {
	background: #000!important;
	padding: 30px 20px;
	text-align: center;
}

.contact-info-box .title h3 {
	margin-top: 20px;
	padding-left: 0;
	font-weight: 500;
}

.contact-info-box p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
    margin-top: 15px;
}

.contact-info-box p a {
    color: #fafafa;
}

.contact-info-box .svg-item svg {
	position: inherit;
}

.c-black {
	color: #131313!important;
}

.txt-jty {
	text-align: justify!important;
}

.mgn-l-0 {
	margin-left: 0!important;
}

.content-inner {
    padding: 45px 45px 45px 45px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0;
    color: #131313;
	text-align: justify;
}

.content-inner .content-title {
    margin-bottom: 10px;
}

.content-inner .content-title h1 {
	font-size: 36px;
    line-height: 46px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: justify;
}

.content-inner h2 {
	font-size: 28px;
    line-height: 38px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 35px;
	text-align: justify;
}

.content-inner h3 {
	font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 35px;
	text-align: justify;
}

.content-inner h4 {
	font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 35px;
	text-align: justify;
}

.content-inner h5 {
	font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 35px;
	text-align: justify;
}

.content-inner p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0;
    color: #131313;
	text-align: justify;
}

.content-inner .highlight-text {
	font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-top: 30px;
    color: #131313;
    text-align: left;
    text-transform: uppercase;
}

.content-inner a {
    color: #ca0420;
}

.content-inner a.default-btn {
    color: #fff;
}

.content-inner ul {
	margin-top: 25px;
	margin-bottom: 25px;
	padding-left: 30px;
}

.content-inner ul li {
    position: relative;
    padding-left: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 18px;
	line-height: 28px;
	font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0;
    color: #131313;
	text-align: justify;
}


.content-inner ul li:before {
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 0;
    content: "";
    font-size: 24px;
    width: 12px;
    height: 12px;
    background: #ca0420;
}

.inner-page-banner .banner img {
	width: 100%;
}

.cta-box {
	background: #ca0420;
	padding: 35px 35px;
	margin-top: 40px;
}

.cta-box .cta-title {
	font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
	color: #fafafa;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: left;
}

.cta-box button.default-btn {
	background: #000!important;
}

.related-services {
	background: #fff;
}

.related-services .items-tile {
	font-size: 34px;
    line-height: 44px;
    letter-spacing: 0;
    color: #131313;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
}

.related-services .item {
	font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    color: #131313;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
	padding: 20px 20px;
	background: #fff;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
    
}

.related-services .item:hover {
	background: #000;
	color: #fafafa;
}

.related-services a {
    color: #131313;
	display: block;
}

.quote-popup h3.modal-title{
	color: #131313;
} 

.quote-popup .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.content-image {
	margin-top: 45px;
    margin-bottom: 30px;
}

.content-image img {
    margin-bottom: 20px;
}

.mission-area.mission-inner-page {
    background: linear-gradient( to right, #fff 0%, #fff 50%, #c2081c 50%, #c2081c 100% );
}

.mission-area.mission-inner-page .box-left .box-item p {
    color: #131313;
}

.c-mt-0 {
	margin-top: 0!important;
}

.c-mt-10 {
	margin-top: 10px!important;
}

.c-mt-15 {
	margin-top: 15px!important;
}

.c-mt-20 {
	margin-top: 20px!important;
}

.c-mt-25 {
	margin-top: 25px!important;
}

.c-mt-30 {
	margin-top: 30px!important;
}

.c-mb-30 {
	margin-bottom: 30px!important;
}

.txt-lft {
	text-align: left!important;
}

.txt-cntr {
	text-align: center!important;
}

.accre-box {
	padding: 0 20px;
	text-align:center;
}

.accre-inner-page .content-inner {
	background: #fff;
}

.accre-inner-page .content-title h1 {
    color: #131313;
    text-align: center;
}

.accre-inner-page .content-inner h3 {
    color: #131313;
}

.accre-inner-page .content-inner p {
	color: #131313;
}

.profile-content {
	margin-top: 40px;
	text-align: center;
}

.profile-content video {
	width: 100%;
	max-width: 400px;
	margin-bottom: 30px;
}

.careers-form .common-control input {
    height: 48px;
}

.careers-form .common-control input, .careers-form .common-control select, .careers-form .common-control textarea {
    background: #f1f6fc;
    width: 100%;
    padding: 10px 18px;
    border: none;
    outline: none;
    border-radius: 0;
    color: #363636;
    font-size: 17px;
}

.careers-form .mb-40 {
    margin-bottom: 40px;
}

.careers-form .common-control select {
    padding: 12px 20px;
}

.careers-form .e_live {
    width: 70px;
    display: inline-block;
}

.careers-form .form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.careers-form .form-check-label {
    margin-left: 5px;
}

.careers-form .form_error {
    max-width: 400px;
}

.careers-form .form_success {
  display: none;
}

.careers-form .form_error {
  display: none;
}

.careers-form .hide_submit span {
    font-size: 20px;
    font-family: Jost;
    font-weight: 400;
    text-transform: inherit;
    color: #6f6f6f;
    margin-right: 5px;
    display: none;
}

.careers-form .hide_submit img {
    width: 50px;
    margin-left: 10px;
    display: none;
}

.careers-form .e_dob {
    width: 160px!important;
}

.careers-form ::-webkit-input-placeholder {
  color: #222!important;
}

.careers-form :-ms-input-placeholder {
  color: #222!important;
}

.careers-form ::placeholder {
  color: #222!important;
}

.content-inner .careers-form h5 {
	margin-top: 0;
	margin-bottom: 30px;
}

.careers-form .mr-3, .careers-form .mx-3 {
    margin-right: 1rem!important;
}

.careers-form-section {
	margin-top: 40px;
}

.careers-form label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.request-form-1 h4 {
	margin-top: 10px;
}

.listing-style-box {
    clear: both;
    margin-left: 0;
    padding-left: 0!important;
	float: left;
	margin-top: 10px!important;
    margin-bottom: 5px!important;
}

.listing-style-box li {
    background: #ca0420;
    width: auto;
    float: left;
    margin: 10px 10px 10px 0;
    padding: 8px 15px;
    color: #fff!important;
    border-radius: 3px;
	padding-left: 15px!important;
}

.listing-style-box li:before {
	display: none;
}

.emp_container {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.emp_image {
  display: block;
  width: 100%;
  height: auto;
  border: 8px solid #f0f0f0;
}

.emp_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #ca0420;
}

.emp_container:hover .emp_overlay {
  opacity: 1;
}

.emp_text {
  color: #fff;
  font-size: 28px;
  line-height: 38px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  text-transform:uppercase;
  font-weight: 700;
}

.news-listing .content-inner {
	box-shadow: inherit;
    padding: 0;
}
.news-listing .blog-wrap {
  text-align: center;
  background: #ffffff;
  padding: 15px 15px 0 15px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  margin: 20px 0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;

}
.news-listing .blog-wrap .img-part {
  position: relative;
}
.news-listing .blog-wrap .img-part img {
  border-radius: 5px 5px 0 0;
  transition: all 0.3s ease;
}
.news-listing .blog-wrap .img-part .blog-meta {
  min-width: 150px;
  text-align: center;
  background: #ca0420;
  color: #ffffff;
  position: absolute;
  content: '';
  padding: 8.5px 0;
  border-radius: 5px 5px 0 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-size: 15px;
}
.news-listing .blog-wrap .img-part .blog-meta i {
  margin-right: 5px;
}
.news-listing .blog-wrap .content-part {
  position: relative;
  padding: 26px 15px 40px;
}
.news-listing .blog-wrap .content-part .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}
.news-listing .blog-wrap .content-part .title a {
  color: #131313;
  text-align: center;
}
.news-listing .blog-wrap .content-part .title a:hover {
  color: #ca0420;
}
.news-listing .blog-wrap .content-part .btn-part {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  z-index: 1;
  transition: all 0.3s ease;
  padding-bottom: 4px;
}
.news-listing .blog-wrap .content-part .btn-part a {
  font-size: 14px;
  padding: 10px;
  color: #ffffff;
}
.news-listing .blog-wrap:hover .img-part img {
  filter: grayscale(1);
}
.news-listing .blog-wrap:hover .content-part .btn-part {
  bottom: 0;
}
.news-listing .blog-wrap:hover .content-part:before {
  width: 182px;
  height: 182px;
  border-color: #ca0420;
}
.news-listing .blog-wrap:hover .content-part:after {
  width: 140px;
  height: 140px;
  background: #ca0420;
}
.news-listing .blog-wrap:hover:after {
  width: 100%;
}

.btn-more a {
    display: inline-block;
    border: 1px solid #ca0420;
    border-radius: 3px;
    line-height: 34px;
    font-size: 15px;
    margin-top: 25px;
    padding: 2px 20px;
}

.news-details .blog-sidebar {
    width: 100%;
	padding-left: 30px;
}

.news-details .pl-35 {
    padding-left: 35px;
}

.news-details .sidebar-grid {
    padding: 40px 30px;
}

.news-details .shadow {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07) !important;
}

.news-details .mb-50 {
    margin-bottom: 50px;
}

.news-details .sidebar-grid .sidebar-title .title {
    color: #131313;
    font-size: 20px;
    line-height: 28px;
    font-weight: 7s00;
    position: relative;
    z-index: 1;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.news-details .sidebar-grid .sidebar-title .title:after {
    content: "";
    position: absolute;
    border: 0;
    width: 50px;
    height: 2px;
    background: #ca0420;
    z-index: 1;
    margin-left: 0;
    bottom: 0;
    left: 0;
}

.news-details .sidebar-grid.sidebar-popular-post .single-post {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
}

.news-details .mb-20 {
    margin-bottom: 25px;
}

.news-details .sidebar-grid.sidebar-popular-post .single-post .post-image {
    margin-right: 15px;
}

.news-details .sidebar-grid.sidebar-popular-post .single-post .post-image img {
    max-width: 80px;
    border-radius: 3px;
}

.news-details .sidebar-grid.sidebar-popular-post .single-post .post-desc .post-title h5 {
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 0;
    line-height: 22px;
    color: #131313;
}

.news-details  .sidebar-grid.sidebar-popular-post .single-post .post-desc ul li {
    display: inline-block;
    margin-right: 12px;
    font-size: 12px;
    color: #555;
}

.news-details  .sidebar-grid.sidebar-popular-post .single-post .post-desc ul li:last-child {
    margin-right: 0;
}

.news-details  .sidebar-grid.sidebar-popular-post .single-post .post-desc ul li i {
    margin-right: 5px;
    color: #ca0420;
}

.news-details  .sidebar-grid.sidebar-popular-post a {
	display: inline;
	color: #131313;
}

.news-details .blog-img img {
	width: 100%;
}

.news-details .blog-part .article-content {
    padding: 38px 40px 34px;
}

.news-details .article-content h1 {
	font-size: 36px;
    line-height: 46px;
    letter-spacing: 0;
    color: #131313;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.news-details .blog-part .article-content .blog-meta li {
    display: inline;
    font-size: 14px;
    margin-right: 10px;
}

.news-details .blog-part .article-content  {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0;
    color: #131313;
    text-align: justify;
	font-family: 'DM Sans', sans-serif!important;
}

.news-details .blog-part .article-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0;
    color: #131313;
    text-align: justify;
}

.news-details .blog-part .article-content .blog-meta li i {
    margin-right: 3px;
    color: #ca0420;
    font-size: 13px;
}

.news-details .article-content h1 {
	font-size: 36px;
    line-height: 46px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: justify;
}

.news-details .article-content h2 {
	font-size: 28px;
    line-height: 38px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 35px;
	text-align: justify;
}

.news-details .article-content h3 {
	font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 35px;
	text-align: justify;
}

.news-details .article-content h4 {
	font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 35px;
	text-align: justify;
}

.news-details .article-content h5 {
	font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 35px;
	text-align: justify;
}

.news-details .article-content h6 {
	font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
	color: #131313;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 35px;
	text-align: justify;
}

.news-home-page {
	background: #fafafa;
}

.news-home-page .section-title h2 {
	color: #131313;
}

.news-home-page.news-listing .blog-wrap {
	margin-top: 0;
	min-height: 580px;
}

.hglt-txt {
	color: #ca0420;
}

.get-touch-title {
	font-size: 34px;
    position: relative;
    line-height: 44px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #131313;
    display: inline-block;
    padding: 8px 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 22px;
}

.job-listing {
	margin-top: 0;
}

.job-listing .cta-box {
    margin-top: 60px;
}

.job-listing .job-box-outer {
	display: block;
}

.job-listing .job-box {
	border: 1px solid #e1e1e1;
	margin-bottom: 35px;
	padding: 25px 25px;
}

.job-listing .job-box .job-img img {
	width: 100%;
}

.job-listing .job-box .job-img img {
	width: 100%;
}

.job-listing .job-box h3 {
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: left;
	color: #ca0420;
	margin-top: 0;
}

.job-listing .job-box .job-meta {
	color: #131313;
	text-align: left;
	font-size: 17px;
}

.job-listing .listing-sidebar {
	padding-right: 40px;
	border-right: 1px solid #e1e1e1;
	padding-bottom: 30px;
}

.job-listing .listing-sidebar .main-title {
	font-size: 20px;
    font-weight: 500;
}

.job-listing .listing-sidebar .main-title a {
	color: #fff;
    background: #ca0420;
    font-size: 13px;
    padding: 0px 8px;
    float: right;
}
	
.job-listing .listing-sidebar hr {
    border-top: 2px solid #ca0420;
    opacity: 1;
    margin: 15px 0;
}

.job-listing .listing-sidebar .filter-item .item-main-title {
	font-weight: 600;
    margin-bottom: 10px;
    margin-top: 30px;
}

.job-listing .listing-sidebar .filter-item .item-title {
	
	border-top: 1px solid #e1e1e1;
}

.job-listing .listing-sidebar .filter-item .item-title a {
	width: 100%;
    color: #131313 !important;
    font-size: 16px;
    line-height: 26px;
	padding: 10px 0;
}

.job-listing .listing-sidebar .filter-item .item-title a:hover {
	background: #f1f1f1;
	padding-left: 20px;
}

.job-listing .listing-sidebar .filter-item .item-title a span {
	float: right;
	color: #131313!important;
	font-size: 14px;
}

.job-listing .listing-content {
	
	padding-left: 15px;
}

.job-listing .listing-content .listing-item-right {
	margin-top: 30px;
	padding-left: 10px;
}

.job-listing .listing-content .listing-item-right .meta-item {
	color: #131313!important;
	font-size: 16px;
	margin-bottom: 10px;
	text-align: left;
}

.job-listing .listing-content .listing-item-right .meta-item i {
	color: #ca0420!important;
	margin-right: 5px;
}

.news-details .article-content h1 {
	text-align: left;
}

.job-details .article-content h1 {
	text-align: left;
	margin-bottom: 15px;
}

.job-details .article-content .desc {
	margin-top: 30px;
}

.careers-page-title {
    background: #f5f5f5;
    padding: 60px 0;
    margin-bottom: 60px;
}

.careers-page-title h1 {
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0;
    color: #131313;
    font-weight: 700;
    text-align: center;
}

/* FAQ */
.content-desc .faq-s-1 {
	margin-top: 50px;
}

.content-desc .faq-s-1 .content-inner h2 {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0;
    color: #131313;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 35px;
    text-align: justify;
}

.faq-s-1 .faq-content {
	margin-top: 30px;
}

.faq-s-1 .faq-content .card {
    border: none;
    margin-bottom: 25px;
    overflow: inherit;
    background: transparent;
    border-radius: unset;
    padding: 0;
    padding-left: 30px;
}

.faq-s-1 .faq-content .card .card-header {
    border: none;
    background: transparent;
    padding: 0;
}

.faq-s-1 .faq-content .card .card-header h4 {
	font-size: 21px;
    line-height: 31px;
    letter-spacing: 0;
    color: #131313;
    font-weight: 500;
    background: none;
    padding: 0;
    margin-top: 0;
	margin-bottom: 0;
	padding-right: 35px;
	cursor: pointer;
	position: relative;
    padding-left: 30px;
}

.faq-s-1 .faq-content .card .card-header h4:before {
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 0;
    content: "";
    font-size: 24px;
    width: 12px;
    height: 12px;
    background: #ca0420;
}

.faq-s-1 .accordion .card-header h4:after {
    font-family: "FontAwesome";
    content: "\f106";
    position: absolute;
    right: 15px;
    top: 0;
    font-weight: 700;
	color: #131313;
	opacity: 1;
}

.faq-s-1 .accordion .card-header h4.collapsed:after {
    content: "\f107";
}

.faq-s-1 .faq-content .card .card-body {
    background: none;
    margin-top: 15px;
    border-radius: unset;
    padding: 0;
    padding-left: 30px;
	padding-right: 35px;
	font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0;
    color: #131313;
    text-align: justify;
}

.faq-s-1 .faq-content .card .card-body p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0;
    color: #131313;
    text-align: justify;
}

.faq-s-1 .faq-content .card .card-body ul {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-left: 30px;
}

.faq-s-1 .faq-content .card .card-body ul li {
    position: relative;
    padding-left: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0;
    color: #131313;
    text-align: justify;
}

.faq-s-1 .faq-content .card .card-body ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 0;
    content: "";
    font-size: 24px;
    width: 10px;
    height: 10px;
    background: #131313;
}

.faq-home .section-title {
	text-align: left;
	margin: 0;
    margin-bottom: 45px;
}

.faq-home .section-title h2 {
    font-size: 32px;
}

.feature-area.why-choose {
    padding-top: 90px;
    padding-bottom: 75px;
}

.benefits-box {
	padding-left: 40px;
}

.benefits-box ul {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-left: 0;
}

.benefits-box ul li {
    position: relative;
    padding-left: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0;
    color: #fff;
    text-align: justify;
}

.benefits-box ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 0;
    content: "";
    font-size: 24px;
    width: 10px;
    height: 10px;
    background: #ca0420;
}

.feature-area.feature-area-four .single-feature h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
	text-align: left;
}


@media only screen and (max-width: 767px) {
	
	.faq-home .section-title h2 {
		font-size: 25px;
		letter-spacing: 1px;
	}
	
	.faq-home .section-title {
		margin-bottom: 30px;
	}
	
	.feature-area.why-choose {
		padding-top: 60px;
		padding-bottom: 50px;
	}
	.benefits-box {
		padding-left: 0;
		text-align: left;
	}

	.faq-s-1 .faq-content .card {
		padding-left: 0;
	}
	
	.faq-s-1 .faq-content .card .card-header h4 {
		font-size: 19px;
		line-height: 29px;
	}
	
	.faq-s-1 .faq-content .card .card-body {
		padding-right: 0;
	}
	
	.faq-s-1 .faq-content .card .card-body p {
		text-align: left;
	}
}

@media only screen and (max-width: 1200px) {
	.navbar-area .main-nav .container {
		max-width: inherit;
	}
	
	.navbar-area .main-nav .others-option {
		display: none;
	}
	
	.section-footer .footer-box.h-s {
		min-height: inherit;
	}
	
	.section-footer .footer-box.h-m {
		min-height: inherit;
	}
	
	.section-footer .footer-box.h-l {
		min-height: inherit;
	}
	
	.highlight-area {
		padding-top: 150px; 
		padding-bottom:120px;
	}
}

@media only screen and (max-width: 1024px) {
	.cta-box .cta-btn {
		margin-top: 15px;
	}
	
	.accre-box {
    	padding: 0 0px;
	}
}

@media only screen and (min-width:768px) {
	.main-social {
    	display: block;
		height: auto;
		left:inherit;
		right: 0;
		padding-top: 15px;
		padding-left: 18px;
		width: 52px;
		padding-bottom: 0;
		bottom: inherit;
		top:0;
		margin-top: 220px;
	}
	
	.main-social .social-network li {
		margin-right: 0;
		margin-bottom: 5px;
	}
	
	.main-social .social-network li {
    	display: block;
	}
	
	.main-social .social-icon:after {
		display: none;
	}
	
	.main-social .social-network {
		margin-left: 0;
	}
	
	.main-social .social-icon {
		display: block;
		 margin: 8px 0;
	}
	
	.main-social .social-icon:after {
		top: 8px;
	}
	
	.social-btn,
	a.cop-icon {
		margin-top: 0;
	}
	
	.main-social .social-network li {
		margin-top: 0;
	}
	
}

@media only screen and (max-width: 767px) {
	.feature-area.feature-area-four .single-feature video {
		margin-top: -45px;
	}
	
	.single-feature .title h1 {
		font-size: 24px;
    	line-height: 32px;
    	text-align: left;
	}
	
	.banner-area.banner-area-four .banner-content {
		padding: 20px 15px;
		float: none;
		margin: auto;
	}

	.sectors-area .single-challenges img {
		max-width: 75px;
	}

	.sectors-area .single-challenges {
		padding: 10px;
		margin-bottom: 20px;
	}
	
	.sectors-area .single-challenges h3 {
		font-size: 16px;
	}
	
	.solution-content {
		max-width: inherit;
		padding-top: 40px;
		padding-bottom: 20px;
		padding-left: 10px;
    	padding-right: 20px;
	}
	
	.section-footer {
		padding: 50px 10px 30px 10px;
	}
	
	.section-footer .footer-box.h-s {
		min-height: inherit;
	}
	
	.section-footer .footer-box.h-m {
		min-height: inherit;
	}
	
	.section-footer .footer-box.h-l {
		min-height: inherit;
	}
	
	.section-footer .footer-box h4 {
    	font-size: 18px;
    	line-height: 28px;
	}
	
	.section-footer .footer-box img.icon-arrow {
		max-width: 30px;
	}
	
	.section-footer .footer-box .social-icons .icon-list span {
    	padding: 6px 2px;
	}
	
	.footer-bottom {
		margin-bottom: 60px;
	}
	
	.footer-bottom p {
		font-size: 15px;
		line-height: 25px;
	}
	
	.single-services {
		padding: 0 10px 0 10px;
	}
	
	.btm_whatsapp_chat {
		margin-right: 5px;
		margin-bottom: 50px;
	}
	
	.btm_whatsapp_chat img {
		width: 130px;
	}
	
	.banner-area {
		min-height: 500px;
	}
	
	.banner-area .container {
		max-width: 100%;
	}
	
	.banner-area .d-table {
		position: absolute;
    	bottom: 0;
	}
	
	.banner-area .d-table .col-lg-12 {
		padding: 0;
	}
	
	.banner-area .banner-content {
		width: 100%;
		max-width: 100%!important;
	}
	
	.certificate-area .certificate-box {
		margin-bottom: 30px;
	}
	
	.highlight-area {
		padding-top: 100px; 
		padding-bottom: 70px;
	}
	
	.home-highlight .highlight-box h3 {
		font-size: 22px;
    	line-height: 32px;
	}
	
	.intro-text {
		margin-bottom: 20px;
	}
	
	.single-feature .title h2 {
		font-weight: 500;
		font-size: 22px;
		line-height: 26px;
		margin-bottom: 25px;
	}
	
	.single-feature p {
		line-height: 24px;
	}
	
	.mission-area .box-left {
    	padding: 0 20px 0 20px;
		margin-bottom: 50px;
	}
	
	.mission-area .box-left .box-item p {
    	font-size: 16px;
    	line-height: 24px;
	}
	
	.mission-area .box-left .box-item {
		margin-bottom: 35px;
	}
	
	.mission-area .box-left .box-item h3 {
		font-size: 22px;
		line-height: 32px;
	}
	
	.mission-area .box-left .box-item h3 span {
		min-width: 140px;
	}
	
	.mission-area .box-left .box-item h3 span:before {
		right: -43px;
		bottom: -0.7px;
		border-left: 44px solid #ca0420;
		border-bottom: 43px solid transparent;
	}
	
	.mission-area {
		padding-bottom: 0!important;
	}
	
	.mission-area .col_right {
		padding: 0;
		margin-bottom: -7px;
	}
	
	.mission-area {
		background: #000;
	}
	
	.our-approach-area .approach-img {
		margin-bottom: 25px;
    	margin-right: -20px;
    	margin-top: -15px;
	}
	
	.partner-area {
		padding-left: 10px;
    	padding-right: 10px;
	}
	
	.main-social {
		left: 0;
		width: 100%;
		bottom: 0;
	}
	
	.go-top.active {
		right: 0;
		bottom: inherit;
		top: -4px;
		float: right;
	}
	
	.content-inner {
    	padding: 35px 30px 35px 30px;
	}
	
	.content-inner .content-title h1 {
    	font-size: 30px;
    	line-height: 40px;
		text-align: left;
	}
	
	.content-inner h2 {
    	font-size: 26px;
    	line-height: 36px;
		text-align: left;
	}
	
	.content-inner h3 {
    	font-size: 22px;
    	line-height: 32px;
		text-align: left;
	}
	
	.content-inner h4 {
    	font-size: 22px;
    	line-height: 32px;
		text-align: left;
	}
	
	.content-inner h5 {
    	font-size: 22px;
    	line-height: 32px;
		text-align: left;
	}
	
	.content-inner ul li {
		text-align: left;
	}
	
	.cta-box .cta-btn {
		margin-top: 15px;
	}
	
	.cta-box .cta-title {
    	font-size: 20px;
    	line-height: 30px;
	}
	
	.cta-box {
    	padding: 30px 30px;
    	margin-top: 35px;
	}
	
	.related-services .items-tile {	
    	margin-bottom: 25px;
		font-size: 28px;
    	line-height: 38px;
	}
	
	.related-services .item {
		font-size: 18px;
		line-height: 28px;
		padding: 15px 15px;
		margin-bottom: 20px;
	}
	
	.content-image {
		margin-top: 35px;
		margin-bottom: -5px;
	}
	
	.content-inner ul {
		padding-left: 0;
	}
	
	.accre-box {
    	padding: 0 0px;
	}
	
	.news-details .article-content h1 {
    	font-size: 30px;
    	line-height: 40px;
		text-align: left;
	}
	
	.news-details .article-content h2 {
    	font-size: 26px;
    	line-height: 36px;
		text-align: left;
	}
	
	.news-details .article-content h3 {
    	font-size: 22px;
    	line-height: 32px;
		text-align: left;
	}
	
	.news-details .article-content h4 {
    	font-size: 22px;
    	line-height: 32px;
		text-align: left;
	}
	
	.news-details .article-content h5 {
    	font-size: 22px;
    	line-height: 32px;
		text-align: left;
	}
	
	.news-details .article-content h6 {
    	font-size: 22px;
    	line-height: 32px;
		text-align: left;
	}
	
	.news-details .blog-sidebar {
		padding-left: 0;
	}
	
	.news-home-page.news-listing .blog-wrap {
		min-height: inherit;
	}
	
	.section-footer-2 {
		padding: 40px 15px 15px 15px;
	}
	.section-footer-2 .footer-box h4 {
		font-size: 22px;
		line-height: 32px;
	}
	
	/*.home-highlight .highlight-box span {
		font-size: 38px;
		line-height: 48px;
	}*/
	
	/*.home-highlight .highlight-box {
    	margin-bottom: 45px;
	}*/
	
	.get-touch-title {
		font-size: 25px;
		line-height: 35px;
		text-align: center;
		display: block;
	}
	
	.careers-page-title {
		padding: 30px 0;
		margin-bottom: 30px;
	}
	
	.careers-page-title h1 {
		font-size: 24px;
		line-height: 34px;
	}
	
	.job-listing .listing-sidebar {
		padding-right: 0;
		border-right: none;
	}
	
	.job-listing .listing-content {
		padding-left: 0;
	}
	
	.job-listing .listing-content .listing-item-right {
		padding-left: 0;
	}
	
	.job-listing .cta-box {
		margin-top: 20px;
	}
}