/*------------------------------------------------------------------
[Table of contents]

1. Elements
2. General classes
3. Grid layout / .grid,.grid-item
4. Cards / .card
5. Social icons / .social-icons
6. Tabs / .panel
7. aside
8. loader / .loader
9. plugin and external script
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[8. Elements]
*/
body {
  font-family: 'Source Sans Pro', sans-serif; }

main {
  padding: 0 8px; }

header {
  margin-top: 30px; }

a {
  text-decoration: underline;
  color: #ddd;
  outline: none; }
  a:hover, a:focus, a:active {
    color: dodgerblue;
    outline: none;
    text-decoration: none; }

h1, h2 {
  text-transform: uppercase;
  font-weight: bold; }
  h1 .light, h2 .light {
    font-weight: 300; }

h1 {
  font-size: 48px; }

h2 {
  font-size: 30px;
  line-height: 34px; }

h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: bold; }

h4 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase; }

h5 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #666; }

h6 {
  font-size: 16px;
  font-weight: 600; }
  h6 small {
    font-weight: 400;
    font-size: 14px; }
  h6 .icon {
    margin-top: 5px;
    background-color: transparent;
    color: #e5e5e5;
    width: auto;
    height: auto;
    padding: 0;
    display: block; }

p {
  line-height: 26px;
  font-size: 16px;
  color: #eee; }
  p.small {
    line-height: 21px;
    font-size: 16px; }

p + p {
  margin-top: 20px; }

address {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0; }

/*------------------------------------------------------------------
[8. General classes]
*/
ul.list-unstyled li a {
  font-size: 16px;
  padding: 5px 0;
  text-decoration: none;
  display: block;
  border-bottom: #e5e5e5 1px solid; }

.btn {
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold; }
  .btn.btn-default {
    background-color: #222;
    border: none;
    color: #fff; }
  .btn.btn-primary {
    background-color: dodgerblue;
    border: none; }

.icon {
  width: 34px;
  height: 34px;
  background-color: white;
  padding: 5px;
  border-radius: 100%;
  color: dodgerblue;
  display: block; }
  .icon.dark {
    color: white;
    background-color: #222; }

.alert {
  padding: 8px; }

.dark {
  background-color: #000; }

form h4 {
  margin-bottom: 20px; }

.form-group {
  margin-bottom: 20px;
  position: relative; }
  .form-group label.error {
    position: absolute;
    bottom: -27px;
    right: 0;
    padding: 5px 10px;
    color: red; }

.form-control {
  border: 1px solid #ccc;
  border-radius: 15px;
  background-color: transparent; }
  .form-control:focus {
    border-color: dodgerblue; }

/*------------------------------------------------------------------
[8. grid layout]
*/
.grid {
  width: 100%;
  float: left; }
  .grid .grid-sizer {
    opacity: 0; }
  .grid .grid-item {
    width: 25%;
    height: 285px;
   
    float: left;
    z-index: 10; }
    .grid .grid-item.width-lg-x2 {
      width: 33.25%; }
    .grid .grid-item.width-lg-x3 {
      width: 49.98%; }
    .grid .grid-item.width-lg-x4 {
      width: 66.66%; }
    .grid .grid-item.width-lg-x5 {
      width: 83.3%; }
    .grid .grid-item.width-lg-x6, .grid .grid-item.width-lg-x7, .grid .grid-item.width-lg-x8 {
      width: 100%; }
    .grid .grid-item.height-lg-x2 {
      height: 570px; }
    .grid .grid-item.height-lg-x3 {
      height: 855px; }
    .grid .grid-item.width-md-x1 {
      width: 16.66%; }
    .grid .grid-item.width-md-x2 {
      width: 33.33%; }
    .grid .grid-item.width-md-x3 {
      width: 49.98%; }
    .grid .grid-item.width-md-x4 {
      width: 66.66%; }
    .grid .grid-item.width-md-x5 {
      width: 83.3%; }
    .grid .grid-item.width-md-x6, .grid .grid-item.width-md-x7, .grid .grid-item.width-md-x8 {
      width: 100%; }
    .grid .grid-item.height-md-x1 {
      height: 285px; }
    .grid .grid-item.height-md-x2 {
      height: 570px; }
    .grid .grid-item.height-md-x3 {
      height: 855px; }
    .grid .grid-item.height-x2 {
      height: 570px; }
    .grid .grid-item.height-x3 {
      height: 855px; }
    .grid .grid-item.expand {
      width: 37.5%;
      height: 855px; }
    .grid .grid-item:hover {
      z-index: 100; }
    .grid .grid-item.expandable {
      cursor: pointer; }
    
      .grid .grid-item .card:hover figure::before, .grid .grid-item .card:hover figure::after {
        opacity: 1;
        position: absolute;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        pointer-events: none; }
      .grid .grid-item .card:hover figure::before {
        bottom: 0;
        height: 40%;
        z-index: 10;
        background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent);
        background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent);
        background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent);
        background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent);
        background: linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent); }
      .grid .grid-item .card:hover figure::after {
        top: 0;
        height: 40%;
        background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), transparent);
        background: -o-linear-gradient(rgba(0, 0, 0, 0.6), transparent);
        background: -moz-linear-gradient(rgba(0, 0, 0, 0.6), transparent);
        background: -ms-linear-gradient(rgba(0, 0, 0, 0.6), transparent);
        background: linear-gradient(rgba(0, 0, 0, 0.6), transparent); }
      .grid .grid-item .card:hover figure figcaption {
        margin-top: 0;
        height: 100%;
        opacity: 1; }

.grid-fullwidth .grid-item {
  width: 12.5%; }
  .grid-fullwidth .grid-item.width-lg-x2 {
    width: 25%; }
  .grid-fullwidth .grid-item.width-lg-x3 {
    width: 37.5%; }
  .grid-fullwidth .grid-item.width-lg-x4 {
    width: 50%; }
  .grid-fullwidth .grid-item.width-lg-x5 {
    width: 62.5%; }
  .grid-fullwidth .grid-item.width-lg-x6 {
    width: 75%; }
  .grid-fullwidth .grid-item.width-lg-x7 {
    width: 87.5%; }
  .grid-fullwidth .grid-item.width-lg-x8 {
    width: 100%; }

/*------------------------------------------------------------------
[8. Card style]
*/
.card {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 15px;
  top: 0;
  position: relative; }
  .card > a {
    text-decoration: none; }
  .card a.image-popup {
    display: block;
    width: 100%;
    height: 100%; }
    .card a.image-popup:active, .card a.image-popup:focus {
      border: none;
      outline: none; }
  .card h1, .card h2, .card h3 {
    margin: 0 0 3px 0; }
  .card h3 {
    margin-bottom: 8px; }
  .card figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat; }
    .card figure::before, .card figure::after {
      content: "";
      opacity: 1; }
    .card figure img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      min-width: 100%; }
      .card figure img.top {
        top: 0;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0); }
      .card figure img.bottom {
        top: auto;
        bottom: 0;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0); }
      .card figure img.left {
        left: 0;
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%); }
      .card figure img.right {
        left: auto;
        right: 0;
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%); }
      .card figure img.left.top, .card figure img.left.bottom, .card figure img.right.top, .card figure img.right.bottom {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0); }
    .card figure figcaption {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 130%;
      margin-top: -15%;
      z-index: 1000;
      opacity: 0;
      pointer-events: none; }
      .card figure figcaption h6 {
        position: absolute;
        top: 16px;
        left: 16px;
        color: #e5e5e5;
        margin: 0; }
        .card figure figcaption h6 small {
          color: #e5e5e5; }
      .card figure figcaption .category {
        display: block;
        position: absolute;
        bottom: 16px;
        left: 16px;
        color: #e5e5e5; }
        .card figure figcaption .category a {
          color: #e5e5e5;
          font-size: 14px;
          font-weight: 600;
          text-transform: uppercase;
          pointer-events: auto; }
  .card section {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-color: dodgerblue;
    position: relative;
    padding: 20px 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px; }
    .card section.text-white {
      color: #f5f5f5; }
      .card section.text-white p {
        color: #f5f5f5;
        font-weight: 300; }
    .card section.gradient-bottom::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 40%;
      background-color: rgba(0, 0, 0, 0.3);
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent);
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent);
      background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent);
      background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent);
      background: linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent); }
    .card section.gradient-top::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 40%;
      background-color: rgba(0, 0, 0, 0.3);
      background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), transparent);
      background: -o-linear-gradient(rgba(0, 0, 0, 0.6), transparent);
      background: -moz-linear-gradient(rgba(0, 0, 0, 0.6), transparent);
      background: -ms-linear-gradient(rgba(0, 0, 0, 0.6), transparent);
      background: linear-gradient(rgba(0, 0, 0, 0.6), transparent); }
    .card section.page {
      background-color: #000;
      color: #eee; }
      .card section.page .icon {
        color: #fff;
        background: #222; }
    .card section.blue-bg {
      color: #fff; }
      .card section.blue-bg hr {
        border-top-color: rgba(255, 255, 255, 0.2); }
    .card section article {
      width: 100%;
      padding: 20px 15px; }
      .card section article.expandable-paragraph p {
        position: relative;
        margin-bottom: -52px;
        opacity: 0; }
      .card section article p {
        margin-bottom: 0; }
      .card section article .time {
        font-weight: 400;
        text-transform: uppercase;
        font-size: 12px;
        line-height: 26px;
        padding-bottom: 15px; }
    .card section .vertical-align-top,
    .card section .vertical-align-bottom,
    .card section .vertical-align-center {
      position: absolute;
      left: 0;
      padding: 20px 15px; }
    .card section .vertical-align-top {
      top: 0; }
    .card section .vertical-align-bottom {
      bottom: 0; }
    .card section .vertical-align-center {
      top: 50%;
      left: 0;
      transform: translate(0, -50%);
      -webkit-transform: translate(0, -50%);
      -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -o-transform: translate(0, -50%); }
    .card section:hover article.expandable-paragraph p {
      margin-bottom: 0;
      opacity: 1; }

/*------------------------------------------------------------------
[8. Social icons]
*/
ul.social-icons li a {
  display: inline-block;
  width: 29px;
  height: 29px;
  border-radius: 100%;
  border: #333 1px solid;
  font-size: 16px;
  position: relative;
  padding: 0 4px; }
  ul.social-icons li a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%); }
  ul.social-icons li a:hover {
    border-color: dodgerblue;
    color: dodgerblue; }

/*------------------------------------------------------------------
[8. Tabs]
*/
.panel {
  background-color: transparent;
  box-shadow: none; }

.panel-default {
  border-color: transparent; }
  .panel-default > .panel-heading {
    color: dodgerblue;
    background-color: transparent; }
    .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: transparent; }
  .panel-default .panel-title {
    font-weight: 800;
    font-size: 18px; }
    .panel-default .panel-title a {
      text-decoration: none; }

.panel-blue > .panel-heading {
  color: #fff; }
.panel-blue .panel-title {
  font-weight: 600; }

/*------------------------------------------------------------------
[8. aside]
*/
aside {
  position: relative; }
  aside section.page {
    padding: 16px; }

.search form {
  width: 100%;
  background-color: dodgerblue;
  color: #fff;
  border-radius: 15px;
  height: 30px;
  margin-top: 0;
  margin-bottom: 25px;
  float: left !important;
  padding-top: 0; }
  .search form input {
    height: 30px;
    border: none;
    background-color: transparent;
    display: block;
    float: left;
    color: #fff;
    padding-left: 10px;
    width: 100%; }
    .search form input::-webkit-input-placeholder {
      /* Chrome */
      color: #e5e5e5; }
    .search form input:-ms-input-placeholder {
      /* IE 10+ */
      color: #e5e5e5; }
    .search form input::-moz-placeholder {
      /* Firefox 19+ */
      color: #e5e5e5;
      opacity: 1; }
    .search form input:-moz-placeholder {
      /* Firefox 4 - 18 */
      color: #e5e5e5;
      opacity: 1; }
    .search form input:focus {
      border: none;
      box-shadow: none;
      -webkit-box-shadow: none;
      outline: none; }
  .search form button, .search form input[type=submit] {
    float: right;
    height: 30px;
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    top: -28px; }

/*------------------------------------------------------------------
[8. loader]
*/
.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1000; }
  .loader-mask .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: dodgerblue;
    border-radius: 100%; }

/*------------------------------------------------------------------
[8. plugin and external script style override]
*/
/* photoswipe plugin */
.pswp img {
  border-radius: 10px; }

/* google map */
.gm-style {
  border-radius: 10px; }

/*# sourceMappingURL=elements.css.map */

figure img{
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: filter 600ms ease;
    -webkit-transition: -webkit-filter 600ms ease;
}

figure img:hover{
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

.logoc img{
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: filter 600ms ease;
    -webkit-transition: -webkit-filter 600ms ease;
}

.logoc img:hover{
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}


