:root {
	
	/* all text color */
	--hex_textcolor: #3A4750;
	--R_textcolor: 58;
	--G_textcolor: 71;
	--B_textcolor: 80;
	
	/* 2026 */
	/* dark_gray */
	--hex_gray: #012659;
	--R_gray: 1;
	--G_gray: 38;
	--B_gray: 89;
	
	/* pale */
	--hex_pale: #DCE6F2;
	--R_pale: 220;
	--G_pale: 230;
	--B_pale: 242;
	
	/* gray cyan */
	--hex_gryan: #435071;
	--R_gryan: 62;
	--G_gryan: 81;
	--B_gryan: 114;
	
	/* paleblue */
	--hex_paleblue: #9CB2DC;
	--R_paleblue: 156;
	--G_paleblue: 178;
	--B_paleblue: 220;
	
}

/* =============================================================================
  Base
========================================================================== */

.lovelo {
  font-family: 'Lovelo', sans-serif;
  font-weight: 900;
  font-style: normal;
}

.dmserif {
  font-family: 'DM Serif Display', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}


.text-gray {
	color: var(--hex_gray);
}

body {
  /*font-family: "Open sans", sans-serif;*/
	font-family: "Lato", sans-serif;
	font-size: 15px;
	color: var(--hex_textcolor); /*#3a4750; /*#115c9b;*/
}

h1,
h2,
h3,
h4 {
  font-family: "Lato", sans-serif;
}

a {
  color: inherit;
}
a:hover, a:focus, a:active {
  color: inherit;
}

.indent {
    text-indent: 2rem;
}

.space {
    padding-left: 2rem;
}

.allspace {
	padding: 0.5rem;
}


/* Base styles (regardless of theme) */
.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}
.bs-callout h4 {
    margin-top: 0;
    margin-bottom: 5px;
}
.bs-callout p:last-child {
    margin-bottom: 0;
}
.bs-callout code {
    border-radius: 3px;
}
.bs-callout+.bs-callout {
    margin-top: -5px;
}
.bs-callout-default {
    border-left-color: #777;
}
.bs-callout-default h4 {
    color: #777;
}
.bs-callout-primary {
    border-left-color: #428bca;
}
.bs-callout-primary h4 {
    color: #428bca;
}
.bs-callout-success {
    border-left-color: #5cb85c;
		background-color: #f0f7fd;
}
.bs-callout-success h4 {
    color: #5cb85c;
}
.bs-callout-danger {
    border-left-color: #d9534f;
		background-color: #fcf2f2;
}
.bs-callout-danger h4 {
    color: #d9534f;
}
.bs-callout-warning {
    border-left-color: #f0ad4e;
		background-color: #fefbed;
}
.bs-callout-warning h4 {
    color: #f0ad4e;
}
.bs-callout-info {
    border-left-color: #5bc0de;
		background-color: #f0f7fd;
}
.bs-callout-info h4 {
    color: #5bc0de;
}
.bs-callout-info h5 {
    color: #5bc0de;
}

.form-control-feedback {
	text-align: inherit;
}

.label.frequencia {
    border-radius: 4px;
		font-size: 14px;
    /*font-size: 1rem;*/
}

.label.frequencia.success {
    color: #3c763d;
}

.label.frequencia.danger {
    color: #a94442;
}

.label.frequencia.info {
    color: #31708f;
}

.label.frequencia.warning {
    color: #8a6d3b;
}


.opt_sel {
    border-color: var(--hex_gray);
    margin-bottom: 0.25rem;
    padding: 0.5rem; /*0.25rem;
    padding-left: 0.25rem;*/
    background: var(--hex_pale);
    /* text-transform: uppercase; */
    font-weight: bold;
    color: white;
    border-radius: 8px;
}

.opt_sel label {
	/*font-size: 0.875rem;*/
	font-weight: bold;
	/*font-size: 1rem;*/
	color: var(--hex_gray);
}

.opt_nosel {
	border:none;
  margin-bottom: 0.25rem;
  padding: 0.5rem; /*0.25rem;
	padding-left:0.25rem;*/
  background: transparent;
	border-radius: 8px;
}

.opt_gray {
	border-color: #CCC;
  margin-bottom: 0.25rem;
  padding: 0.5rem; /*0.25rem;
	padding-left:0.25rem;*/
  background: #CCC;
	text-decoration: line-through;
	color:#999;
	font-weight: bold;
	border-radius: 8px;
}

.opt_gray label {
	color:#999;
	text-decoration: line-through;
}

.opt_soldout {
	border-color: #CCC;
  margin-bottom: 0.25rem;
	padding: 0.5rem; /*0.25rem;
  padding-left:0.25rem;*/
  background: #CCC;
	color:#999;
	border-radius: 8px;
}

.opt_soldout label {
	color:#999;
}

input[type=checkbox], input[type=radio] {
    margin: 4px 8px 0;
}

.ml-30 {
	margin-left: 30px;
}


/* Display Hide/Show */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}
/* =============================================================================
  Layout
========================================================================== */
/* Header 
================================= */
.navbar-static-top {
  margin: 0;
  border: 0;
  color: var(--hex_gray); /*#fff;*/
	box-shadow: 0px 3px 5px 0px rgba(var(--R_textcolor), var(--G_textcolor), var(--B_textcolor),0.75);
}

.navbar-top {
	background: var(--hex_pale);
	/*background: linear-gradient(90deg,
		rgba(var(--R_gray),var(--G_gray),var(--B_gray),1) 10%, 
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 40%, 
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 60%, 
		rgba(var(--R_gray),var(--G_gray),var(--B_gray),1) 90%);
	*/
  font-size: 14px;
  padding: 3px 0;
}
.navbar-top .list-inline {
  margin-bottom: 0;
}
.navbar-top .header-contact li {
  margin-right: 15px;
}
.navbar-top .header-contact li .fa {
  margin-right: 5px;
}

.navbar-main {
  margin-bottom: 0;
  color: var(--hex_pale); /*#303841;*/
  background: var(--hex_gray);
	text-transform:uppercase;
}
.navbar-main .navbar-brand {
  border-bottom: none !important;
}
.navbar-main a:hover,
.navbar-main a:active,
.navbar-main a:focus,
.navbar-main a.is-active {
  background: none !important;
  color: inherit;
  border-bottom: none; /*2px solid #33324B;*/
}
.navbar-main .submenu {
  position: absolute;
  list-style: none;
  background: var(--hex_pale); /*#FFF;*/
  padding: 0;
  width: 250px;
  left: -35px;
  visibility: hidden;
  top: 85px;
  -moz-transition: all, 0.05s;
  -o-transition: all, 0.05s;
  -webkit-transition: all, 0.05s;
  transition: all, 0.05s;
	border: 1px solid var(--hex_gray);
	border-top: 3px solid var(--hex_gray);
	color: var(--hex_gray);
}
.navbar-main .submenu li {
  /*border-top: 1px solid #33324B;*/
	border:none;
	text-transform:none;
}
.navbar-main .submenu li:hover {
  background: var(--hex_pale);
	background: 
		linear-gradient(90deg, 
		/*rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 30%, 
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 50%, */
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 15%, 
		rgba(var(--R_gray),var(--G_gray),var(--B_gray),1) 100%)
		var(--x, 0)/ 200%;
	/*-moz-transition: all, 0.3s;*/
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
	color:var(--hex_pale);
	font-weight:700;
	--x:100%;
}
.navbar-main .submenu li a {
  width: 100%;
  border-bottom: none;
  text-decoration: none;
  padding: 5px 25px;
  display: block;
  font-size: 14px; /*16px;*/
}
.navbar-main li a {
  font-family: "Lato", sans-serif;
	font-size: 15px; /*18px;*/
  padding: 20px 15px;
  border-bottom: 2px solid transparent;
	font-weight:bold;
}
.navbar-main li:hover .submenu {
  top: 52px;
  visibility: visible;
  -moz-transition: all, 0.25s;
  -o-transition: all, 0.25s;
  -webkit-transition: all, 0.25s;
  transition: all, 0.25s;
}
.navbar-main .icon-bar {
  background-color: #F2E6DA; /* hex_pale*/ /*#303841;*/
}

.navbar-main .navbar-brand {
    height: initial;
}

.nav-separator {
    border-top: 2px solid var(--hex_gray); /*#C2C7D0;*/
    height: 0.5em;
    width: 80%;
    margin-left: 1em;
}

.navbar-nav>li.has-child>a::after {
	font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  margin:0px 0px 0px 10px;
}

.navbar-brand>img {
    display: block;
		width: 350px;/*400px;*/
}

.social-icon>a:hover {
    opacity: .6;
}

/*
.social-icon>a {
    line-height: 50px;
    width: 30px;
    color: #fff;
}*/

/* Home Slider 
================================= */
.carousel {
	border-bottom: 1px solid var(--hex_textcolor);
	box-shadow: 0px 3px 5px 0px rgba(var(--R_textcolor), var(--G_textcolor), var(--B_textcolor), 0.75);
}

.carousel-home img {
  width: 100%;
	
}
.carousel-home .carousel-control {
  background: var(--hex_pale);
  height: 80px;
  width: 40px;
  top: 50%;
  margin-top: -40px;
  -moz-transition: width, 0.3s;
  -o-transition: width, 0.3s;
  -webkit-transition: width, 0.3s;
  transition: width, 0.3s;
}
.carousel-home .carousel-control .fa {
  font-size: 2.5em;
  padding-top: 12px;
	color: var(--hex_gray);
}
.carousel-home .carousel-control:hover {
  width: 50px;
}
.carousel-home .carousel-caption {
  top: 50%;
  bottom: auto;
  /*transform: translateY(-50%);*/
  transform: translateY(-10%);
	text-align: left;
}
.carousel-home .carousel-title {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, 1);
}
.carousel-home .carousel-subtitle {
  font-size: 20px;
  text-transform: uppercase;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, 1);
	font-weight: 700;
	/*background: rgba(44, 120, 182, 0.4);
	background: rgba(51, 50, 75, 0.5);*/
	/*background: rgba(175, 215, 153, 0.7);*/ 
	background: rgba(128, 126, 187, 0.7);
	padding:5px;
}
.carousel-home .btn {
  margin-top: 30px;
}

.section-home {
  margin: 30px 0;
}

/* original solution by https://codepen.io/Rowno/pen/Afykb */

.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
    z-index: 2;
}

/* home/ about-us 
================================= */
.about-us {
  margin: 30px 0;
}

.about-us-col {
  height: 325px;
  padding: 25px;
  text-align: center;
  background-color: #0076a3;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMjgwODE0IiB5MT0iLTAuMTAyMjA4IiB4Mj0iMC43MTkxODYiIHkyPSIxLjEwMjIwOCI+PHN0b3Agb2Zmc2V0PSItMjUlIiBzdG9wLWNvbG9yPSIjMTE1YjliIi8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMxMjkwZjgiLz48c3RvcCBvZmZzZXQ9IjEyNSUiIHN0b3AtY29sb3I9IiMxMTViOWIiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -moz-linear-gradient(290deg, #115b9b -25%, #1290f8 50%, #115b9b 125%);
  background-image: -webkit-linear-gradient(290deg, #115b9b -25%, #1290f8 50%, #115b9b 125%);
  background-image: linear-gradient(160deg, #115b9b -25%, #1290f8 50%, #115b9b 125%);
  color: #fff;
}
.about-us-col .col-icon-wrapper {
  min-height: 80px;
}
.about-us-col .col-title {
  text-transform: uppercase;
}
.about-us-col .col-details {
  text-align: justify;
  margin-bottom: 25px;
  min-height: 80px;
}

/* home/reasons 
================================= */
.home-reasons {
  margin: 25px 0;
}

.reasons-col {
  position: relative;
  overflow: hidden;
}
.reasons-col img {
  width: 100%;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}
.reasons-col .reasons-titles {
  position: absolute;
  bottom: 0;
  text-align: center;
	/*background: rgba(var(--R_gray), var(--G_gray), var(--B_gray), 0.8);*/
	background: var(--hex_gray);
	/*background: 
		linear-gradient(0deg, 
			rgba(var(--R_pale), var(--G_pale), var(--B_pale), 1) 10%,
			rgba(var(--R_gray), var(--G_gray), var(--B_gray), 0.8) 80%);*/
  width: 100%;
  color: var(--hex_pale); /*#fff;*/
  text-transform: uppercase;
  height: 120px; /*125px;*/
  padding: 25px 0;
}

.reasons-col .reasons-title {
  font-weight: 900;
}
.reasons-col .on-hover {
  position: absolute;
  top: 0;
  bottom: 125px;
  width: 100%;
  padding: 25px;
  color: #fff;
  text-align: justify;
  /*background: rgba(31, 118, 189, 0.9);*/
	background: rgba(126, 128, 187, 0.9);
  border-bottom: 1px solid #fff;
  visibility: hidden;
  opacity: 0;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}
.reasons-col:hover .on-hover {
  visibility: visible;
  opacity: 1;
  padding: 50px;
  -moz-transition: all, 1s;
  -o-transition: all, 1s;
  -webkit-transition: all, 1s;
  transition: all, 1s;
}
.reasons-col:hover img {
  -moz-transform: perspective(1.1) scale3d(1.1, 1.1, 1.1);
  -webkit-transform: perspective(1.1) scale3d(1.1, 1.1, 1.1);
  transform: perspective(1.1) scale3d(1.1, 1.1, 1.1);
}

/* home/causes
================================= */
.cause {
	padding-bottom: 15px;
  margin-bottom: 30px;
  border: 2px solid var(--hex_pale);
  -moz-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
	height:95%;
	/*background: url('../images/texture.png') repeat-x 0 0, var(--hex_pale);*/
	background: var(--hex_pale);
	background-image: url('../images/texture.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	color: var(--hex_gray); /*#EEE;*/
	
}
.cause .cause-progress {
  margin: 0 10px 15px;
  border: 1px solid #1f76bd;
  border-radius: 3px;
}
.cause .cause-progress .progress-bar {
  background: #1f76bd;
  box-shadow: none;
}
.cause .row {
	margin-left:0px;
}

.cause .cause-img {
  margin-bottom: 15px;
  /*margin-right: 15px;*/
  width: 100%;
	/*height: 100%;
	padding:0px;
	background: rgba(126, 128, 187, 0.5);
	-webkit-box-shadow: 2px 0px 1px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 0px 1px -1px rgba(0,0,0,0.75);
	box-shadow: 2px 0px 1px -1px rgba(0,0,0,0.75);*/
	
}

.cause .cause-title {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}
.cause .cause-details {
  text-align: center; /*justify;*/
  padding: 0 15px;
  font-size: 13px;
  margin-bottom: 15px;
  /*min-height: 115px;*/
}
/*.cause:hover {
  background: var(--hex_gryan);
	border-color: var(--hex_gryan);
}*/



/* Team 
================================= */
.team-member {
  /*background: var(--hex_gray);*/
  /*background: 
		linear-gradient(180deg, 
			rgba(var(--R_dark), var(--G_pale), var(--B_pale), 1) 70%,
			rgba(var(--R_gray), var(--G_gray), var(--B_gray), 1) 100%);*/
  color:  var(--hex_gray);/*var(--hex_pale);*/
  text-align: center;
  padding-bottom: 15px;
  /*border: 1px solid var(--hex_gray); */
	height: 96%;
}
.team-member .thumb img {
  width: 100%;
	display: block;
	padding: 0px;
	margin-bottom: 20px;
	line-height: 1.42857143;
	background-color: #fff;
	border: 1px solid var(--hex_paleblue);
	border-radius:100%;
	box-shadow: 4px 4px 8px rgba(var(--R_gray), var(--G_gray), var(--B_gray), 0.5);
	-webkit-transition: border .2s ease-in-out;
	-o-transition: border .2s ease-in-out;
	transition: border .2s ease-in-out;
}

.team-member .member-name {
  font-weight: 700;
	font-size: 16px;
}

.team-member .member-position {
  padding: 0 15px 5px;
}

/* footer 
================================= */
.footer-top {
  /* bg gradient 
	  white, light, dark, dark, light, white */
	background: var(--hex_pale);
	background: linear-gradient(90deg, 
		rgba(255,255,255,1) 0%, 
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 19%, 
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 30%, 
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 70%, 
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 81%,
		rgba(255,255,255,1) 100%);
  height: 10px; /*40px;*/
	border-bottom: 1px solid #000;
	webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
}

.main-footer {
  /*background: #1f76bd;
  color: #fff;*/
	background  : url('../images/img-page-footer.jpg') no-repeat bottom;
  background-size       : cover;
  width                 : 100%;
  background-attachment : scroll;
  position: relative;
}

.main-footer::before{
    position: absolute;
    content: "";
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    background: rgba(var(--R_pale),var(--G_pale),var(--B_pale), 0.6); /* light */
		background: 
			linear-gradient(90deg, 
			rgba(var(--R_gray),var(--G_gray),var(--B_gray), 0.3) 0%, 
			rgba(var(--R_pale),var(--G_pale),var(--B_pale), 0.5) 10%, 
			rgba(var(--R_pale),var(--G_pale),var(--B_pale), 0.6) 50%, 
			rgba(var(--R_pale),var(--G_pale),var(--B_pale), 0.5) 90%, 
			rgba(var(--R_gray),var(--G_gray),var(--B_gray), 0.3) 100%); 
    }
		
			
		
.main-footer .footer-main {
  padding: 20px 0;
}
.main-footer .footer-title {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.main-footer .footer-title .title-under {
  background: #fff;
  margin: 15px 0;
  text-align: left;
}
.main-footer .footer-title .title-under:after {
  margin: 0;
  background: #fff;
}
.main-footer .footer-content {
  text-align: justify;
  font-size: 13px;
}

.main-footer .footer-text {
  font-weight: 900;
	font-size:16px;
	color:#000;
	/*text-shadow:1px 1px 0 #ffecf5, 1px -1px 0 #ffecf5, -1px 1px 0 #ffecf5, -1px -1px 0 #ffecf5;*/
}
.main-footer .tweet {
  font-size: 13px;
}
.main-footer .tweet:after {
  content: "";
  height: 1px;
  display: block;
  background: #115c9b;
  width: 150px;
  margin: 15px auto;
}
.main-footer .tweet:last-child:after {
  display: none;
}

.footer-bottom {
	/* bg gradient 
	  white, light, dark, dark, light, white */
	background: var(--hex_gray);
	/*background: linear-gradient(90deg, 
		rgba(255,255,255,1) 0%, 
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 19%, 
		rgba(var(--R_gray),var(--G_gray),var(--B_gray),1) 30%, 
		rgba(var(--R_gray),var(--G_gray),var(--B_gray),1) 70%, 
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 81%, 
		rgba(255,255,255,1) 100%);*/
  /*padding: 3px;*/
	height: 10px; 
}

.footer-form .form-group {
  margin-bottom: 5px;
}
.footer-form .form-control {
  background: #115c9b;
  color: #fff;
  border: 0;
  border-radius: 0;
  margin-bottom: 5px;
  border: 1px solid #fff;
  resize: none;
}
.footer-form .btn-submit {
  border-radius: 0;
  background: #115c9b;
  text-transform: uppercase;
  border: 1px solid #fff;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}
.footer-form .btn-submit:hover {
  background: #fff;
}
.footer-form input:-moz-placeholder,
.footer-form textarea:-moz-placeholder {
  color: #fff;
}
.footer-form input::-moz-placeholder,
.footer-form textarea::-moz-placeholder {
  color: #fff;
}
.footer-form input:-ms-input-placeholder,
.footer-form textarea:-ms-input-placeholder {
  color: #fff;
}
.footer-form input::-webkit-input-placeholder,
.footer-form textarea::-webkit-input-placeholder {
  color: #fff;
}

.cs-map {
	-webkit-box-shadow: 0px 12px 30px rgba(11, 12, 48, 0.15);
	box-shadow: 0px 12px 30px rgba(11, 12, 48, 0.15);
}
/* Pages 
================================= */
.page-heading {
  background: url('../images/img-page-title.jpg') no-repeat bottom;
  background-size: cover;
  min-height: 170px;
  color: initial;
  padding: 25px 15px;
  margin-bottom: 50px;
	width                 : 100%;
  background-attachment : scroll;
  position: relative;
	border-bottom:1px solid #000;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
}

.page-heading::before {
 position: absolute;
    content: "";
    top:0;
    left:0;
    right: 0;
    bottom: 0;
		/* Bg grad
		 dark, light, transparent, light, dark */
			
		background: rgba(var(--R_gray),var(--G_gray),var(--B_gray),0.1);
		background: linear-gradient(90deg, 
			rgba(var(--R_gray),var(--G_gray),var(--B_gray),0.8) 0%, 
			rgba(var(--R_gray),var(--G_gray),var(--B_gray),0.4) 10%, 
			rgba(var(--R_gray),var(--G_gray),var(--B_gray),0) 20%, 
			rgba(var(--R_gray),var(--G_gray),var(--B_gray),0) 80%, 
			rgba(var(--R_gray),var(--G_gray),var(--B_gray),0.4) 90%, 
			rgba(var(--R_gray),var(--G_gray),var(--B_gray),0.8) 100%); 
    }
		
.page-heading .title-under {
  background: #000;
	/*box-shadow: 
		1px 1px 0 #FFF, 
		1px -1px 0 #FFF, 
		-1px 1px 0 #FFF, 
		-1px -1px 0 #FFF;*/
	height: 3px;
}

.page-description {
  font-size: 18px;
	/*text-shadow: 
		1px 1px 0 rgba(255,255,255,0.4), 
		1px -1px 0 rgba(255,255,255,0.4),
		-1px 1px 0 rgba(255,255,255,0.4),
		-1px -1px 0 rgba(255,255,255,0.4);*/
	font-weight:900;
	color: #000;
}

.main-container {
  margin-bottom: 50px;
}

.page-title {
	text-shadow: 
		1px 1px 0 rgba(255,255,255,0.4), 
		1px -1px 0 rgba(255,255,255,0.4),
		-1px 1px 0 rgba(255,255,255,0.4),
		-1px -1px 0 rgba(255,255,255,0.4);
	font-weight:900;
	color:#000;
}

/* Pages/Gallery 
================================= */
.gallery-item {
  padding: 0;
  display: block;
  margin: 0;
}
.gallery-item img {
  width: 100%;
}

.contact-items {
  margin-top: 30px;
}
.contact-items .contact-item {
  margin-bottom: 10px;
  vertical-align: middle;
  font-size: 16px;
}
.contact-items .contact-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #1f76bd;
  vertical-align: middle;
  margin-right: 5px;
  color: #fff;
  text-align: center;
}
.contact-items .contact-icon .fa {
  vertical-align: sub;
  font-size: 20px;
  margin-top: 7px;
}

/* contact 
================================= */
.contact-map {
  height: 350px;
  background: #ccc;
}


/* Causes 
================================= */
.cause-carousel {
  margin-top: 15px;
  margin-bottom: 30px;
}

/* =============================================================================
	Module
========================================================================== */
.btn-primary {
  background: #115c9b;
  border: none;
  border-radius: 0;
  padding: 10px 25px;
  border: 1px solid transparent;
  -moz-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.btn-primary:hover {
  background: #fff;
  color: #1f76bd;
  border: 1px solid #1f76bd;
}

.btn-secondary {
  background: #fff;
  color: #1f76bd;
  border-radius: 0;
}
.btn-secondary:hover {
  background: #1f76bd;
  color: #fff;
}

.title-style-1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 50px;
}

.title-style-2 {
  text-align: left;
  text-transform: uppercase;
  font-size: 22px; /*26px;*/
  margin-bottom: 25px;
}

.title-style-3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 0px;
}

.sub-title-style-2 {
  text-align: left;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 25px;
}
.title-style-2 .title-under {
  display: block;
  margin: 5px 0;
}
.title-style-2 .title-under:after {
  margin: 0;
  margin-top: 10px;
}

.title-under {
  display: block;
  margin: 5px auto;
  background: #3a4750; /*#1f76bd;*/
	height: 2px;
  width: initial; /*280px;*/
}

.title-under:after {
  content: '';
  display: block;
  width: 100px;
  background: inherit;
  height: 3px;
  margin: 0 auto;
  margin-top: 10px;
	width: 280px;

}

/* Modal
================================= */
.form-control {
  /*border-radius: 0;*/
  box-shadow: none;
}

.form-group {
    margin-bottom: 5px; /*15px;*/
}


/* Tabeles
================================= */
.table-style-1 thead {
  background: #1f76bd;
  border-bottom: 1px solid #144d7b;
  color: #fff;
}
.table-style-1 td,
.table-style-1 th {
  border-bottom: 1px solid #1f76bd;
}

.table-style-2 thead {
  background: #7e80bb; /*#115c9b;*/
  border-bottom: 1px solid #3a4750; /*#144d7b;*/
  color: #fff;
}
.table-style-2 tbody tr:nth-child(even) {
  /*background: #1f76bd;*/
	background: rgba(126, 128, 187, 0.2);
  color: #3a4750; /*#fff;*/
}
.table-style-2 td,
.table-style-2 th {
  border-bottom: 1px solid #7e80bb; /*#1f76bd;*/
}


/* Cronograma */

.thumbcdate1, .thumbcdate3 {
	display: block;
	/*margin: 1em 0.75em;*/
	border: solid 2px var(--hex_gray);
	border-radius: 100px;
	box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.40);
}

.thumbcdate2, .thumbcdate4 {
	display: block;
	/*margin: 1em 0.75em;*/
	/*border: solid 2px var(--hex_gryan);*/
	border: 1px solid var(--hex_paleblue);
	border-radius: 10%;
	/*box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.40);*/
	box-shadow: 4px 4px 8px rgba(var(--R_gray), var(--G_gray), var(--B_gray), 0.5);
}

.label-cdate1, .label-cdate3 {
	background-color: var(--hex_gray);
	color:var(--hex_pale);
}

.label-cdate2, .label-cdate4 {
	background-color: var(--hex_pale);
	color:var(--hex_gray);
}

a.label-cdate1:focus, a.label-cdate1:hover, 
a.label-cdate3:focus, a.label-cdate3:hover {
    color: var(--hex_gray);
    text-decoration: none;
		background-color: var(--hex_pale);
    cursor: pointer;
}

a.label-cdate2:focus, a.label-cdate2:hover, 
a.label-cdate4:focus, a.label-cdate4:hover {
    color: #fff;
    text-decoration: none;
		background-color: var(--hex_gray);
    cursor: pointer;
}



.dot-not-use {
width: 100%;
	display: block;
	padding: 0px;
	margin-bottom: 20px;
	line-height: 1.42857143;
	background-color: #fff;
	border: 1px solid var(--hex_paleblue);
	border-radius:100%;
	box-shadow: 4px 4px 8px rgba(var(--R_gray), var(--G_gray), var(--B_gray), 0.5);
	-webkit-transition: border .2s ease-in-out;
	-o-transition: border .2s ease-in-out;
	transition: border .2s ease-in-out;
}

.table > tbody > tr > td.cdate {
    margin-bottom: 0.5rem;
		padding: 1rem;
		border: none;
		/*border-bottom: 3px solid #FFF;*/
		border-top-left-radius:6px;
		border-bottom-left-radius:6px;
		font-weight:700;
		/*text-align: center;*/
		vertical-align:top;
}

.table > tbody > tr > td.cdate1, .table > tbody > tr > td.cdate3 {
		background-color: var(--hex_gray);
		color: var(--hex_pale);
		
}

.table > tbody > tr > td.cdate2, .table > tbody > tr > td.cdate4 {
		background-color: var(--hex_pale);
		color:var(--hex_gray);
		
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
	/*padding: 8px;*/
	padding: 0.75rem;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #193858;
	background-color: transparent;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 1px solid #193858;
}

.tablemodal > tbody > tr > td.cdate {
    margin-bottom: 0.5rem;
		padding: 0.25rem;
		padding: 8px;
		border: none;
		border-bottom: 3px solid #FFF;
		border-top-left-radius:3px;
		border-bottom-left-radius:3px;
		background-color: #EB4C62;
		font-weight:bold;
		text-align: center;
		vertical-align:middle;
		color:#FFF;
}

.tablemodal > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #EB4C62;
}

.tablemodal > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 1px solid #EB4C62;
}

		
/* Tabs
================================= */
.nav-tabs {
  border-bottom-color: #1f76bd;
  margin-bottom: 15px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background: #1f76bd;
  color: #fff;
}

.nav-tabs > li > a {
  border-radius: 0;
}

.nav-tabs > li > a:hover {
  border-color: #1f76bd #1f76bd #1f76bd #115c9b;
}

.nav > li > a:hover, .nav > li > a:focus {
  /*background: #115c9b;*/
  /*color: #fff;*/
	color: var(--hex_pale);
}

/* Accordion
================================= */
.panel-default {
  border-color: #1f76bd;
  border-radius: 0;
}
.panel-default > .panel-heading {
  background: #1f76bd;
  color: #fff;
}
.panel-default > .panel-heading:hover {
  background: #115c9b;
}

/* Modal
================================= */
.modal .modal-content {
  border-radius: 0;
}
.modal .modal-header {
	background: var(--hex_gryan);
	background: linear-gradient(90deg, 
		rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 40%, 
		rgba(var(--R_gray),var(--G_gray),var(--B_gray),1) 80%);
  color: var(--hex_gray);
	font-weight:900;
}

.modal .modal-header .close {
	color:#FFF;
	opacity: 0.8;
}

/*-moz-transform: perspective(1.1) scale3d(1.1, 1.1, 1.1);
  -webkit-transform: perspective(1.1) scale3d(1.1, 1.1, 1.1);
  transform: perspective(1.1) scale3d(1.1, 1.1, 1.1);*/
.modal .modal-header.modaldetails {
  background: var(--hex_gryan);
	background:url('../images/modal-header.png') left center no-repeat, 
							linear-gradient(90deg, 
							rgba(var(--R_pale),var(--G_pale),var(--B_pale),1) 40%, 
							rgba(var(--R_gray),var(--G_gray),var(--B_gray),1) 80%);
  color: var(--hex_gray);
	min-height: 80px;
}

.modal .modal-header .close {
  font-size: 26px;
}

.modal .modal-header.modaldetails img {
  height:50%;
}

.modal .modal-header.modaldetails .close {
  color: var(--hex_gray);
	font-weight:900;
	filter: alpha(opacity=0.7);
   opacity: 0.7;
}

.modal .modal-header.modaldetails .close:focus, .modal .modal-header.modaldetails .close:hover {
    filter: alpha(opacity=1);
    opacity: 1;
}

.modal-body.modaldetails {
  /*
	background: url(../images/modal-lateral.jpg);
  background-repeat: repeat-y;
  background-position: left top;
	*/
}

.modal-body.modaldetails.modalpal {
  /*background-color: var(--hex_pale);*/
	background-image: url(../images/modal-lrbg.jpg);
  background-repeat: no-repeat;
  background-position: right bottom;
}

.modal-title.modaldetails {
	/*padding-left: 100px; /*170px;*/
	/*padding-top: 12px;
	/*padding-top: 20px;*/
  /*font-weight: 700;*/
  text-transform: uppercase;
	color: var (-hex_gray);
	font-size:28px;
}

.overflow{
    overflow: hidden;
  }
	
.modal-content {
	-webkit-box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.5);
	box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.5);
}

.modal-title {
	font-weight: 900;
}
	
	/* Alert Modal
================================*/
.modal .danger {
	background-color: #c24a4a; /*#fcf2f2;*/
}

.modal .danger h4 {
	color: #FFF; /*#d9534f;*/
}

.modal .danger button.close {
	color: #FFF;
}

.modal .success {
	background-color: #DCFFE4; /*#f0f7fd;*/
}

.modal .success h4 {
	color: #118611; /*#5cb85c;*/
}

.modal .warning {
	background-color: #fcf4d1; /*#fefbed;*/
}

.modal .warning h4 {
	color: #d18212; /*#f0ad4e;*/
}

.modal .info {
	background-color: #cde6fb; /*#f0f7fd;*/
}

.modal .info h4 {
	color: #1b7995; /*#5bc0de;*/
}
	
.lightbox {
  position: relative;
  display: block;
  overflow: hidden;
}
.lightbox img {
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}
.lightbox .on-hover {
  position: absolute;
  visibility: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  color: #fff;
  background: rgba(31, 118, 189, 0.75);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: all, 0.6s;
  -o-transition: all, 0.6s;
  -webkit-transition: all, 0.6s;
  transition: all, 0.6s;
}
.lightbox .on-hover .hover-caption {
  text-align: center;
  position: absolute;
  bottom: 25px;
  left: 5px;
  right: 5px;
  font-size: 18px;
  display: block;
  font-family: "Lato", sans-serif;
  bottom: -50px;
  -moz-transition: all, 0.6s;
  -o-transition: all, 0.6s;
  -webkit-transition: all, 0.6s;
  transition: all, 0.6s;
}
.lightbox .on-hover:before {
  content: "";
  display: block;
  width: 46px;
  height: 48px;
  position: absolute;
  background: url('../images/icons/zoom-icon.png?1428101315');
  top: 50%;
  left: 50%;
  margin-top: -23px;
  margin-left: -24px;
}
.lightbox:hover .on-hover {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.lightbox:hover .on-hover .hover-caption {
  bottom: 25px;
}
.lightbox:hover img {
  -moz-transform: perspective(1.15) scale3d(1.15, 1.15, 1.15);
  -webkit-transform: perspective(1.15) scale3d(1.15, 1.15, 1.15);
  transform: perspective(1.15) scale3d(1.15, 1.15, 1.15);
}

/* Ow carousel
================================= */
.owl-next,
.owl-prev {
  width: 32px;
  height: 32px;
  padding-top: 5px;
  border: 2px solid;
  text-align: center;
  border-radius: 50%;
  left: 0;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}
.owl-next:hover,
.owl-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

.owl-next {
  left: auto;
  right: 0;
}


.download-btn {
  margin-top: 60px;
  text-align: center;
}

.pricingTable{
    text-align: center;
}

.pricingTable .pricingTable-header{
    padding: 30px 0;
    background: var(--hex_pale);
		background-image: url('../images/texture.png');
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		/*0 0, var(--hex_pale);*/
    position: relative;
    transition: all 0.3s ease 0s;
}

/*.pricingTable:hover .pricingTable-header{
		background: var(--hex_gryan);
}*/

/*.pricingTable .pricingTable-header:before,
.pricingTable .pricingTable-header:after{
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #d9d9d8;
    position: absolute;
    bottom: 12px;
}*/

.pricingTable .pricingTable-header:before{
    left: 40px;
}

.pricingTable .pricingTable-header:after{
    right: 40px;
}

.pricingTable .heading{
    font-size: 20px;
    color: var(--hex_gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
}

.pricingTable .heading.heading-small{
    font-size: initial;
}

.pricingTable .price-value{
    display: inline-block;
    position: relative;
    font-size: 42px;
    font-weight: bold;
    color: var(--hex_gray) /*#59BC51*/; /*#09b1c5;*/
    transition: all 0.3s ease 0s;
}

.pricingTable .price-value.secondbatch{
    right: 50px;
}

.pricingTable:hover .price-value{
    color: var(--hex_gray); /*#fff;*/
}

.pricingTable:hover .month{
    color: var(--hex_gray); /*#fff;*/
}

.pricingTable .currency{
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 8px;
    left: -42px; /*-19px;*/
}

.pricingTable .invisiblepricecontent{
    color: var(--hex_gray);
}

.pricingTable .currency-small{
    font-size: 20px;
}

.pricingTable .month{
    font-size: 14px;
    color: var(--hex_gray) /*#59BC51*/; /*#fff;*/
    position: absolute;
    bottom: 15px;
    right: -80px; /*-30px;*/
    text-transform: uppercase;
		transition: all 0.3s ease 0s;
}

.pricingTable .month.secondbatch{
    right: -140px; 
}

.pricingTable .pricing-content{
    /*padding-top: 50px;*/
    /*background: rgba(175, 215, 153, 0.7);*/ 
		background: var(--hex_gray); /*#fff;*/
    position: relative;
}

/*.pricingTable .pricing-content:before,
.pricingTable .pricing-content:after{
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #7c7c7c;
    position: absolute;
    top: 12px;
}*/

.pricingTable .pricing-content:before{
    left: 40px;
}

.pricingTable .pricing-content:after{
    right: 40px;
}

.pricingTable .pricing-content ul{
    padding: 0 20px;
    margin: 0;
    list-style: none;
}

/*.pricingTable .pricing-content ul:before,
.pricingTable .pricing-content ul:after{
    content: "";
    width: 8px;
    height: 46px;
    border-radius: 3px;
    background: linear-gradient(to bottom,#818282 50%,#727373 50%);
    position: absolute;
    top: -22px;
    z-index: 1;
    box-shadow: 0 0 5px #707070;
    transition: all 0.3s ease 0s;
}*/

.pricingTable:hover .pricing-content ul:before,
.pricingTable:hover .pricing-content ul:after{
    background: linear-gradient(to bottom, #40c4db 50%, #34bacc 50%);
}

.pricingTable .pricing-content ul:before{
    left: 44px;
}

.pricingTable .pricing-content ul:after{
    right: 44px;
}

.pricingTable .pricing-content ul li{
    font-size: 15px;
    font-weight: bold;
    color: var(--hex_pale); /*#EEE;*/
    padding: 10px 0;
    border-bottom: 1px solid var(--hex_pale); /*#EEE; /*#d9d9d8;*/
}

.pricingTable .pricing-content ul li:last-child{
    border-bottom: none;
}

.pricingTable .read{
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    background: #d9d9d8;
    padding: 8px 25px;
    margin: 30px 0;
    transition: all 0.3s ease 0s;
}

.pricingTable .read:hover{
    text-decoration: none;
}

.pricingTable:hover .read{
    background: #09b1c5;
}

@media screen and (max-width: 990px){
    .pricingTable{ margin-bottom: 25px; }
}

.thumbmodal {
	display: block;
	border: 1px solid var(--hex_gray);
	border-radius: 8%;
	/*box-shadow: -4px -4px 3px 0px rgba(var(--R_gray),var(--G_gray),var(--B_gray),1);*/
  /*padding: 5px;*/
}
/*************************
*******Portfolio Default**
**************************/
.portfolio-single {
  position: relative;
}

.portfolio-thumb {
  position: relative;
}

.portfolio-thumb img {
  width: 100%;
	border-radius: 100px;
	border: solid 2px var(--hex_paleblue);
	box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.40);
}

.portfolio-single:hover .portfolio-view{
  display: block;
  -webkit-animation: fadeInUp 400ms;
  animation: fadeInUp 400ms;
}

#portfolio .row{
  margin-left: -10px;
  margin-right: -10px;
}

.portfolio-view{
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  /*background: linear-gradient(to bottom, rgba(229,108,53,0.5) 0%,rgba(243,37,152,0.5) 100%);*/
  background-color: rgba(0,0,0,0.3);
	/*rgba(242, 37, 151, 0.7);
   rgba(228, 110, 50, 0.5);*/
	width: 100%;
  text-align: center;  
}

.portfolio-view .nav-pills {
  padding: 0;
  display: inline-block;
  margin-top: -26px;
  top: 50%;
  position: relative;
}

.portfolio-view .nav-pills li {
  display: inline-block;
  margin: 0 5px;
}

.portfolio-view .nav-pills li a {
  color: #fff;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  padding: 0;
  border-radius: 40px;
  -webkit-animation: scaleIn 400ms linear 100ms both;
  animation: scaleIn 400ms linear 100ms both;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.portfolio-view .nav-pills li a:hover {
  color: #604905;
  border-color: #604905;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

/* PV navpills 2 */
.portfolio-single:hover .portfolio-view2{
  display: block;
  -webkit-animation: fadeInUp 400ms;
  animation: fadeInUp 400ms;
}

.portfolio-view2{
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  /*background: rgba(37, 72, 118, 0.8);*/
  width: 100%;
  text-align: center;  
}

.portfolio-view .nav-pills2,
.portfolio-view2 .nav-pills2 {
  padding: 0;
  display: inline-block;
  margin-top: -26px;
  top: 50%;
  position: relative;
}

.portfolio-view .nav-pills2 li,
.portfolio-view2 .nav-pills2 li {
  display: inline-block;
  /*margin: 0 5px;*/
}

.portfolio-view .nav-pills2 li a,
.portfolio-view2 .nav-pills2 li a {
  color: #000; /*#EB4C62;*/
  border: 2px solid #000; /*#EB4C62;*/
	background-color: #FFF;
  /*width: 40px;
  height: 40px;*/
  line-height: 38px;
  text-align: center;
  padding: 8px 24px; /*0;*/
  border-radius: 8px; /*40px;*/
  -webkit-animation: scaleIn 400ms linear 100ms both;
  animation: scaleIn 400ms linear 100ms both;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.portfolio-view .nav-pills2 li a:hover,
.portfolio-view2 .nav-pills2 li a:hover {
  color: #FFF;
  border-color: #000; /*#143433;*/
	background: linear-gradient(90deg, #FFD560 0%, #F2702A 10%, #008FA0 80%); /*#EB4C62;*/
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}
/* PV navpills 2 */

.portfolio-info {
  overflow: hidden;
  margin-bottom: 30px;
}

.portfolio-info h2 {
  font-size: 18px;
  margin: 15px 0 0;
	text-align:center;
	color:#000;
}

.portfolio-info h3 {
  font-size: 16px;
  margin: 15px 0 0;
	text-align:center;
	color:#000;
}

.portfolio-filter {
  /*margin: 80px 0;*/
  margin: 50px 0;
  padding: 0;
}

.portfolio-filter li {
  display: inline-block;
  position: relative;
}

.portfolio-filter li a {
  border-radius: 0;
  color: var(--hex_paleblue);
  font-size: 18px;
  font-weight: 300;
  padding: 0 25px;
  text-transform: capitalize;
  border: none;
}

.portfolio-filter li .active{
  background: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.portfolio-filter li a:hover, 
.portfolio-filter li a:focus,
.portfolio-filter li a.active {
  background: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
	color: var(--hex_gray); /*#01B4D3;*/
	text-decoration: none;
	font-weight: 700;
}

.portfolio-filter li a.active:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin:3px 10px 0px 10px;
}

.portfolio-pagination{
  text-align: center;
  
  padding-top: 40px;
  padding-bottom: 90px;
}

.pagination li{
  display: inline-block;
  margin: 0 10px;
}

.pagination li a{
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #fff;
}

.pagination li:first-child a{
  background: url(../images/portfolio/left.png);
  background-repeat: no-repeat;
  text-indent: -999999999px;
  background-position: center top 10px;
  width: 32px;
  height: 36px;
  border: none;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.pagination li:first-child a:hover{
  background: url(../images/portfolio/left.png);
  background-position: center top -37px;
  background-repeat: no-repeat;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.pagination li:last-child a{
  background: url(../images/portfolio/right.png);
  background-repeat: no-repeat;
  text-indent: -999999999px;
  background-position: center top 10px;
  width: 32px;
  height: 36px;
  border: none;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.pagination li:last-child a:hover{
  background: url(../images/portfolio/right.png);
  background-position: center top -37px;
  background-repeat: no-repeat;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.pagination li a:hover,
.pagination .active a,
.pagination .active a:hover,
.pagination .active a:focus{
  background: none;
  border-color: #604905;
  color: #604905;
}

/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}




/*****************************
Portfolio Details
*****************************/

#portfolio-information.padding-top{
  padding-top: 100px;
}

.project-name h2{
  margin-top: 0;
  margin-bottom: 15px;
}

#related-work .title{
  margin-bottom: 55px;
  margin-top: 10px;
}



/* =============================================================================
	Responsive
========================================================================== */
/* Large devices (large desktops, 1200px and Down) */
@media (max-width: 1200px) {
  .about-us-col {
    padding: 15px;
  }

  .reasons-col:hover .on-hover {
    padding: 15px;
  }

  .reasons-col:hover .on-hover {
    padding: 25px;
  }
}
/* Medium devices (desktops, 992px and Donw) */
@media (max-width: 992px) {
	
	.carousel-home .carousel-caption {
		top: 45%;
		bottom: auto;
		/*transform: translateY(-50%);*/
		transform: translateY(-10%);
		text-align: left;
		right:15%;
		left: 15%;
	}
	
  .carousel-home .carousel-title {
    font-size: 36px;
  }
  .carousel-home .carousel-subtitle {
    font-size: 18px;
  }
  .carousel-home .btn {
    margin-top: 15px;
  }

  .about-us-col {
    margin-bottom: 25px;
  }

  .team-member {
    margin-bottom: 25px;
  }

  .reasons-col {
    margin-bottom: 25px;
  }

  .footer-col {
    margin-bottom: 50px;
  }
}
/* Small devices (tablets, 768px and Down) */
@media (max-width: 768px) {
  .header-contact {
    text-align: center;
  }
  .header-contact li {
    margin: 0 !important;
  }

  .header-social {
    text-align: center;
  }

  .navbar-main #navbar {
    float: none !important;
  }
  .navbar-main #navbar a {
    border-bottom: none;
  }
  .navbar-main .navbar-brand {
    padding: 6px 15px;
  }
	.navbar-brand > img {
		display: block;
		width: 100px;
	}
  .navbar-main .submenu {
    position: initial;
    display: none;
    width: 100%;
  }
  .navbar-main li:hover .submenu,
  .navbar-main li:active .submenu,
  .navbar-main li:focus .submenu {
    display: block;
		border-left:none;
		border-right:none;
  }
  .navbar-main li:hover .submenu li,
  .navbar-main li:active .submenu li,
  .navbar-main li:focus .submenu li {
    /*background: #FFF;/*#115c9b;*/
    border-top-color: none; /*#1f76bd;*/
  }

	.navbar-main .submenu li a {
		width: 100%;
		border-bottom: none;
		text-decoration: none;
		padding: 5px 25px;
		display: block;
		font-size: 11px; /*16px;*/
	}
	.navbar-main li a {
		font-size: 12px; /*18px;*/
		padding: 20px 15px;
		border-bottom: 2px solid transparent;
		font-weight:bold;
	}
	
	.navbar-nav>li>a {
		padding-bottom:5px;
		padding-top:5px;
	}
	
	.carousel-home .carousel-caption {
		top: 35%;
		bottom: auto;
		/*transform: translateY(-50%);*/
		transform: translateY(-10%);
		text-align: left;
		right:15%;
		left: 15%;
	}

  .carousel-home .carousel-title {
    font-size: 24px; /*32px;*/
  }
  .carousel-home .carousel-subtitle {
    font-size: 15px; /*16px;*/
  }
  .carousel-home .carousel-control {
    background: #7F7DBA; /*#AFD799;*/
    height: 40px;
    width: 20px;
    top: 50%;
    margin-top: -20px;
  }
  .carousel-home .carousel-control .fa {
    font-size: 1.5em;
    padding-top: 4px;
  }

  .col-form {
    margin-bottom: 25px;
  }
}
@media (max-width: 1200px) {
	.navbar-brand > img {
		display: block;
		width: 300px; /*170*/
	}
  .navbar-main .submenu {
    position: initial;
    display: none;
    width: 100%;
  }
}

@media (max-width: 992px) {
	
	.navbar-brand > img {
		display: block;
		width: 200px; /*170*/
	}
	
	.navbar-main .submenu li a {
		width: 100%;
		border-bottom: none;
		text-decoration: none;
		padding: 5px 25px;
		display: block;
		font-size: 11px; /*16px;*/
	}
	
	.navbar-main li a {
    font-family: "Lato", sans-serif;
    font-size: 12px;
    padding: 20px 15px;
    border-bottom: 2px solid transparent;
    font-weight: bold;
	}
	
}


@media (max-width: 768px) {
	.navbar-nav>li>a {
    padding-top: 5px;
    padding-bottom: 5px;
	}
}


/* Small devices (tablets, 640px and Down) */
@media (max-width: 640px) {
  .header-contact {
    text-align: center;
  }
  .header-contact li {
    margin: 0 !important;
  }

  .header-social {
    text-align: center;
  }

  .navbar-main #navbar {
    float: none !important;
  }
  .navbar-main #navbar a {
    border-bottom: none;
  }
  .navbar-main .navbar-brand {
    padding: 6px 15px;
  }
	.navbar-brand > img {
		display: block;
		/*width: 100px;*/
		width: 150px;
	}
	
	.navbar-nav>li>a {
		padding-top:5px;
		padding-bottom:5px;
	}
	
  .navbar-main .submenu {
    position: initial;
    display: none;
    width: 100%;
  }
  .navbar-main li:hover .submenu,
  .navbar-main li:active .submenu,
  .navbar-main li:focus .submenu {
    display: block;
		border-left:none;
		border-right:none;
  }
  .navbar-main li:hover .submenu li,
  .navbar-main li:active .submenu li,
  .navbar-main li:focus .submenu li {
    background: #FFF;/*#115c9b;*/
    border-top-color: none; /*#1f76bd;*/
  }

	.carousel-home .carousel-caption {
		top: 30%;
		bottom: auto;
		/*transform: translateY(-50%);*/
		transform: translateY(-10%);
		text-align: left;
		right:10%;
		left: 10%;
	}

  .carousel-home .carousel-title {
    font-size: 24px; /*32px;*/
  }
  .carousel-home .carousel-subtitle {
    font-size: 15px; /*16px;*/
  }
  .carousel-home .carousel-control {
    background: #7F7DBA; /*#AFD799;
    height: 40px;
    width: 20px;
    top: 50%;
    margin-top: -20px;
  }
  .carousel-home .carousel-control .fa {
    font-size: 1.5em;
    padding-top: 4px;
  }

  .col-form {
    margin-bottom: 25px;
  }
}

/* Extra Small devices (tablets, 480px and Down) */
@media (max-width: 480px) {
  .carousel-home .carousel-title {
    /*font-size: 16px;*/
    font-size: 12px;
    margin: 0;
  }
  .carousel-home .carousel-subtitle {
    /*font-size: 14px;*/
    font-size: 10px;
    margin: 0;
		font-weight: 400;
  }
  .carousel-home .carousel-indicators {
    bottom: 0;
  }
	
	.carousel-home .carousel-caption {
		top: 40%;
		bottom: auto;
		/*transform: translateY(-50%);*/
		transform: translateY(-10%);
		text-align: left;
	}
}

/* Extra Small devices (tablets, 320px and Down) */
@media (max-width: 320px) {
  .carousel-home .carousel-title {
    /*font-size: 16px;*/
    font-size: 12px;
    margin: 0;
  }
  .carousel-home .carousel-subtitle {
    /*font-size: 14px;*/
    font-size: 8px;
    margin: 0;
		font-weight: 100;
  }
  .carousel-home .carousel-indicators {
    bottom: 0;
  }
	
	.carousel-home .carousel-caption {
		top: 20%;
		bottom: auto;
		/*transform: translateY(-50%);*/
		transform: translateY(-10%);
		text-align: left;
		right: 10%;
		left: 10%;
	}

}




/* =============================================================================
	Animations
========================================================================== */
.animate-onscroll {
  visibility: hidden;
}

.animated {
  visibility: visible;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.slow {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}
.animated.fadeIn {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn
}

.mark {
    padding: .2em;
    background-color: var(--hex_pale);
}



