/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/*------------------------------------*\
  PRELOADER
\*------------------------------------*/
.slider-preloader {
  margin: 0;
  width: 100% !important;
  position: relative;
  overflow: hidden;
  clear: both;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .slider-preloader {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  .slider-preloader {
    min-height: 440px;
  }
}
@media (min-width: 1200px) {
  .slider-preloader {
    min-height: 480px;
  }
}
.preloader-slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
}
.preloader-slider .preloader-gif {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #007B13;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.owl-carousel .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.owl-carousel .owl-nav [class*='owl-'] {
  width: 25px;
  height: 25px;
  line-height: 25px;
  position: absolute;
  top: 15px;
  font-size: 20px;
  padding: 0;
  margin: 15px 0;
  background: #fff;
  color: #DDDDDD;
}
.owl-carousel .owl-nav [class*='owl-'] span {
  line-height: 25px;
}
.owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.owl-carousel .owl-nav .owl-next {
  right: 0;
}
.owl-carousel .owl-nav [class*='owl-']:hover {
  background: #fff;
  color: #007B13;
  text-decoration: none;
}
.owl-carousel .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-carousel .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  display: none;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: #007B13;
}
.bg-cover {
  width: 100%;
  float: left;
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cta-header {
  height: auto;
  min-height: 230px;
  width: 100% !important;
  color: #fff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-header {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  .cta-header {
    min-height: 440px;
  }
}
@media (min-width: 1200px) {
  .cta-header {
    min-height: 480px;
  }
}
.cta-header .cover {
  width: 100%;
  float: left;
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cta-header .container {
  margin-top: auto;
  margin-bottom: auto;
}
.cta-header .cta-content {
  position: relative;
  margin: 30px auto;
}
.cta-header .cta-title {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1;
  font-size: 28px !important;
  font-weight: bold;
  outline: none;
}
@media (min-width: 768px) {
  .cta-header .cta-title {
    font-size: 40px !important;
  }
}
@media (min-width: 992px) {
  .cta-header .cta-title {
    font-size: 54px !important;
  }
}
@media (min-width: 1200px) {
  .cta-header .cta-title {
    font-size: 62px !important;
  }
}
.cta-header .cta- {
  color: #fff;
  /*padding: 25px 30px;*/
  /*margin: 30px 15px 15px 0;*/
  padding: 25px 0;
  margin: 30px 15px 0 0;
  position: absolute;
  top: 0;
  max-width: 640px;
  outline: none;
}
@media (min-width: 768px) {
  .cta-header .cta- {
    padding: 25px 0;
    margin: 30px 0;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .cta-header .cta- {
    padding: 80px 0;
    bottom: auto;
  }
}
@media (min-width: 1200px) {
  .cta-header .cta- {
    padding: 80px 0;
    bottom: auto;
  }
}
.cta-header .cta- h1,
.cta-header .cta- .h1 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1;
  font-size: 28px !important;
  font-weight: bold;
  outline: none;
}
@media (min-width: 768px) {
  .cta-header .cta- h1,
  .cta-header .cta- .h1 {
    font-size: 40px !important;
  }
}
@media (min-width: 992px) {
  .cta-header .cta- h1,
  .cta-header .cta- .h1 {
    font-size: 54px !important;
  }
}
@media (min-width: 1200px) {
  .cta-header .cta- h1,
  .cta-header .cta- .h1 {
    font-size: 62px !important;
  }
}
.cta-header .cta- h2,
.cta-header .cta- .h2 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1;
  font-size: 28px !important;
  font-weight: bold;
  outline: none;
}
@media (min-width: 768px) {
  .cta-header .cta- h2,
  .cta-header .cta- .h2 {
    font-size: 40px !important;
  }
}
@media (min-width: 992px) {
  .cta-header .cta- h2,
  .cta-header .cta- .h2 {
    font-size: 54px !important;
  }
}
@media (min-width: 1200px) {
  .cta-header .cta- h2,
  .cta-header .cta- .h2 {
    font-size: 62px !important;
  }
}
.cta-header .cta- h3,
.cta-header .cta- .h3 {
  margin-top: 0;
  line-height: 1;
  font-size: 24px !important;
  font-weight: bold;
  outline: none;
}
@media (min-width: 768px) {
  .cta-header .cta- h3,
  .cta-header .cta- .h3 {
    font-size: 30px !important;
  }
}
@media (min-width: 992px) {
  .cta-header .cta- h3,
  .cta-header .cta- .h3 {
    font-size: 40px !important;
  }
}
@media (min-width: 1200px) {
  .cta-header .cta- h3,
  .cta-header .cta- .h3 {
    font-size: 45px !important;
  }
}
.cta-header .cta- p {
  font-size: 14px;
  line-height: 1.2;
  outline: none;
}
@media (min-width: 768px) {
  .cta-header .cta- p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .cta-header .cta- p {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .cta-header .cta- p {
    font-size: 24px;
  }
}
.cta-header .cta- a,
.cta-header .cta- .btn {
  background: #007B13 !important;
  color: #fff !important;
  display: inline-block;
  padding: 10px 20px 10px 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin: 15px 0 0 0;
  font-size: 16px;
  line-height: 1;
  border-radius: 0;
  border: 0;
  outline: none;
}
@media (min-width: 768px) {
  .cta-header .cta- a,
  .cta-header .cta- .btn {
    font-size: 22px;
  }
}
.cta-header .cta- a:hover,
.cta-header .cta- .btn:hover,
.cta-header .cta- a:focus,
.cta-header .cta- .btn:focus {
  background: #fff !important;
  color: #007B13 !important;
}
.slider-h {
  margin: 0 0 30px 0;
  width: 100% !important;
  float: left;
  position: relative;
  overflow: hidden;
  clear: both;
}
.slider-h .slide {
  height: 0;
  min-height: 230px;
  width: 100% !important;
  float: left;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 768px) {
  .slider-h .slide {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  .slider-h .slide {
    min-height: 440px;
  }
}
@media (min-width: 1200px) {
  .slider-h .slide {
    min-height: 480px;
  }
}
.slider-h .slide .cover {
  width: 100%;
  float: left;
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.slider-h .slide .cta {
  color: #fff;
  /*padding: 25px 30px;*/
  /*margin: 30px 15px 15px 0;*/
  padding: 25px 0;
  margin: 30px 15px 0 0;
  position: absolute;
  top: 0;
  max-width: 640px;
  outline: none;
}
@media (min-width: 768px) {
  .slider-h .slide .cta {
    padding: 25px 0;
    margin: 30px 0;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .slider-h .slide .cta {
    padding: 80px 0;
    bottom: auto;
  }
}
@media (min-width: 1200px) {
  .slider-h .slide .cta {
    padding: 80px 0;
    bottom: auto;
  }
}
.slider-h .slide .cta h1,
.slider-h .slide .cta .h1 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1;
  font-size: 28px !important;
  font-weight: bold;
  outline: none;
}
@media (min-width: 768px) {
  .slider-h .slide .cta h1,
  .slider-h .slide .cta .h1 {
    font-size: 40px !important;
  }
}
@media (min-width: 992px) {
  .slider-h .slide .cta h1,
  .slider-h .slide .cta .h1 {
    font-size: 54px !important;
  }
}
@media (min-width: 1200px) {
  .slider-h .slide .cta h1,
  .slider-h .slide .cta .h1 {
    font-size: 62px !important;
  }
}
.slider-h .slide .cta h2,
.slider-h .slide .cta .h2 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1;
  font-size: 28px !important;
  font-weight: bold;
  outline: none;
}
@media (min-width: 768px) {
  .slider-h .slide .cta h2,
  .slider-h .slide .cta .h2 {
    font-size: 40px !important;
  }
}
@media (min-width: 992px) {
  .slider-h .slide .cta h2,
  .slider-h .slide .cta .h2 {
    font-size: 54px !important;
  }
}
@media (min-width: 1200px) {
  .slider-h .slide .cta h2,
  .slider-h .slide .cta .h2 {
    font-size: 62px !important;
  }
}
.slider-h .slide .cta h3,
.slider-h .slide .cta .h3 {
  margin-top: 0;
  line-height: 1;
  font-size: 24px !important;
  font-weight: bold;
  outline: none;
}
@media (min-width: 768px) {
  .slider-h .slide .cta h3,
  .slider-h .slide .cta .h3 {
    font-size: 30px !important;
  }
}
@media (min-width: 992px) {
  .slider-h .slide .cta h3,
  .slider-h .slide .cta .h3 {
    font-size: 40px !important;
  }
}
@media (min-width: 1200px) {
  .slider-h .slide .cta h3,
  .slider-h .slide .cta .h3 {
    font-size: 45px !important;
  }
}
.slider-h .slide .cta p {
  font-size: 14px;
  line-height: 1.2;
  outline: none;
}
@media (min-width: 768px) {
  .slider-h .slide .cta p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .slider-h .slide .cta p {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .slider-h .slide .cta p {
    font-size: 24px;
  }
}
.slider-h .slide .cta a,
.slider-h .slide .cta .btn {
  background: #007B13 !important;
  color: #fff !important;
  display: inline-block;
  padding: 10px 20px 10px 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin: 15px 0 0 0;
  font-size: 16px;
  line-height: 1;
  border-radius: 0;
  border: 0;
  outline: none;
}
@media (min-width: 768px) {
  .slider-h .slide .cta a,
  .slider-h .slide .cta .btn {
    font-size: 22px;
  }
}
.slider-h .slide .cta a:hover,
.slider-h .slide .cta .btn:hover,
.slider-h .slide .cta a:focus,
.slider-h .slide .cta .btn:focus {
  background: #fff !important;
  color: #007B13 !important;
}
.slider-h .owl-dots {
  text-align: center;
  z-index: 100 !important;
  margin: 0 !important;
  display: inline-block;
  position: absolute !important;
  bottom: 5px;
  right: 0;
  left: 0;
  /*transform:translate(50%, 0);*/
}
.slider-h .owl-dots .owl-dot span {
  background: #fff;
}
@media (min-width: 768px) {
  .slider-h .owl-dots .owl-dot span {
    background: #fff;
  }
}
.slider-h .owl-dots .owl-dot.active span,
.slider-h .owl-dots .owl-dot:hover span {
  background: #007B13;
}
/* slider  */
.slider-h .slide .cta {
  flex-direction: column;
  align-items: flex-start;
}
.slider-h .owl-dots .owl-dot {
  padding: 0;
  border: 0;
  background: transparent;
}
.slider-h .slide .cta a,
.slider-h .slide .cta .btn {
  font-weight: bold;
}
.owl-carousel .owl-dots {
  display: block;
}
.owl-carousel .owl-dots .owl-dot {
  padding: 0;
  border: 0;
  background: transparent;
}
.owl-carousel .owl-nav [class*='owl-'] {
  background: transparent;
  color: #007B13;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -15px;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  font-size: 40px !important;
  top: 50%;
  margin: -40px 0 0 0;
}
.slide-flex .owl-stage {
  display: flex;
}
.slide-flex .owl-stage .owl-item {
  display: flex;
}
/* slider colors */
.carousel {
  background-color: #eee;
}
.carousel .peu-de-foto {
  background-color: rgba(0, 123, 19, 0.75);
}
.carousel .carousel-caption {
  /*background-color: @uab-transparent;*/
  color: #fff;
}
.carousel .carousel-caption .text {
  color: #fff;
}
.carousel .carousel-caption .text a {
  color: #fff;
}
.carousel .carousel-indicators li {
  background-color: #aeb3b4;
}
.carousel .carousel-indicators li.active {
  background-color: #007B13;
}
.carousel .slide-nav .ico {
  color: rgba(0, 123, 19, 0.75);
}
.carousel .slide-nav .ico:hover,
.carousel .slide-nav .icofocus {
  color: #007B13;
}
#slide-alumnes .text span {
  color: #007B13;
}
#visita-virtual {
  background-color: #fff;
}
#slide-virtual {
  padding-bottom: 0;
  background-color: #fff;
}
#slide-virtual .light-color,
#slide-virtual .light-color a {
  color: #f7f7f7;
  text-decoration: none;
}
#slide-virtual .blocky h1,
#slide-virtual .blocky h2 {
  background-color: rgba(0, 123, 19, 0.75);
}
#slide-virtual .blocky h1 span,
#slide-virtual .blocky h2 span {
  color: #fff;
}
#slide-virtual .slide-nav .ico {
  color: #007B13;
}
#slide-virtual .slide-nav .ico:hover,
#slide-virtual .slide-nav .ico:focus {
  color: #007B13;
}
#slide-virtual .slide-nav .ico.left {
  background: #007B13;
}
#slide-virtual .slide-nav .ico.left:before {
  color: #fff;
}
#slide-virtual .slide-nav .ico.left:after {
  color: #fff;
}
#slide-virtual .slide-nav .ico.right {
  background: #007B13;
}
#slide-virtual .slide-nav .ico.right:before {
  color: #fff;
}
/* slides */
#slide .carousel-caption {
  background-color: rgba(0, 123, 19, 0.75);
  color: #fff;
}
#slide .carousel-caption .text {
  color: #fff;
}
#slide .carousel-caption .text a {
  color: #fff;
}
#slide .carousel-caption .text a:hover,
#slide .carousel-caption .text a:focus {
  text-decoration: none;
}
#slide .carousel-caption .arrow {
  color: rgba(0, 123, 19, 0.75);
}
#slide .carousel .item {
  background-color: #777;
}
#slide .carousel-indicators li {
  background-color: #aeb3b4;
}
#slide .carousel-indicators li.active {
  background-color: #007B13;
}
#slide .slide-nav .ico.left {
  background: #007B13;
}
#slide .slide-nav .ico.left:before {
  color: #fff;
}
#slide .slide-nav .ico.left:after {
  background-color: #fff;
}
#slide .slide-nav .ico.right {
  background: #007B13;
}
#slide .slide-nav .ico.right:before {
  color: #fff;
}
#slide .slide-nav .ico {
  color: #007B13;
}
#slide .slide-nav .ico:hover {
  color: #007B13;
}
/* Slide interior */
#slide-interior .slide-nav .ico {
  color: #007B13;
}
#slide-interior .slide-nav .ico:hover {
  color: #007B13;
}
.carousel-nav .ico {
  color: #007B13;
}
.carousel-nav .ico:hover {
  color: #007B13;
}
@media (min-width: 992px) {
  /* Slide */
  #slide .carousel-caption {
    background-color: rgba(0, 123, 19, 0.75);
  }
}
a {
  color: #007B13;
}
a:hover,
a:focus {
  color: #03420d;
}
.block-title,
.block-title a {
  background-color: #007B13;
  color: #fff;
}
.block-title:hover,
.block-title a:hover,
.block-title:focus,
.block-title a:focus {
  background-color: #03420d;
}
/* buttons */
/* img-button */
a.img-button {
  background: #f0f1f3;
}
a.img-button:hover,
a.img-button:focus {
  background: #007B13;
  text-decoration: none;
}
a.img-button img {
  color: #fff;
}
a.img-button span.e-text {
  color: #007B13;
}
a.img-button:hover span.e-text,
a.img-button:focus span.e-text {
  color: #fff;
}
/* e-button */
a.e-button {
  background: #f0f1f3;
}
a.e-button:hover {
  background: #007B13;
  text-decoration: none;
}
a.e-button .img-bg {
  background: #007B13;
  color: #fff;
}
a.e-button img {
  background: #007B13;
}
a.e-button:hover img {
  opacity: 1;
}
a.e-button span.e-text {
  color: #007B13;
}
a.e-button:hover span.e-text {
  color: #fff !important;
}
/* img-seus */
a.img-seus .img-color {
  background-color: #007B13;
}
/* promo button */
.promo-button {
  background-color: #007B13;
  color: #fff;
}
.promo-button div span {
  background-color: #007B13;
}
.promo-button:hover,
.promo-button:focus {
  color: #f0f1f3;
}
.promo-button:hover div span,
.promo-button:focus div span {
  background-color: rgba(0, 123, 19, 0.75);
}
/* fitxes */
.fitxa {
  border: 1px solid #f0f1f3;
}
.fitxa .title {
  background-color: #f0f1f3;
  color: #111;
}
.fitxa .title a {
  color: #000;
}
.fitxa .title a:hover,
.fitxa .title a:focus {
  color: #007B13;
}
.fitxa .title a:hover .more:before,
.fitxa .title a:focus .more:before {
  color: #007B13;
}
.fitxa .title .more:before {
  color: #DADADA;
}
.fitxa-llistat li {
  border-bottom: 1px solid #f0f1f3;
}
.fitxa-llistat li .more {
  color: #DADADA;
}
.fitxa-llistat a {
  color: #000;
  text-decoration: none;
}
.fitxa-llistat a:hover,
.fitxa-llistat a:focus {
  color: #007B13;
  text-decoration: none;
}
.fitxa-llistat a:hover .more:before,
.fitxa-llistat a:focus .more:before {
  color: #007B13;
}
.fitxa-llistat li.list-title a {
  color: #fff;
  background-color: #8c8783;
}
.fitxa-llistat li.list-title a:hover,
.fitxa-llistat li.list-title a:focus {
  background-color: #007B13;
  color: #fff;
}
.fitxa-llistat li.list-title a:hover .more:before,
.fitxa-llistat li.list-title a:focus .more:before {
  color: #fff;
}
.fitxa-llistat1 li {
  border-bottom: 1px solid #8c8783;
}
.fitxa-llistat1 a {
  color: #000;
}
.fitxa-llistat1 a:hover,
.fitxa-llistat1 a:focus {
  color: #007B13;
}
.fitxa-llistat1 a:hover .more:before,
.fitxa-llistat1 a:focus .more:before {
  color: #007B13;
}
.fitxa-llistat1 a .more {
  color: #8c8783;
}
.llistat-gran li {
  border-bottom: 1px solid #DADADA;
}
.llistat-gran li:first-child {
  border-top: 1px solid #DADADA;
}
.llistat-gran a {
  color: #000;
}
.llistat-gran a:hover,
.llistat-gran a:focus {
  color: #007B13;
  text-decoration: none;
}
.llistat-gran a:hover .more:before,
.llistat-gran a:focus .more:before {
  color: #007B13;
}
.llistat-gran a:hover .mes:before,
.llistat-gran a:focus .mes:before {
  color: #007B13;
}
.llistat-gran a .more {
  color: #DADADA;
}
.llistat-gran a .mes {
  color: #DADADA;
}
.fitxa-link {
  border-color: #007B13 !important;
  background-color: #007B13;
}
.fitxa-link.collapsed {
  background-color: #fff;
  color: #007B13;
}
.fitxa-link:hover,
.fitxa-link:focus {
  background-color: #007B13;
  color: #fff;
}
/* slider colors */
.carousel {
  background-color: #eee;
}
.carousel .peu-de-foto {
  background-color: rgba(0, 123, 19, 0.75);
}
.carousel .carousel-caption {
  /*background-color: @uab-transparent;*/
  color: #fff;
}
.carousel .carousel-caption .text {
  color: #fff;
}
.carousel .carousel-caption .text a {
  color: #fff;
}
.carousel .carousel-indicators li {
  background-color: #aeb3b4;
}
.carousel .carousel-indicators li.active {
  background-color: #007B13;
}
.carousel .slide-nav .ico {
  color: rgba(0, 123, 19, 0.75);
}
.carousel .slide-nav .ico:hover,
.carousel .slide-nav .icofocus {
  color: #007B13;
}
#slide-alumnes .text span {
  color: #007B13;
}
#visita-virtual {
  background-color: #fff;
}
#slide-virtual {
  background-color: #fff;
}
#slide-virtual .light-color,
#slide-virtual .light-color a {
  color: #f7f7f7;
}
#slide-virtual .blocky h1,
#slide-virtual .blocky h2 {
  background-color: rgba(0, 123, 19, 0.75);
}
#slide-virtual .blocky h1 span,
#slide-virtual .blocky h2 span {
  color: #fff;
}
#slide-virtual .slide-nav .ico {
  color: #007B13;
}
#slide-virtual .slide-nav .ico:hover,
#slide-virtual .slide-nav .ico:focus {
  color: #007B13;
}
#slide-virtual .slide-nav .ico.left {
  background: #007B13;
}
#slide-virtual .slide-nav .ico.left:before {
  color: #fff;
}
#slide-virtual .slide-nav .ico.left:after {
  color: #fff;
}
#slide-virtual .slide-nav .ico.right {
  background: #007B13;
}
#slide-virtual .slide-nav .ico.right:before {
  color: #fff;
}
/* slides */
#slide .carousel-caption {
  background-color: rgba(0, 123, 19, 0.75);
  color: #fff;
}
#slide .carousel-caption .text {
  color: #fff;
}
#slide .carousel-caption .text a {
  color: #fff;
}
#slide .carousel-caption .text a:hover,
#slide .carousel-caption .text a:focus {
  text-decoration: none;
}
#slide .carousel-caption .arrow {
  color: rgba(0, 123, 19, 0.75);
}
#slide .carousel .item {
  background-color: #777;
}
#slide .carousel-indicators li {
  background-color: #aeb3b4;
}
#slide .carousel-indicators li.active {
  background-color: #007B13;
}
#slide .slide-nav .ico.left {
  background: #007B13;
}
#slide .slide-nav .ico.left:before {
  color: #fff;
}
#slide .slide-nav .ico.left:after {
  background-color: #fff;
}
#slide .slide-nav .ico.right {
  background: #007B13;
}
#slide .slide-nav .ico.right:before {
  color: #fff;
}
#slide .slide-nav .ico {
  color: #007B13;
}
#slide .slide-nav .ico:hover {
  color: #007B13;
}
/* Slide interior */
#slide-interior .slide-nav .ico {
  color: #007B13;
}
#slide-interior .slide-nav .ico:hover {
  color: #007B13;
}
.carousel-nav .ico {
  color: #007B13;
}
.carousel-nav .ico:hover {
  color: #007B13;
}
@media (min-width: 992px) {
  /* Slide */
  #slide .carousel-caption {
    background-color: rgba(0, 123, 19, 0.75);
  }
}
/* links */
.links a:hover,
.links a:focus {
  color: #03420d;
}
.links a:hover .more:before,
.links a:focus .more:before {
  color: #03420d;
}
.content-links h3 {
  color: #007B13;
}
/* aside-nav-content */
.aside-nav-content .title {
  background-color: #007B13;
  color: #ffff;
}
.aside-nav-content ul a {
  color: #111;
}
.aside-nav-content ul a:focus,
.aside-nav-content ul a:hover {
  color: #03420d;
  background: #f3f3f3;
}
.aside-nav-content ul a:focus .more:before,
.aside-nav-content ul a:hover .more:before {
  color: #03420d;
}
.aside-nav-content ul a:focus .mes:before,
.aside-nav-content ul a:hover .mes:before {
  color: #03420d;
}
.aside-nav-content ul a.actual-page {
  color: #03420d;
}
.aside-nav-content ul a .actual-section .mes {
  color: #007B13;
}
/* aside-nav-content */
.aside-nav-featured-- {
  border: 1px solid #dedede;
}
.aside-nav-featured-- ul li {
  border-bottom: 1px solid #8c8783;
}
.aside-nav-featured-- ul a {
  color: #000;
  background-color: #e7e7e7;
}
.aside-nav-featured-- ul a:hover {
  background-color: #fff;
}
.aside-nav-featured-- ul a:hover .copy:before,
.aside-nav-featured-- ul a:hover .mes:before,
.aside-nav-featured-- ul a:hover .more:before {
  color: #007B13;
}
.aside-nav-featured-- ul a .more {
  color: #fff;
}
.aside-nav-featured-- ul a .mes {
  color: #fff;
}
.aside-nav-featured-- ul a .copy {
  color: #fff;
}
.bloc a {
  color: #007B13;
}
/* esdeveniments */
.esdeveniments {
  width: 100%;
  float: left;
  margin: 10px 0;
}
.esdeveniments .custom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  clear: both;
  background-color: #ebebeb;
}
@media (min-width: 768px) {
  .esdeveniments .custom-list {
    display: table;
    width: 100%;
  }
}
.esdeveniments .custom-list li {
  display: block;
}
@media (min-width: 768px) {
  .esdeveniments .custom-list li {
    display: table-cell;
  }
}
.esdeveniments .custom-list li a {
  display: block;
  padding: 5px 10px;
  color: #1A171B;
  font-weight: bold;
}
@media (min-width: 768px) {
  .esdeveniments .custom-list li a {
    position: relative;
    display: block;
    padding: 10px 10px 10px 20px;
    border-bottom: 0;
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .esdeveniments .custom-list li a {
    padding: 10px 10px 10px 10px;
  }
}
@media (min-width: 1200px) {
  .esdeveniments .custom-list li a {
    padding: 10px 10px 10px 20px;
  }
}
.esdeveniments .custom-list li a.current {
  text-decoration: none;
  background-color: #FBFBFB;
  color: #007B13;
}
.esdeveniments .custom-list li a:hover {
  text-decoration: none;
  color: #007B13;
}
.esdeveniments .box {
  display: none;
  min-height: 530px;
  float: left;
  width: 100%;
  position: relative;
  background-color: #FBFBFB;
}
.esdeveniments .box .btn {
  border-color: #007B13;
  background-color: #007B13;
  color: #fff;
}
.esdeveniments .box.current {
  display: block;
  color: #000 !important;
}
.esdeveniments .box .message {
  margin: 15px 0 0 0;
  text-align: center;
}
.esdeveniments .esdeveniment {
  padding: 20px;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.esdeveniments .esdeveniment:hover,
.esdeveniments .esdeveniment:focus {
  background-color: #F6F6F6;
}
.esdeveniments .esdeveniment .e-foto {
  width: 50%;
  padding-right: 20px;
}
.esdeveniments .esdeveniment .e-foto img {
  width: 100%;
  height: auto;
}
.esdeveniments .esdeveniment .e-text {
  width: 50%;
  padding-right: 20px;
}
.esdeveniments .esdeveniment .e-text-full {
  width: 100%;
  padding-right: 20px;
}
.esdeveniments .esdeveniment .e-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.esdeveniments .esdeveniment .e-title a {
  color: #1A171B;
}
.esdeveniments .esdeveniment .e-title a:hover,
.esdeveniments .esdeveniment .e-title a:focus {
  color: #007B13;
  text-decoration: none;
}
.esdeveniments .esdeveniment .e-data {
  margin: 0;
}
.esdeveniments .esdeveniment p {
  line-height: 1.1;
  margin: 0 0 10px 0;
}
.esdeveniments .esdeveniment .e-more {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  color: #D9DADB;
  font-size: 16px;
}
.esdeveniments .esdeveniment .e-more:hover,
.esdeveniments .esdeveniment .e-more:focus {
  text-decoration: none;
  color: #007B13;
}
.tweets {
  display: none;
}
@media (min-width: 768px) {
  .tweets {
    display: block;
    float: left;
    width: 100%;
    background: #fff;
    margin: 10px 0;
  }
}
.tweets .tweets-content {
  padding: 0;
  margin: 0;
  width: 100%;
  float: left;
  max-height: 567px;
  overflow-y: auto;
}
.tweets .tweets-content iframe {
  min-width: 160px !important;
}
.tweets .view-more {
  margin-bottom: 0;
}
.twitter-timeline {
  width: 100% !important;
}
.tweets-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f7f7f9;
}
.tweets-content::-webkit-scrollbar {
  width: 6px;
  background-color: #eee;
}
.tweets-content::-webkit-scrollbar-thumb {
  background-color: #007B13;
}
.box-alumni-uab {
  width: 100%;
  float: left;
  margin: 0 0 20px 0;
}
.box-alumni-uab .logo-fon {
  position: absolute;
  width: 120px;
  height: 150px;
  background-image: url(../img/slider-bg.png);
  background-size: cover;
  background-position: top left;
  top: -10px;
  right: 0;
}
.box-alumni-uab .box-title-alumni {
  background-color: #007B13;
  color: #fff;
  display: table;
  width: 100%;
  float: left;
  padding: 30px 20px;
  min-height: 132px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .box-alumni-uab .box-title-alumni {
    padding: 10px 20px 30px 20px;
    min-height: 100px;
  }
}
@media (min-width: 1200px) {
  .box-alumni-uab .box-title-alumni {
    padding: 30px 20px;
    min-height: 132px;
  }
}
.box-alumni-uab .box-title-alumni .title-alumni {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  padding: 0 15px 0 0;
}
.box-alumni-uab .box-title-alumni .title-alumni em,
.box-alumni-uab .box-title-alumni .title-alumni span,
.box-alumni-uab .box-title-alumni .title-alumni i {
  font-size: 14px;
  font-style: italic;
  line-height: 1;
  vertical-align: text-top;
}
.box-alumni-uab .box-title-alumni .form-alumni {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  padding: 0;
  border: 0;
  box-shadow: none;
  -webkit-box-shadow: : none;
}
.box-alumni-uab .box-title-alumni .form-alumni .input-group {
  margin: 5px 0;
}
.box-alumni-uab .box-title-alumni .form-alumni .input-group-addon {
  border-radius: 0 !important;
  background-color: #007B13;
  color: #fff;
  border-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-right: 0;
}
.box-alumni-uab .box-title-alumni .form-alumni .form-control {
  border-radius: 0 !important;
  background-color: #007B13;
  color: #fff;
  border-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-left: 0;
  padding-left: 0;
  font-weight: bold;
}
@media (min-width: 992px) {
  .box-alumni-uab .box-title-alumni .form-alumni .form-control {
    width: 70px !important;
  }
}
@media (min-width: 1200px) {
  .box-alumni-uab .box-title-alumni .form-alumni .form-control {
    width: 90px !important;
  }
}
.box-alumni-uab .box-title-alumni .form-alumni .form-control::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.box-alumni-uab .box-title-alumni .form-alumni .form-control:-ms-input-placeholder {
  color: #fff;
}
.box-alumni-uab .box-title-alumni .form-alumni .form-control::-webkit-input-placeholder {
  color: #fff;
}
.box-alumni-uab .box-title-alumni .form-alumni .btn {
  border-radius: 0 !important;
  background-color: #fff;
  color: #007B13;
  border-color: #fff;
  font-weight: bold !important;
  margin: 5px 0;
  position: relative;
  z-index: 999;
}
.box-alumni-uab .box-title-alumni .lost-password {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.box-alumni-uab .box-content-alumni {
  background-color: #e5e5e5;
  width: 100%;
  float: left;
  margin: 0;
  padding: 10px;
}
.btn-logo-text {
  margin: 10px 0;
  width: 100%;
  background-color: #fff;
}
.btn-logo-text a {
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: table;
  min-height: 55px;
  width: 100%;
  text-decoration: none;
}
@media (min-width: 768px) {
  .btn-logo-text a {
    min-height: 50px;
  }
}
@media (min-width: 992px) {
  .btn-logo-text a {
    min-height: 50px;
  }
}
@media (min-width: 1200px) {
  .btn-logo-text a {
    min-height: 75px;
  }
}
.btn-logo-text a:hover,
.btn-logo-text a:focus {
  text-decoration: none;
  background-color: #007B13;
  color: #fff;
}
.btn-logo-text .img-icon {
  display: table-cell;
  vertical-align: middle;
  padding: 0;
  width: 60px;
  text-align: center;
}
.btn-logo-text .img-icon span {
  font-size: 30px;
}
.btn-logo-text .img-icon img {
  width: 40px;
  height: auto;
}
.btn-logo-text .text-title {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  padding-right: 15px;
}
.btn-logo-image {
  margin: 10px 0;
  width: 100%;
  background-color: #ccc;
  color: #fff;
  text-align: left;
}
.btn-logo-image a {
  cursor: pointer;
  margin: 0;
  padding: 0;
  color: #fff;
  text-decoration: none;
}
.btn-logo-image a:hover,
.btn-logo-image a:focus {
  text-decoration: none;
}
.btn-logo-image .img-image {
  padding: 15px;
  min-height: 100px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.btn-logo-image .text-title {
  font-weight: bold;
  font-size: 30px;
  line-height: 1.2;
  padding: 0;
}
.btn-logo-image .text-description {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  padding: 0;
}
.box-verd .box-title-alumni {
  background-color: #008b00;
}
.box-verd .box-title-alumni .form-alumni .input-group-addon {
  background-color: #008b00;
  color: #fff;
  border-color: #fff;
}
.box-verd .box-title-alumni .form-alumni .form-control {
  background-color: #008b00;
  color: #fff;
  border-color: #fff;
}
.box-verd .box-title-alumni .form-alumni .form-control::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.box-verd .box-title-alumni .form-alumni .form-control:-ms-input-placeholder {
  color: #fff;
}
.box-verd .box-title-alumni .form-alumni .form-control::-webkit-input-placeholder {
  color: #fff;
}
.box-verd .box-title-alumni .form-alumni .btn {
  background-color: #fff;
  color: #008b00;
  border-color: #fff;
}
.box-verd .btn-logo-text a {
  color: #008b00;
  text-decoration: none;
}
.box-verd .btn-logo-text a:hover,
.box-verd .btn-logo-text a:focus {
  color: #fff;
  background-color: #008b00;
}
.alumni-testimoni {
  width: 100%;
  float: left;
  color: #007B13;
  margin: 20px 0 30px 0;
  padding: 0;
  position: relative;
}
.alumni-testimoni .testimoni-image {
  width: 100%;
  float: left;
  min-height: 325px;
  background-size: cover;
  background-position: 0 0;
  background-color: #eee;
}
.alumni-testimoni .alumni-testimoni-content {
  padding: 20px 20px 40px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  float: left;
}
@media (min-width: 768px) {
  .alumni-testimoni .alumni-testimoni-content {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    float: none;
  }
}
.alumni-testimoni .alumni-testimoni-content a:hover,
.alumni-testimoni .alumni-testimoni-content a:focus {
  text-decoration: none;
}
.alumni-testimoni .alumni-testimoni-content .testimoni-title {
  width: 100%;
  margin: 10px auto 0 0;
  font-size: 30px;
  font-weight: bold;
}
.alumni-testimoni .alumni-testimoni-content .testimoni-subtitle {
  width: 100%;
  margin: 10px auto 20px auto;
  font-size: 20px;
  font-weight: lighter;
}
.alumni-testimoni .alumni-testimoni-content .testimoni-text {
  font-weight: bold;
  font-size: 16px;
}
.alumni-testimoni .alumni-testimoni-content .testimoni-link {
  margin: 0;
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.alumni-links {
  background-color: #f7f7f7;
  padding: 0;
  margin: 10px 0 30px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.alumni-links .alumni-link {
  width: 50%;
  text-align: center;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .alumni-links .alumni-link {
    width: 33.3333%;
  }
}
@media (min-width: 992px) {
  .alumni-links .alumni-link {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .alumni-links .alumni-link {
    width: 16.66666667%;
  }
}
.alumni-links .alumni-link a {
  color: #007B13;
  text-align: center;
  padding: 15px;
  width: 100%;
  float: left;
  margin: 0;
  min-height: 160px;
}
@media (min-width: 1200px) {
  .alumni-links .alumni-link a {
    border-right: 1px solid #ccc;
  }
}
.alumni-links .alumni-link a:hover,
.alumni-links .alumni-link a:focus {
  color: #000;
  text-decoration: none;
}
.alumni-links .alumni-link a.desactivat {
  color: #727272;
}
.alumni-links .alumni-link:last-child a {
  border-right: 0;
}
.alumni-links .alumni-link .icon-link {
  width: 100%;
  margin: 0 auto 10px auto;
  font-size: 60px;
  line-height: 80px;
  padding-right: 0;
}
.alumni-links .alumni-link .text-link {
  width: 100%;
  text-align: center;
  font-weight: bold;
}
@font-face {
  font-family: 'metode-icons';
  src: url('../fonts/metode-icons.eot?xvh5gp');
  src: url('../fonts/metode-icons.eot?xvh5gp#iefix') format('embedded-opentype'), url('../fonts/metode-icons.ttf?xvh5gp') format('truetype'), url('../fonts/metode-icons.woff?xvh5gp') format('woff'), url('../fonts/metode-icons.svg?xvh5gp#metode-icons') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^="metode-"],
[class*=" metode-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'metode-icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.metode-flickr:before {
  content: "\eaa6";
}
.metode-idiomes:before {
  content: "\e966";
}
.metode-home:before {
  content: "\e94d";
}
.metode-carrow-up:before {
  content: "\e947";
}
.metode-carrow-right:before {
  content: "\e949";
}
.metode-carrow-down:before {
  content: "\e94a";
}
.metode-carrow-left:before {
  content: "\e94b";
}
.metode-quotes:before {
  content: "\e948";
}
.metode-plus:before {
  content: "\e942";
}
.metode-graduat:before {
  content: "\e943";
}
.metode-hora:before {
  content: "\e944";
}
.metode-pencil:before {
  content: "\e945";
}
.metode-check:before {
  content: "\e946";
}
.metode-buscar:before {
  content: "\e941";
}
.metode-info:before {
  content: "\e93f";
}
.metode-logo-uab-xs:before {
  content: "\e940";
}
.metode-acredita:before {
  content: "\e93c";
}
.metode-cita:before {
  content: "\e93d";
}
.metode-estiu:before {
  content: "\e93e";
}
.metode-logo-uab-sm:before {
  content: "\e93b";
}
.metode-logo-uab-xl:before {
  content: "\e93a";
}
.metode-uab-sl:before {
  content: "\e916";
}
.metode-fuab:before {
  content: "\e915";
}
.metode-cores:before {
  content: "\e627";
}
.metode-logo-uab-cei:before {
  content: "\e601";
}
.metode-hrexcellence:before {
  content: "\e913";
}
.metode-calendari-plus:before {
  content: "\e939";
}
.metode-sphere:before {
  content: "\e9c9";
}
.metode-earth:before {
  content: "\e9ca";
}
.metode-user:before {
  content: "\e917";
}
.metode-youtube-new:before {
  content: "\e918";
}
.metode-instagram-new:before {
  content: "\e919";
}
.metode-calendar:before {
  content: "\e91a";
}
.metode-agendaplus:before {
  content: "\e912";
}
.metode-interrogant:before {
  content: "\e91b";
}
.metode-camiseta:before {
  content: "\e91c";
}
.metode-euros:before {
  content: "\e91d";
}
.metode-cor:before {
  content: "\e91e";
}
.metode-maleta:before {
  content: "\e91f";
}
.metode-persones:before {
  content: "\e920";
}
.metode-brujula:before {
  content: "\e921";
}
.metode-dades:before {
  content: "\e922";
}
.metode-estel:before {
  content: "\e923";
}
.metode-llibres:before {
  content: "\e924";
}
.metode-map-pointer:before {
  content: "\e925";
}
.metode-ok:before {
  content: "\e926";
}
.metode-pantalla:before {
  content: "\e927";
}
.metode-cientifiques:before {
  content: "\e928";
}
.metode-presentacio:before {
  content: "\e929";
}
.metode-orientacio:before {
  content: "\e92a";
}
.metode-agenda:before {
  content: "\e92b";
}
.metode-comunicacio:before {
  content: "\e92c";
}
.metode-ubicacio:before {
  content: "\e92d";
}
.metode-calendari:before {
  content: "\e92e";
}
.metode-play2:before {
  content: "\e92f";
}
.metode-grafiques:before {
  content: "\e930";
}
.metode-territori:before {
  content: "\e931";
}
.metode-opcions:before {
  content: "\e932";
}
.metode-equip:before {
  content: "\e933";
}
.metode-pacte:before {
  content: "\e934";
}
.metode-programes:before {
  content: "\e935";
}
.metode-location:before {
  content: "\e936";
}
.metode-phone:before {
  content: "\e937";
}
.metode-pdf:before {
  content: "\e938";
}
.metode-fuab1:before {
  content: "\e961";
}
.metode-arrow_right:before {
  content: "\e914";
}
.metode-hrexcellence1:before {
  content: "\e962";
}
.metode-agendaplus1:before {
  content: "\e963";
}
.metode-musica:before {
  content: "\e90a";
}
.metode-enginyeria:before {
  content: "\e90b";
}
.metode-literatura:before {
  content: "\e90c";
}
.metode-historia:before {
  content: "\e90d";
}
.metode-filosofia:before {
  content: "\e90e";
}
.metode-economia:before {
  content: "\e90f";
}
.metode-dret:before {
  content: "\e910";
}
.metode-ciencies:before {
  content: "\e911";
}
.metode-arquitectura:before {
  content: "\e909";
}
.metode-preguntas:before {
  content: "\e906";
}
.metode-enlaces:before {
  content: "\e907";
}
.metode-horaris:before {
  content: "\e908";
}
.metode-cataleg:before {
  content: "\e902";
}
.metode-guies:before {
  content: "\e903";
}
.metode-serveis:before {
  content: "\e904";
}
.metode-logo-uab:before {
  content: "\e600";
}
.metode-logo-uab-cei1:before {
  content: "\e964";
}
.metode-twitter:before {
  content: "\e602";
}
.metode-linkedin:before {
  content: "\e62a";
}
.metode-google:before {
  content: "\e603";
}
.metode-facebook:before {
  content: "\e604";
}
.metode-youtube:before {
  content: "\e605";
}
.metode-instagram:before {
  content: "\e900";
}
.metode-linkedin2:before {
  content: "\e606";
}
.metode-google2:before {
  content: "\e607";
}
.metode-facebook2:before {
  content: "\e608";
}
.metode-youtube2:before {
  content: "\e609";
}
.metode-twitter2:before {
  content: "\e60a";
}
.metode-rss:before {
  content: "\e60b";
}
.metode-instagram2:before {
  content: "\e901";
}
.metode-rss2:before {
  content: "\e60c";
}
.metode-lupa:before {
  content: "\e60d";
}
.metode-play:before {
  content: "\e60e";
}
.metode-svg1:before {
  content: "\e60f";
}
.metode-2:before {
  content: "\e610";
}
.metode-right:before {
  content: "\e611";
}
.metode-left:before {
  content: "\e612";
}
.metode-user1:before {
  content: "\e613";
}
.metode-user2:before {
  content: "\e614";
}
.metode-candau:before {
  content: "\e615";
}
.metode-x:before {
  content: "\e616";
}
.metode-arroba:before {
  content: "\e617";
}
.metode-svg8:before {
  content: "\e618";
}
.metode-svg9:before {
  content: "\e619";
}
.metode-svg10:before {
  content: "\e61a";
}
.metode-svg13:before {
  content: "\e61b";
}
.metode-svg14:before {
  content: "\e61c";
}
.metode-svg16:before {
  content: "\e61d";
}
.metode-svg17:before {
  content: "\e61e";
}
.metode-svg24:before {
  content: "\e61f";
}
.metode-f-left:before {
  content: "\e620";
}
.metode-f-right:before {
  content: "\e621";
}
.metode-down-triangle:before {
  content: "\e622";
}
.metode-right-triangle:before {
  content: "\e623";
}
.metode-down-triangle2:before {
  content: "\e625";
}
.metode-email:before {
  content: "\e624";
}
.metode-menu:before {
  content: "\e626";
}
.metode-cores1:before {
  content: "\e965";
}
.metode-logo-uab2:before {
  content: "\e628";
}
.metode-mobilitat:before {
  content: "\e62c";
}
.metode-anar-2:before {
  content: "\e629";
}
.metode-incoming-2:before {
  content: "\e62b";
}
.metode-mobilitat-2:before {
  content: "\e62d";
}
.metode-svg:before {
  content: "\e62e";
}
.metode-svg2:before {
  content: "\e62f";
}
.metode-copyright:before {
  content: "\e630";
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
@font-face {
  font-family: 'ElegantIcons';
  src: url('../fonts/ElegantIcons.eot?d918s8');
  src: url('../fonts/ElegantIcons.eot?#iefixd918s8') format('embedded-opentype'), url('../fonts/ElegantIcons.woff?d918s8') format('woff'), url('../fonts/ElegantIcons.ttf?d918s8') format('truetype'), url('../fonts/ElegantIcons.svg?d918s8##icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* line 10, elegant-icons-sass.scss */
.ei {
  font-family: "ElegantIcons";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
}
.ei:before {
  vertical-align: middle;
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_up::before,
.ei-icon_arrow_up::before {
  content: '\21';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_down::before,
.ei-icon_arrow_down::before {
  content: '\22';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_left::before,
.ei-icon_arrow_left::before {
  content: '\23';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_right::before,
.ei-icon_arrow_right::before {
  content: '\24';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_left-up::before,
.ei-icon_arrow_left-up::before {
  content: '\25';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_right-up::before,
.ei-icon_arrow_right-up::before {
  content: '\26';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_right-down::before,
.ei-icon_arrow_right-down::before {
  content: '\27';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_left-down::before,
.ei-icon_arrow_left-down::before {
  content: '\28';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow-up-down::before,
.ei-icon_arrow-up-down::before {
  content: '\29';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_up-down_alt::before,
.ei-icon_arrow_up-down_alt::before {
  content: '\2a';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_left-right_alt::before,
.ei-icon_arrow_left-right_alt::before {
  content: '\2b';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_left-right::before,
.ei-icon_arrow_left-right::before {
  content: '\2c';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_expand_alt2::before,
.ei-icon_arrow_expand_alt2::before {
  content: '\2d';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_expand_alt::before,
.ei-icon_arrow_expand_alt::before {
  content: '\2e';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_condense::before,
.ei-icon_arrow_condense::before {
  content: '\2f';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_expand::before,
.ei-icon_arrow_expand::before {
  content: '\30';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_move::before,
.ei-icon_arrow_move::before {
  content: '\31';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-up::before,
.ei-icon_arrow_carrot-up::before {
  content: '\32';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-down::before,
.ei-icon_arrow_carrot-down::before {
  content: '\33';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-left::before,
.ei-icon_arrow_carrot-left::before {
  content: '\34';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-right::before,
.ei-icon_arrow_carrot-right::before {
  content: '\35';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2up::before,
.ei-icon_arrow_carrot-2up::before {
  content: '\36';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2down::before,
.ei-icon_arrow_carrot-2down::before {
  content: '\37';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2left::before,
.ei-icon_arrow_carrot-2left::before {
  content: '\38';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2right::before,
.ei-icon_arrow_carrot-2right::before {
  content: '\39';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-up_alt2::before,
.ei-icon_arrow_carrot-up_alt2::before {
  content: '\3a';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-down_alt2::before,
.ei-icon_arrow_carrot-down_alt2::before {
  content: '\3b';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-left_alt2::before,
.ei-icon_arrow_carrot-left_alt2::before {
  content: '\3c';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-right_alt2::before,
.ei-icon_arrow_carrot-right_alt2::before {
  content: '\3d';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2up_alt2::before,
.ei-icon_arrow_carrot-2up_alt2::before {
  content: '\3e';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2down_alt2::before,
.ei-icon_arrow_carrot-2down_alt2::before {
  content: '\3f';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2left_alt2::before,
.ei-icon_arrow_carrot-2left_alt2::before {
  content: '\40';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2right_alt2::before,
.ei-icon_arrow_carrot-2right_alt2::before {
  content: '\41';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-up::before,
.ei-icon_arrow_triangle-up::before {
  content: '\42';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-down::before,
.ei-icon_arrow_triangle-down::before {
  content: '\43';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-left::before,
.ei-icon_arrow_triangle-left::before {
  content: '\44';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-right::before,
.ei-icon_arrow_triangle-right::before {
  content: '\45';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-up_alt2::before,
.ei-icon_arrow_triangle-up_alt2::before {
  content: '\46';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-down_alt2::before,
.ei-icon_arrow_triangle-down_alt2::before {
  content: '\47';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-left_alt2::before,
.ei-icon_arrow_triangle-left_alt2::before {
  content: '\48';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-right_alt2::before,
.ei-icon_arrow_triangle-right_alt2::before {
  content: '\49';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_back::before,
.ei-icon_arrow_back::before {
  content: '\4a';
}
/* line 26, elegant-icons-sass.scss */
.ei-minus-06::before,
.ei-icon_minus-06::before {
  content: '\4b';
}
/* line 26, elegant-icons-sass.scss */
.ei-plus::before,
.ei-icon_plus::before {
  content: '\4c';
}
/* line 26, elegant-icons-sass.scss */
.ei-close::before,
.ei-icon_close::before {
  content: '\4d';
}
/* line 26, elegant-icons-sass.scss */
.ei-check::before,
.ei-icon_check::before {
  content: '\4e';
}
/* line 26, elegant-icons-sass.scss */
.ei-minus_alt2::before,
.ei-icon_minus_alt2::before {
  content: '\4f';
}
/* line 26, elegant-icons-sass.scss */
.ei-plus_alt2::before,
.ei-icon_plus_alt2::before {
  content: '\50';
}
/* line 26, elegant-icons-sass.scss */
.ei-close_alt2::before,
.ei-icon_close_alt2::before {
  content: '\51';
}
/* line 26, elegant-icons-sass.scss */
.ei-check_alt2::before,
.ei-icon_check_alt2::before {
  content: '\52';
}
/* line 26, elegant-icons-sass.scss */
.ei-zoom-out_alt::before,
.ei-icon_zoom-out_alt::before {
  content: '\53';
}
/* line 26, elegant-icons-sass.scss */
.ei-zoom-in_alt::before,
.ei-icon_zoom-in_alt::before {
  content: '\54';
}
/* line 26, elegant-icons-sass.scss */
.ei-search::before,
.ei-icon_search::before {
  content: '\55';
}
/* line 26, elegant-icons-sass.scss */
.ei-box-empty::before,
.ei-icon_box-empty::before {
  content: '\56';
}
/* line 26, elegant-icons-sass.scss */
.ei-box-selected::before,
.ei-icon_box-selected::before {
  content: '\57';
}
/* line 26, elegant-icons-sass.scss */
.ei-minus-box::before,
.ei-icon_minus-box::before {
  content: '\58';
}
/* line 26, elegant-icons-sass.scss */
.ei-plus-box::before,
.ei-icon_plus-box::before {
  content: '\59';
}
/* line 26, elegant-icons-sass.scss */
.ei-box-checked::before,
.ei-icon_box-checked::before {
  content: '\5a';
}
/* line 26, elegant-icons-sass.scss */
.ei-circle-empty::before,
.ei-icon_circle-empty::before {
  content: '\5b';
}
/* line 26, elegant-icons-sass.scss */
.ei-circle-slelected::before,
.ei-icon_circle-slelected::before {
  content: '\5c';
}
/* line 26, elegant-icons-sass.scss */
.ei-circle-selected::before,
.ei-icon_circle-selected::before {
  content: '\5c';
}
/* line 26, elegant-icons-sass.scss */
.ei-stop_alt2::before,
.ei-icon_stop_alt2::before {
  content: '\5d';
}
/* line 26, elegant-icons-sass.scss */
.ei-stop::before,
.ei-icon_stop::before {
  content: '\5e';
}
/* line 26, elegant-icons-sass.scss */
.ei-pause_alt2::before,
.ei-icon_pause_alt2::before {
  content: '\5f';
}
/* line 26, elegant-icons-sass.scss */
.ei-pause::before,
.ei-icon_pause::before {
  content: '\60';
}
/* line 26, elegant-icons-sass.scss */
.ei-menu::before,
.ei-icon_menu::before {
  content: '\61';
}
/* line 26, elegant-icons-sass.scss */
.ei-menu-square_alt2::before,
.ei-icon_menu-square_alt2::before {
  content: '\62';
}
/* line 26, elegant-icons-sass.scss */
.ei-menu-circle_alt2::before,
.ei-icon_menu-circle_alt2::before {
  content: '\63';
}
/* line 26, elegant-icons-sass.scss */
.ei-ul::before,
.ei-icon_ul::before {
  content: '\64';
}
/* line 26, elegant-icons-sass.scss */
.ei-ol::before,
.ei-icon_ol::before {
  content: '\65';
}
/* line 26, elegant-icons-sass.scss */
.ei-adjust-horiz::before,
.ei-icon_adjust-horiz::before {
  content: '\66';
}
/* line 26, elegant-icons-sass.scss */
.ei-adjust-vert::before,
.ei-icon_adjust-vert::before {
  content: '\67';
}
/* line 26, elegant-icons-sass.scss */
.ei-document_alt::before,
.ei-icon_document_alt::before {
  content: '\68';
}
/* line 26, elegant-icons-sass.scss */
.ei-documents_alt::before,
.ei-icon_documents_alt::before {
  content: '\69';
}
/* line 26, elegant-icons-sass.scss */
.ei-pencil::before,
.ei-icon_pencil::before {
  content: '\6a';
}
/* line 26, elegant-icons-sass.scss */
.ei-pencil-edit_alt::before,
.ei-icon_pencil-edit_alt::before {
  content: '\6b';
}
/* line 26, elegant-icons-sass.scss */
.ei-pencil-edit::before,
.ei-icon_pencil-edit::before {
  content: '\6c';
}
/* line 26, elegant-icons-sass.scss */
.ei-folder-alt::before,
.ei-icon_folder-alt::before {
  content: '\6d';
}
/* line 26, elegant-icons-sass.scss */
.ei-folder-open_alt::before,
.ei-icon_folder-open_alt::before {
  content: '\6e';
}
/* line 26, elegant-icons-sass.scss */
.ei-folder-add_alt::before,
.ei-icon_folder-add_alt::before {
  content: '\6f';
}
/* line 26, elegant-icons-sass.scss */
.ei-info_alt::before,
.ei-icon_info_alt::before {
  content: '\70';
}
/* line 26, elegant-icons-sass.scss */
.ei-error-oct_alt::before,
.ei-icon_error-oct_alt::before {
  content: '\71';
}
/* line 26, elegant-icons-sass.scss */
.ei-error-circle_alt::before,
.ei-icon_error-circle_alt::before {
  content: '\72';
}
/* line 26, elegant-icons-sass.scss */
.ei-error-triangle_alt::before,
.ei-icon_error-triangle_alt::before {
  content: '\73';
}
/* line 26, elegant-icons-sass.scss */
.ei-question_alt2::before,
.ei-icon_question_alt2::before {
  content: '\74';
}
/* line 26, elegant-icons-sass.scss */
.ei-question::before,
.ei-icon_question::before {
  content: '\75';
}
/* line 26, elegant-icons-sass.scss */
.ei-comment_alt::before,
.ei-icon_comment_alt::before {
  content: '\76';
}
/* line 26, elegant-icons-sass.scss */
.ei-chat_alt::before,
.ei-icon_chat_alt::before {
  content: '\77';
}
/* line 26, elegant-icons-sass.scss */
.ei-vol-mute_alt::before,
.ei-icon_vol-mute_alt::before {
  content: '\78';
}
/* line 26, elegant-icons-sass.scss */
.ei-volume-low_alt::before,
.ei-icon_volume-low_alt::before {
  content: '\79';
}
/* line 26, elegant-icons-sass.scss */
.ei-volume-high_alt::before,
.ei-icon_volume-high_alt::before {
  content: '\7a';
}
/* line 26, elegant-icons-sass.scss */
.ei-quotations::before,
.ei-icon_quotations::before {
  content: '\7b';
}
/* line 26, elegant-icons-sass.scss */
.ei-quotations_alt2::before,
.ei-icon_quotations_alt2::before {
  content: '\7c';
}
/* line 26, elegant-icons-sass.scss */
.ei-clock_alt::before,
.ei-icon_clock_alt::before {
  content: '\7d';
}
/* line 26, elegant-icons-sass.scss */
.ei-lock_alt::before,
.ei-icon_lock_alt::before {
  content: '\7e';
}
/* line 26, elegant-icons-sass.scss */
.ei-lock-open_alt::before,
.ei-icon_lock-open_alt::before {
  content: '\e000';
}
/* line 26, elegant-icons-sass.scss */
.ei-key_alt::before,
.ei-icon_key_alt::before {
  content: '\e001';
}
/* line 26, elegant-icons-sass.scss */
.ei-cloud_alt::before,
.ei-icon_cloud_alt::before {
  content: '\e002';
}
/* line 26, elegant-icons-sass.scss */
.ei-cloud-upload_alt::before,
.ei-icon_cloud-upload_alt::before {
  content: '\e003';
}
/* line 26, elegant-icons-sass.scss */
.ei-cloud-download_alt::before,
.ei-icon_cloud-download_alt::before {
  content: '\e004';
}
/* line 26, elegant-icons-sass.scss */
.ei-image::before,
.ei-icon_image::before {
  content: '\e005';
}
/* line 26, elegant-icons-sass.scss */
.ei-images::before,
.ei-icon_images::before {
  content: '\e006';
}
/* line 26, elegant-icons-sass.scss */
.ei-lightbulb_alt::before,
.ei-icon_lightbulb_alt::before {
  content: '\e007';
}
/* line 26, elegant-icons-sass.scss */
.ei-gift_alt::before,
.ei-icon_gift_alt::before {
  content: '\e008';
}
/* line 26, elegant-icons-sass.scss */
.ei-house_alt::before,
.ei-icon_house_alt::before {
  content: '\e009';
}
/* line 26, elegant-icons-sass.scss */
.ei-genius::before,
.ei-icon_genius::before {
  content: '\e00a';
}
/* line 26, elegant-icons-sass.scss */
.ei-mobile::before,
.ei-icon_mobile::before {
  content: '\e00b';
}
/* line 26, elegant-icons-sass.scss */
.ei-tablet::before,
.ei-icon_tablet::before {
  content: '\e00c';
}
/* line 26, elegant-icons-sass.scss */
.ei-laptop::before,
.ei-icon_laptop::before {
  content: '\e00d';
}
/* line 26, elegant-icons-sass.scss */
.ei-desktop::before,
.ei-icon_desktop::before {
  content: '\e00e';
}
/* line 26, elegant-icons-sass.scss */
.ei-camera_alt::before,
.ei-icon_camera_alt::before {
  content: '\e00f';
}
/* line 26, elegant-icons-sass.scss */
.ei-mail_alt::before,
.ei-icon_mail_alt::before {
  content: '\e010';
}
/* line 26, elegant-icons-sass.scss */
.ei-cone_alt::before,
.ei-icon_cone_alt::before {
  content: '\e011';
}
/* line 26, elegant-icons-sass.scss */
.ei-ribbon_alt::before,
.ei-icon_ribbon_alt::before {
  content: '\e012';
}
/* line 26, elegant-icons-sass.scss */
.ei-bag_alt::before,
.ei-icon_bag_alt::before {
  content: '\e013';
}
/* line 26, elegant-icons-sass.scss */
.ei-creditcard::before,
.ei-icon_creditcard::before {
  content: '\e014';
}
/* line 26, elegant-icons-sass.scss */
.ei-cart_alt::before,
.ei-icon_cart_alt::before {
  content: '\e015';
}
/* line 26, elegant-icons-sass.scss */
.ei-paperclip::before,
.ei-icon_paperclip::before {
  content: '\e016';
}
/* line 26, elegant-icons-sass.scss */
.ei-tag_alt::before,
.ei-icon_tag_alt::before {
  content: '\e017';
}
/* line 26, elegant-icons-sass.scss */
.ei-tags_alt::before,
.ei-icon_tags_alt::before {
  content: '\e018';
}
/* line 26, elegant-icons-sass.scss */
.ei-trash_alt::before,
.ei-icon_trash_alt::before {
  content: '\e019';
}
/* line 26, elegant-icons-sass.scss */
.ei-cursor_alt::before,
.ei-icon_cursor_alt::before {
  content: '\e01a';
}
/* line 26, elegant-icons-sass.scss */
.ei-mic_alt::before,
.ei-icon_mic_alt::before {
  content: '\e01b';
}
/* line 26, elegant-icons-sass.scss */
.ei-compass_alt::before,
.ei-icon_compass_alt::before {
  content: '\e01c';
}
/* line 26, elegant-icons-sass.scss */
.ei-pin_alt::before,
.ei-icon_pin_alt::before {
  content: '\e01d';
}
/* line 26, elegant-icons-sass.scss */
.ei-pushpin_alt::before,
.ei-icon_pushpin_alt::before {
  content: '\e01e';
}
/* line 26, elegant-icons-sass.scss */
.ei-map_alt::before,
.ei-icon_map_alt::before {
  content: '\e01f';
}
/* line 26, elegant-icons-sass.scss */
.ei-drawer_alt::before,
.ei-icon_drawer_alt::before {
  content: '\e020';
}
/* line 26, elegant-icons-sass.scss */
.ei-toolbox_alt::before,
.ei-icon_toolbox_alt::before {
  content: '\e021';
}
/* line 26, elegant-icons-sass.scss */
.ei-book_alt::before,
.ei-icon_book_alt::before {
  content: '\e022';
}
/* line 26, elegant-icons-sass.scss */
.ei-calendar::before,
.ei-icon_calendar::before {
  content: '\e023';
}
/* line 26, elegant-icons-sass.scss */
.ei-film::before,
.ei-icon_film::before {
  content: '\e024';
}
/* line 26, elegant-icons-sass.scss */
.ei-table::before,
.ei-icon_table::before {
  content: '\e025';
}
/* line 26, elegant-icons-sass.scss */
.ei-contacts_alt::before,
.ei-icon_contacts_alt::before {
  content: '\e026';
}
/* line 26, elegant-icons-sass.scss */
.ei-headphones::before,
.ei-icon_headphones::before {
  content: '\e027';
}
/* line 26, elegant-icons-sass.scss */
.ei-lifesaver::before,
.ei-icon_lifesaver::before {
  content: '\e028';
}
/* line 26, elegant-icons-sass.scss */
.ei-piechart::before,
.ei-icon_piechart::before {
  content: '\e029';
}
/* line 26, elegant-icons-sass.scss */
.ei-refresh::before,
.ei-icon_refresh::before {
  content: '\e02a';
}
/* line 26, elegant-icons-sass.scss */
.ei-link_alt::before,
.ei-icon_link_alt::before {
  content: '\e02b';
}
/* line 26, elegant-icons-sass.scss */
.ei-link::before,
.ei-icon_link::before {
  content: '\e02c';
}
/* line 26, elegant-icons-sass.scss */
.ei-loading::before,
.ei-icon_loading::before {
  content: '\e02d';
}
/* line 26, elegant-icons-sass.scss */
.ei-blocked::before,
.ei-icon_blocked::before {
  content: '\e02e';
}
/* line 26, elegant-icons-sass.scss */
.ei-archive_alt::before,
.ei-icon_archive_alt::before {
  content: '\e02f';
}
/* line 26, elegant-icons-sass.scss */
.ei-heart_alt::before,
.ei-icon_heart_alt::before {
  content: '\e030';
}
/* line 26, elegant-icons-sass.scss */
.ei-star_alt::before,
.ei-icon_star_alt::before {
  content: '\e031';
}
/* line 26, elegant-icons-sass.scss */
.ei-star-half_alt::before,
.ei-icon_star-half_alt::before {
  content: '\e032';
}
/* line 26, elegant-icons-sass.scss */
.ei-star::before,
.ei-icon_star::before {
  content: '\e033';
}
/* line 26, elegant-icons-sass.scss */
.ei-star-half::before,
.ei-icon_star-half::before {
  content: '\e034';
}
/* line 26, elegant-icons-sass.scss */
.ei-tools::before,
.ei-icon_tools::before {
  content: '\e035';
}
/* line 26, elegant-icons-sass.scss */
.ei-tool::before,
.ei-icon_tool::before {
  content: '\e036';
}
/* line 26, elegant-icons-sass.scss */
.ei-cog::before,
.ei-icon_cog::before {
  content: '\e037';
}
/* line 26, elegant-icons-sass.scss */
.ei-cogs::before,
.ei-icon_cogs::before {
  content: '\e038';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_up_alt::before,
.ei-icon_arrow_up_alt::before {
  content: '\e039';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_down_alt::before,
.ei-icon_arrow_down_alt::before {
  content: '\e03a';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_left_alt::before,
.ei-icon_arrow_left_alt::before {
  content: '\e03b';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_right_alt::before,
.ei-icon_arrow_right_alt::before {
  content: '\e03c';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_left-up_alt::before,
.ei-icon_arrow_left-up_alt::before {
  content: '\e03d';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_right-up_alt::before,
.ei-icon_arrow_right-up_alt::before {
  content: '\e03e';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_right-down_alt::before,
.ei-icon_arrow_right-down_alt::before {
  content: '\e03f';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_left-down_alt::before,
.ei-icon_arrow_left-down_alt::before {
  content: '\e040';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_condense_alt::before,
.ei-icon_arrow_condense_alt::before {
  content: '\e041';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_expand_alt3::before,
.ei-icon_arrow_expand_alt3::before {
  content: '\e042';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot_up_alt::before,
.ei-icon_arrow_carrot_up_alt::before {
  content: '\e043';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-down_alt::before,
.ei-icon_arrow_carrot-down_alt::before {
  content: '\e044';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-left_alt::before,
.ei-icon_arrow_carrot-left_alt::before {
  content: '\e045';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-right_alt::before,
.ei-icon_arrow_carrot-right_alt::before {
  content: '\e046';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2up_alt::before,
.ei-icon_arrow_carrot-2up_alt::before {
  content: '\e047';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2dwnn_alt::before,
.ei-icon_arrow_carrot-2dwnn_alt::before {
  content: '\e048';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2left_alt::before,
.ei-icon_arrow_carrot-2left_alt::before {
  content: '\e049';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_carrot-2right_alt::before,
.ei-icon_arrow_carrot-2right_alt::before {
  content: '\e04a';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-up_alt::before,
.ei-icon_arrow_triangle-up_alt::before {
  content: '\e04b';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-down_alt::before,
.ei-icon_arrow_triangle-down_alt::before {
  content: '\e04c';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-left_alt::before,
.ei-icon_arrow_triangle-left_alt::before {
  content: '\e04d';
}
/* line 26, elegant-icons-sass.scss */
.ei-arrow_triangle-right_alt::before,
.ei-icon_arrow_triangle-right_alt::before {
  content: '\e04e';
}
/* line 26, elegant-icons-sass.scss */
.ei-minus_alt::before,
.ei-icon_minus_alt::before {
  content: '\e04f';
}
/* line 26, elegant-icons-sass.scss */
.ei-plus_alt::before,
.ei-icon_plus_alt::before {
  content: '\e050';
}
/* line 26, elegant-icons-sass.scss */
.ei-close_alt::before,
.ei-icon_close_alt::before {
  content: '\e051';
}
/* line 26, elegant-icons-sass.scss */
.ei-check_alt::before,
.ei-icon_check_alt::before {
  content: '\e052';
}
/* line 26, elegant-icons-sass.scss */
.ei-zoom-out::before,
.ei-icon_zoom-out::before {
  content: '\e053';
}
/* line 26, elegant-icons-sass.scss */
.ei-zoom-in::before,
.ei-icon_zoom-in::before {
  content: '\e054';
}
/* line 26, elegant-icons-sass.scss */
.ei-stop_alt::before,
.ei-icon_stop_alt::before {
  content: '\e055';
}
/* line 26, elegant-icons-sass.scss */
.ei-menu-square_alt::before,
.ei-icon_menu-square_alt::before {
  content: '\e056';
}
/* line 26, elegant-icons-sass.scss */
.ei-menu-circle_alt::before,
.ei-icon_menu-circle_alt::before {
  content: '\e057';
}
/* line 26, elegant-icons-sass.scss */
.ei-document::before,
.ei-icon_document::before {
  content: '\e058';
}
/* line 26, elegant-icons-sass.scss */
.ei-documents::before,
.ei-icon_documents::before {
  content: '\e059';
}
/* line 26, elegant-icons-sass.scss */
.ei-pencil_alt::before,
.ei-icon_pencil_alt::before {
  content: '\e05a';
}
/* line 26, elegant-icons-sass.scss */
.ei-folder::before,
.ei-icon_folder::before {
  content: '\e05b';
}
/* line 26, elegant-icons-sass.scss */
.ei-folder-open::before,
.ei-icon_folder-open::before {
  content: '\e05c';
}
/* line 26, elegant-icons-sass.scss */
.ei-folder-add::before,
.ei-icon_folder-add::before {
  content: '\e05d';
}
/* line 26, elegant-icons-sass.scss */
.ei-folder_upload::before,
.ei-icon_folder_upload::before {
  content: '\e05e';
}
/* line 26, elegant-icons-sass.scss */
.ei-folder_download::before,
.ei-icon_folder_download::before {
  content: '\e05f';
}
/* line 26, elegant-icons-sass.scss */
.ei-info::before,
.ei-icon_info::before {
  content: '\e060';
}
/* line 26, elegant-icons-sass.scss */
.ei-error-circle::before,
.ei-icon_error-circle::before {
  content: '\e061';
}
/* line 26, elegant-icons-sass.scss */
.ei-error-oct::before,
.ei-icon_error-oct::before {
  content: '\e062';
}
/* line 26, elegant-icons-sass.scss */
.ei-error-triangle::before,
.ei-icon_error-triangle::before {
  content: '\e063';
}
/* line 26, elegant-icons-sass.scss */
.ei-question_alt::before,
.ei-icon_question_alt::before {
  content: '\e064';
}
/* line 26, elegant-icons-sass.scss */
.ei-comment::before,
.ei-icon_comment::before {
  content: '\e065';
}
/* line 26, elegant-icons-sass.scss */
.ei-chat::before,
.ei-icon_chat::before {
  content: '\e066';
}
/* line 26, elegant-icons-sass.scss */
.ei-vol-mute::before,
.ei-icon_vol-mute::before {
  content: '\e067';
}
/* line 26, elegant-icons-sass.scss */
.ei-volume-low::before,
.ei-icon_volume-low::before {
  content: '\e068';
}
/* line 26, elegant-icons-sass.scss */
.ei-volume-high::before,
.ei-icon_volume-high::before {
  content: '\e069';
}
/* line 26, elegant-icons-sass.scss */
.ei-quotations_alt::before,
.ei-icon_quotations_alt::before {
  content: '\e06a';
}
/* line 26, elegant-icons-sass.scss */
.ei-clock::before,
.ei-icon_clock::before {
  content: '\e06b';
}
/* line 26, elegant-icons-sass.scss */
.ei-lock::before,
.ei-icon_lock::before {
  content: '\e06c';
}
/* line 26, elegant-icons-sass.scss */
.ei-lock-open::before,
.ei-icon_lock-open::before {
  content: '\e06d';
}
/* line 26, elegant-icons-sass.scss */
.ei-key::before,
.ei-icon_key::before {
  content: '\e06e';
}
/* line 26, elegant-icons-sass.scss */
.ei-cloud::before,
.ei-icon_cloud::before {
  content: '\e06f';
}
/* line 26, elegant-icons-sass.scss */
.ei-cloud-upload::before,
.ei-icon_cloud-upload::before {
  content: '\e070';
}
/* line 26, elegant-icons-sass.scss */
.ei-cloud-download::before,
.ei-icon_cloud-download::before {
  content: '\e071';
}
/* line 26, elegant-icons-sass.scss */
.ei-lightbulb::before,
.ei-icon_lightbulb::before {
  content: '\e072';
}
/* line 26, elegant-icons-sass.scss */
.ei-gift::before,
.ei-icon_gift::before {
  content: '\e073';
}
/* line 26, elegant-icons-sass.scss */
.ei-house::before,
.ei-icon_house::before {
  content: '\e074';
}
/* line 26, elegant-icons-sass.scss */
.ei-camera::before,
.ei-icon_camera::before {
  content: '\e075';
}
/* line 26, elegant-icons-sass.scss */
.ei-mail::before,
.ei-icon_mail::before {
  content: '\e076';
}
/* line 26, elegant-icons-sass.scss */
.ei-cone::before,
.ei-icon_cone::before {
  content: '\e077';
}
/* line 26, elegant-icons-sass.scss */
.ei-ribbon::before,
.ei-icon_ribbon::before {
  content: '\e078';
}
/* line 26, elegant-icons-sass.scss */
.ei-bag::before,
.ei-icon_bag::before {
  content: '\e079';
}
/* line 26, elegant-icons-sass.scss */
.ei-cart::before,
.ei-icon_cart::before {
  content: '\e07a';
}
/* line 26, elegant-icons-sass.scss */
.ei-tag::before,
.ei-icon_tag::before {
  content: '\e07b';
}
/* line 26, elegant-icons-sass.scss */
.ei-tags::before,
.ei-icon_tags::before {
  content: '\e07c';
}
/* line 26, elegant-icons-sass.scss */
.ei-trash::before,
.ei-icon_trash::before {
  content: '\e07d';
}
/* line 26, elegant-icons-sass.scss */
.ei-cursor::before,
.ei-icon_cursor::before {
  content: '\e07e';
}
/* line 26, elegant-icons-sass.scss */
.ei-mic::before,
.ei-icon_mic::before {
  content: '\e07f';
}
/* line 26, elegant-icons-sass.scss */
.ei-compass::before,
.ei-icon_compass::before {
  content: '\e080';
}
/* line 26, elegant-icons-sass.scss */
.ei-pin::before,
.ei-icon_pin::before {
  content: '\e081';
}
/* line 26, elegant-icons-sass.scss */
.ei-pushpin::before,
.ei-icon_pushpin::before {
  content: '\e082';
}
/* line 26, elegant-icons-sass.scss */
.ei-map::before,
.ei-icon_map::before {
  content: '\e083';
}
/* line 26, elegant-icons-sass.scss */
.ei-drawer::before,
.ei-icon_drawer::before {
  content: '\e084';
}
/* line 26, elegant-icons-sass.scss */
.ei-toolbox::before,
.ei-icon_toolbox::before {
  content: '\e085';
}
/* line 26, elegant-icons-sass.scss */
.ei-book::before,
.ei-icon_book::before {
  content: '\e086';
}
/* line 26, elegant-icons-sass.scss */
.ei-contacts::before,
.ei-icon_contacts::before {
  content: '\e087';
}
/* line 26, elegant-icons-sass.scss */
.ei-archive::before,
.ei-icon_archive::before {
  content: '\e088';
}
/* line 26, elegant-icons-sass.scss */
.ei-heart::before,
.ei-icon_heart::before {
  content: '\e089';
}
/* line 26, elegant-icons-sass.scss */
.ei-profile::before,
.ei-icon_profile::before {
  content: '\e08a';
}
/* line 26, elegant-icons-sass.scss */
.ei-group::before,
.ei-icon_group::before {
  content: '\e08b';
}
/* line 26, elegant-icons-sass.scss */
.ei-grid-2x2::before,
.ei-icon_grid-2x2::before {
  content: '\e08c';
}
/* line 26, elegant-icons-sass.scss */
.ei-grid-3x3::before,
.ei-icon_grid-3x3::before {
  content: '\e08d';
}
/* line 26, elegant-icons-sass.scss */
.ei-music::before,
.ei-icon_music::before {
  content: '\e08e';
}
/* line 26, elegant-icons-sass.scss */
.ei-pause_alt::before,
.ei-icon_pause_alt::before {
  content: '\e08f';
}
/* line 26, elegant-icons-sass.scss */
.ei-phone::before,
.ei-icon_phone::before {
  content: '\e090';
}
/* line 26, elegant-icons-sass.scss */
.ei-upload::before,
.ei-icon_upload::before {
  content: '\e091';
}
/* line 26, elegant-icons-sass.scss */
.ei-download::before,
.ei-icon_download::before {
  content: '\e092';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_facebook::before,
.ei-icon_social_facebook::before {
  content: '\e093';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_twitter::before,
.ei-icon_social_twitter::before {
  content: '\e094';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_pinterest::before,
.ei-icon_social_pinterest::before {
  content: '\e095';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_googleplus::before,
.ei-icon_social_googleplus::before {
  content: '\e096';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_tumblr::before,
.ei-icon_social_tumblr::before {
  content: '\e097';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_tumbleupon::before,
.ei-icon_social_tumbleupon::before {
  content: '\e098';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_wordpress::before,
.ei-icon_social_wordpress::before {
  content: '\e099';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_instagram::before,
.ei-icon_social_instagram::before {
  content: '\e09a';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_dribbble::before,
.ei-icon_social_dribbble::before {
  content: '\e09b';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_vimeo::before,
.ei-icon_social_vimeo::before {
  content: '\e09c';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_linkedin::before,
.ei-icon_social_linkedin::before {
  content: '\e09d';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_rss::before,
.ei-icon_social_rss::before {
  content: '\e09e';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_deviantart::before,
.ei-icon_social_deviantart::before {
  content: '\e09f';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_share::before,
.ei-icon_social_share::before {
  content: '\e0a0';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_myspace::before,
.ei-icon_social_myspace::before {
  content: '\e0a1';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_skype::before,
.ei-icon_social_skype::before {
  content: '\e0a2';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_youtube::before,
.ei-icon_social_youtube::before {
  content: '\e0a3';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_picassa::before,
.ei-icon_social_picassa::before {
  content: '\e0a4';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_googledrive::before,
.ei-icon_social_googledrive::before {
  content: '\e0a5';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_flickr::before,
.ei-icon_social_flickr::before {
  content: '\e0a6';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_blogger::before,
.ei-icon_social_blogger::before {
  content: '\e0a7';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_spotify::before,
.ei-icon_social_spotify::before {
  content: '\e0a8';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_delicious::before,
.ei-icon_social_delicious::before {
  content: '\e0a9';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_facebook_circle::before,
.ei-icon_social_facebook_circle::before {
  content: '\e0aa';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_twitter_circle::before,
.ei-icon_social_twitter_circle::before {
  content: '\e0ab';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_pinterest_circle::before,
.ei-icon_social_pinterest_circle::before {
  content: '\e0ac';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_googleplus_circle::before,
.ei-icon_social_googleplus_circle::before {
  content: '\e0ad';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_tumblr_circle::before,
.ei-icon_social_tumblr_circle::before {
  content: '\e0ae';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_stumbleupon_circle::before,
.ei-icon_social_stumbleupon_circle::before {
  content: '\e0af';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_wordpress_circle::before,
.ei-icon_social_wordpress_circle::before {
  content: '\e0b0';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_instagram_circle::before,
.ei-icon_social_instagram_circle::before {
  content: '\e0b1';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_dribbble_circle::before,
.ei-icon_social_dribbble_circle::before {
  content: '\e0b2';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_vimeo_circle::before,
.ei-icon_social_vimeo_circle::before {
  content: '\e0b3';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_linkedin_circle::before,
.ei-icon_social_linkedin_circle::before {
  content: '\e0b4';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_rss_circle::before,
.ei-icon_social_rss_circle::before {
  content: '\e0b5';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_deviantart_circle::before,
.ei-icon_social_deviantart_circle::before {
  content: '\e0b6';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_share_circle::before,
.ei-icon_social_share_circle::before {
  content: '\e0b7';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_myspace_circle::before,
.ei-icon_social_myspace_circle::before {
  content: '\e0b8';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_skype_circle::before,
.ei-icon_social_skype_circle::before {
  content: '\e0b9';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_youtube_circle::before,
.ei-icon_social_youtube_circle::before {
  content: '\e0ba';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_picassa_circle::before,
.ei-icon_social_picassa_circle::before {
  content: '\e0bb';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_googledrive_alt2::before,
.ei-icon_social_googledrive_alt2::before {
  content: '\e0bc';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_flickr_circle::before,
.ei-icon_social_flickr_circle::before {
  content: '\e0bd';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_blogger_circle::before,
.ei-icon_social_blogger_circle::before {
  content: '\e0be';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_spotify_circle::before,
.ei-icon_social_spotify_circle::before {
  content: '\e0bf';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_delicious_circle::before,
.ei-icon_social_delicious_circle::before {
  content: '\e0c0';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_facebook_square::before,
.ei-icon_social_facebook_square::before {
  content: '\e0c1';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_twitter_square::before,
.ei-icon_social_twitter_square::before {
  content: '\e0c2';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_pinterest_square::before,
.ei-icon_social_pinterest_square::before {
  content: '\e0c3';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_googleplus_square::before,
.ei-icon_social_googleplus_square::before {
  content: '\e0c4';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_tumblr_square::before,
.ei-icon_social_tumblr_square::before {
  content: '\e0c5';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_stumbleupon_square::before,
.ei-icon_social_stumbleupon_square::before {
  content: '\e0c6';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_wordpress_square::before,
.ei-icon_social_wordpress_square::before {
  content: '\e0c7';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_instagram_square::before,
.ei-icon_social_instagram_square::before {
  content: '\e0c8';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_dribbble_square::before,
.ei-icon_social_dribbble_square::before {
  content: '\e0c9';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_vimeo_square::before,
.ei-icon_social_vimeo_square::before {
  content: '\e0ca';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_linkedin_square::before,
.ei-icon_social_linkedin_square::before {
  content: '\e0cb';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_rss_square::before,
.ei-icon_social_rss_square::before {
  content: '\e0cc';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_deviantart_square::before,
.ei-icon_social_deviantart_square::before {
  content: '\e0cd';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_share_square::before,
.ei-icon_social_share_square::before {
  content: '\e0ce';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_myspace_square::before,
.ei-icon_social_myspace_square::before {
  content: '\e0cf';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_skype_square::before,
.ei-icon_social_skype_square::before {
  content: '\e0d0';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_youtube_square::before,
.ei-icon_social_youtube_square::before {
  content: '\e0d1';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_picassa_square::before,
.ei-icon_social_picassa_square::before {
  content: '\e0d2';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_googledrive_square::before,
.ei-icon_social_googledrive_square::before {
  content: '\e0d3';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_flickr_square::before,
.ei-icon_social_flickr_square::before {
  content: '\e0d4';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_blogger_square::before,
.ei-icon_social_blogger_square::before {
  content: '\e0d5';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_spotify_square::before,
.ei-icon_social_spotify_square::before {
  content: '\e0d6';
}
/* line 26, elegant-icons-sass.scss */
.ei-social_delicious_square::before,
.ei-icon_social_delicious_square::before {
  content: '\e0d7';
}
/* line 26, elegant-icons-sass.scss */
.ei-printer::before,
.ei-icon_printer::before {
  content: '\e103';
}
/* line 26, elegant-icons-sass.scss */
.ei-calulator::before,
.ei-icon_calulator::before {
  content: '\e0ee';
}
/* line 26, elegant-icons-sass.scss */
.ei-building::before,
.ei-icon_building::before {
  content: '\e0ef';
}
/* line 26, elegant-icons-sass.scss */
.ei-floppy::before,
.ei-icon_floppy::before {
  content: '\e0e8';
}
/* line 26, elegant-icons-sass.scss */
.ei-drive::before,
.ei-icon_drive::before {
  content: '\e0ea';
}
/* line 26, elegant-icons-sass.scss */
.ei-search-2::before,
.ei-icon_search-2::before {
  content: '\e101';
}
/* line 26, elegant-icons-sass.scss */
.ei-id::before,
.ei-icon_id::before {
  content: '\e107';
}
/* line 26, elegant-icons-sass.scss */
.ei-id-2::before,
.ei-icon_id-2::before {
  content: '\e108';
}
/* line 26, elegant-icons-sass.scss */
.ei-puzzle::before,
.ei-icon_puzzle::before {
  content: '\e102';
}
/* line 26, elegant-icons-sass.scss */
.ei-like::before,
.ei-icon_like::before {
  content: '\e106';
}
/* line 26, elegant-icons-sass.scss */
.ei-dislike::before,
.ei-icon_dislike::before {
  content: '\e0eb';
}
/* line 26, elegant-icons-sass.scss */
.ei-mug::before,
.ei-icon_mug::before {
  content: '\e105';
}
/* line 26, elegant-icons-sass.scss */
.ei-currency::before,
.ei-icon_currency::before {
  content: '\e0ed';
}
/* line 26, elegant-icons-sass.scss */
.ei-wallet::before,
.ei-icon_wallet::before {
  content: '\e100';
}
/* line 26, elegant-icons-sass.scss */
.ei-pens::before,
.ei-icon_pens::before {
  content: '\e104';
}
/* line 26, elegant-icons-sass.scss */
.ei-easel::before,
.ei-icon_easel::before {
  content: '\e0e9';
}
/* line 26, elegant-icons-sass.scss */
.ei-flowchart::before,
.ei-icon_flowchart::before {
  content: '\e109';
}
/* line 26, elegant-icons-sass.scss */
.ei-datareport::before,
.ei-icon_datareport::before {
  content: '\e0ec';
}
/* line 26, elegant-icons-sass.scss */
.ei-briefcase::before,
.ei-icon_briefcase::before {
  content: '\e0fe';
}
/* line 26, elegant-icons-sass.scss */
.ei-shield::before,
.ei-icon_shield::before {
  content: '\e0f6';
}
/* line 26, elegant-icons-sass.scss */
.ei-percent::before,
.ei-icon_percent::before {
  content: '\e0fb';
}
/* line 26, elegant-icons-sass.scss */
.ei-globe::before,
.ei-icon_globe::before {
  content: '\e0e2';
}
/* line 26, elegant-icons-sass.scss */
.ei-globe-2::before,
.ei-icon_globe-2::before {
  content: '\e0e3';
}
/* line 26, elegant-icons-sass.scss */
.ei-target::before,
.ei-icon_target::before {
  content: '\e0f5';
}
/* line 26, elegant-icons-sass.scss */
.ei-hourglass::before,
.ei-icon_hourglass::before {
  content: '\e0e1';
}
/* line 26, elegant-icons-sass.scss */
.ei-balance::before,
.ei-icon_balance::before {
  content: '\e0ff';
}
/* line 26, elegant-icons-sass.scss */
.ei-rook::before,
.ei-icon_rook::before {
  content: '\e0f8';
}
/* line 26, elegant-icons-sass.scss */
.ei-printer-alt::before,
.ei-icon_printer-alt::before {
  content: '\e0fa';
}
/* line 26, elegant-icons-sass.scss */
.ei-calculator_alt::before,
.ei-icon_calculator_alt::before {
  content: '\e0e7';
}
/* line 26, elegant-icons-sass.scss */
.ei-building_alt::before,
.ei-icon_building_alt::before {
  content: '\e0fd';
}
/* line 26, elegant-icons-sass.scss */
.ei-floppy_alt::before,
.ei-icon_floppy_alt::before {
  content: '\e0e4';
}
/* line 26, elegant-icons-sass.scss */
.ei-drive_alt::before,
.ei-icon_drive_alt::before {
  content: '\e0e5';
}
/* line 26, elegant-icons-sass.scss */
.ei-search_alt::before,
.ei-icon_search_alt::before {
  content: '\e0f7';
}
/* line 26, elegant-icons-sass.scss */
.ei-id_alt::before,
.ei-icon_id_alt::before {
  content: '\e0e0';
}
/* line 26, elegant-icons-sass.scss */
.ei-id-2_alt::before,
.ei-icon_id-2_alt::before {
  content: '\e0fc';
}
/* line 26, elegant-icons-sass.scss */
.ei-puzzle_alt::before,
.ei-icon_puzzle_alt::before {
  content: '\e0f9';
}
/* line 26, elegant-icons-sass.scss */
.ei-like_alt::before,
.ei-icon_like_alt::before {
  content: '\e0dd';
}
/* line 26, elegant-icons-sass.scss */
.ei-dislike_alt::before,
.ei-icon_dislike_alt::before {
  content: '\e0f1';
}
/* line 26, elegant-icons-sass.scss */
.ei-mug_alt::before,
.ei-icon_mug_alt::before {
  content: '\e0dc';
}
/* line 26, elegant-icons-sass.scss */
.ei-currency_alt::before,
.ei-icon_currency_alt::before {
  content: '\e0f3';
}
/* line 26, elegant-icons-sass.scss */
.ei-wallet_alt::before,
.ei-icon_wallet_alt::before {
  content: '\e0d8';
}
/* line 26, elegant-icons-sass.scss */
.ei-pens_alt::before,
.ei-icon_pens_alt::before {
  content: '\e0db';
}
/* line 26, elegant-icons-sass.scss */
.ei-easel_alt::before,
.ei-icon_easel_alt::before {
  content: '\e0f0';
}
/* line 26, elegant-icons-sass.scss */
.ei-flowchart_alt::before,
.ei-icon_flowchart_alt::before {
  content: '\e0df';
}
/* line 26, elegant-icons-sass.scss */
.ei-datareport_alt::before,
.ei-icon_datareport_alt::before {
  content: '\e0f2';
}
/* line 26, elegant-icons-sass.scss */
.ei-briefcase_alt::before,
.ei-icon_briefcase_alt::before {
  content: '\e0f4';
}
/* line 26, elegant-icons-sass.scss */
.ei-shield_alt::before,
.ei-icon_shield_alt::before {
  content: '\e0d9';
}
/* line 26, elegant-icons-sass.scss */
.ei-percent_alt::before,
.ei-icon_percent_alt::before {
  content: '\e0da';
}
/* line 26, elegant-icons-sass.scss */
.ei-globe_alt::before,
.ei-icon_globe_alt::before {
  content: '\e0de';
}
/* line 26, elegant-icons-sass.scss */
.ei-clipboard::before,
.ei-icon_clipboard::before {
  content: '\e0e6';
}
body {
  font-family: "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: 0;
}
/*
.font-size {
    font-size: 16px;
    line-height: 1.5;
}

body {
    font-size: 16px;
}

a {
    text-decoration: underline;

    &:hover, &:focus {
        color: @hover;
    }
}

.btn {
    text-decoration: none;
}

.footer, #mapa {
    a {
        text-decoration: none;
    }
}
*/
.links {
  font-size: 16px;
}
.links li:last-child {
  border-bottom: 1px solid #8c8783;
}
.links li:first-child {
  border-top: 1px solid #8c8783;
}
.mega-dropdown-menu .links li:first-child {
  border-top: none;
}
.pre-titol {
  font-size: 16px;
}
.breadcrumb-- {
  font-size: 90%;
  padding-left: 0;
  padding-right: 0;
}
.breadcrumb-- a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
#main a.btn,
main a.btn {
  text-decoration: none;
}
.btn {
  font-weight: bold;
}
.form-control {
  border: 0 !important;
}
input:focus:required:invalid {
  border-color: red;
  box-shadow: 0 0 0 0.2rem rgba(192, 19, 19, 0.671);
}
.bg-blue {
  background-color: #084EAF !important;
}
.bg-orange {
  background-color: #CA471C !important;
}
.bg-green {
  background-color: #007E11 !important;
}
.bg-gray {
  background-color: #f0f1eb !important;
}
.js-masonry,
.container-isotope {
  padding: 0 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  width: calc(100% + 20px);
}
.view-more {
  text-decoration: none !important;
}
.menu-left .navbar-header {
  display: flex;
  align-self: center;
}
.menu-left .navbar-toggle {
  margin-top: 0;
  margin-bottom: 0;
  height: 50px;
  margin-left: auto;
}
.section-title {
  float: none;
  margin-bottom: 20px;
}
.views-field .content-field {
  width: 100%;
}
.s-image img {
  width: 100%;
  height: auto;
}
.s-image .section-title {
  font-weight: bold;
}
.new-img {
  margin-bottom: 0;
}
.new-img figcaption {
  padding: 5px 10px;
}
.top-img .new-img {
  margin-bottom: 0;
}
.share-btn {
  display: flex;
  align-items: center;
  width: fit-content;
  justify-content: center;
  margin-bottom: 15px;
}
.distribuidora {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.distribuidora .capsetes-central {
  margin-bottom: 20px;
}
.distribuidora .capsetes-central a {
  text-decoration: none !important;
}
.distribuidora .fitxa {
  margin: 0;
  width: 100%;
  display: flex;
  height: 100%;
}
@media (max-width: 992px) {
  .distribuidora .video,
  .distribuidora p {
    display: none;
  }
}
.fitxa.cercador .fitxa-content {
  padding: 0 10px;
}
.new-post.capsetes-central {
  display: flex;
  flex-direction: column;
}
.new-post.capsetes-central img {
  margin-bottom: 10px;
}
.new-post.capsetes-central .h1,
.new-post.capsetes-central .h2,
.new-post.capsetes-central .h3,
.new-post.capsetes-central h1,
.new-post.capsetes-central h2,
.new-post.capsetes-central h3 {
  margin-top: 0;
  font-weight: bold;
}
.new-post.capsetes-central .h1 a,
.new-post.capsetes-central .h2 a,
.new-post.capsetes-central .h3 a,
.new-post.capsetes-central h1 a,
.new-post.capsetes-central h2 a,
.new-post.capsetes-central h3 a {
  text-decoration: none;
  color: #000;
}
.new-post.capsetes-central .h1 a:hover,
.new-post.capsetes-central .h2 a:hover,
.new-post.capsetes-central .h3 a:hover,
.new-post.capsetes-central h1 a:hover,
.new-post.capsetes-central h2 a:hover,
.new-post.capsetes-central h3 a:hover,
.new-post.capsetes-central .h1 a:focus,
.new-post.capsetes-central .h2 a:focus,
.new-post.capsetes-central .h3 a:focus,
.new-post.capsetes-central h1 a:focus,
.new-post.capsetes-central h2 a:focus,
.new-post.capsetes-central h3 a:focus {
  color: #03420d;
}
.new-post.capsetes-central p {
  margin: 0 0 10px 0;
}
.new-post.capsetes-central p.mesinfo {
  margin-top: auto;
  display: flex;
}
.new-post.capsetes-central p.mesinfo a {
  margin-left: auto;
  text-decoration: none;
  position: relative;
  right: 0;
  bottom: 0;
}
.post.actual p {
  margin: 0 !important;
  font-size: 15px;
}
.capsetes-central ul {
  margin-left: 0 !important;
}
.header .header-nav .logo {
  margin: 0;
  text-align: left;
  width: 120px;
}
/*
.access {
    .seccions {
        display: flex;

    }
    .col-xs-12  {
        padding-left: 0;
        padding-right: 0;
        @media (min-width: @screen-md-min) {
            padding-left: 10px;
            padding-right: 10px;
        }
    }
    @media (min-width: @screen-md-min) {
        padding: 0 !important;
    }
}
*/
#sr-kw-only a {
  top: -200px;
}
/* page-title */
header.page-title,
.header-title-bg,
.headerImg {
  background-size: cover;
  background-color: #007B13;
  color: #fff;
  background-position: center center;
  min-height: 100px;
  height: auto;
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
  position: relative;
  text-shadow: 1px 1px 1px #000;
  padding: 0;
}
@media (min-width: 992px) {
  header.page-title,
  .header-title-bg,
  .headerImg {
    min-height: 150px;
  }
}
@media (min-width: 1200px) {
  header.page-title,
  .header-title-bg,
  .headerImg {
    min-height: 200px;
  }
}
header.page-title .cover,
.header-title-bg .cover,
.headerImg .cover {
  width: 100%;
  background-color: transparent;
}
header.page-title .container,
.header-title-bg .container,
.headerImg .container {
  position: relative;
}
header.page-title .text-title,
.header-title-bg .text-title,
.headerImg .text-title,
header.page-title h1,
.header-title-bg h1,
.headerImg h1,
header.page-title .page-title-heading,
.header-title-bg .page-title-heading,
.headerImg .page-title-heading,
header.page-title span,
.header-title-bg span,
.headerImg span {
  font-weight: bold;
  margin: 0;
  padding: 0;
}
header.page-title .badge,
.header-title-bg .badge,
.headerImg .badge {
  font-size: 0.8rem;
  vertical-align: middle;
  margin: 0;
}
.headerImg h1,
.headerImg span:first-child {
  float: none;
}
.headerImg span,
.headerImg h1 {
  font-size: 23px !important;
  text-shadow: 1px 1px 1px #000;
  background-color: transparent;
}
@media (min-width: 600px) {
  .headerImg span,
  .headerImg h1 {
    font-size: 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.videos-title {
  position: relative;
  display: flex;
  margin: 20px auto;
}
.videos-title .veure-videos {
  position: absolute;
  top: 5px;
  right: 0;
}
.videos {
  margin-bottom: 20px;
}
.mega-dropdown-menu {
  width: 100%;
  border-radius: 0 !important;
  background: #fff;
  left: 0 !important;
  right: 0 !important;
}
@media (min-width: 992px) {
  .mega-dropdown-menu {
    margin: 0;
    left: auto !important;
    min-width: 600px;
  }
}
.mega-dropdown-menu ul {
  padding: 0;
  list-style: none;
}
.mega-dropdown-menu .links {
  margin: 0;
  padding: 5px;
}
.mega-dropdown-menu .links li {
  border-bottom: 1px solid #DADADA;
}
.mega-dropdown-menu .links a:hover .more:before,
.mega-dropdown-menu .links a:focus .more:before {
  color: #007B13;
}
.mega-dropdown-menu .dades-menu {
  padding: 5px;
}
.dropdown-header {
  padding: 3px 0;
}
.header ul.xarxes-socials li {
  margin: 0;
}
@media (min-width: 992px) {
  .header ul.xarxes-socials li a {
    margin: 0 0 0 4px !important;
  }
}
.dades-menu li {
  position: relative;
  border-bottom: 1px solid #DADADA;
  padding: 5px 0;
}
.dades-menu li:last-child {
  border-bottom: 0;
}
.dades-menu li a {
  display: flex;
  align-items: center;
}
.dades-menu li a .icon {
  color: #007B13;
  font-size: 50px;
  line-height: 1;
  padding-right: 10px;
  min-width: 70px;
}
.dades-menu li a .text {
  font-weight: bold;
  line-height: 1.2;
}
.dades-menu li a:hover,
.dades-menu li a:focus {
  text-decoration: none;
  color: #007B13;
}
.views-field:active .content-field,
.views-field:focus .content-field,
.views-field:hover .content-field {
  color: #fff;
}
.views-field .content-field {
  padding: 10px 20px;
}
.views-field .content-field h3 {
  min-height: 60px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 20px;
}
.views-field .content-field h3 a {
  color: #fff;
}
.views-field .content-field p.more a {
  text-decoration: none !important;
  background-color: transparent;
  border: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-indent: -1000rem;
}
.views-field .content-field p.more a:hover,
.views-field .content-field p.more a:focus {
  color: #eee;
  background-color: transparent;
}
.view-more:hover,
.view-more:focus {
  background: #007B13;
  color: #fff;
  text-decoration: none;
}
a.e-button img {
  max-width: 50px;
}
.hover .capsa-more {
  bottom: 25px !important;
  right: 30% !important;
  font-size: 13px !important;
  font-weight: normal !important;
}
.capsa-color a {
  text-decoration: none !important;
}
.capsa .hover,
.mosaic-capsa .hover {
  text-decoration: none;
}
.white-popup-block {
  background: #FFF;
  padding: 20px 30px;
  text-align: left;
  max-width: 650px;
  margin: 40px auto;
  position: relative;
}
.aside-nav-content .title {
  margin: 0;
  padding: 10px;
  font-weight: bold;
}
.aside-nav-content ul a {
  font-size: 16px;
  padding: 7px 30px 7px 10px;
}
.contact-info {
  margin-bottom: 20px;
  padding: 15px;
}
.contact-info ul {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}
.contact-info a {
  word-break: break-all;
}
address a {
  word-break: break-all;
}
.bloc-banner {
  margin: 10px 0 20px 0;
}
.checkbox-group {
  margin: 20px auto;
  width: 100%;
  position: relative;
}
.checkbox-group [type="checkbox"] {
  position: absolute;
  top: 3px;
  left: 0;
}
.checkbox-group label {
  padding-left: 20px;
  display: block;
  margin: 0;
  font-size: 14px;
}
.custom-checkbox {
  margin: 20px auto;
  width: 100%;
  position: relative;
  /* Base for label styling */
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* Disabled checkbox */
  /* Accessibility */
}
.custom-checkbox [type="checkbox"]:not(:checked),
.custom-checkbox [type="checkbox"]:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
}
.custom-checkbox [type="checkbox"]:not(:checked) + label,
.custom-checkbox [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 2.3em;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.2;
  margin: 0;
  display: block;
}
.custom-checkbox [type="checkbox"]:not(:checked) + label:before,
.custom-checkbox [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #aaa;
  background: #FFF;
  border-radius: 0.2em;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 rgba(203, 34, 237, 0.2);
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}
.custom-checkbox [type="checkbox"]:not(:checked) + label:after,
.custom-checkbox [type="checkbox"]:checked + label:after {
  content: '✓';
  position: absolute;
  top: 0.525em;
  left: 0.18em;
  font-size: 1.375em;
  color: #007B13;
  line-height: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.custom-checkbox [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0) rotate(45deg);
  transform: scale(0) rotate(45deg);
}
.custom-checkbox [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
}
.custom-checkbox [type="checkbox"]:disabled:not(:checked) + label:before,
.custom-checkbox [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #e9e9e9;
}
.custom-checkbox [type="checkbox"]:disabled:checked + label:after {
  color: #777;
}
.custom-checkbox [type="checkbox"]:disabled + label {
  color: #aaa;
}
.custom-checkbox [type="checkbox"]:checked:focus + label:before,
.custom-checkbox [type="checkbox"]:not(:checked):focus + label:before {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(74, 237, 34, 0.2);
}
.form-group .option-left {
  overflow: hidden;
}
.form-group .option-left input[type=radio],
.form-group .option-left input[type=checkbox] {
  display: none;
}
.form-group .option-left input[type=radio] + label,
.form-group .option-left input[type=checkbox] + label {
  padding: 6px 0 6px 30px;
  margin: 0;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.form-group .option-left input[type=checkbox] + label:before {
  content: '';
  border-radius: 0;
}
.form-group .option-left input[type=checkbox]:checked + label:before {
  font-family: 'ElegantIcons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  content: "\4e";
  background-color: #fff;
  color: #007B13;
}
.form-group .option-left input[type=radio] + label:before {
  content: '';
  border-radius: 50%;
  cursor: pointer;
}
.form-group .option-left input[type=radio] + label:before,
.form-group .option-left input[type=checkbox] + label:before {
  line-height: 18px;
  color: #000;
  text-align: center;
}
.form-group .option-left label {
  display: inline-block;
  float: left;
  cursor: pointer;
  position: relative;
}
.form-group .option-left label:before {
  float: left;
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 10px 0 auto;
  background-color: #fff;
  border: 1px solid #ccc;
  position: absolute;
  top: 6px;
  left: 0;
}
.link-title a {
  text-decoration: none;
}
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  margin-bottom: 30px;
}
.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}
.custom-map {
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
  height: 0;
  margin-bottom: 30px;
}
.custom-map .custom-iframe {
  left: 0;
  top: -46px;
  height: calc(100% + 46px);
  width: 100%;
  position: absolute;
  border: 0;
}
#mapa .border-left:first-child {
  border-left: 0;
}
/* hide on mobile -- amagar a movils */
.d-lg-block {
  display: none;
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}
.d-lg-none {
  display: block;
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}
.bg {
  background-color: #F3F2F0;
}
.color-gris {
  color: #D9DADB;
}
.w-100 {
  width: 100% !important;
}
.h-100 {
  height: 100%;
}
.text-padding {
  padding: 20px;
}
/* flexbox */
.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}
.d-block {
  display: block;
}
.font-weight-bold {
  font-weight: bold !important;
}
.font-weight-normal {
  font-weight: normal !important;
}
.position-relative {
  position: relative;
}
/* types */
.display-1 {
  font-size: 5rem !important;
}
.display-2 {
  font-size: 4rem !important;
}
.display-3 {
  font-size: 3rem !important;
}
.h1 {
  font-size: 33px !important;
}
.h2 {
  font-size: 27px !important;
}
.h3 {
  font-size: 23px !important;
}
.h4 {
  font-size: 17px !important;
}
.h5 {
  font-size: 13px !important;
}
.h6 {
  font-size: 12px !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
.destacat {
  line-height: 1.25;
}
.f20 {
  font-size: 20px;
}
@media (min-width: 992px) {
  .d-md-none {
    display: none;
  }
}
@media (min-width: 1200px) {
  .d-lg-none {
    display: none;
  }
}
/* margins i paddings */
.m-0 {
  margin: 0 !important;
}
.mt00 {
  margin-top: 0px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mb00 {
  margin-bottom: 0px !important;
}
.mb05 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mr00 {
  margin-right: 0px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.ml00 {
  margin-left: 0px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.pt00 {
  padding-top: 0px !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt30 {
  padding-top: 30px !important;
}
.pb00 {
  padding-bottom: 0px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}
.pr00 {
  padding-right: 0px !important;
}
.pr10 {
  padding-right: 10px !important;
}
.pr20 {
  padding-right: 20px !important;
}
.pr30 {
  padding-right: 30px !important;
}
.pl00 {
  padding-left: 0px !important;
}
.pl10 {
  padding-left: 10px !important;
}
.pl20 {
  padding-left: 20px !important;
}
.pl30 {
  padding-left: 30px !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.ml-auto {
  margin-left: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 5px !important;
}
.pl-2 {
  padding-left: 10px !important;
}
.pl-3 {
  padding-left: 15px !important;
}
.pl-4 {
  padding-left: 20px !important;
}
.pl-5 {
  padding-left: 30px !important;
}
.pl-6 {
  padding-left: 40px !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 5px !important;
}
.pt-2 {
  padding-top: 10px !important;
}
.pt-3 {
  padding-top: 15px !important;
}
.pt-4 {
  padding-top: 20px !important;
}
.pt-5 {
  padding-top: 30px !important;
}
.pt-6 {
  padding-top: 40px !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 5px !important;
}
.pr-2 {
  padding-right: 10px !important;
}
.pr-3 {
  padding-right: 15px !important;
}
.pr-4 {
  padding-right: 20px !important;
}
.pr-5 {
  padding-right: 30px !important;
}
.pr-6 {
  padding-right: 40px !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 5px !important;
}
.pb-2 {
  padding-bottom: 10px !important;
}
.pb-3 {
  padding-bottom: 15px !important;
}
.pb-4 {
  padding-bottom: 20px !important;
}
.pb-5 {
  padding-bottom: 30px !important;
}
.pb-6 {
  padding-bottom: 40px !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 5px !important;
}
.p-2 {
  padding: 10px !important;
}
.p-3 {
  padding: 15px !important;
}
.p-4 {
  padding: 20px !important;
}
.p-5 {
  padding: 30px !important;
}
@media (min-width: 1200px) {
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
}
.sticky-sidebar {
  position: relative;
}
@media (min-width: 992px) {
  .sticky-sidebar {
    display: flex;
  }
}
.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  z-index: 1020;
}
.float-phone {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1020;
}
.float-phone:hover,
.float-phone:focus {
  text-decoration: none;
}
@media (min-width: 992px) {
  .float-phone {
    display: none;
  }
}
.rotate {
  transition: 0.3s transform ease-in-out;
}
.collapsed .rotate {
  transform: rotate(180deg);
}
/* page-title */
header.page-title {
  background-size: cover;
  background-color: #007B13;
  color: #fff;
  background-position: center center;
  min-height: 100px;
}
@media (min-width: 992px) {
  header.page-title {
    min-height: 150px;
  }
}
@media (min-width: 1200px) {
  header.page-title {
    min-height: 200px;
  }
}
header.page-title .cover-header {
  width: 100%;
  background-color: transparent;
}
@media (min-width: 1200px) {
  header.page-title .cover-header {
    background-color: transparent;
  }
}
header.page-title .page-title-heading {
  margin: 1rem 0;
}
header.page-title .badge {
  font-size: 0.8rem;
  vertical-align: middle;
  margin: 0;
}
.resum-fitxa {
  padding: 1rem;
  background-color: rgba(13, 176, 43, 0.1);
}
.resum-fitxa ul.columns {
  column-rule: 0;
  column-count: 1;
  column-gap: 0;
}
@media (min-width: 1200px) {
  .resum-fitxa ul.columns {
    column-count: 2;
    column-gap: 1.5rem;
  }
}
.resum-fitxa ul.columns li {
  margin-bottom: 1rem;
  display: flex;
}
.resum-fitxa ul.columns li .fa {
  font-size: 10px;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}
.fitxa-title {
  margin: 0 !important;
}
.fitxa-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid;
  padding: 1rem;
  font-weight: bold;
  border-color: #007B13 !important;
  background-color: #007B13;
  color: #fff;
  margin: 0;
  text-decoration: none;
}
.fitxa-link.collapsed {
  background-color: #fff;
  color: #007B13;
}
.fitxa-link:hover,
.fitxa-link:focus {
  text-decoration: none;
  background-color: #007B13;
  color: #fff;
}
.img-fitxa {
  display: block;
  position: relative;
}
.related-curs {
  width: 100%;
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-size: cover;
  background-position: center center;
  background-color: #007B13;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: bold;
  text-shadow: 1px 1px 1px #000;
  text-decoration: none;
}
.related-curs:hover,
.related-curs:focus {
  text-decoration: none;
  color: #fff;
  background-color: #007B13;
  background-image: none !important;
}
@media (min-width: 1200px) {
  .related-curs {
    min-height: 100px;
  }
}
.testimoni {
  width: 100%;
  min-height: 0;
  height: 0;
  padding-bottom: 56.9% !important;
  padding-top: 0 !important;
  position: relative;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 1200px) {
  .testimoni {
    padding-bottom: 85% !important;
  }
}
@media (min-width: 1200px) {
}
.testimoni .title-testimoni {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  min-height: 50px;
}
.testimoni .title-testimoni .h1,
.testimoni .title-testimoni .h2,
.testimoni .title-testimoni .h3,
.testimoni .title-testimoni .h4,
.testimoni .title-testimoni .h5,
.testimoni .title-testimoni .h6,
.testimoni .title-testimoni h1,
.testimoni .title-testimoni h2,
.testimoni .title-testimoni h3,
.testimoni .title-testimoni h4,
.testimoni .title-testimoni h5,
.testimoni .title-testimoni h6 {
  line-height: 1.25;
  margin: 0;
}
.testimoni .title-testimoni p {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 992px) {
  .special-top {
    float: right;
  }
}
@media (min-width: 1200px) {
  .special-top {
    margin-top: -150px;
  }
}
.video-post {
  display: block;
  position: relative;
}
.video-post p {
  font-size: 1.5rem;
}
.video-post a {
  text-decoration: none !important;
}
.video-post a:hover,
.video-post a:focus {
  text-decoration: none;
}
.video-post .play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #007B13;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.video-post .play span {
  margin-left: 3px;
}
.video-post:hover .play,
.video-post:focus .play {
  background-color: #fff;
  color: #007B13;
}
.fitxa-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fitxa-info li {
  display: block;
  padding-bottom: 0.5rem;
}
.fitxa-info li .icon {
  width: 1rem;
}
.fitxa-share-collapse {
  margin-bottom: 20px;
}
.fitxa-share {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  font-size: 3.5rem;
}
.fitxa-share li {
  margin: 0 10px 0 0;
}
.fitxa-share a {
  color: #007B13;
  text-decoration: none;
}
.fitxa-share a:hover,
.fitxa-share a:focus {
  text-decoration: none;
  color: #000;
}
.link-title-btn {
  padding: 6px 1rem;
  background-color: #eee;
  text-decoration: none !important;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .link-title-btn {
    display: none;
  }
}
.link-title-btn .more,
.link-title-btn .more-big,
.link-title-btn .carrot {
  color: #007B13;
  right: 10px;
}
.link-title-btn:hover,
.link-title-btn:focus {
  background-color: #007B13 !important;
  color: #fff !important;
  text-decoration: none;
}
.link-title-btn:hover .more,
.link-title-btn:focus .more,
.link-title-btn:hover .more-big,
.link-title-btn:focus .more-big,
.link-title-btn:hover .carrot,
.link-title-btn:focus .carrot {
  color: #fff;
}
.btn-gris {
  background-color: #eee;
  color: #000;
}
.btn-gris:hover,
.btn-gris:focus {
  background-color: #004b0a !important;
  color: #fff !important;
}
.img-link {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100px;
  overflow: hidden;
  display: flex;
  text-decoration: none !important;
}
@media (min-width: 1200px) {
  .img-link {
    min-height: 140px;
  }
}
.img-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100% !important;
  max-width: fit-content;
  height: auto !important;
  border: 0;
  transition: all 0.2s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: 8;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
}
.img-link .cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
.img-link .link-text {
  position: relative;
  z-index: 100;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}
.img-link .carrot {
  z-index: 100;
  padding: 0;
  margin: auto 10px auto auto;
  color: #fff;
}
.img-link:hover,
.img-link:focus {
  text-decoration: none;
}
.img-link:hover .link-text,
.img-link:focus .link-text,
.img-link:hover .carrot,
.img-link:focus .carrot {
  position: relative;
  z-index: 10;
  color: #fff;
}
.img-link:hover .cover,
.img-link:focus .cover {
  background-color: rgba(0, 123, 19, 0.75);
}
.forum-entrevista {
  display: flex;
  flex-wrap: wrap;
}
.forum-entrevista a {
  color: #000;
  text-decoration: none !important;
}
.forum-entrevista a:hover,
.forum-entrevista a:focus {
  text-decoration: none;
  color: #007B13;
}
.forum-entrevista .metode-quotes {
  margin-top: 0;
}
.foto-entrevista {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.foto-entrevista:before {
  padding-top: 75%;
  display: block;
  content: "";
}
@media (min-width: 768px) {
  .foto-entrevista:before {
    padding-top: 100%;
  }
}
@media (min-width: 992px) {
  .foto-entrevista:before {
    padding-top: 75%;
  }
}
@media (min-width: 1200px) {
  .foto-entrevista:before {
    padding-top: 136%;
  }
}
@media (min-width: 1350px) {
  .foto-entrevista:before {
    padding-top: 125%;
  }
}
.foto-entrevista.apaisada:before {
  padding-top: 56.2%;
  display: block;
  content: "";
}
.foto-entrevista.apaisada img {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
}
.foto-entrevista img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto !important;
  max-width: fit-content;
  height: 100% !important;
  border: 0;
  transition: all 0.2s ease-in-out;
  transform: translate(-50%, -50%);
}
.foto-entrevista .read-more {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 123, 19, 0.75);
  color: #fff;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  text-transform: uppercase;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.video {
  position: relative;
}
.video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(0, 123, 19, 0.75);
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
}
.video .play:before {
  font-family: uab-icons;
  content: '\e623';
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  line-height: 40px;
  padding-left: 7px;
}
.video:hover {
  text-decoration: none;
}
.video:hover .play {
  background: #007B13;
}
.video:hover .play:before {
  color: #ffffff;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bg-video .video-full {
  width: 100%;
  height: auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
}
/* views-field original */
.views-field {
  margin: 10px auto;
  overflow: hidden;
  word-wrap: break-word;
  position: relative;
}
.views-field img {
  width: 100%;
}
.views-field .grid-field {
  top: 0;
}
.views-field .content-field {
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: #fff;
  padding: 18px 20px;
  background: rgba(0, 123, 19, 0.75);
  position: absolute;
  top: calc(100% - 95px);
  left: 0;
  right: 0;
}
.views-field .content-field h4,
.views-field .content-field h3 {
  min-height: 80px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: auto;
  padding-top: 0;
  padding-bottom: 0;
}
.views-field .content-field h4 a,
.views-field .content-field h3 a {
  color: #fff;
}
.views-field .content-field p {
  margin: 0;
}
.views-field:hover .content-field,
.views-field:focus .content-field,
.views-field:active .content-field {
  top: 0;
  height: 100%;
}
/* marginCollection */
.rowFull {
  margin-left: -10px;
  margin-right: -10px;
}
/* media querys */
@media (min-width: 992px) {
  .views-field .content-field {
    top: calc(100% - 95px);
  }
  .views-field .content-field h4,
  .views-field .content-field h3 {
    padding-top: 0;
  }
}
.capsas .capsa-info {
  margin-top: 0;
  float: left;
}
.capsa-color {
  position: relative;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.capsa-color a {
  padding: 20px 30px 20px 20px;
  display: block;
  background-color: #007B13;
  color: #fff;
  position: relative;
  border: 2px solid #007B13;
}
.capsa-color a:hover,
.capsa-color a:focus {
  text-decoration: none;
  background-color: #f7f7f9;
  color: #007B13;
  border: 2px solid #007B13;
}
.capsa-color .icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-weight: bold;
}
.capsa-color-gran {
  position: relative;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .capsa-color-gran {
    margin-bottom: 5px;
  }
}
@media (min-width: 1200px) {
  .capsa-color-gran {
    margin-bottom: 20px;
  }
}
.capsa-color-gran a {
  padding: 20px 30px 20px 20px;
  min-height: 120px;
  display: block;
  background-color: #007B13;
  color: #fff;
  position: relative;
  border: 2px solid #007B13;
}
@media (min-width: 992px) {
  .capsa-color-gran a {
    min-height: auto;
  }
}
@media (min-width: 1200px) {
  .capsa-color-gran a {
    min-height: 120px;
  }
}
.capsa-color-gran a:hover,
.capsa-color-gran a:focus {
  text-decoration: none;
  background-color: #f7f7f9;
  color: #007B13;
  border: 2px solid #007B13;
}
.capsa-color-gran .icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-weight: bold;
}
.capsa-info-fletxa {
  width: 100%;
  float: left;
  min-height: 120px;
  position: relative;
  margin: 5px auto;
}
@media (min-width: 481px) {
  .capsa-info-fletxa {
    margin: 0 auto 20px auto;
  }
}
.capsa-info-fletxa .mosaic-capsa {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.capsa-info-fletxa .mosaic-capsa .hover {
  background-color: #007B13;
}
.capsa-info-fletxa .mosaic-capsa .icon {
  right: 15px;
  left: auto;
  display: inline-block;
  bottom: 10px;
}
.capsa-info {
  width: 100%;
  float: left;
  min-height: 180px;
  position: relative;
  margin: 5px auto;
}
@media (min-width: 481px) {
  .capsa-info {
    margin: 0 auto 20px auto;
  }
}
@media (min-width: 992px) {
  .capsa-info {
    padding-bottom: 100%;
    height: 0;
    min-height: 0;
  }
}
.capsa-info .mosaic-capsa {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.capsa-info-icon {
  width: 100%;
  float: left;
  min-height: 180px;
  position: relative;
  margin: 5px auto;
}
@media (min-width: 481px) {
  .capsa-info-icon {
    margin: 0 auto 20px auto;
  }
}
@media (min-width: 992px) {
  .capsa-info-icon {
    padding-bottom: 100%;
    height: 0;
    min-height: 0;
  }
}
.capsa-info-icon .mosaic-capsa {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.capsa-banner {
  width: 100%;
  float: left;
  position: relative;
  margin: 0 auto 20px auto;
}
.capsa-banner a {
  display: block;
}
.capsa-banner a:hover,
.capsa-banner a:focus {
  text-decoration: none;
}
.capsa-banner img {
  width: 100%;
  height: auto;
}
.mosaic-capsa {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  overflow: hidden;
}
.mosaic-capsa .hover {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  color: #fff;
  text-align: left;
  opacity: 1;
  display: block;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.mosaic-capsa .hover .cover {
  width: 100%;
  padding: 15px;
}
@media (min-width: 992px) {
  .mosaic-capsa .hover .cover {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  .mosaic-capsa .hover .cover {
    padding: 25px;
  }
}
.mosaic-capsa .hover .capsa-content {
  width: 100%;
  padding: 15px;
}
@media (min-width: 992px) {
  .mosaic-capsa .hover .capsa-content {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  .mosaic-capsa .hover .capsa-content {
    padding: 25px;
  }
}
.mosaic-capsa .hover:hover,
.mosaic-capsa .hover:focus {
  background-color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}
.mosaic-capsa .icon {
  position: absolute;
  bottom: 25px;
  left: 25px;
  padding: 0;
  font-size: 30px;
  border-radius: 0;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
@media (min-width: 992px) {
  .mosaic-capsa .icon {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .mosaic-capsa .icon {
    font-size: 35px;
  }
}
.capsa {
  float: left;
  background-color: #eee;
  color: #fff;
  height: 0;
  min-height: 100px;
  display: inline-block;
  width: 100%;
  padding-bottom: 50%;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .capsa {
    width: 100%;
    padding-bottom: 100%;
  }
}
@media (min-width: 992px) {
  .capsa {
    width: 100%;
    padding-bottom: 100%;
  }
}
.capsa .hover {
  color: #fff;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .capsa .hover {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  .capsa .hover {
    padding: 25px;
  }
}
.capsa .hover:hover,
.capsa .hover:focus {
  background: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}
.mosaic {
  margin-top: -10px;
  margin-bottom: 30px;
  width: 100%;
  float: left;
}
@media (min-width: 992px) {
}
.mosaic-grid-sizer,
.mosaic-grid-item {
  width: 100%;
}
@media (min-width: 768px) {
  .mosaic-grid-sizer,
  .mosaic-grid-item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .mosaic-grid-sizer,
  .mosaic-grid-item {
    width: 20%;
  }
}
.mosaic-grid-item {
  margin: 0;
  float: left;
  height: 0;
  min-height: 100px;
  display: inline-block;
  position: relative;
}
.cuadrat-gran {
  width: 100%;
  padding-bottom: 50%;
}
@media (min-width: 768px) {
  .cuadrat-gran {
    width: 50%;
    padding-bottom: 25%;
  }
}
@media (min-width: 992px) {
  .cuadrat-gran {
    width: 40%;
    padding-bottom: 40%;
  }
}
.cuadrat-petit {
  width: 100%;
  padding-bottom: 50%;
}
@media (min-width: 768px) {
  .cuadrat-petit {
    width: 50%;
    padding-bottom: 25%;
  }
}
@media (min-width: 992px) {
  .cuadrat-petit {
    width: 20%;
    padding-bottom: 20%;
  }
}
.rectangle-horitzontal {
  width: 100%;
  padding-bottom: 50%;
}
@media (min-width: 768px) {
  .rectangle-horitzontal {
    width: 50%;
    padding-bottom: 25%;
  }
}
@media (min-width: 992px) {
  .rectangle-horitzontal {
    width: 40%;
    padding-bottom: 20%;
  }
}
.capsa-title {
  margin-top: 0;
  text-transform: uppercase;
  font-size: 12px;
}
.capsa-text {
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .capsa-text {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .capsa-text {
    font-size: 20px;
  }
}
.capsa-single-title {
  font-size: 20px;
  line-height: 1.2;
  margin-top: 0;
  font-weight: normal;
}
@media (min-width: 992px) {
  .capsa-single-title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .capsa-single-title {
    font-size: 24px;
  }
}
.hover .capsa-content {
  opacity: 1;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.hover .capsa-more {
  position: absolute;
  bottom: 25px;
  left: 100%;
  padding: 5px 12px;
  border: 1px solid #fff;
  border-radius: 0;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.hover .capsa-excerpt {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px;
  opacity: 0;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
@media (min-width: 1200px) {
  .hover .capsa-excerpt {
    padding: 25px;
  }
}
.hover:hover .capsa-content,
.hover:focus .capsa-content {
  opacity: 0;
}
.hover:hover .capsa-more,
.hover:focus .capsa-more {
  left: 25px;
  color: #fff;
}
.hover:hover .capsa-excerpt,
.hover:focus .capsa-excerpt {
  opacity: 1;
}
.capsa-icona {
  width: 100%;
  min-height: 100px;
  position: relative;
  margin: 0 0 20px 0;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  overflow: hidden;
  padding: 20px;
}
.capsa-icona .cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 30px;
}
.capsa-icona:hover .cover,
.capsa-icona:focus .cover {
  background-color: rgba(0, 123, 19, 0.75);
}
.capsa-icona a {
  color: #fff;
  position: relative;
  display: block;
}
.capsa-icona a:hover,
.capsa-icona a:focus {
  text-decoration: none;
}
.capsa-icona .icona-title {
  margin: 0;
  padding-right: 30px;
}
.capsa-icona .icona {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: auto;
  background-color: transparent;
  text-align: center;
}
.capsa-icona .icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  width: 30px;
  background-color: transparent;
  text-align: center;
}
.capsa-gran {
  display: block;
  background-color: #eee;
  background-position: center center;
  background-size: cover;
  margin-bottom: 20px;
  position: relative;
}
.capsa-gran .cover {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
}
.capsa-gran .title {
  color: #fff;
  margin: 0;
  padding: 20px;
}
.capsa-gran .columnes {
  padding: 0 10px 10px 10px;
}
@media (min-width: 768px) {
  .capsa-gran .columnes {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
  }
}
.capsa-gran .columnes .columna {
  background: #f9fafa;
  padding: 20px;
  margin: 10px;
  -webkit-flex-basis: 220px;
  -moz-flex-basis: 220px;
  -ms-flex-basis: 220px;
  flex-basis: 220px;
}
.capsa-gran .columnes .columna .subtitle {
  color: #007B13;
  margin-top: 0;
  margin-bottom: 15px;
}
.capsa-gran .columnes .columna ul {
  margin: 10px 0;
  list-style: none;
  padding: 0;
}
.capsa-gran .columnes .columna ul li {
  padding: 0;
  margin: 5px 0;
}
.capsa-gran .columnes .columna ul li a {
  color: #000;
  text-decoration: none !important;
}
.capsa-gran .columnes .columna ul li a:hover,
.capsa-gran .columnes .columna ul li a:focus {
  color: #007B13;
  text-decoration: none;
}
.capsa-gran .more-info {
  padding: 10px 10px 20px 10px;
  text-align: right;
  display: block;
  font-size: 15px;
  font-weight: bold;
}
.capsa-gran .more-info a {
  color: #fff;
  display: inline-block;
  position: relative;
  padding: 6px 35px 6px 20px;
}
.capsa-gran .more-info a:hover,
.capsa-gran .more-info a:focus {
  text-decoration: none;
  color: #007B13;
  background-color: #fff;
}
.capsa-gran .more-info a:hover span,
.capsa-gran .more-info a:focus span {
  color: #007B13;
}
.capsa-gran .more-info a span {
  color: #fff;
  position: absolute;
  top: 9px;
  right: 10px;
}
.capsa-gran .more-info a span:before {
  content: "\e621";
}
.capsa-cuadrada {
  width: 100%;
  float: left;
  min-height: 180px;
  position: relative;
  margin: 0 auto 20px auto;
  background-position: center center;
  background-size: cover;
}
@media (min-width: 481px) {
  .capsa-cuadrada {
    margin: 0 auto 20px auto;
  }
}
@media (min-width: 992px) {
  .capsa-cuadrada {
    padding-bottom: 100%;
    height: 0;
    min-height: 0;
  }
}
.capsa-cuadrada .cover {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
}
@media (min-width: 992px) {
  .capsa-cuadrada .cover {
    position: absolute;
  }
}
.capsa-cuadrada .title {
  color: #fff;
  margin: 0 0 20px 0;
}
.capsa-cuadrada .llistat-gran a {
  color: #fff;
}
.capsa-cuadrada .llistat-gran a .more {
  color: #fff;
}
.capsa-cuadrada .llistat-gran a:hover,
.capsa-cuadrada .llistat-gran a:focus {
  color: #eee;
}
.capsa-cuadrada .llistat-gran a:hover .more:before,
.capsa-cuadrada .llistat-gran a:focus .more:before {
  color: #eee;
}
.capsa-cuadrada .llistat-gran a:hover .mes:before,
.capsa-cuadrada .llistat-gran a:focus .mes:before {
  color: #eee;
}
.capsa-cuadrada .more-info {
  padding: 10px 0 20px 10px;
  text-align: right;
  display: block;
  font-size: 15px;
  font-weight: bold;
}
.capsa-cuadrada .more-info a {
  color: #fff;
  display: inline-block;
  position: relative;
  padding: 6px 25px 6px 20px;
}
.capsa-cuadrada .more-info a:hover,
.capsa-cuadrada .more-info a:focus {
  text-decoration: none;
  color: #007B13;
  background-color: #fff;
}
.capsa-cuadrada .more-info a span {
  color: #fff;
  position: absolute;
  top: 9px;
  right: 0;
}
.mosaic-capsa .hover:focus,
.mosaic-capsa .hover:hover {
  background: rgba(0, 123, 19, 0.75);
}
.bloc.rounded a {
  text-decoration: none;
}
.bloc.rounded a .more {
  bottom: 0;
}
.titol-cc-h3 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 23px;
}
.titol-cc-h4 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 20px;
}
.titol-cc-h3-border {
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 23px;
  border-bottom: 2px solid #e4e4e4;
}
.titol-cc-h4-border {
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid #e4e4e4;
}
.menu-casa-conv {
  background-color: #eee;
  min-height: 400px;
  width: 100%;
  position: relative;
  background-position: center center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}
.menu-casa-conv a {
  color: #fff;
}
.menu-casa-conv a:hover,
.menu-casa-conv a:focus {
  text-decoration: none;
  color: #eee;
}
.menu-casa-conv .bg-menu {
  background-color: rgba(0, 0, 0, 0.6);
}
.menu-casa-conv .title-menu {
  width: 100%;
  padding: 1rem;
  margin-top: auto;
  display: flex;
  cursor: pointer;
}
.menu-casa-conv ul {
  list-style: none;
}
.menu-casa-conv .content-menu {
  padding: 0 1rem;
}
.menu-casa-conv .content-menu ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}
.menu-casa-conv .content-menu ul li {
  margin: 0;
  padding: 0;
}
.menu-casa-conv .content-menu ul li a {
  width: 100%;
  display: flex;
  position: relative;
  padding: 8px 0px 8px 0px;
  color: #fff;
  overflow: hidden;
  text-decoration: none !important;
  border-top: 1px solid #fff;
}
.menu-casa-conv .content-menu ul li a:hover,
.menu-casa-conv .content-menu ul li a:focus {
  text-decoration: none;
  color: #007B13;
}
.menu-casa-conv .content-menu ul li:last-child a {
  border-bottom: 1px solid #fff;
}
.hr-cc {
  border-top: 2px solid #e4e4e4;
}
.dades-cc-columns {
  list-style: none;
  padding: 0;
  margin: 0 -10px 20px -10px;
  display: flex;
  flex-wrap: wrap;
}
.dades-cc-columns li {
  margin: 0 0 10px 0;
  padding: 0 10px;
  width: 50%;
}
@media (min-width: 992px) {
  .dades-cc-columns li {
    width: 25%;
  }
}
.equipament-row {
  list-style: none;
  padding: 0;
  margin: 0 -10px 0 -10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .equipament-row {
    flex-direction: row;
  }
}
.equipament-columns-1 {
  width: 100%;
  padding: 0 10px;
  margin: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .equipament-columns-1 {
    width: 50%;
  }
}
.equipament-columns-1 li {
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.equipament-columns-1 li img {
  margin-right: 5px;
  margin-bottom: auto;
  margin-top: 2px;
}
.equipament-columns-2 {
  width: 100%;
  padding: 0 10px;
  margin: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .equipament-columns-2 {
    column-count: 2;
    column-gap: 20px;
    column-fill: balance;
    width: 50%;
  }
}
.equipament-columns-2 li {
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.equipament-columns-2 li img {
  margin-right: 5px;
  margin-bottom: auto;
  margin-top: 2px;
}
.equipament-columns-3 {
  width: 100%;
  padding: 0 10px;
  margin: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .equipament-columns-3 {
    column-count: 2;
    column-gap: 20px;
    column-fill: balance;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .equipament-columns-3 {
    column-count: 3;
    column-gap: 20px;
    column-fill: balance;
    width: 100%;
  }
}
.equipament-columns-3 li {
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.equipament-columns-3 li img {
  margin-right: 5px;
  margin-bottom: auto;
  margin-top: 2px;
}
.equipament-cc-columns {
  list-style: none;
  padding: 0;
  margin: 0 -10px 0 -10px;
}
.equipament-cc-columns li {
  margin: 0 0 10px 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.equipament-cc-columns li img {
  margin-right: 5px;
  margin-bottom: auto;
  margin-top: 2px;
}
.equipament-columns {
  position: relative;
  list-style: none;
  padding: 0;
  column-count: 3;
  column-gap: 20px;
  column-fill: auto;
}
.equipament-columns li {
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.equipament-columns li img {
  margin-right: 5px;
  margin-bottom: auto;
  margin-top: 2px;
}
.equipament-columns li.doble {
  flex: 1 0 50%;
}
.equipament-columns li.break {
  break-after: column;
}
.cc-planol {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.cc-planol img {
  max-width: auto;
  max-height: 310px;
}
.cc-planol .cc-planol-download {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  background-color: #007B13;
  color: #fff;
  text-decoration: none;
  border: 2px solid #007B13;
  font-weight: bold;
}
.cc-planol .cc-planol-download:hover,
.cc-planol .cc-planol-download:focus {
  background-color: #fff;
  border-color: #007B13;
  text-decoration: none;
  color: #000;
}
.cc-link {
  width: 100%;
  display: table;
  color: #fff;
  text-decoration: none;
  margin: 0 0 20px 0;
}
.cc-link:hover,
.cc-link:focus {
  text-decoration: none;
  background-color: #007B13 !important;
  color: #fff;
}
.cc-link .cc-image {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-position: center center;
  margin-right: 0;
  display: table-cell;
}
.cc-link .cc-text {
  padding: 10px 15px;
  display: table-cell;
}
.cc-link .cc-text-title {
  margin: 0 0 5px 0;
  font-weight: bold;
  font-size: 20px;
}
.cc-bg-block {
  background-color: #f1f3ed;
  border-radius: 5px;
  padding: 15px;
}
.cc-bg-block .btn {
  font-weight: bold;
  width: 100%;
}
.contact-form-cc {
  background-color: #f1f3ed;
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  margin-bottom: 30px;
}
.contact-form-cc .contact-camp {
  margin-bottom: 10px;
}
.contact-form-cc .btn {
  width: 100%;
  color: #fff;
  background-color: #007B13;
  border: 2px solid #007B13;
  text-decoration: none;
}
.contact-form-cc .btn:hover,
.contact-form-cc .btn:focus {
  background-color: #fff;
  border-color: #007B13;
  color: #000;
  text-decoration: none;
}
.cc-popup {
  background-color: #f1f3ed;
  border-radius: 5px;
}
.cc-acte p {
  margin: 0;
}
.cc-bg-image {
  width: 100%;
  height: 0;
  padding-bottom: 56.9%;
  background-size: cover;
  background-position: center center;
  display: block;
  cursor: pointer;
}
.black-links {
  position: relative;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .black-links {
    padding-bottom: 0;
  }
}
.black-links .black-links-title,
.black-links h2 {
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}
.black-links .black-links-title a,
.black-links h2 a {
  text-decoration: none;
  color: #000;
  display: block;
}
.black-links .black-links-title a:hover,
.black-links h2 a:hover,
.black-links .black-links-title a:focus,
.black-links h2 a:focus {
  color: #007B13;
}
.black-links .black-links-subtitle,
.black-links p {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.black-links .black-links-image {
  width: 100%;
  height: 0;
  padding-bottom: 56.9%;
  background-size: cover;
  background-position: center center;
  display: block;
  cursor: pointer;
  position: relative;
  background-color: #eee;
}
.black-links .black-links-image a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.black-links .black-links-image img {
  margin: 0;
}
.black-links .black-links-text a {
  text-decoration: none;
  color: #000;
  display: block;
}
.black-links .black-links-text a:hover,
.black-links .black-links-text a:focus {
  color: #007B13;
}
.outer {
  margin: 0 auto 30px auto;
  width: 100%;
  float: left;
}
#big.owl-carousel {
  margin-bottom: 15px;
}
#big .item {
  background: #555555;
  margin: 0;
  color: #FFF;
  text-align: center;
}
#big .owl-nav,
#thumbs .owl-nav {
  margin: 0;
}
#thumbs .item {
  background: #555555;
  padding: 0px;
  margin: 0;
  color: #FFF;
  text-align: center;
  cursor: pointer;
}
#thumbs .current .item {
  background: #555555;
}
.owl-theme .owl-nav [class*='owl-'] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.owl-theme .owl-nav [class*='owl-'].disabled:hover {
  background-color: #D6D6D6;
}
#big.owl-theme {
  position: relative;
}
#big.owl-theme .owl-next,
#big.owl-theme .owl-prev,
#thumbs.owl-theme .owl-next,
#thumbs.owl-theme .owl-prev {
  color: #fff;
  margin-top: -20px;
}
#big.owl-theme .owl-next:hover,
#big.owl-theme .owl-prev:hover,
#thumbs.owl-theme .owl-next:hover,
#thumbs.owl-theme .owl-prev:hover,
#big.owl-theme .owl-next:focus,
#big.owl-theme .owl-prev:focus,
#thumbs.owl-theme .owl-next:focus,
#thumbs.owl-theme .owl-prev:focus {
  color: #007B13;
}
#big.owl-theme .owl-next,
#thumbs.owl-theme .owl-next {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0) 100%);
  margin: 0;
  top: 0;
  height: 100%;
}
#big.owl-theme .owl-prev,
#thumbs.owl-theme .owl-prev {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0) 100%);
  margin: 0;
  top: 0;
  height: 100%;
}
/*
@import "./metode/variables.less";
@import "./metode/owl.carousel.less";
@import "./metode/slider.less";


// Alumni
@import "./includes/flexbox.less";
@import "./metode/esdeveniments.less";
@import "./metode/tweets.less";
@import "./metode/box-alumni.less";
@import "./metode/alumni-testimonis.less";
@import "./metode/alumni-links.less";

// Metode
@import "./metode/fonts-uab.less";
@import "./metode/font-awesome.less";
@import "./metode/elegant-icons.less";
@import "./metode/retocs.less";
//@import "./metode/header.less";
@import "./metode/fitxa.less";
@import "./metode/magnific-popup.less";
@import "./metode/footer.less";
@import "./metode/videos.less";
@import "./metode/views-field.less";
*/
/* Theme Colors  */
.new-post h3 a,
.post h3 a,
a {
  color: #007B13;
}

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