/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.about-content a {
  color: #505050;
  background: #FFFFFF;
  background: -moz-linear-gradient(top, #FFFFFF 0%, #FFFFFF 74%, #FFF1D7 75%, #FFF1D7 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #FFFFFF), color-stop(74%, #FFFFFF), color-stop(75%, #FFF1D7), color-stop(100%, #FFF1D7));
  background: -webkit-linear-gradient(top, #FFFFFF 0%, #FFFFFF 74%, #FFF1D7 75%, #FFF1D7 100%);
  background: -o-linear-gradient(top, #FFFFFF 0%, #FFFFFF 74%, #FFF1D7 75%, #FFF1D7 100%);
  background: -ms-linear-gradient(top, #FFFFFF 0%, #FFFFFF 74%, #FFF1D7 75%, #FFF1D7 100%);
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 74%, #FFF1D7 75%, #FFF1D7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@top', endColorstr='@bottom', GradientType=0);
}
.about-content p {
  text-align: justify;
  text-align-last: center;
}
h3 {
  width: 60%;
  margin: 20px auto;
  font-size: 18px;
}
.carousel {
  margin-top: 40px;
}
.our-year {
  margin-top: 50px;
}
.our-year ol {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  list-style-type: none;
  margin-left: 0;
  padding-right: 0;
}
.our-year ol li {
  counter-increment: step-counter;
  width: 50%;
  height: 15px;
  margin: 30px 0;
  min-width: 250px;
  padding-right: 5px;
}
.our-year ol li:before {
  content: counter(step-counter);
  font-size: 120%;
  font-style: italic;
  margin-right: 5px;
  color: #386282;
}
.our-year h2 {
  position: relative;
}
.our-year h2 .double-line {
  position: absolute;
  top: 5px;
  width: 100%;
}
.our-year h2 .double-line hr.dl {
  border-top: 1px solid #CDCDCD;
  margin: 0;
  position: absolute;
}
.our-year h2 .double-line hr.dl.dl-left {
  left: 0;
}
.our-year h2 .double-line hr.dl.dl-right {
  right: 0;
}
.our-year h2 .double-line hr.dl.dl-out {
  width: 14%;
  top: 5px;
}
.our-year h2 .double-line hr.dl.dl-in {
  width: 12%;
}
@media only screen and (max-width: 768px) {
  .our-year h2 .double-line {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .our-year h2 .double-line hr.dl.dl-out {
    width: 22%;
  }
  .our-year h2 .double-line hr.dl.dl-in {
    width: 20%;
  }
}
@media only screen and (min-width: 1200px) {
  .our-year h2 .double-line hr.dl.dl-out {
    width: 25%;
  }
  .our-year h2 .double-line hr.dl.dl-in {
    width: 23%;
  }
}
#favorite-things {
  margin-bottom: 50px;
}
#favorite-things h2 {
  margin-bottom: 5px;
}
#favorite-things h3 {
  margin-top: 0;
}
#favorite-things .favorite {
  overflow: hidden;
  height: 200px;
  position: relative;
  text-align: center;
  margin-bottom: 8px;
}
#favorite-things .favorite img {
  width: 100%;
}
#favorite-things .favorite div {
  position: absolute;
  display: block;
  height: 200px;
  z-index: 20;
  margin-right: 15px;
  opacity: 0;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0px 0px #000000;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#favorite-things .favorite div .header {
  font-size: 22px;
  display: block;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#favorite-things .favorite div hr {
  display: block;
  margin-left: 20%;
  width: 80%;
  height: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
}
#favorite-things .favorite div .subtitle {
  font-size: 20px;
  display: block;
  padding: 0 10px;
  letter-spacing: 0.5px;
}
#favorite-things .favorite:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
}
#favorite-things .favorite:hover img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(40%);
  -webkit-filter: brightness(40%);
  -moz-filter: brightness(40%);
  -o-filter: brightness(40%);
  -ms-filter: brightness(40%);
}
#favorite-things .favorite:hover div {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 992px) {
  #favorite-things .favorite div {
    opacity: 1;
  }
  #favorite-things .favorite img {
    filter: brightness(40%);
    -webkit-filter: brightness(40%);
    -moz-filter: brightness(40%);
    -o-filter: brightness(40%);
    -ms-filter: brightness(40%);
  }
}

/*# sourceMappingURL=maps/about.css.map */
