* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	outline: none!important;
}
img {
	max-width: 100%;
}
html body {
	font-family: 'Ubuntu', sans-serif;
	color: #000;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto Condensed', sans-serif;
}
p {
	font-size: 14px;
}
.container article {
	margin: 0;
}
@media (min-width: 768px) {
	p {
		font-size: 15px;
	}
}
@media (min-width: 1200px) {
	p {
		font-size: 16px;
	}
}

/* social start */
.social-top {
	background: #f2f2f2;
}
.social-list {
	list-style-type: none;
	font-size: 12px;
	margin: 0;
    padding: 4px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.social-list li {
	padding: 1px 0;
}
.social-list li:nth-child(2) {
	padding: 1px 10px;
}
.social-link {
	color: #000;
	display: inline-block;
	font-family: 'Roboto Condensed', sans-serif;
}
.social-link:visited,
.social-link:hover {
	color: #000;
}
.social-link svg {
	height: 13px;
	margin-right: 6px;
}
@media (min-width: 768px) {
	.social-list {
		font-size: 13px;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end
	}
	.social-list li {
		padding: 2px 15px;
	}
	.social-link svg {
		height: 14px;
	}
}
@media (min-width: 1200px) {
	.social-list {
		font-size: 14px;
	}
	.sicoal-list li {
		padding: 5px 15px;
	}
	.social-link svg {
		height: 15px;
	}
}
/* social end */

/* menu start */
.logo img {
	max-width: 50px;
	height: auto;
	width: 100%;
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
}
.navbar {
	font-size: 12px;
}
.navbar-nav {
	text-align: center;
}
.navbar .nav-item {
	padding: 6px;
}
.navbar .navbar-collapse .navbar-nav .nav-link {
	position: relative;
	color: #554f4f;
	display: inline-block;
	padding: 0;
	font-weight: 500;
	font-family: 'Roboto Condensed', sans-serif;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.navbar .nav-link:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 3px;
	left: 0;
	bottom: 0;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.navbar .navbar-collapse .navbar-nav .nav-link:hover {
	color: #000;
}
.navbar .nav-link:hover:before {
	-webkit-box-shadow: 0px 3px 0 0px #e31e24;
	        box-shadow: 0px 3px 0 0px #e31e24;
}
.custom-btn {
	padding: 4px 20px;
	display: inline-block;
	background: #e31e24;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
	border: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	cursor: pointer;
}
.custom-btn:visited {
	color: #fff;
}
.custom-btn:hover {
	background: #b01116;
	color: #fff;
	text-decoration: none;
}
.navbar-toggler {
	-webkit-box-ordinal-group: 4;
	    -ms-flex-order: 3;
	        order: 3;
}
.navbar-collapse {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-ordinal-group: 5;
	    -ms-flex-order: 4;
	        order: 4;
}
.navbar .navbar-toggler {
	position: relative;
    width: 36px;
    height: 26px;
    border: 1px solid #554f4f;
	cursor: pointer;
}
button:focus,
.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:active {
	outline: none;
}
.navbar .navbar-toggler-icon,
.navbar .navbar-toggler-icon:before,
.navbar .navbar-toggler-icon:after {
	position: absolute;
	content: "";
	width: 24px;
    height: 2px;
    left: 5px;
    top: 11px;
	background: #554f4f;
	border-radius: 1px;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.navbar .navbar-toggler-icon:before {
	top: -6px;
	left: 0px;
}
.navbar .navbar-toggler-icon:after {
	top: 6px;
	left: 0px;
}
.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background: transparent;
}
.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	top: 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
@media (min-width: 768px) {
	.logo img {
		max-width: 80px;
	}
	.navbar {
		font-size: 14px;
	}
	.navbar .nav-item {
		padding: 12px;
	}
	.navbar .navbar-collapse .navbar-nav .nav-link {
		font-weight: 400;
	}
	.custom-btn {
		-webkit-box-ordinal-group: 5;
		    -ms-flex-order: 4;
		        order: 4;
		padding: 10px 30px;
		font-size: 14px;
	}
	.navbar-collapse {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
}
@media (min-width: 1200px) {
	.logo img {
		max-width: 100px;
	}
	.navbar {
		font-size: 16px;
	}
	.navbar-collapse {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
	.navbar-collapse .navbar-nav {
		padding-left: 120px;
	}
	.navbar .nav-item {
		padding: 12px 20px;
	}
	.custom-btn {
		font-size: 16px;
	}
}
/* menu end */

/* carousel start */
.home-carousel {
	margin-bottom: 30px;
}
.slick-item {
	position: relative;
}
.home-carousel .slick-slide {
	height: inherit;
}
.carousel-img {
	position: relative;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 250px;
	z-index: -1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.img-1 {
	background-image: url('../images/carousel/1-compressor.jpg');
}
.img-2 {
	background-image: url('../images/carousel/2-compressor.jpg');
}
.img-3 {
	background-image: url('../images/carousel/3-compressor.jpg');
}
.img-4 {
	background-image: url('../images/carousel/4-compressor.jpg');
}
.img-5 {
	background-image: url('../images/carousel/5-compressor.jpg');
}
.carousel-overlay {
    background: #f2f2f2;
    padding: 25px 20px;
    text-transform: uppercase;
    color: #000;
	margin: 0 20px;
	margin-top: -30px;
	z-index: 1;
}
.slick-active .carousel-overlay {
	-webkit-animation: bounceInDown;
	        animation: bounceInDown;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
}
.carousel-overlay h2 {
	position: relative;
	font-size: 20px;
    font-weight: bold;
	margin: 0;
	font-family: 'Roboto Condensed', sans-serif;
}
.carousel-overlay h2:before {
	position: absolute;
	content: '';
	top: -5px;
	left: 0;
	height: 5px;
	width: 50px;
	background: #e31e24;
	border-radius: 2px;
}
.slick-dots {
	position: absolute;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0 10px;
}
.slick-dots li {
	margin: 10px;
}
.slick-dots button {
	position: relative;
	cursor: pointer;
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 5px;
	background: #c4c4c4;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.slick-dots .slick-active button {
	background: #554f4f;
}
@media (min-width: 576px) {
	.home-carousel {
		margin-bottom: 40px;
	}
	.carousel-overlay h2 {
		font-size: 25px;
	}
}
@media (min-width: 768px) {
	.home-carousel {
		margin-bottom: 50px;
	}
	.slick-item {
		height: 500px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.carousel-img {
		height: 100%;
	}
	.carousel-overlay {
		position: absolute;
		padding: 35px 25px;
		font-size: 30px;
		max-width: 660px;
		margin: 0;
	}
	.carousel-overlay h2 {
		font-size: 30px;
	}
	.slick-dots button {
		width: 20px;
		height: 20px;
		border-radius: 10px;
	}
	.slick-dots {
		top: auto;
		bottom: 0;
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
	}
}
@media (min-width: 992px) {
	.home-carousel {
		margin-bottom: 65px;
	}
	.slick-item {
		height: 550px;
	}
	.carousel-overlay {
		left: 20px;
	}
	.carousel-overlay h2 {
		font-size: 35px;
	}
}
@media (min-width: 1200px) {

	.home-carousel {
		margin-bottom: 90px;
	}
	.slick-item {
		height: 600px;
	}
	.slick-initialized .slick-slide {
		padding-left: 240px;
	}
	.carousel-overlay {
		left: -240px;
		padding: 65px 45px;
		font-size: 40px;
	}
	.carousel-overlay h2 {
		font-size: 40px;
	}
	.slick-dots {
		left: -20px;
	}
}
/* carousel end */

/* home services start */
.title {
	font-size: 22px;
	font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
	text-align: center;
	margin-bottom: 10px;
}
.title span {
	position: relative;
	padding-left: 10px;
}
.title span:before {
	position: absolute;
	content: '';
	width: 7px;
	height: 7px;
	top: 0;
	left: 0;
	border-radius: 4px;
	background: #e31e24;
}
.custom-card .subtitle svg {
	margin-right: 10px;
	width: 30px;
	height: 100%;
	float: left;
	overflow: visible;
}
.subtitle {
	font-size: 16px;
	font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
	color: #000;
	margin-bottom: 5px;
}
.custom-card p {
	font-size: 12px;
}
@media (min-width: 768px) {
	.title {
		font-size: 32px;
	}
	.title span {
		padding-left: 15px;
	}
	.title span:before {
		width: 11px;
		height: 11px;
		border-radius: 6px;
	}
	.custom-card .subtitle svg {
		margin-right: 15px;
		width: 45px;
	}
	.subtitle {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.custom-card p {
		font-size: 14px;
	}
}
@media (min-width: 1200px) {
	.title {
		font-size: 45px;
		line-height: 48px;
	}
	.title span {
		padding-left: 20px;
	}
	.title span:before {
		width: 15px;
		height: 15px;
		border-radius: 8px;
	}
	.custom-card .subtitle svg {
		margin-right: 20px;
		width: 60px;
	}
	.subtitle {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.custom-card p {
		font-size: 16px;
	}
}
/* home services end */

/* home contacts start */
.contacts-card {
	padding: 20px;
	background: #e31e24;
	margin-bottom: 10px;
	z-index: 1;
}
.contacts-card h3 {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 6px;
	font-family: 'Roboto Condensed', sans-serif;
}
.contacts-card p,
.contacts-card a{
	font-size: 13px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 6px;
}
.contacts-card a {
	display: inline-block;
}
.contacts-card a:visited {
	color: #fff;
}
.contacts-card ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.map-h {
	height: 270px;
}
.form-title {
	font-size: 16px;
	font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
	margin-bottom: 10px;
}
.input-title {
	font-size: 12px;
	margin-bottom: 5px;
	color: #554f4f;
}
.input-field {
	width: 100%;
	margin-bottom: 13px;
	padding: 4px 8px;
	font-size: 13px;
	color: #554f4f;
	border: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	background: #e5e5e5;
}
.map-wrapper {
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
}
.map {
	width: 100%;
    height: 200%;
}
@media (min-width: 576px) {
	.contacts-card {
		max-width: 220px;
		position: absolute;
		left: 55px;
		top: -15px;
	}
}
@media (min-width: 768px) {
	.contacts-card {
		padding: 15px 10px 25px;
	}
	.contacts-card h3 {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.contacts-card p,
	.contacts-card a{
		font-size: 13px;
		margin-bottom: 5px;
	}
	.map-h {
		height: 350px;
	}
	.form-title {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.input-title {
		font-size: 13px;
		margin-bottom: 5px;
	}
	.input-field {
		margin-bottom: 15px;
		padding: 6px 10px;
		font-size: 14px;
	}
	.map {
		height: 180%;
	}
}
@media (min-width: 1200px) {
	.contacts-card {
		padding: 30px 20px 50px;
		right: auto;
		left: 120px;
    	top: -50px;
	}
	.contacts-card h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.contacts-card p,
	.contacts-card a{
		font-size: 15px;
		margin-bottom: 10px;
	}
	.map-h {
		height: 450px;
	}
	.form-title {
		font-size: 25px;
		margin-bottom: 20px;
	}
	.input-title {
		font-size: 14px;
		margin-bottom: 5px;
	}
	.input-field {
		margin-bottom: 17px;
		padding: 8px 12px;
		font-size: 15px;
	}
	.map {
		height: 200%;
	}
}
/* home contacts end */

/* team start */
.team-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.team-card img {
	width: 70px;
	height: 70px;
	border-radius: 35px;
	overflow: hidden;
	margin: 15px 15px 15px 0;
}
.team-card p,
.team-card a {
	font-size: 14px;
	font-weight: 500;
	color: #000;
	font-family: 'Roboto Condensed', sans-serif;
}
.team-card a {
	display: inline-block;
}
.team-card a:hover {
	color: #e31e24;
	text-decoration: none;
}
@media (min-width: 576px) {
	.team-card img {
		width: 110px;
		height: 110px;
		border-radius: 55px;
		margin: 20px 20px 20px 0;
	}
	.team-card p,
	.team-card a {
		font-size: 15px;
	}
}
@media (min-width: 1200px) {
	.team-card img {
		width: 150px;
		height: 150px;
		border-radius: 75px;
		margin: 30px 30px 30px 0;
	}
	.team-card p,
	.team-card a {
		font-size: 16px;
	}
}
/* team end */

/* news start */
.news-subtitle {
	text-align: center;
}
.news-subtitle p {
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	margin: 6px 0;
	font-family: 'Roboto Condensed', sans-serif;
}
.news-subtitle a {
	font-size: 13px;
	line-height: 16px;
	font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
	color: #000;
	text-decoration: none;
	border-bottom: 3px solid #e31e24;
}
.news-subtitle a:hover {
	text-decoration: none;
	color: #000;
}
.news-img {
	width: 100%;
	display: block;
	height: auto;
}
.news-intro {
	position: relative;
	margin: 15px 0 25px;;
	padding-left: 60px;
}
.pubdate,
.news-intro .pubdate {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: uppercase;
}
.pubdate span,
.news-intro .pubdate span {
	font-size: 20px;
    color: #e31e24;
    line-height: 20px;
}
.pl-for-pubdate {
	padding-left: 55px;
}
.news-card .news-img {
	max-width: 600px;
	width: 100%;
}
.news-img[class*="float-"] {
	max-width: 400px;
}
.news-card-title {
	font-size: 16px;
	font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
	margin-top: 0;
	margin-bottom: 6px;
}
.news-card-title a {
	color: #000;
	text-decoration: none;
}
.news-card-title a:visited {
	color: #000;
}
.news-card-title a:hover {
	color: #000;
	text-decoration: underline;
}
.news-intro p {
	font-size: 14px;
	font-weight: 500;
}
@media (min-width: 768px) {
	.news-subtitle p {
		font-size: 13px;
		line-height: 15px;
		margin: 8px 0;
	}
	.news-subtitle a {
		font-size: 14px;
		line-height: 17px;
	}
	.news-intro {
		margin: 20px 0 30px;;
		padding-left: 70px;
	}
	.pubdate,
	.news-intro .pubdate {
		font-size: 11px;
		line-height: 17px;
	}
	.pubdate span,
	.news-intro .pubdate span {
		font-size: 22px;
		line-height: 22px;
	}
	.pl-for-pubdate {
		padding-left: 60px;
	}
	.news-card-title {
		font-size: 18px;
		margin-bottom: 8px;
	}
	.news-intro p {
		font-size: 15px;
	}
}
@media (min-width: 1200px) {
	.news-subtitle {
		position: absolute;
		left: 0;
		padding-left: 20px;
		top: 52px;
		text-align: left;
		max-width: 200px;
	}
	.news-subtitle p {
		font-size: 14px;
		line-height: 16px;
		margin: 10px 0;
	}
	.news-subtitle a {
		font-size: 15px;
		line-height: 18px;
		border-bottom: 3px solid #e31e24;
	}
	.news-intro {
		margin: 25px 0 35px;;
		padding-left: 80px;
	}
	.pubdate,
	.news-intro .pubdate {
		font-size: 12px;
		line-height: 18px;
	}
	.pubdate span,
	.news-intro .pubdate span {
		font-size: 24px;
		line-height: 24px;
	}
	.pl-for-pubdate {
		padding-left: 65px;
	}
	.news-card-title {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.news-intro p {
		font-size: 16px;
	}
}
/* news end */

/* about card start */
.card-about {
	padding: 20px;
	background: #f2f2f2;
	margin: 10px 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.card-about:hover {
	-webkit-box-shadow: 0px 6px 30px 0px #d6d6d7;
	        box-shadow: 0px 6px 30px 0px #d6d6d7;
    -webkit-transform: translateY(-5%);
        -ms-transform: translateY(-5%);
            transform: translateY(-5%);
}
.card-about svg {
	width: 50px;
	margin-bottom: 15px;
}
.card-about h3 {
	text-transform: uppercase;
	font-weight: lighter;
}
.card-about p {
	font-size: 12px;
}
@media (min-width: 576px) {
	.card-about {
		margin: 15px 0;
	}
}
@media (min-width: 768px) {
	.card-about {
		padding: 25px;
		margin: 30px 0;
	}
	.card-about svg {
		width: 65px;
		margin-bottom: 20px;
	}
	.card-about p {
		font-size: 14px;
	}
}
@media (min-width: 992px) {
	.card-about {
		padding: 30px;
		margin: 40px 0;
	}
}
@media (min-width: 1200px) {
	.card-about {
		padding: 30px;
		margin: 50px 0;
	}
	.card-about svg {
		width: 80px;
		margin-bottom: 30px;
	}
	.card-about p {
		font-size: 16px;
	}
}
/* about card end */

/* first contact  start */
.form-field {
	max-width: 100%;
	width: 100%;
	padding: 4px 20px;
	border: none;
    background: #e5e5e5;
    margin-bottom: 10px;
}
.form-btn {
	width: 100%;
	line-height: 24px;
}
@media (min-width: 768px) {
	.form-field {
		padding: 10px 30px;
		font-size: 14px;
	}
}
@media (min-width: 1200px) {
	.form-field {
		font-size: 16px;
	}
}
/* first contact  end */

/* footer start */
.footer {
	border-top: 3px solid #bdbdbd; 
}
.footer svg {
	height: 13px
}
.footer ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.footer li,
.footer p,
.footer a {
	font-size: 12px;
	color: #000;
	margin: 0;
}
.footer a:visited {
	color: #000;
}
.footer a:hover {
	color: #000;
	text-decoration: underline;
}
.footer-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 15px 0 6px;
}
.footer-logo {
	max-width: 40px;
	display: block;
	width: 100%;
	height: auto;
}
.footer-title {
	font-size: 14px;
	font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
	margin-top: 0;
	margin-bottom: 6px;
}
.copyright {
	text-align: center;
	padding: 8px 0;
}
@media (min-width: 576px) {
	.footer-wrapper {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}
@media (min-width: 768px) {
	.footer svg {
		height: 14px;
	}
	.footer li,
	.footer p,
	.footer a {
		font-size: 13px;
	}
	.footer-wrapper {
		padding: 20px 0 7px;
	}
	.footer-logo {
		max-width: 60px;
	}
	.footer-title {
		font-size: 15px;
		margin-bottom: 8px;
	}
}
@media (min-width: 1200px) {
	.footer svg {
		height: 15px;
	}
	.footer li,
	.footer p,
	.footer a {
		font-size: 14px;
	}
	.footer-wrapper {
		padding: 25px 0 8px;
	}
	.footer-logo {
		max-width: 80px;
	}
	.footer-title {
		font-size: 16px;
		margin-bottom: 10px;
	}
}
/* footer end */

/* grid start */
.wrapper {
	max-width: 1420px;
	width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}
.wrapper-p-0-lg-20 {
	padding: 0;
}
@media (min-width: 768px) {
	.row.row-partners,
	.row.row-service,
	.row.row-news {
		margin-right: -30px;
		margin-left: -30px;
	}
	.row.row-partners [class*="col-"],
	.row.row-service [class*="col-"],
	.row.row-news [class*="col-"] {
		padding-right: 30px;
		padding-left: 30px;
	}
	.row-form {
		margin-left: -5px;
		margin-right: -5px;
	}
	.row-form [class*="col-"] {
		padding-left: 5px;
		padding-right: 5px;
	}
}
@media (min-width: 992px) {
	.wrapper-lg {
		padding-right: 20px;
		padding-left: 20px;
	}
	.row.row-partners,
	.row.row-service{
		margin-right: -40px;
		margin-left: -40px;;
	}
	.row.row-partners [class*="col-"],
	.row.row-service [class*="col-"] {
		padding-right: 40px;
		padding-left: 40px;
	}
	.row.row-news {
		margin-right: -50px;
		margin-left: -50px;
	}
	.row.row-news [class*="col-"] {
		padding-right: 50px;
		padding-left: 50px;
	}
}
@media (min-width: 1200px) {
	.contacts-wrapper {
		margin-top: 50px;
		padding-top: 130px;
    	padding-bottom: 110px;
	}
	.row.row-partners,
	.row.row-service{
		margin-right: -50px;
		margin-left: -50px;
	}
	.row.row-partners [class*="col-"],
	.row.row-service [class*="col-"] {
		padding-right: 50px;
		padding-left: 50px;
	}
	.row.row-news {
		margin-right: -70px;
		margin-left: -70px;
	}
	.row.row-news [class*="col-"] {
		padding-right: 70px;
		padding-left: 70px;
	}
	.wrapper-p-0-lg-20 {
		padding: 0 20px;
	}
}
/* grid end */

/* individual styles start */
.clearfix:before,
.clearfix:after {
	display: block;
	content: '';
	clear: both;
}
.my-custom {
	margin-top: 15px;
}
.mb-custom {
	margin-bottom: 20px;;
}
.mb-custom-4 {
	margin-bottom: 4px;
}
.hr-line {
	margin: 0;
	border-top: 3px solid #e0e0e0;
	height: 0;
}
.btn-pull-right {
	display: block;
    margin-left: auto;
    margin-right: 0;
}
.flex-center-y {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.ox-hidden {
	overflow-x: hidden;
	margin: 0 -15px;
	padding: 0 15px;
}
@media (min-width: 576px) {
	.my-custom {
		margin-top: 20px;
		margin-bottom: 10px;
	}
	.mb-custom {
		margin-bottom: 25px;
	}
}
@media (min-width: 992px) {
	.my-custom {
		margin-top: 35px;
	}
	.mb-custom {
		margin-bottom: 55px;
	}
}
@media (min-width: 1200px) {
	.my-custom {
		margin-top: 45px;
	}
	.mb-custom {
		margin-bottom: 70px;
	}
	.absolute-l-t-xl {
		position: absolute;
		left: 0;
		top: 0;
	}
	.pl-xl-240 {
		padding-left: 240px;
	}
	.pl-xl-360 {
		padding-left: 360px;
	}
	.pt-xl-20 {
		padding-top: 20px;
	}
	.pr-xl-60 {
		padding-right: 60px;
	}
}
/* individual styles end */

/* animation start */
-webkit-keyframes bounceInDown {
  from,
  0%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes bounceInDown {
  from,
  0%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  0%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
/* animation end */

/* COOKIES FIRST */
.cookies_wrap {
	position: fixed; 
	bottom: 0; 
	left: 0; 
	right: 0; 
	margin: 0 auto; 
	min-height: 81px; 
	background-color: rgba(0, 0, 0, 0.85); 
	padding: 26px; 
	color: #fff; 
	font-size: 12px; 
	line-height: 18px; 
	text-align: center; 
	z-index: 99999; 
	width: 100%;
}
.cookies_wrap p { 
	margin: 0; 
	font-size: 14px; 
	color: #fff; 
}
.cookies_wrap .cookies_wrap_outer { 
	display: inline-block; 
	width: 960px; 
}
.cookies_wrap .cookies_wrap_text, 
.cookies_wrap_btns { 
	display: inline-block; 
	vertical-align: middle; 
}
.cookies_wrap .cookies_wrap_text { 
	width: 60%; 
	margin-right: 20px; 
	text-align: left; 
}
.cookies_wrap .cookies_wrap_text a { 
	font-weight: 700; 
	color: #fff !important; 
}
.cookies_wrap .cookies_wrap_btns { 
	text-align: right; 
}
.cookies_wrap .cookie_btn { 
	padding: 10px 28px; 
	margin: 0 5px; 
	min-width: 134px; 
	text-align: center; 
	display: inline-block; 
	text-transform: uppercase; 
	font-weight: bold; 
	-webkit-transition: all 0.4s; 
	-moz-transition: all 0.4s; 
	-o-transition: all 0.4s; 
	transition: all 0.4s; 
	border-radius: 7px;
}
.cookies_wrap .cookie_btn:hover { 
	text-decoration: none; 
}
.cookies_wrap .cookie_btn_default { 
	color: #fff !important; 
	background-color: #026ec1; 
}
.cookies_wrap .cookie_btn_default:hover { 
	background-color: #FF0000; 
	color: #fff !important; 
}
.cookies_wrap .cookie_btn_close { 
	display: inline-block; 
	position: absolute; 
	top: 10px; 
	right: 10px; 
	text-transform: uppercase; 
	color: #fff; 
	height: 20px; 
	width: 20px; 
	border-radius: 50%; 
	background-color: #fff; 
	text-decoration: none; 
}
.cookies_wrap .cookie_btn_close:after { 
	content: "x"; 
	font-size: 12px; 
	font-weight: bold; 
	color: #591f80; 
	position: absolute; 
	top: 50%; 
	left: 50px; 
	-webkit-transform: translate(-50%, -50%); 
	-ms-transform: translate(-50%, -50%); 
	-o-transform: translate(-50%, -50%); 
	transform: translate(-50%, -50%); 
}
.cookies_wrap .cookie_btn_close:hover { 
	text-decoration: none; 
	color: #fff; 
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.cookies_wrap .cookies_wrap_text, 
	.cookies_wrap_btns { 
		display: block; 
		text-align: center !important; 
		width: 100%; 
	}
	.cookies_wrap_btns { 
		margin-top: 10px;
	}
}
@media (max-width: 992px) {
	.cookies_wrap .cookies_wrap_outer { 
		width: 100%; 
	}
}