* {
    transition: all 0.4s cubic-bezier(.7, 1, .7, 1);
}

:root {
    --blueOne: #0f74bc;
    --blueTwo: #001952;
    --line: #475163;
    --green: #35ba9b;
    --blue: #3aadd9;
    --yellow: #f5b945;
    --red: #d94452;
	--white: #ffffff;
	--333: #333333;
}

.bg-white{
	background: var(--white);
}
.bg-blueOne{
	background: var(--blueOne);
}
.bg-blueTwo{
	background: var(--blueTwo);
}


.color-white{
	color: var(--white) !important;
}




.shadow{
	-webkit-box-shadow: 0px 3px 20px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 3px 20px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 3px 20px 0px rgba(0,0,0,0.25);
}

.shadow:hover,
.shadow:focus{
	-webkit-box-shadow: 0px 3px 20px 0px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 3px 20px 0px rgba(0,0,0,0.45);
	box-shadow: 0px 3px 20px 0px rgba(0,0,0,0.45);
}












.custom-btn {	
    display:block;
	z-index: 1;
	height:45px;
	font-size:16px;
    letter-spacing: 0.06em;
	overflow: hidden;
	line-height: 45px;
	padding: 0px 20px;
	text-align: center;
	color: #ffffff;
	position: relative;
	background-color:var(--blueOne);
	font-family: 'Montserrat', sans-serif;
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	-webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	text-transform:uppercase !important;
	letter-spacing:1px;
	
	-webkit-box-shadow: 0 5px 15px rgba(15, 116, 188,0.1);
	-moz-box-shadow: 0 5px 15px rgba(15, 116, 188,0.1);
	-ms-box-shadow: 0 5px 15px rgba(15, 116, 188,0.1);
	-o-box-shadow: 0 5px 15px rgba(15, 116, 188,0.1);
	box-shadow: 0 5px 15px rgba(15, 116, 188,0.1);
	
	border:none !important;
	
}


.custom-btn:after,
.custom-btn:before {
	top: 0px;
	width:100%;
	left: 0px;
	content: '';
	z-index: -2;
	height:0px;
	position: absolute;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
	-webkit-transition-timing-function: inherit;
	-o-transition-timing-function: inherit;
	transition-timing-function: inherit;
	background-color: rgba(1, 25, 82, 0.55);
}

.custom-btn:before {
	z-index: -1;
	background-color: rgba(1, 25, 82, 0.95);
}

.custom-btn:after {
	-webkit-transition-delay: 0.3s;
	-o-transition-delay: .3s;
	transition-delay: .3s;
}

.custom-btn:focus,
.custom-btn:hover {
	color: #fff;
	
	-webkit-box-shadow: 0 5px 15px rgba(15, 116, 188,0.5);
    -moz-box-shadow: 0 5px 15px rgba(15, 116, 188,0.5);
    -ms-box-shadow: 0 5px 15px rgba(15, 116, 188,0.5);
    -o-box-shadow: 0 5px 15px rgba(15, 116, 188,0.5);
    box-shadow: 0 5px 15px rgba(15, 116, 188,0.5);
	
}

.custom-btn:hover:after,
.custom-btn:hover:before {
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition-property: width;
	-o-transition-property: width;
	transition-property: width;
	
	-webkit-transition-property: height;
	-o-transition-property: height;
	transition-property: height;
}

.custom-btn:hover:before {
	-webkit-transition-delay: .2s;
	-o-transition-delay: .2s;
	transition-delay: .2s;
}

.custom-btn:hover:after {
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	/*-webkit-transition-property: width;
		-o-transition-property: width;
		transition-property: width;
		-webkit-transition-property: height;
		-o-transition-property: height;
	transition-property: height;*/
	
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition-property: width;
	-o-transition-property: width;
	transition-property: width;
	
	-webkit-transition-property: height;
	-o-transition-property: height;
	transition-property: height;
}

.custom-btn-underline {
	font-size: 16px;
	position: relative;
	color: #333333;
}

.custom-btn-underline:after,
.custom-btn-underline:before {
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 100%;
	content: '';
	position: absolute;
	background-color: #333333;
}

.custom-btn-underline:before {
	-webkit-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
}

.custom-btn-underline:after {
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition: -webkit-transform .3s ease .2s;
	transition: -webkit-transform .3s ease .2s;
	-o-transition: transform .3s ease .2s;
	transition: transform .3s ease .2s;
	transition: transform .3s ease .2s, -webkit-transform .3s ease .2s;
}

.custom-btn-underline:hover {
	color: #333333;
}

.custom-btn-underline:hover:before {
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
}

.custom-btn-underline:hover:after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}



/*------------------------------*\
    BUTTONS
\*--------------------------*/
.btn {
	text-transform: capitalize;
	position: relative;
	font-size: 15px;
	font-weight: 700;
	width: 170px;
	height: 60px;
	line-height: 58px;
	border-radius: 3px;
	text-align: center;
	padding: 0;
	letter-spacing: 0.2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn:focus,
.btn.active,
.btn:active {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
}

.btn-block {
	width: 100%;
}

/* Button Primary */
.btn-primary {
	background-color: #002273;
	color: #ffffff;
	border: 2px solid #002273;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
	background-color: #001952;
	color: #ffffff;
	border-color: #001952;
}

.btn-primary.btn-hover2:active,
.btn-primary.btn-hover2:focus,
.btn-primary.btn-hover2:hover {
	background-color: #ffffff;
	color: #002273;
	border-color: #ffffff;
}

.btn-primary.btn-hover3:active,
.btn-primary.btn-hover3:focus,
.btn-primary.btn-hover3:hover {
	background-color: transparent;
	color: #002273;
}

/* Button Secondary*/
.btn-secondary {
	background-color: #001952;
	color: #ffffff;
	border: 2px solid #001952;
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
	background-color: #002273;
	color: #ffffff;
	border-color: #002273;
}

.btn-secondary.btn-hover2:active,
.btn-secondary.btn-hover2:focus,
.btn-secondary.btn-hover2:hover {
	background-color: #ffffff;
	color: #001952;
	border-color: #ffffff;
}

.btn-default {
	background-color: transparent;
	border: 2px solid #eaeaea;
}

.btn-default:active,
.btn-default:focus,
.btn-default:hover {
	background-color: #002273;
	color: #ffffff;
	border-color: #002273;
}

/* Button White */
.btn-white {
	background-color: #ffffff;
	color: #001952;
	border: 2px solid #ffffff;
}

.btn-white:active,
.btn-white:focus,
.btn-white:hover {
	background-color: #002273;
	color: #ffffff;
	border-color: #002273;
}

.btn-white.btn-hover2:active,
.btn-white.btn-hover2:focus,
.btn-white.btn-hover2:hover {
	background-color: #001952;
	color: #ffffff;
	border-color: #001952;
}

.btn__rounded {
	border-radius: 50px;
}

/* Button Link */
.btn-link {
	background-color: transparent;
	border-color: transparent;
	width: auto;
	height: auto;
	line-height: 1;
	border: none;
}

.btn-link.btn-primary {
	color: #002273;
}

.btn-link.btn-primary:active,
.btn-link.btn-primary:focus,
.btn-link.btn-primary:hover {
	color: #001952;
	background-color: transparent;
	border-color: transparent;
}

.btn-link.btn-primary.btn-hover2:active,
.btn-link.btn-primary.btn-hover2:focus,
.btn-link.btn-primary.btn-hover2:hover {
	color: #ffffff;
}

.btn-link.btn-secondary {
	color: #001952;
}

.btn-link.btn-secondary:active,
.btn-link.btn-secondary:focus,
.btn-link.btn-secondary:hover {
	color: #002273;
	background-color: transparent;
	border-color: transparent;
}

.btn-link.btn-white {
	color: #ffffff;
}

.btn-link.btn-white:active,
.btn-link.btn-white:focus,
.btn-link.btn-white:hover {
	color: #ffffff;
	background-color: transparent;
	border-color: transparent;
}

/* Button Bordered */
.btn-bordered {
	background-color: transparent;
}

.btn-bordered.btn-primary {
	color: #002273;
	border-color: #002273;
}

.btn-bordered.btn-primary:active,
.btn-bordered.btn-primary:focus,
.btn-bordered.btn-primary:hover {
	color: #ffffff;
	background-color: #002273;
	border-color: #002273;
}

.btn-bordered.btn-secondary {
	color: #001952;
	border-color: #001952;
}

.btn-bordered.btn-secondary:active,
.btn-bordered.btn-secondary:focus,
.btn-bordered.btn-secondary:hover {
	color: #ffffff;
	background-color: #001952;
	border-color: #001952;
}

.btn-bordered.btn-white {
	color: #ffffff;
	border-color: #ffffff;
}

.btn-bordered.btn-white:active,
.btn-bordered.btn-white:focus,
.btn-bordered.btn-white:hover {
	color: #002273;
	background-color: #ffffff;
	border-color: #ffffff;
}

.btn-white.btn-secondary {
	color: #001952;
	border-color: #ffffff;
	background-color: #ffffff;
}

.btn-white.btn-secondary:active,
.btn-white.btn-secondary:focus,
.btn-white.btn-secondary:hover {
	color: #ffffff;
	background-color: #002273;
	border-color: #002273;
}




.btn__lg {
	width: 230px;
}

.btn-underlined {
	padding-bottom: 5px;
}

.btn-underlined:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #002273;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn-white.btn-underlined:after {
	background-color: #ffffff;
}

.btn-white.btn-underlined:hover {
	color: #001952;
}

.btn-white.btn-underlined:hover:after {
	background-color: #001952;
}

.btn i~span {
	margin-left: 6px;
}









.site-heading h1,
.site-heading h2,
.site-heading h3 {
    color: #333 ;
    display: inline-block;
    font-weight: bold;
    padding-bottom:10px;
    position: relative;
    text-transform: uppercase;
    margin-bottom:20px;
}
.site-heading h1::after,
.site-heading h2::after,
.site-heading h3::after  {
    background: #001952 none repeat scroll 0 0;
    bottom: -5px;
    content: "";
    height:3px;
    left:0;
    position: absolute;
    width:150px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}
.site-heading h1::before,
.site-heading h2::before,
.site-heading h3::before {
    background: #0f74bc none repeat scroll 0 0;
    bottom: 0px;
    content: "";
    height: 3px;
    left:0;
    position: absolute;
    width:225px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}





.rs-about-construction .about-images img {
	border-radius: 3px;
}
.rs-about-construction .about-service-item {
	padding: 17px 0;
}
.rs-about-construction .about-service-item .service-icon {
	margin-right: 20px;
}
.rs-about-construction .about-service-item .service-icon i,
.rs-about-construction .about-service-item .service-icon i:before {
	font-size: 40px;
	color: #0f74bc;
}
.rs-about-construction .about-service-item .title {
	font-size: 18px;
	font-weight: 600;
	color: #4a4a4a;
}
.rs-about-construction .about-service-item.text-center {
	border-radius: 3px;
	padding: 42px 20px 0;
	background: #ffffff;
	position: relative;
	z-index: 1;
}
.rs-about-construction .about-service-item.text-center .title {
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 8px;
}
.rs-about-construction .about-service-item.text-center .number {
	margin-bottom: 28px;
}
.rs-about-construction .auther-info span {
	padding-top: 18px;
	display: block;
	font-weight: 500;
	color: #0a0a0a;
}
.rs-about-construction .services-list .sub-title {
	color: #0a0a0a;
	margin: 0 0 10px;
	display: block;
	line-height: 30px;
}
.rs-about-construction .services-list ul.check-list li {
	position: relative;
	padding-left: 22px;
	padding-top: 4px;
	padding-bottom: 4px;
	font-size: 16px;
}
.rs-about-construction .services-list ul.check-list li:before {
	position: absolute;
	top: 4px;
	left: 0;
	content: "\f11b";
	font-family: Flaticon;
	color: #0f74bc;
	font-weight: 700;
	font-size: 14px;
}
.rs-about-construction .services-list .button-area {
	margin-top: 35px;
}
.rs-about-construction .services-list .button-area li {
	display: inline-block;
}
.rs-about-construction .services-list .button-area li + li {
	margin-left: 25px;
}
.rs-about-construction ul.check-list {
	margin-left: 20px;
}
.rs-about-section {
	position: relative;
	padding: 35px 0;
}
.rs-about-section .rs-title {
	margin-bottom: 40px;
}
.rs-about-section .rs-about-left-images {
	position: absolute;
	left: 0;
	top: 0;
	width: 48%;
	height: 100%;
	/*background-position: center;
	background-size: cover;
	background-image: url(images/about/left-image-full.jpg);*/
	border-radius: 0 5px 5px 0;
}
.rs-about-section .experience-area .experience-number {
	text-align: center;
	font-size: 150px;
	line-height: 180px;
	margin-right: 20px;
	padding: 80px 27px;
	font-weight: 700;
	/*background: url(images/bg/exp_number.png);
	border-radius: 5px;
	background-repeat: no-repeat;*/
	min-width: 190px;
}
.rs-about-section .experience-area .experience-text h3 {
	margin: 0;
}
.rs-about-section2 .about-images .bottom-image {
	position: absolute;
	right: 30px;
	bottom: -35px;
}
.rs-about-section2 .about-service {
	margin-top: 45px;
}
.rs-about-section2 .service-item {
	border: 1px solid #ebebeb;
	background: #ffffff;
}
.rs-about-section2 .service-item h4 {
	margin: 0 0 16px;
}
.rs-about-section2 .service-item .number {
	font-size: 100px;
	color: #0a0a0a;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	display: block;
	line-height: 100px;
	-webkit-text-stroke: 2px #0f74bc;
	background-color: rgba(255, 255, 255, 0);
	color: rgba(255, 255, 255, 0);
	transition: 0.3s;
	margin-top: -52px;
	color: #ffffff;
}
.rs-about-section2 .service-item:hover,
.rs-about-section2 .service-item.active {
	background-repeat: repeat;
}
.rs-about-section2 .service-item:hover .number,
.rs-about-section2 .service-item.active .number {
	color: #0f74bc;
}
.rs-about-section3 .about-images {
	padding-right: 20px;
}
.rs-about-section3 .about-images .ab-image2 {
	position: absolute;
	right: 0;
	top: 0;
}
.rs-about-section3 .experience-area {
	margin-bottom: 40px;
}
.rs-about-section3 .experience-area .experience-number {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 150px;
	font-weight: 700;
	margin-right: 20px;
}
.rs-about-section3 .experience-area .experience-text h3 {
	margin: 0;
}
.rs-about-section3 .service-des p {
	margin: 0 0 40px;
}



.rs-process-section .no-gutters {
	
}
.rs-process-section .process-inner {
	display: table;
	width: 100%;
	position: relative;
	z-index: 1;
	background: #fff;
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-box-shadow: 0px 10px 25px 5px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 10px 25px 5px rgba(0,0,0,0.15);
	box-shadow: 0px 10px 25px 5px rgba(0,0,0,0.15);
	
}
.rs-process-section .process-inner .process-item {
	padding: 50px 25px 0px;
	border-top: none;
	display: table-cell;
	vertical-align: middle;
	-webkit-transition: all .3s;
	transition: all .3s;
		-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.rs-process-section .process-inner .title {
	font-size: 20px;
	line-height: 22px;
	margin-bottom: 8px;
	text-transform:uppercase;
	font-weight:bold;
	color:#0f74bc;
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}

.rs-process-section .process-inner .number {
	position: relative;
	width:100%;

}

.rs-process-section .process-inner .number img{
	position: relative;
	width:125px;
	margin:5px auto 30px;
	
}
.rs-process-section .process-inner .number .hover-icon {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	opacity:0;
	visibility: hidden;
	-webkit-transition: 0.5s;
	-khtml-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.rs-process-section .process-inner:focus .number .hover-icon,
.rs-process-section .process-inner:hover .number .hover-icon {
	opacity: 1;
	visibility: visible;
}

.rs-process-section .process-inner:focus .number .icon,
.rs-process-section .process-inner:hover .number .icon {
	opacity:0;
	visibility: hidden;
}



.rs-process-section .process-inner .des {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s;
	transition: all .3s;
	line-height: 22px;
	position:relative;
	bottom:150px;
}
.rs-process-section .process-inner:focus,
.rs-process-section .process-inner:hover {
	margin-top: -50px;
	margin-bottom: -50px;
		-moz-transform: scale(1.02);
	-ms-transform: scale(1.02);
	-webkit-transform: scale(1.02);
	transform: scale(1.02);
	z-index: 10;
	
	-webkit-box-shadow: 0px 10px 25px 5px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 10px 25px 5px rgba(0,0,0,0.25);
box-shadow: 0px 10px 25px 5px rgba(0,0,0,0.25);
}

/*

.wrap:hover img:not(:hover) {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
        opacity: .75;
}

.rs-process-section.process-inner:hover .rs-process-section .process-inner .number img:not(:hover) {
        opacity: .25 !important;
}
*/

.rs-process-section .process-inner:hover .title {
	margin-bottom: 15px;
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	color:#0f74bc !important;
}



.rs-process-section .process-inner:focus .process-item,
.rs-process-section .process-inner:hover .process-item {
	background: var(--blueTwo);
	padding-bottom: 40px;
	border-color: var(--blueTwo);
    z-index:5;

}
.rs-process-section .process-inner.active .process-item .des,
.rs-process-section .process-inner:hover .process-item .des {
	opacity: 1;
	visibility: visible;
    bottom:0px;
}
.rs-process-section .process-inner.active .process-item .title,
.rs-process-section .process-inner:hover .process-item .title,
.rs-process-section .process-inner.active .process-item .des,
.rs-process-section .process-inner:hover .process-item .des,
.rs-process-section .process-inner.active .process-item .number,
.rs-process-section .process-inner:hover .process-item .number {
	color: #ffffff;
}
.rs-section-image .single-image {
	margin-top: -50px;
}




@media only screen and (max-width: 991px){
	.rs-process-section .process-inner .number img{
		width:100px;
		margin:0px auto 25px;
		
	}
	
	.rs-process-section .process-inner .process-item {
		padding: 30px 20px;
	}
	.rs-process-section .process-inner.active,
	.rs-process-section .process-inner:hover {
		margin-top: -50px;
		margin-bottom: -50px;
		z-index:10
	}
	
	/*.process-inner:hover>.process-inner:not(:hover) {
		opacity: 0.3 !important;
	}*/
	
	/*
		.content_post ul>li:hover {
		opacity: 1
		}
		
		.content_post ul:hover>li:not(:hover) {
		opacity: .8
	}*/
	
	.rs-process-section .process-inner.active .process-item,
	.rs-process-section .process-inner:hover .process-item {
		padding-bottom: 50px;
	}
	
	
}









/*DEPOIMENTOS*/


.testimonials {
    position: relative
}

.testimonial-wrap {
    border: 0 solid #ebebeb;
    border-radius: 4px;
    padding: 30px 50px;
    margin-bottom: 5px
}

.testimonial-wrap  .lead {
    font-size: 1.1rem;
    font-weight: normal;
}

.testimonial-wrap span.icon {
    font-size: 35px;
}

.author-info h5 {
    color: #333
}

.author-img {
    width: 5.425rem;
    height: 5.425rem;
    padding: 10px;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.25);
}

.author-img img {
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
} 


.testimonial-wrap .comment {
    padding: 30px 50px 10px;
	font-style: italic;
}

.comment:before {
    content: ' ';
    /*background-image: url("../../../../images/social/icons/format-quote-open.svg");*/
	font-family: "Material Design Icons";
	content: "\F0189";
    position: absolute;
    background-size:90px;
    top: -20px;
    left: 15px;
    width:90px !important;
    height:90px !important;
	font-size:90px;
	color:#0f74bc;
}

.testimonial-wrap .author-info {
    padding: 10px 50px
}


@media (max-width:767px) {
    .testimonial-wrap {
        padding: 20px 40px
	}
    .testimonial-wrap .comment {
        padding: 30px 10px 10px
	}
    .testimonial-wrap .author-info {
        padding: 10px 10px
	}
}













.bg-cover2,
.bg-cover {
    position: relative;
    z-index: 1;
    background-position:center center;
    background-repeat:no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.bg-cover2:after,
.bg-cover:after {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    background: rgba(0, 0, 255,0.5);
}
.bg-cover2:before,
.bg-cover:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    background: rgba(0, 34, 115, 0.7);
}





.bg-cover:after {
    background: rgba(15, 112, 183,0.5);
}

.bg-cover:before {
    background: rgba(15, 112, 183, 0.7);
}







.counter-top-area .rs-counter-list {
  position: relative;
  justify-content: center;
}
.counter-top-area .rs-counter-list:before {
  position: absolute;
  content: "";
  width: 1px;
  height:110px;
  background:rgba(255,255,255,0.2);
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
  opacity: 0.6;
}
.counter-top-area .rs-counter-list.border-none:before {
  display: none;
}
.counter-top-area .rs-counter-list .icon-left {
  padding-right: 20px;
}
.counter-top-area .rs-counter-list .icon-left i {
  color: #0f74bc;
  display: block;
  padding-top: 8px;
}
.counter-top-area .rs-counter-list .icon-left i,
.counter-top-area .rs-counter-list .icon-left i:before {
  font-size: 60px;
}
.counter-top-area .rs-counter-list .rs-counter {
  font-size: 42px;
  font-weight: 600;
  padding: 0;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}
.counter-top-area .rs-counter-list .rs-counter:before {
  content: "+";
  right: -25px;
  position: absolute;
  color: #fff;
  top: 0;
  font-weight: 600;
}
.counter-top-area .rs-counter-list h5 {
  display: block;
  color: #fff;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif !important;
}
.rs-counter .counter-top-area .rs-count .rs-counter-list {
  text-align: center;
}
.rs-counter .counter-top-area .rs-count .rs-counter-list i {
  font-size: 40px;
  color: #0f74bc;
}
.rs-counter .counter-top-area .rs-count .rs-counter-list h3 {
  color: #ffffff;
  font-weight: 900;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.rs-counter .counter-top-area .rs-count .rs-counter-list h4 {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
}



.rs-counter.default-style .rs-count .rs-counter-list {
  text-align: left;
}
.rs-counter.default-style .rs-count .rs-counter-list h3 {
  color: #0f74bc;
  display: inline-block;
}
.rs-counter.default-style .rs-count .rs-counter-list span {
  color: #0f74bc;
  font-size: 30px;
  line-height: 30px;
  font-weight: 900;
}
.rs-counter.default-style .rs-count .rs-counter-list h4 {
  color: #030749;
}
.rs-counter.default-style .rs-count h4 {
  color: #030749;
}




@media only screen and (max-width: 991px){

 
.counter-top-area .rs-counter-list:before {
  display: none;
}



	
}












/* BLOG */
.latest-post {
	background: #fff;
	padding-bottom: 20px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	-webkit-border-radius: 5px;
	-moz-border-radius:5px;
	border-radius:5px;
	border-bottom:0px solid #ccc;
		-webkit-box-shadow: 0px 15px 50px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 15px 50px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 15px 50px 0px rgba(0,0,0,0.2);
}
.latest-post:hover {
	-webkit-box-shadow: 0px 15px 50px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 15px 50px 0px rgba(0,0,0,0.4);
	box-shadow: 0px 15px 50px 0px rgba(0,0,0,0.4);
}

.latest-post img {
	position: relative;
	-webkit-transition:all 1s ease;
	-moz-transition:all 1s ease;
	-o-transition:all 1s ease;
	transition:all 1s ease;
	
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright:5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	
}

.latest-post:hover img {
	transform: scale(1.2) rotate(0deg);
	
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright:5px;
	border-top-left-radius: 5px;
	border-top-right-radius:5px;
	
}

.latest-post-media{
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright:5px;
	border-top-left-radius: 5px;
	border-top-right-radius:5px;
	overflow:hidden;
	
}


.post-body {
	position: relative;
	z-index: 2;
	/*padding-left: 20px;*/
}

.post-item-date {
	position: absolute;
	height: 100%;
	left:0px !important;

}
/*.post-item-date:before {
	position: absolute;
	top: 0;
	left: 50%;
	content: "";
	background: #ccc;
	width: 1px;
	height: 100%;
}*/
/*.post-item-date:after {
	position: absolute;
	bottom: 0;
	width: 20px;
	height: 20px;
	content: "";
	background: #0f74bc;
	left: 50%;
	margin-left: -10px;
	-webkit-border-radius: 4px !important;
	-moz-border-radius: 4px !important;
	border-radius:4px !important;
	border:0px solid #111111;
}*/

.post-date {
	width: 50px;
	height: 50px;
	background:rgba(15, 116, 188,0.75);
	text-align: center;
	color: #fff;
	position: relative;
	top:-50px;
	right:0px;
	z-index: 3;
	font-weight: bold;
	font-size: 20px;
	padding-top:0px;
-webkit-border-radius: 5px;
-webkit-border-bottom-left-radius: 0;
-moz-border-radius: 5px;
-moz-border-radius-bottomleft: 0;
border-radius: 5px;
border-bottom-left-radius: 0;
	/*-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
		-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);*/
}
.post-date .date {
	display: block;
	font-weight:bold;
	margin-top:-10px;
	font-size:24px !important;
	margin-bottom:2px;
	text-align:center;
	margin:0px;
	padding:0px;
	 font-family:'Montserrat', sans-serif !important;
	 border-bottom:0px solid #fff;
}
.post-date .month {
	display: block;
	font-weight:bold;
	font-size: 16px;
	margin-top: -12px;
	 font-family: 'Roboto Condensed', sans-serif !important;
}

.post-info {
	margin-left: 20px;
	padding-right:20px;
}
.post-info .post-title {
	padding-bottom: 7px;
	font-size: 24px !important;
	font-weight:bold;
	letter-spacing:-1px;
	line-height:20px !important;
	 font-family: 'Montserrat', sans-serif !important;
}
.post-info .post-title h3{
	margin-bottom:0px;
	font-size: 24px !important;
	font-weight:bold;
	letter-spacing:-1px;
	line-height:20px !important;
	 font-family: 'Montserrat', sans-serif !important;
}
.post-info .post-title a {
	color: #0f74bc;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
    margin-bottom:0px;
	font-size:20px !important;
	font-weight:bold !important;
	line-height:20px !important;
	 font-family: 'Montserrat', sans-serif !important;
}
.post-info .entry-content p {
	font-size:16px;
	line-height:20px;
	padding-right: 10px;
	color:#333333
}
.post-meta {
	padding-top: 15px;
	padding-bottom: 10px;
	margin-bottom:15px;
	color:#333333;
	font-size:12px;
	border-bottom:1px solid #ccc;
}


.read-entry-content {
	padding-top:10px;
	border-top:1px solid #ccc;
}

.post-meta a {
	color: #001952;
}

.post-meta a:hover {
	color:#0f74bc;
}



.latest-post:hover .latest-post .post-title a,
.latest-post:hover .post-info .post-title a,
.latest-post:hover .post-info .post-meta a {
	color: #001952;
}



.link-blog {
	transition: all .4s ease-in-out;
	color: #0f74bc;
	font-size:16px;
}

.link-blog:hover {
	color: #001952;
	padding-left: 15px !important 
}














.btn-theme{
    background: #333;
    padding:15px 25px;
    line-height:40px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-transform:uppercase;
    font-weight:bold;
    font-size:1rem;
    color:#fff
}
.btn-theme:focus,
.btn-theme:hover{
    background:#606060;
    color:#fff
}





.form-control {
    display: block;
    padding:10px 15px !important;
    font-size:16px;
    /*line-height:50px;*/
    color: #333;
    height:50px;
    background-color: #fff;
    outline:none !important; 
    background-clip: padding-box;
    border:1px solid #fff;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus,
.form-control:hover {
    color: #333333;
    background-color: #fff;
    border-color: #999;
    outline: 0;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.25);
}
textarea {
    resize: none;
}


/*Contacts*/
.sidebar .contacts ul {
	width:100%;
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}


.sidebar .contacts li {
	color: #606060;
	padding:7px 0px 7px;
	border-bottom:1px solid #e1e1e1;
	font-size:15px;
	margin-bottom:1px;
	width:auto;
	display:block;
	text-align:left;
	-moz-transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	font-weight:bold;
}
.sidebar .contacts li:last-child {
	border-bottom: none !important;
}


.sidebar .contacts li:before,
.sidebar .contacts li:after {
	content: " ";
	display: table;
}
.sidebar .contacts li:after {
	clear: both;
}
.sidebar .contacts li i {
	float: left;
	font-size:20px;
	text-align: left;
	margin: 0px 3px 0 0;
	display: inline-block;
	width:30px;
	line-height:24px;
	color:#606060;
}
.sidebar .contacts li p {
	margin-bottom: 0;
	color: #606060;
	font-size:14px;
}
.content-footer.contacts li {
	color: #606060;
	font-size:16px;
}
.sidebar .contacts li a {
	color: #606060;
	font-size:16px;
	line-height:16px
}
.sidebar .contacts li a:hover {
	color:#0f74bc;
	padding-left:10px;
	border-color:rgba(50, 50, 50, .5);
}


.info-contact h3 {
	line-height: 1.1rem;
	font-size: 1rem;
	font-weight: bold;
	color:#606060;
	display:block;
	margin-bottom:15px;
}



/*COURSE*/



.gradient-0001{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2cd427+0,01236f+100&0.5+0,0.5+100 */
	background: -moz-linear-gradient(top,  rgba(44,212,39,0.5) 0%, rgba(1,35,111,0.5) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(44,212,39,0.5) 0%,rgba(1,35,111,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(44,212,39,0.5) 0%,rgba(1,35,111,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#802cd427', endColorstr='#8001236f',GradientType=0 ); /* IE6-9 */

}


.teste0001{
	background-image: linear-gradient(30deg, rgba(44,212,39, 0.75) 0%, rgba(1,35,111, 0.75) 100%);
	background-repeat: repeat-x;
}

.teste0002{
	background-image: linear-gradient(30deg, rgba(25,16,27, 0.75) 0%, rgba(91,10,113, 0.75) 100%);
	background-repeat: repeat-x;
}

.teste0003{
	background-image: linear-gradient(30deg, rgba(108,1,158, 0.75) 0%, rgba(255,25,193, 0.75) 50%, rgba(247,133,2, 0.75) 100%);
	background-repeat: repeat-x;
}

.teste0004{
	background-image: linear-gradient(30deg, rgba(255,255,0, 0.75) 0%, rgba(24,175,1, 0.75) 100%);
	background-repeat: repeat-x;
}
.teste0005{
	background-image: linear-gradient(30deg, rgba(189,98,8, 0.75) 0%, rgba(90,33,3, 0.75) 100%);
	background-repeat: repeat-x;
}
.teste0006{
	background-image: linear-gradient(30deg, rgba(96,2,1, 0.75) 0%, rgba(123,2,20, 0.75) 100%);
	background-repeat: repeat-x;
}

.teste0007{
	background-image: linear-gradient(30deg, rgba(255,0,144, 0.75) 0%, rgba(0,0,0, 0.75) 100%);
	background-repeat: repeat-x;
}
.teste0008{
	background-image: linear-gradient(30deg, rgba(167,130,182, 0.75) 0%, rgba(94,72,102, 0.75) 100%);
	background-repeat: repeat-x;
}
.teste0009{
	background-image: linear-gradient(30deg, rgba(255,144,0, 0.75) 0%, rgba(204,92,0, 0.75) 50%, rgba(0,120,204, 0.75) 100%);
	background-repeat: repeat-x;
}




.title-full-page {
	padding: 170px 0px 270px 0px;
	position: relative;
	text-align: left;
	right:0px;
	bottom:0px;
	top:0px;
	left:0px;
	height: 100%;
	width: 100%;

	z-index:0;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment:scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.title-full-page h1 {
	text-align:center;
	color:#fff;
	position:relative;
	font-size:40px;
	z-index:5;
	width:80%;
	margin:auto;
	font-weight:bold;
}


.title-full-page:after {
	top: 0;
	left: 0;
	z-index:0;
	width: 100%;
	height: 100%;
	content: " ";
	position: absolute;
	/*background-image: linear-gradient(30deg, rgba(44,212,39, 0.75) 0%, rgba(1,35,111, 0.75) 100%);*/
	background-repeat: repeat-x;
}


.bg-course:after{
	background-image: linear-gradient(45deg, rgba(0,42,124, 0.5) 19%, rgba(0,81,242, 0.5) 100%);
	background-repeat: repeat-x;
}


.title-full-page:before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: " ";
	position: absolute;
	background: rgba(0,0,0,0.6);
}


.main-content{
	position: relative;
	width: 100%;
	background:rgba(255,255,255,0.5);
}

.content-wrap {
	position: relative;
	background-color: rgba(255, 255, 255, 0.85);
	padding:30px 15px;
	top:-150px;
	bottom:10px;
	margin-bottom:10px;
	height:100% !important;
	margin-right:10%;
	margin-left:10%;
	border-top: 5px solid #0f74bc;
	z-index:10;
	clear: both;
}





.content-site {
	top: 0;
	left: 0;
	width: 100%;
	position: relative;
	z-index: 10;
	background: #f1f1f1;
	padding-bottom:0px;
}




.course-details{
	background: #fff;
	padding:20px;
	border-radius: 4px;
	box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.13), inset 0px -2px 0px 0px rgba(0, 0, 0, 0.12);
}
.course-details {
	margin-bottom: 30px;
}



.course-details .entry-icon {
	background: #001952;
	display: inline-block;
	width:42px;
	height:42px;
	line-height:42px;
	text-align: center;
	color: #fff;
	font-size: 24px;
	margin-right: 6px;
	margin-bottom: 24px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.course-details h4 {
	font-size: 18px;
	font-weight: bold;
}
.course-details .ib {
	display: inline-block;
}


.course-details div {
	background: #efefef;
	height:auto;
	padding:15px !important;
	color: #909090;
	border-radius: 4px;
	margin-bottom: 20px;
	box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.03);
}



.course-details div .icon {
	font-size:16px;
	margin-right: 12px;
}

.course-details div .icon,
.course-details div a .icon {
	font-size:24px;
	margin-right: 12px;
	color:#909090
}
.course-details div a .text {
	font-size:16px;
	color:#909090;
	font-weight:bold;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	font-family: 'Montserrat', sans-serif !important;
}
.course-details div a:hover .text {
	font-size:16px;
	color:#3aba85;


}


.course-details div .text {
	font-size:16px;
	font-weight:bold;
	font-family:'Roboto', sans-serif !important;
}

.requisits {
	background: #efefef;
	border-radius: 3px;
	overflow: hidden;
	padding:15px;
	box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.03);
	margin-bottom: 30px;
}

.price-course {
	background: #37bc87;
	border-radius: 3px;
	overflow: hidden;
	padding:15px 30px;
	box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.03);
	margin-bottom: 30px;
}
.price-course p{
	color:#fff;
}

.price-course .btn-md {
	border:3px solid #ffffff;
}

.card-shadow {
	-webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
	box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;

}
.card-shadow:hover  {
	-webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.5);
	box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.5);
}
.card {
	border: 0px;
	margin-bottom: 30px;
}




.team1 .pro-pic {
	min-height: 200px;
}

.team1 .pro-pic .card-img-overlay {
	background: rgba(55, 188, 134, 0.75);
	transition: all 0.3s;
	opacity: 0.1;
}

.team1 .pro-pic .card-img-overlay ul {
	position: relative;
	top: 50%;
	text-align: center;
}

.team1 .pro-pic .card-img-overlay ul li a {
	color: #ffffff;
	padding: 0 10px;
	font-size:24px;
	-webkit-transition: 0.5s ease-in;
	-o-transition: 0.5s ease-in;
	transition: 0.5s ease-in;
	display: block;
}

.team1 .pro-pic .card-img-overlay ul li a:hover {
	-webkit-transform: translate3d(0px, -5px, 0px);
	transform: translate3d(0px, -5px, 0px);
}

.team1 .pro-pic:hover .card-img-overlay {
	transition: all 0.3s;
	opacity: 0.9;
}



.btn-cont {
	color: #ffffff;
	padding: 10px 25px;
	cursor: pointer;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.14);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.14);
	-webkit-transition: 0s;
	-o-transition: 0s;
	transition: 0s;
}
.btn-cont:hover {
	color: #ffffff;
}
.btn-cont:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn-cont-md {
	padding: 15px 45px;
	font-size: 16px;
}

.btn-arrow {
	position: relative; }
.btn-arrow span {
	display: inline-block;
	position: relative;
	-webkit-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	will-change: transform; }
.btn-arrow:hover span, .btn-arrow:focus span {
	-webkit-transform: translate3d(-1rem, 0, 0);
	transform: translate3d(-1rem, 0, 0); }
.btn-arrow i {
	position: absolute;
	width: 1.1em;
	right: 0px;
	right: 0rem;
	opacity: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	will-change: right, opacity; }
.btn-arrow:hover i, .btn-arrow:focus i {
	opacity: 1;
	right: -2rem; }





.slide-button {
	display: block;
	text-align: center;
	text-decoration: none;
	font-weight:600;
	font-size: 1em;
	text-transform: uppercase;
	color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin:25px 0px;
	padding:12px 25px;
	background-size: 200% auto;
	color: #fff;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.0);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.0);
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.0);
	background-image: linear-gradient(to right, #07d79c 0%, #3aba85 50%, #07d79c 100%);
	transition: 0.5s;
}
.slide-button:focus,
.slide-button:hover {
	background-position: right center;
	color: #fff;
	-webkit-box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.25);
}


.slide-button-two {
	display: inline;
	background-image: linear-gradient(to right, #0f74bc 0%, #001952 50%, #0f74bc 100%);
}

.slide-button-two:focus,
.slide-button-two:hover {
	background-position: right center;

}



.title {
	font-size:1.4rem;
	font-weight:600;
	margin: 20px 0 15px;
}




/*******************
Vertical tabs
******************/
.vtabs {
	display: table; }
.vtabs .tabs-vertical {
	width:200px;
	border-bottom: 0px;
	border-right: 1px solid rgba(120, 130, 140, 0.13);
	display: table-cell;
	vertical-align: top; }
.vtabs .tabs-vertical li .nav-link {
	color: #333333;
	margin-bottom: 10px;
	border: 0px;
	border-radius: 4px 0 0 4px; }
.vtabs .tab-content {
	display: table-cell;
	padding: 20px;
	vertical-align: top; }

.tabs-vertical li .nav-link.active,
.tabs-vertical li .nav-link:hover,
.tabs-vertical li .nav-link.active:focus {
	background: #0f74bc;
	border: 0px;
	color: #ffffff; }

/*Custom vertical tab*/
.customvtab .tabs-vertical li .nav-link.active,
.customvtab .tabs-vertical li .nav-link:hover,
.customvtab .tabs-vertical li .nav-link:focus {
	background: #ffffff;
	border: 0px;
	border-right: 2px solid #0f74bc;
	margin-right: -1px;
	color: #0f74bc; }

.tabcontent-border {
	border: 1px solid #ddd;
	border-top: 0px; }

.customtab2 li a.nav-link {
	border: 0px;
	margin-right: 3px;
	color: #8d97ad; }
.customtab2 li a.nav-link.active {
	background: #0f74bc;
	color: #ffffff; }
.customtab2 li a.nav-link:hover {
	color: #ffffff;
	background: #0f74bc; }








.nav-pills .nav-link {
	border-radius:0px;;
}


.nav-fill .nav-item {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	text-align: center;
}

.nav-justified .nav-item {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
}

.nav-pills .nav-link {
	color: #001952;
	background:#e9e9e9
}


.nav-pills .nav-link:focus,
.nav-pills .nav-link:hover,
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	color: #fff;
	background-color: #0f74bc;
}



.nav-pills .nav-link i {
	display: block;
	font-size:56px;
	text-align:center;
	padding:0px;
	margin:0px;
}
.nav-pills .nav-link span {
	position:relative;
	top:-15px;
	text-transform:uppercase;
	font-weight:bold;
	font-size:1.2rem;
	font-family:'Lato', sans-serif !important;
}





.tab-content-style{
	padding:30px;
	background:#e9e9e9;
}
.tab-content-style .title{
	color:#005cb9;
}

@media only screen and (max-width: 767px) {

	.nav-pills .nav-link i {
		font-size: 28px;
	}
	.nav-pills .nav-link span {
		display: none;
	}
}






.error-page {
	text-align: center;
}

.error-page p {
	color: #606060;
	font-size: 16px;
}

.error-page span {
	color: #606060;
	display: block;
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 25px;
}

.error-page span.error-page-title {
	color: #606060;
	font-size:200px;
	padding: 0px;
	line-height:160px;
	padding-bottom:0px;
	font-family: 'Montserrat', sans-serif
}
@media (max-width: 500px) {
	.error-page p {
		font-size: 12px;
	}

	.error-page span {
		font-size: 25px;
	}

	.error-page span.error-page-title {
		font-size: 140px;
	}
}





/*GALLERY*/

.img-hover img {
	border: 0px solid #353e40 !important;
	-moz-transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	filter: grayscale(20%);
	-webkit-filter: grayscale(20%);
}

.img-hover img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff !important;
	opacity: 0;
	-moz-transition: all .6s ease;
	-webkit-transition: all .6s ease;
	-o-transition: all .6s ease;
	transition: all .6s ease;
}

.img-hover:hover img {
	filter: grayscale(0);
	-webkit-filter: grayscale(0);
	-webkit-transform: scale(1.5) rotate(0deg);
	-moz-transform: scale(1.5) rotate(0deg);
	-o-transform: scale(1.5) rotate(0deg);
	-ms-transform: scale(1.5) rotate(0deg);
	transform: scale(1.5) rotate(0deg);
}

.img-hover span {
	display: block;
	overflow: hidden;
	position: relative;
}

.img-hover span:after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: " ";
	position: absolute;
	border: 0px solid transparent;
	background: rgba(0, 25, 82, 0.6);
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.img-hover span i {
	left: calc(50% - 28px);
	top: calc(80% - 29px);
	font-size: 56px;
	position: absolute;
	z-index: 2 !important;
	color: #fff;
	opacity: 0;
	height: 58px;
	width: 56px;
	line-height: 56px;
	padding: 0px;
	margin: 0px;
	-webkit-transition: all 1.0s ease 0.3s;
	-moz-transition: all 1.0s ease 0.3s;
	-o-transition: all 1.0s ease 0.3s;
	-ms-transition: all 1.0s ease 0.3s;
	transition: all 1.0s ease 0.3s;
}

.img-hover:hover span i {
	top: calc(50% - 29px);
	opacity: 1;
}

.img-hover:hover span:after {
	opacity: 1.0;
	filter: alpha(opacity=100);
}

.img-hover img,
.img-hover img,
.img-hover span:after {
	transition: all 1.0s ease-in-out;
}






/*NEWS*/
.service-item-2 {
	margin: 0 0 30px;
	background:#fff;
	border-radius: 3px;
	-webkit-box-shadow: 0px 5px 25px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 25px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 25px 0px rgba(0,0,0,0.3);
}
.service-item-2 .thumbnail {
	border-radius: 5px;
}
.service-item-2 .thumbnail img {
	border-radius: 5px;
	-webkit-transition:all 1s ease;
	-moz-transition:all 1s ease;
	-o-transition:all 1s ease;
	transition:all 1s ease;
}

.service-item-2:hover img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.thumbnail {
	display: block;
	overflow: hidden;
}

.thumbnail a,
.thumbnail img {
	display: block;
	width: 100%;
}
.thumbnail.animate-zoom img {
	-webkit-transition: 0.5s ease;
	transition: 0.5s ease;
}
.thumbnail.animate-zoom:hover img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
@media (min-width: 768px) {
	.service-item-2 .thumbnail-col {
		margin-right: 43px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 275px;
		flex: 0 0 275px;
		max-width: 275px;

	}
	.service-item-2 .content-col {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 calc(100% - 320px);
		flex: 1 1 calc(100% - 320px);
		max-width: calc(100% - 320px);
	}
	.service-item-2 .icon {
		display: block;
		width:50px;
		height:50px;
		line-height:50px;
		text-align: center;
		border-radius: 50%;
		color: white;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		right: -25px;
		z-index:90 !important;
		font-size:28px;
		background:#0f74bc;
	}
	.service-item-2 .icon:hover {
		background:#0f74bc;
	}
	.service-item-2.thumb-right-style .thumbnail-col {
		margin-left: 43px;
		margin-right: 0;
	}
	.service-item-2.thumb-right-style .icon {
		left: -20px;
		right: auto;
	}
}
.service-item-2 .item-title {
	font-size: 20px !important;
	font-weight: bold;
	color: #606060;
	margin: 0 0 3px;
	padding-right:15px;
	padding-bottom:10px;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.service-item-2 .item-text {
	padding-right:15px;
	padding-bottom:10px;
	font-size:1rem;
	line-height:1.1rem;
}
.service-item-2 .item-date {
	padding-bottom:5px;
	font-size: 12px;
}
.service-item-2 .item-date i {
	font-size: 16px !important;
}



.service-item-2 .item-title {
	font-size:20px !important;
	font-weight: bold;
	color: #606060;
	margin:0px;
	line-height:22px;
	padding-right:15px;
	padding-bottom:10px;
}
.service-item-2 .item-date2 {
	padding-top:5px;
	font-size: 16px;
	font-weight: bold;
	line-height:12px;
	margin-bottom:15px;
}
.service-item-2 .item-date2 i {
	font-size: 24px !important;
}



.service-item-2 .item-title:hover {
	color: #0f74bc;
}

@media (max-width: 767px) {
	.service-item-2 .item-title {
		margin: 0 0 3px;
		padding-right:15px;
		padding-left:15px;
		padding-bottom:15px;
		border-bottom:3px solid #ccc;
	}
	.service-item-2 .item-text {
		padding:15px;
	}
	.service-item-2 .icon {
		display: block;
		width:50px;
		height:50px;
		line-height:50px;
		text-align: center;
		border-radius: 50%;
		color: white;
		position: absolute;
		bottom: -25px;
		right:15px;
		font-size:28px;
		background:#0f74bc;
	}
	.service-item-2 .icon:hover {
		background:#0f74bc;
	}
	.service-item-2 .thumbnail {
		height:200px;
	}

	.service-item-2 .item-date {
		padding:10px 15px;
		border-top:1px solid #ccc;
		font-size: 12px;
		line-height:12px;
	}
	.service-item-2 .item-date i {
		font-size:16px !important;
	}

	.service-item-2 .item-date2 {
		padding-left:15px;
		padding-top: 15px;
	}


}



.btnside {
	border: 0;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	font-weight: 400;
	padding:5px 15px !important;
	position: relative;
	background: #0f74bc;
	white-space: nowrap;
	display: inline-block;
	text-decoration: none;
	height: 100%;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;

}
.btnside i{
	font-size: 24px;
}
.btnside:hover,
.btnside:focus {
	color: #fff;
	background: #0f8685;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.btnside:hover,
.btnside:focus {
	outline: none;
}
.h47 {
	height:47px;
}




.sidebar .popular-posts .post{
	position:relative;
	font-size:14px;
	color:#606060;
	padding:0px 0px 10px 0px;
	padding-left:90px;
	min-height:85px;
	margin-bottom:15px;
	border-bottom:2px solid #ccc;
}

.sidebar .popular-posts .post:last-child{
	margin-bottom:0px;
	border-bottom:0px;
	min-height:auto;
}

.sidebar .popular-posts .post .post-thumb{
	position:absolute;
	left:0px;
	top:0px;
	width:75px;
	-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease;
	border:3px solid #0f74bc
}

.sidebar .popular-posts .post:hover .post-thumb img{
	opacity:0.50;
	-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease;
	border-color: #162e66 !important
}

.sidebar .popular-posts .post .post-thumb img{
	display:block;
	width:100%;
	-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease;
}



.sidebar .popular-posts .post h4{
	position:relative;
	font-size:1rem !important;
	margin:0px 0px 5px 0px;
	font-weight:600;
	color:#606060;
	top:5px;
	font-family: 'Montserrat', sans-serif !important;
}

.sidebar .popular-posts .post a:hover{
	color:#0f74bc;
}
.sidebar .popular-posts .post h4 {
	line-height:1.1rem !important;
}
.sidebar .popular-posts .post h4 a{
	color:#606060;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	font-size:1rem !important;
	line-height: 1.1rem !important;
}

.sidebar .popular-posts .post-info{
	font-size:12px;
	color:#606060;
}

.sidebar .sidebar-title{
	border-bottom: 3px solid #606060;
	margin-bottom: 10px;
}

.sidebar .sidebar-title h3{
	font-size: 20px;
	text-transform: uppercase;
	line-height:24px;
}


.border-bottom1 {
	border-bottom: 1px solid #eee;
}







.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 0px;
}
.pagination > li {
	display: inline;
}
.pagination > li > a,
.pagination > li > span {
	position: relative;
	float: left;
	padding: 0px 20px;
	margin:1px;
	line-height:50px;
	color: #fff;
	height:50px;
	text-decoration: none;
	background-color: #606060;
	border: 0px solid #fff;
	-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease;
	outline:none !important;
	font-size:16px ;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.pagination > li > span{
	font-size:24px !important;
	padding-top:12px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
	z-index: 2;
	color: #fff;
	background-color: #0f74bc;
	border-color: #fff;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
	z-index: 3;
	color: #fff;
	cursor: default;
	background-color: #0f74bc;
	border-color: #fff;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
	color: #fff;
	cursor: not-allowed;
	background-color: #646363;
	border-color: #ddd;
}
.pager li > a,
.pager li > span {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding-top:10px;
	padding-bottom:10px;
	font-size:14px;
}
.pager li > a,
.pager li > span {
	color: #fff;
	border-color: transparent !important;
	background: #606060;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.pager li > a:hover,
.pager li > span:hover {
	color: #fff;
	background: #0f74bc;
	border-color: transparent !important;
}


.content_post ul {
	display: inline-block;
	width: auto;
	padding: 10px;
}

.content_post ul>li {
	margin: 0px 5px;
	padding: 3px;
	font-weight: 600;
	cursor: pointer;
	font-size:1rem;
	opacity: 1.0;
	transition: opacity .2s ease-in-out;
	list-style-type: disc;
}

.content_post ul>li:hover {
	opacity: 1.0;
}

.content_post ul:hover>li:not(:hover) {
	opacity: 0.8;
}








.question-toogle:after{
	background-color:#515153 !important;
}

.question-toogle:before,
.question-toogle:after {
	background-color:#515153 !important;
}

.faq-item .question-toogle:after,
.faq-item .question-toogle.active:after{
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	-ms-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s
}



.faq-item .question-toogle:after {
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg)
}
.faq-item .question-toogle.active:after {
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg)
}


.faq-item .question-toogle:after {
	content: "";
	position: absolute;
	width: 12px;
	height: 2px;
	right: 20px;
	top: 21px;
}
.faq-item .question-toogle:after {
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.faq-item .question-toogle:before {
	content: "";
	position: absolute;
	width: 12px;
	height: 2px;
	right: 20px;
	top: 32px;
}
.faq-item .question-toogle:after {
	content: "";
	position: absolute;
	width: 12px;
	height: 2px;
	right: 20px;
	top: 32px
}
.question-toogle {
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-size:18px;
	font-weight:bold;
	line-height:50px;
	overflow: hidden;
	padding: 10px 50px 10px 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.question-toogle:hover {
	background:#0f74bc;
	color:#333333;
}
.faq-answer {
	display: none
}
.faq-item:first-child .faq-answer {
	display: block
}
.faq-answer p,
.faq-answer a{
	font-size:16px
}


.position-relative {
	position: relative!important;
}
.mb5px {
	margin-bottom: 5px !important;
}


.faq-item .question-toogle.active {
	color:#333 !important
}

.faq-item .question-toogle.active:after {
	background-color:#333 !important
}


.faq-item .question-toogle.active {
	background-color:#ccc !important
}


.plr15px {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.py20px {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}



.faq-item .question-toogle.active,
.question-toogle.active::after {
	background-color:#0f74bc !important;
}


















.modal-header {
    border-bottom:0px solid #910d0d !important;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background:#0f74bc;
    position:relative;
	padding-top:20px !important;
	padding-bottom:15px !important;
}

.modal-header h5 {
   padding:0px !important;
   margin:0px !important;
   line-height:24px  !important;
   font-size:24px !important;
   color:#fff !important;
}

.modal-content {
    border:0px solid rgba(0, 255, 0, 0.5) !important;
    border-radius:0px !important;
}

.modal-content p {
    font-size: 16px;
    line-height:20px;
    margin-bottom:10px;
    font-weight: normal;
	
}

.modal-content .btn-theme {
    background-color: #646363;
    color: #ffffff !important;
    border:0px solid #646363;
	margin:3px;
	padding: 6px 10px;
}


.modal-content .btn-theme:hover,
.modal-content .btn-theme:focus {
    background-color: #403f3f;
    color: #ffffff !important;
    border: 0px solid #403f3f !important;
}



@media (min-width: 1200px) {
    .modal-xl {
        max-width:94%;
	}
}

@media (min-width: 992px) {
    .modal-xl {
        max-width:90%;
	}
}


.modal-footer {
    border-top:0px solid #e9ecef;
    border-bottom-right-radius:0px;
    border-bottom-left-radius:0px;
}
.modal-footer p {
    font-size:12px;
    margin:0px;
}

.modal-body {
    padding:0px;
    border-radius:0px !important;
    background:#fff
}
/*
.modal-body img{
max-height:550px;
    padding:0px;
    border-radius:0px !important;
    margin:0px auto;
}
*/
.modal-footer {
    border-top:0px solid #e9ecef;
    border-bottom-right-radius:0px;
    border-bottom-left-radius:0px;
    background:#f1f1f1;
}


.modal-header .close-button {
    width:60px;
    height:60px;
    box-shadow: 0px rgba(0, 0, 0, 0.0);
    border-radius:0px;
    background: #646363;
    right:0px;
    top:0px;
    position: absolute;
    display: block;
    text-indent: -9999px;
    cursor:pointer;
}

.modal-header .close-button:hover {
    background:#001952;
}
.modal-header .close-button:before,
.modal-header .close-button:after {
    content: '';
    width: 55%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 48%;
    left: 22%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.modal-header .close-button:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.modal-header .close-button:hover:before,
.modal-header .close-button:hover:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (max-width: 767px) {
	
	
	.modal-content p {
		font-size: 14px;
		line-height: 16px;
	}
	
	.modal-content .btn-theme {
		margin:2px;
		padding:3px 5px;
		font-size: 14px;
	}
	
	
	
}