
/*-------- 1.3 Forms             --------*/
.input-custom {
  appearance: none;
  margin-bottom: 4px;
  padding: 15px 15px 15px;
  font-size: 18px;
  line-height: 24px;
  height: 54px;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 0;
  color: #2b2b2b;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.input-custom:hover,
.input-custom:focus,
.input-custom.focus {
  outline: none;
  border-color: #fede00;
}
.input-custom.input-full {
  width: 100%;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background: #fff;
}
.textarea-custom {
  appearance: none;
  margin-bottom: 4px;
  padding: 15px 15px 15px;
  font-size: 18px;
  line-height: 24px;
  height: 54px;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 0;
  color: #2b2b2b;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  min-height: 193px;
  height: auto;
}
.textarea-custom:hover,
.textarea-custom:focus,
.textarea-custom.focus {
  outline: none;
  border-color: #fede00;
}
.textarea-custom.input-full {
  width: 100%;
}
.input-wrapper {
  position: relative;
  margin-bottom: 11px;
}
.placeholder {
  font-size: 16px;
  line-height: 20px;
  color: #989898;
}
input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 20px;
  color: #989898;
}
input::-moz-placeholder {
  font-size: 16px;
  line-height: 20px;
  color: #989898;
}
input:-ms-input-placeholder {
  font-size: 16px;
  line-height: 20px;
  color: #989898;
}
input:-moz-placeholder {
  font-size: 16px;
  line-height: 20px;
  color: #989898;
}
.required {
  color: red;
}
input.input-custom,
textarea.textarea-custom,
.select-wrapper select.input-custom {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select-wrapper {
  position: relative;
}
.select-wrapper:before {
  content: '\25BE';
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  width: 52px;
  height: 52px;
  font-size: 14px;
  line-height: 54px;
  pointer-events: none;
  color: #2b2b2b;
  text-align: center;
  background-color: #fff;
}
.select-wrapper select {
  padding-right: 40px;
  width: 100%;
  background-color: #fff;
  color: #2b2b2b;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
/*for IE10*/
select::-ms-expand {
  display: none;
}
.contact-form {
  margin-bottom: 15px;
  margin-top: 0;
}
label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #000;
}
form label.error {
  display: block;
  color: #ff0000;
  font-size: 14px !important;
  opacity: 1 !important;
}
.successform,
.errorform {
  display: none;
  height: 70px;
}
.successform span,
.errorform span {
  display: block;
}
.successform span p,
.errorform span p {
  margin-top: 15px;
}
.successform span p {
  color: #2990d6;
}
.errorform span p {
  color: #c0392b;
}
.form-table input::-webkit-input-placeholder {
  color: #000;
}
.form-table input::-moz-placeholder {
  color: #000;
}
.form-table input:-ms-input-placeholder {
  color: #000;
}
.form-table input:-moz-placeholder {
  color: #000;
}
@media (min-width: 992px) {
  .form-table {
    display: table;
    width: 100%;
    table-layout: fixed;
    padding-top: 5px;
  }
  .form-table .form-group-cell {
    display: table-cell;
    vertical-align: top;
    padding: 0 10px;
  }
  .form-table .form-group-cell.sm {
    width: 125px;
  }
  .form-table .form-group-cell.action {
    width: 190px;
  }
  .form-table .form-group-cell .btn {
    height: 55px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .form-table .form-group-cell {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
    width: 50%;
    margin-right: -4px;
  }
  .form-table .form-group-cell.sm {
    width: 125px;
  }
  .form-table .form-group-cell.action {
    width: 190px;
  }
  .form-table .form-group-cell .btn {
    height: 55px;
  }
}
@media (max-width: 1189px) {
  .form-table {
    max-width: 460px;
    margin: 0 auto;
  }
}
/*-------- 1.4 Buttons           --------*/
button:focus,
.btn:focus,
button:active:focus,
.btn:active:focus,
button.active:focus,
.btn.active:focus,
button.focus,
.btn.focus,
button:active.focus,
.btn:active.focus,
button.active.focus,
.btn.active.focus {
  outline: 0;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
button:hover,
.btn:hover,
button:focus,
.btn:focus,
button.focus,
.btn.focus {
  outline: 0;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
button:active,
.btn:active,
button.active,
.btn.active {
  outline: 0;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
button.pull-right,
.btn.pull-right {
  margin-right: 10px;
}
.btn {
  position: relative;
  padding: 20px 25px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  height: auto;
  background-color: #1E69B8;
  color: #ffffff;
  border-radius: 0;
  border: 0;
  vertical-align: top;
  -webkit-transition: all 1.2s .6s ease, background-color .4s ease-in-out, color .4s ease;
  -moz-transition: all 1.2s .6s ease, background-color .4s ease-in-out, color .4s ease;
  -ms-transition: all 1.2s .6s ease, background-color .4s ease-in-out, color .4s ease;
  -o-transition: all 1.2s .6s ease, background-color .4s ease-in-out, color .4s ease;
  text-decoration: none;
  text-transform: uppercase;
  min-width: 195px;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}
.btn:hover,
.btn.active,
.btn:active,
.btn.focus,
.btn:focus {
  background: #fede00;
  color: #2c2c2c;
}
.btn:before,
.btn:after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 100%;
  top: 0;
  width: 150%;
  height: 100%;
  background-color: #fede00;
  -webkit-transform: skew(30deg) translate3d(0, 0, 0);
  -moz-transform: skew(30deg) translate3d(0, 0, 0);
  -ms-transform: skew(30deg) translate3d(0, 0, 0);
  -o-transform: skew(30deg) translate3d(0, 0, 0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.btn:before {
  left: auto;
  right: 100%;
  -webkit-transform: skew(-30deg) translate3d(0, 0, 0);
  -moz-transform: skew(-30deg) translate3d(0, 0, 0);
  -ms-transform: skew(-30deg) translate3d(0, 0, 0);
  -o-transform: skew(-30deg) translate3d(0, 0, 0);
}
.btn:hover {
  background-color: #2c2c2c;
}
.btn:hover:before {
  -webkit-transform: skew(-30deg) translate3d(70%, 0, 0);
  -moz-transform: skew(-30deg) translate3d(70%, 0, 0);
  -ms-transform: skew(-30deg) translate3d(70%, 0, 0);
  -o-transform: skew(-30deg) translate3d(70%, 0, 0);
  opacity: 1;
}
.btn:hover:after {
  -webkit-transform: skew(30deg) translate3d(-70%, 0, 0);
  -moz-transform: skew(30deg) translate3d(-70%, 0, 0);
  -ms-transform: skew(30deg) translate3d(-70%, 0, 0);
  -o-transform: skew(30deg) translate3d(-70%, 0, 0);
  opacity: 1;
}
.btn span {
  display: block;
  position: relative;
  z-index: 1;
}
.btn.btn-border {
  border: 2px solid #fede00;
  background: transparent;
}
.btn.btn-lg {
  height: auto;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  padding: 20px 35px;
}
@media (max-width: 1189px) {
  .btn.btn-lg {
    font-size: 16px;
  }
}
.btn.btn-sm {
  font-size: 14px;
  line-height: 26px;
  font-weight: bold;
  padding: 10px 15px;
  text-transform: none;
  min-width: 0;
}
.btn.btn-xs {
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  padding: 10px 15px;
  min-width: 0;
}
.btn.btn-full {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.btn-invert {
  background: #fede00;
  color: #2c2c2c;
}
.btn-invert:hover,
.btn-invert.active,
.btn-invert:active,
.btn-invert.focus,
.btn-invert:focus {
  background: #2c2c2c !important;
  color: #ffffff !important;
}
.btn-invert:before,
.btn-invert:after {
  background-color: #2c2c2c !important;
}
.btn-invert-alt {
  background: #2c2c2c;
}
.btn-invert-alt:hover,
.btn-invert-alt.active,
.btn-invert-alt:active,
.btn-invert-alt.focus,
.btn-invert-alt:focus {
  background-color: #fff;
  color: #2c2c2c;
}
.btn-white {
  background: #fff;
  color: #2c2c2c;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.btn-white:hover,
.btn-white.active,
.btn-white:active,
.btn-white.focus,
.btn-white:focus {
  background-color: #2c2c2c;
  color: #fff;
}
.btn-inline .btn {
  margin: 0 24px 10px 0;
}
.text-center .btn-inline .btn {
  margin: 0 12px 10px;
}
/*-------- 1.5 Social Icons      --------*/
.social-links ul {
  margin: 0;
  padding: 0;
}
.social-links ul li {
  display: inline-block;
  margin: 0 7px 5px 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .social-links ul li {
    margin: 0 4px 3px 0;
  }
}
.social-links ul li:last-child {
  margin-right: 0;
}
.social-links ul li a {
  font-size: 45px;
  color: #fede00;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .social-links ul li a {
    font-size: 36px;
  }
}
.social-links ul li a:hover {
  color: #2c2c2c;
}
.link a {
  font-size: 34px;
  line-height: 1em;
  color: #fede00;
  text-decoration: none;
  padding: 0 4px 0 0;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.link a:hover {
  color: #2c2c2c;
}
a.icon-facebook-logo:hover {
  color: #3b5998 !important;
}
a.icon-twitter-logo:hover {
  color: #55acee !important;
}
a.icon-google-plus-logo:hover {
  color: #dd4b39 !important;
}
a.icon-linkedin-logo:hover {
  color: #4875B4 !important;
}
a.icon-pinterest-logo:hover {
  color: #C92228 !important;
}
a.icon-instagram-logo:hover {
  color: #4E433C !important;
}
/*-------- 1.6 Tags              --------*/
.tag {
  display: block;
  background-color: #f1f1f1;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 25px;
  padding: 0 10px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.tag:hover {
  background-color: #fede00;
}
.tags-list {
  position: relative;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.tags-list li {
  display: inline-block;
  padding: 0;
  margin-bottom: 7px;
  margin-right: 5px;
}
.tags-list li a {
  display: block;
  background-color: #f1f1f1;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 25px;
  padding: 0 10px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.tags-list li a:hover {
  background-color: #fede00;
}
/*-------- 1.7 Calendar          --------*/
.calendar__header {
  font-size: 16px;
  font-style: italic;
  padding: 0 0 18px;
}
.calendar__footer {
  font-size: 16px;
  font-style: italic;
  padding: 10px 0 0;
}
.calendar__footer a {
  text-decoration: none;
}
.calendar__footer a:hover {
  color: #fede00;
}
.calendar table {
  background: #fff;
  border-collapse: collapse;
  color: #2c2c2c;
  font-size: 15px;
  width: 100%;
  max-width: 350px;
  border-spacing: 1px;
  border-collapse: separate;
}
.calendar th,
.calendar td {
  border: 1px solid #eee;
  color: #484848;
  cursor: pointer;
  line-height: 36px;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.calendar th:hover,
.calendar td:hover {
  background-color: #f5f5f5;
}
.calendar th {
  background-color: #f5f5f5;
}
.calendar tr:first-child td {
  color: #2c2c2c;
  font-weight: 700;
  padding-bottom: 10px;
}
.calendar .selected,
.calendar .selected:hover {
  background-color: #fede00;
  color: #2c2c2c;
}
/*-------- 1.8 Nav Pills         --------*/
.tab-content {
  position: relative;
}
.tab-content > .tab-pane {
  display: block;
  position: absolute;
  width: calc(100% + 30px);
  top: -10000px;
}
.tab-content > .active {
  position: relative;
  top: 0;
}
.nav-pills {
  margin: 70px 0 47px;
  text-align: center;
}
.nav-pills > li {
  display: inline-block;
  float: none;
  margin: 0 3px 10px 3px;
}
.nav-pills > li > a {
  display: block;
  border-radius: 0;
  padding: 0 18px;
  min-width: 50px;
  border: 1px solid #eaeaea;
  font-size: 14px;
  line-height: 53px;
  color: #383838;
  text-decoration: none;
  text-align: center;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
  background: #fede00;
  border-color: #fede00;
  color: #383838;
}

