:root {
	
	/* all text color */
	--hex_textcolor: #3A4750;
	--R_textcolor: 58;
	--G_textcolor: 71;
	--B_textcolor: 80;
	
	/* 024 strong_cyan */
	/* 025 light green 
	--hex_cyan: #CDDEBA;
	--R_cyan: 205;
	--G_cyan: 222;
	--B_cyan: 186;*/
	
	--hex_cyan: #9EB95C;
	--R_cyan: 158;
	--G_cyan: 185;
	--B_cyan: 92;
	
	
	/* 024 moderate pink */
	/* 025 Green */
	--hex_pink: #4D5F42;
	--R_pink: 77;
	--G_pink: 95;
	--B_pink: 66;

}

/* =============================================================================
  Base
========================================================================== */
body {
  /*font-family: "Open sans", sans-serif;*/
	font-family: 'Lato', sans-serif;
  color: var(--hex_textcolor); /*#115c9b;*/
}

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

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

.uppercase {
	text-transform: uppercase;
}

.boldcase {
	font-weight: 700;
}

.italicase {
	font-style:italic;
}

.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_cyan);
    margin-bottom: 0.25rem;
    padding: 0.5rem; /*0.25rem;
    padding-left: 0.25rem;*/
    background: var(--hex_cyan);
    /* 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: black;
}

.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: #fff;
	box-shadow: 0px 3px 5px 0px rgba(var(--R_textcolor), var(--G_textcolor), var(--B_textcolor),0.75);
}

.navbar-top {
	background: var(--hex_pink);
	background: linear-gradient(90deg, 
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 20%, 
		rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),1) 40%, 
		rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),1) 60%, 
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 80%);
  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: #303841;
  background: #FFF;
	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: #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_pink);
	border-top: 3px solid var(--hex_pink);
}
.navbar-main .submenu li {
  /*border-top: 1px solid #33324B;*/
	border:none;
	text-transform:none;
}
.navbar-main .submenu li:hover {
  background: var(--hex_pink);
	background: 
		linear-gradient(90deg, 
		rgba(255,255,255,1) 30%, 
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 50%, 
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 75%, 
		rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),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:#FFF;
	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: "Dosis", sans-serif;*/
	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: #303841;
}

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

.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: 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_cyan);
	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_pink);
  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;
}
.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: "Dosis", sans-serif;*/
	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_cyan), var(--G_cyan), var(--B_cyan), 0.8);*/
	background: var(--hex_pink);
	background: 
		linear-gradient(0deg,
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 10%,
		rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),0.8) 80%);
  width: 100%;
  color: #F2F2F2;
  text-transform: uppercase;
	text-shadow: 
		2px 2px 1px rgba(var(--R_pink),var(--G_pink),var(--B_pink),1), 
		2px -2px 1px rgba(var(--R_pink),var(--G_pink),var(--B_pink),1), 
		-2px 2px 1px rgba(var(--R_pink),var(--G_pink),var(--B_pink),1), 
		-2px -2px 1px rgba(var(--R_pink),var(--G_pink),var(--B_pink),1);
  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_pink);
  -moz-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
	height:95%;
	background: var(--hex_pink);
	color: #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_orange);
	border-color: var(--hex_orange);
}*/

/* Team 
================================= */
.team-member {
  background: rgb(41, 50, 116);
  background: linear-gradient(180deg, rgb(118, 156, 175) 70%, rgb(41, 50, 116) 100%);
  color: #fff;
  text-align: center;
  padding-bottom: 15px;
  border: 1px solid #293274; /*#213F99 /*#59BC51*/ /*#1f76bd;*/
	height: 96%;
}
.team-member .thumnail img {
  width: 100%;
}
.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_cyan);
	background: linear-gradient(90deg, 
		rgba(255,255,255,1) 10%, 
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 29%, 
		rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),1) 40%, 
		rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),1) 60%, 
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 71%,
		rgba(255,255,255,1) 90%);
  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: rgb(var(--R_cyan),var(--G_cyan),var(--B_cyan), 0.6); /* light */
		background: 
			linear-gradient(90deg, 
			rgba(var(--R_pink),var(--G_pink),var(--B_pink), 0.8) 5%, 
			rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan), 0.6) 20%, 
			rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan), 0.6) 80%,
			rgba(var(--R_pink),var(--G_pink),var(--B_pink), 0.8) 95%); 
    }
		
			
		
.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_cyan);
	background: linear-gradient(90deg, 
		rgba(255,255,255,1) 0%, 
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 19%, 
		rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),1) 30%, 
		rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),1) 70%, 
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),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;
}

/* Pages 
================================= */
.page-heading {
  background: url('../images/img-page-title.jpg') no-repeat bottom;
  background-size: cover;
  min-height: 190px;
  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_cyan),var(--G_cyan),var(--B_cyan),0.3);
		background: linear-gradient(90deg, 
			rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 0%, 
			rgba(var(--R_pink),var(--G_pink),var(--B_pink),0.6) 15%, 
			rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),0.4) 30%, 
			rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),0.4) 60%, 
			rgba(var(--R_pink),var(--G_pink),var(--B_pink),0.6) 85%, 
			rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 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);*/
	text-shadow:
		1px 1px #FFF,
		1px -1px #FFF,
		-1px 1px #FFF,
		-1px -1px #FFF;
	font-weight:900;
	color: #000;
}

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

.page-title {
	text-shadow:
		1px 1px #FFF,
		1px -1px #FFF,
		-1px 1px #FFF,
		-1px -1px #FFF;
	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-2l {
  text-align: left;
  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: var(--hex_pink);
  border-bottom: 1px solid var(--hex_cyan);
  color:#FFF;
}
.table-style-2 tbody tr:nth-child(even) {
  /*background: #1f76bd;*/
	background: rgba(var(--R_cyan), var(--G_cyan), var(--B_cyan), 0.2);
  color: var(--hex_textcolor);
}
.table-style-2 td,
.table-style-2 th {
  border-bottom: 1px solid var(--hex_pink);
}

.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;
    line-height: 1.42857143;
    vertical-align: middle;
    border-top: 1px solid var(--hex_pink);
}
		
/* 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_pink);
}

/* 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_pink);
	background: linear-gradient(90deg, 
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 40%, 
		rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),1) 80%);
  color: #fff;
	font-weight:900;
}

/*-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_pink);
	background: url('../images/logo-modal.png') left center no-repeat, 
							linear-gradient(90deg, 
							rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 40%, 
							rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),1) 80%);
  color: #FFF;
	min-height: 90px;
}

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

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

.modal .modal-header.modaldetails .close {
  color:#fff;
	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-title.modaldetails {
	padding-left: 100px; /*170px;*/
	padding-top: 12px;
	/*padding-top: 20px;*/
  /*font-weight: 700;*/
  text-transform: uppercase;
	font-size:24px;
}

.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: "Dosis", sans-serif;*/
	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;
}

/*=========================================================
	EVENTS
===========================================================*/

.event {
  position: relative;
}

.event+.event {
  margin-top: 60px;
}

.event:after {
  content: "";
  position: absolute;
  left: 60px;
  top: 0px;
  bottom: 0px;
  width: 4px;
  background-color: #000;
}

.event:last-child:after {
  height: 60px;
}

.event+.event:before {
  content: "";
  position: absolute;
  left: 60px;
  height: 60px;
  top: -60px;
  width: 4px;
  background-color: #000; 
}

.event .event-day {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--hex_cyan);
  background: 
		radial-gradient(circle, 
		rgb(var(--R_cyan),var(--G_cyan),var(--B_cyan)) 30%, 
		rgb(0,0,0) 100%);
  z-index: 10;
}

.event .event-hour {
  position: absolute;
  left: 62px;
  top: 30px; /*60px;*/
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--hex_cyan);
  background: 
		radial-gradient(circle, 
		rgb(var(--R_pink),var(--G_pink),var(--B_pink)) 20%, 
		rgb(0,0,0) 90%);
  z-index: 10;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.event .event-day>div {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.event .event-day .day {
  display: block;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
	text-shadow: 
		1px 1px 0 #000,
		2px 2px 0 #000;
}

.event .event-day .year {
  color: #FFF;
  text-transform: uppercase;
  font-size: 13px;
	font-weight: 700;
	text-shadow: 
		1px 1px 0 #000,
		2px 2px 0 #000;
}

.event .event-content {
  padding-left: 160px;
  /*min-height: 120px;*/
}

.event .event-time {
  font-size: 14px;
	border-top: 2px solid #000; /*#38366B /*#344B37*/
  padding-top: 4px;
}

.event .event-time i {
  color: #000; /*#59BC51*/;
}

.event .event-content a {
  color: #213F99 /*#59BC51*/;
}

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

.pricingTable{
    text-align: center;
}

.pricingTable .pricingTable-header{
    padding: 30px 0;
    background: var(--hex_pink);
		background: linear-gradient(315deg, 
		rgba(var(--R_pink),var(--G_pink),var(--B_pink),1) 5%,
		rgba(var(--R_cyan),var(--G_cyan),var(--B_cyan),1) 30%);
    position: relative;
    transition: all 0.3s ease 0s;
}

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

/*.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_textcolor);
    text-transform: uppercase;
		font-weight: bold;
    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_textcolor);
    transition: all 0.3s ease 0s;
}

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

.pricingTable:hover .price-value{
    color: var(--hex_textcolor);
}

.pricingTable:hover .month{
    color: var(--hex_textcolor);
}

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

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

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

.pricingTable .month{
    font-size: 14px;
    color: var(--hex_textcolor);
    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_textcolor); /*#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: #EEE;
    padding: 10px 0;
    border-bottom: 1px solid #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 #777;
	/*border: 1px solid var(--hex_cyan);*/
	border-radius: 20px;
	/*box-shadow: 4px 4px 3px 0px rgba(var(--R_pink),var(--G_pink),var(--B_pink),0.40);*/
  /*padding: 5px;*/
}
/*=====================================
	"Schedule"
======================================*/
.schedule .schedule-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 14px;
}

.schedule .schedule-tab ul li.nav-item {
  margin-right: 10px;
}

@media (max-width: 767px) {
  .schedule .schedule-tab ul li.nav-item {
    width: 100%;
    margin-bottom: 10px;
  }

}

.schedule .schedule-tab ul li.nav-item a {
  /*font-family: "Montserrat", sans-serif;*/
	font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  /*color: #38366B;*/
  font-weight: 500;
  display: block;
  border-radius: 0;
  border: 1px solid #e5e5e5;
  /*padding: 20px 30px;*/
  padding: 10px 15px;
}

.nav-pills > li.active > a, 
.nav-pills > li.active > a:focus, 
.nav-pills > li.active > a:hover {
	background: #115c9b;
	color: #fff;
}
.schedule .schedule-tab .nav > li > a:hover,
.schedule .schedule-tab .nav > li > a:focus,
.schedule .schedule-tab .nav > li > a:active {
  background: #115c9b;
	color: #fff;
}


.schedule .schedule-tab ul li.nav-item a span {
  margin-top: 2px;
  font-family: "Roboto", sans-serif;
  display: block;
  font-size: 1rem;
  color: #848484;
  font-weight: 400;
}

.schedule .schedule-tab ul li.nav-item a.active span,
.schedule .schedule-tab ul li.nav-item a span:hover,
.schedule .schedule-tab ul li.nav-item a span:active {
  color: #FFF;
}

.schedule .schedule-tab ul li.nav-item a.active {
  background: #213F99;
  color: #fff;
  position: relative;
}


/*.schedule .schedule-tab ul li.nav-item a.active:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent #ff6600 transparent transparent;
}

@media (max-width: 767px) {
  .schedule .schedule-tab ul li.nav-item a.active:after {
    content: none;
  }
}*/

.schedule .schedule-contents {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px;
}

.schedule .schedule-contents .schedule-item ul {
  margin-bottom: 0;
}

.schedule .schedule-contents .schedule-item ul li {
  list-style: none;
}

.schedule .schedule-contents .schedule-item ul li div {
  display: inline-block;
}

.schedule .schedule-contents .schedule-item ul li .time {
  /*width: 20%;*/
  width: 40%;
	padding-right:5px;
}

@media (max-width: 767px) {
  .schedule .schedule-contents .schedule-item ul li .time {
    /*width: 37%;*/
    width: 47%;
  }
}

@media (max-width: 480px) {
  .schedule .schedule-contents .schedule-item ul li .time {
    /*width: 48%;*/
    width: 60%;
  }
}

.schedule .schedule-contents .schedule-item ul li .speaker {
  /*width: 30%;*/
  width: 40%;
}

@media (max-width: 991px) {
  .schedule .schedule-contents .schedule-item ul li .speaker {
    /*width: 50%;*/
    width: 57%;
  }
}

@media (max-width: 767px) {
  .schedule .schedule-contents .schedule-item ul li .speaker {
    /*width: 60%;*/
    width: 68%;
  }
}

@media (max-width: 480px) {
  .schedule .schedule-contents .schedule-item ul li .speaker {
    /*width: 50%;*/
    width: 57%;
  }
}

@media (max-width: 480px) {
  .schedule .schedule-contents .schedule-item ul li .speaker img {
    display: none;
  }
}

.schedule .schedule-contents .schedule-item ul li .subject {
  /*width: 30%;*/
  width: 10%;
}

@media (max-width: 991px) {
  .schedule .schedule-contents .schedule-item ul li .subject {
    display: none;
  }
}

@media (max-width: 767px) {
  .schedule .schedule-contents .schedule-item ul li .venue {
    display: none;
  }
}

.schedule .schedule-contents .schedule-item li.headings {
  /*padding: 22px 40px;*/
  padding: 11px 20px;
  background: #213F99;
}

.schedule .schedule-contents .schedule-item li.headings div {
  color: #fff;
  text-transform: uppercase;
  /*font-family: "Montserrat", sans-serif;*/
	font-family: 'Lato', sans-serif;
}

.schedule .schedule-contents .schedule-item li.schedule-details {
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-right: 1px solid;
  border-color: #e5e5e5;
}

.schedule .schedule-contents .schedule-item li.schedule-details .block {
  padding: 10px 40px;
  background: #fff;
  width: 100%;
  transition: .2s ease-in;
}

.schedule .schedule-contents .schedule-item li.schedule-details .block div {
  color: #222222;
  /*font-family: "Montserrat", sans-serif;*/
	font-family: 'Lato', sans-serif;
	vertical-align:top;
}

.schedule .schedule-contents .schedule-item li.schedule-details .block div i {
  font-size: 1.1875em;
  color: #c7c8c9;
}

.schedule .schedule-contents .schedule-item li.schedule-details .block div img {
  border-radius: 100%;
}

.schedule .schedule-contents .schedule-item li.schedule-details .block div span.time {
  margin-left: 5px;
}

.schedule .schedule-contents .schedule-item li.schedule-details .block div span.name {
  margin-left: 20px;
  transition: .2s ease-in;
}

@media (max-width: 480px) {
  .schedule .schedule-contents .schedule-item li.schedule-details .block div span.name {
    margin-left: 0;
  }
}

.schedule .schedule-contents .schedule-item li.schedule-details .block:hover {
  box-shadow: 0px 0px 30px 0px rgba(11, 29, 66, 0.15);
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

.schedule .schedule-contents .schedule-item li.schedule-details .block:hover span.name {
  color: #ff6600;
}

.schedule .download-button {
  padding-top: 40px;
  margin-bottom: 30px;
}

.schedule.two .schedule-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.schedule.two .schedule-tab ul li.nav-item {
  margin-right: 0;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .schedule.two .schedule-tab ul li.nav-item {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .schedule.two .schedule-tab ul li.nav-item {
    width: 100%;
    margin-bottom: 10px;
  }
}

.schedule.two .schedule-tab ul li.nav-item a {
  /*font-family: "Montserrat", sans-serif;*/
	font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  color: #222222;
  font-weight: 500;
  display: block;
  border-radius: 0;
  border: 1px solid #e5e5e5;
  padding: 20px 30px;
}

.schedule.two .schedule-tab ul li.nav-item a span {
  margin-top: 2px;
  font-family: "Roboto", sans-serif;
  display: block;
  font-size: 14px;
  color: #848484;
  font-weight: 400;
}

.schedule.two .schedule-tab ul li.nav-item a.active {
  background: #ff6600;
  color: #fff;
  position: relative;
}

.schedule.two .schedule-tab ul li.nav-item a.active span {
  color: #fff;
}

.schedule.two .schedule-tab ul li.nav-item a.active:after {
  content: '';
  position: absolute;
  left: 100%;
  right: 0;
  bottom: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ff6600;
}

@media (max-width: 991px) {
  .schedule.two .schedule-tab ul li.nav-item a.active:after {
    content: none;
  }
}

.schedule.two .schedule-contents {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0;
}

.schedule.two .schedule-contents .schedule-item ul {
  margin-bottom: 0;
}

.schedule.two .schedule-contents .schedule-item ul li {
  list-style: none;
}

.schedule.two .schedule-contents .schedule-item ul li div {
  display: inline-block;
}

.schedule.two .schedule-contents .schedule-item ul li .time {
  width: 20%;
}

@media (max-width: 767px) {
  .schedule.two .schedule-contents .schedule-item ul li .time {
    width: 37%;
  }
}

@media (max-width: 480px) {
  .schedule.two .schedule-contents .schedule-item ul li .time {
    width: 48%;
  }
}

.schedule.two .schedule-contents .schedule-item ul li .speaker {
  width: 30%;
}

@media (max-width: 991px) {
  .schedule.two .schedule-contents .schedule-item ul li .speaker {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .schedule.two .schedule-contents .schedule-item ul li .speaker {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .schedule.two .schedule-contents .schedule-item ul li .speaker {
    width: 50%;
  }
}

.schedule.two .schedule-contents .schedule-item ul li .subject {
  width: 30%;
}

@media (max-width: 991px) {
  .schedule.two .schedule-contents .schedule-item ul li .subject {
    display: none;
  }
}

.schedule.two .schedule-contents .schedule-item ul li .venue {
  width: 18.6%;
}

@media (max-width: 767px) {
  .schedule.two .schedule-contents .schedule-item ul li .venue {
    display: none;
  }
}

.schedule.two .schedule-contents .schedule-item li.headings {
  padding: 25px 0;
  background: #ff6600;
}

.schedule.two .schedule-contents .schedule-item li.headings div {
  color: #fff;
  text-transform: uppercase;
  /*font-family: "Montserrat", sans-serif;*/
	font-family: 'Lato', sans-serif;
}

.schedule.two .schedule-contents .schedule-item li.schedule-details:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.schedule.two .schedule-contents .schedule-item li.schedule-details .block {
  text-align: center;
  padding: 0;
  background: #fff;
  width: 100%;
  transition: .2s ease-in;
}

.schedule.two .schedule-contents .schedule-item li.schedule-details .block div {
  padding-top: 25px;
  padding-bottom: 25px;
  color: #222222;
  /*font-family: "Montserrat", sans-serif;*/
	font-family: 'Lato', sans-serif;
}

.schedule.two .schedule-contents .schedule-item li.schedule-details .block div i {
  font-size: 1.1875em;
  color: #c7c8c9;
}

.schedule.two .schedule-contents .schedule-item li.schedule-details .block div img {
  border-radius: 100%;
}

.schedule.two .schedule-contents .schedule-item li.schedule-details .block div span.time {
  margin-left: 0px;
}

.schedule.two .schedule-contents .schedule-item li.schedule-details .block div span.name {
  margin-left: 0px;
  transition: .2s ease-in;
}

@media (max-width: 480px) {
  .schedule.two .schedule-contents .schedule-item li.schedule-details .block div span.name {
    margin-left: 0;
  }
}

.schedule.two .schedule-contents .schedule-item li.schedule-details .block div:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}

.schedule.two .schedule-contents .schedule-item li.schedule-details .block:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.schedule.two .schedule-contents .schedule-item li.schedule-details .block:hover {
  box-shadow: none;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.schedule.two .schedule-contents .schedule-item li.schedule-details .block:hover span.name {
  color: #ff6600;
}



/* =============================================================================
	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: "Dosis", sans-serif; */
    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
}

