/**
 * 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;
  flex-direction: column;
  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;
  position: relative;
}
.cta-header .cta-content {
  position: relative;
  margin: 30px auto;
}
.cta-header .cta-buttons {
  margin-top: 160px;
  margin-bottom: 30px;
}
.cta-header .cta-buttons a {
  display: block;
  width: 100%;
  padding: 20px 30px;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
}
.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-text {
  display: block;
  padding-bottom: 30px;
  font-weight: normal;
}
.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;
}
#main .cta-header-cicles a,
main .cta-header-cicles a,
#main .cta-header-hcv a,
main .cta-header-hcv a {
  text-decoration: none;
}
.cta-header-hcv,
.cta-header-cicles {
  height: auto;
  min-height: 230px;
  width: 100% !important;
  color: #fff;
  background-color: #000;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-header-hcv,
  .cta-header-cicles {
    min-height: 400px;
  }
}
.cta-header-hcv .cover,
.cta-header-cicles .cover {
  width: 100%;
  float: left;
  background: rgba(0, 0, 0, 0.6);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cta-header-hcv .container,
.cta-header-cicles .container {
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
}
.cta-header-hcv .cta-content,
.cta-header-cicles .cta-content {
  position: relative;
  margin: 0 auto;
  padding: 50px 0;
}
.cta-header-hcv .cta-content p,
.cta-header-cicles .cta-content p {
  margin: 0;
}
.cta-header-hcv .phone-home,
.cta-header-cicles .phone-home {
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  margin: 20px auto 0 auto !important;
}
@media (min-width: 992px) {
  .cta-header-hcv .phone-home,
  .cta-header-cicles .phone-home {
    margin: 0 !important;
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .cta-header-hcv .phone-home,
  .cta-header-cicles .phone-home {
    font-size: 26px;
  }
}
.cta-header-hcv .phone-home span,
.cta-header-cicles .phone-home span {
  font-size: 20px;
}
.cta-header-hcv .phone-home a,
.cta-header-cicles .phone-home a {
  text-decoration: none;
  color: #fff;
}
.cta-header-hcv .phone-home a:hover,
.cta-header-cicles .phone-home a:hover,
.cta-header-hcv .phone-home a:focus,
.cta-header-cicles .phone-home a:focus {
  color: #007B13;
}
.cta-header-hcv .cta-buttons,
.cta-header-cicles .cta-buttons {
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cta-header-hcv .cta-buttons,
  .cta-header-cicles .cta-buttons {
    margin-top: 60px;
  }
}
.cta-header-hcv .cta-buttons a,
.cta-header-cicles .cta-buttons a {
  display: block;
  width: 100%;
  padding: 10px 30px;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  line-height: 1.2;
  margin-top: 10px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cta-header-hcv .cta-buttons a,
  .cta-header-cicles .cta-buttons a {
    margin-top: 0;
    padding: 18px 30px;
    font-size: 24px;
  }
}
.cta-header-hcv .cta-buttons a:hover,
.cta-header-cicles .cta-buttons a:hover,
.cta-header-hcv .cta-buttons a:focus,
.cta-header-cicles .cta-buttons a:focus {
  color: #fff;
  background-color: #007B13;
  border-color: #007B13;
}
.cta-header-hcv .cta-buttons a.negative,
.cta-header-cicles .cta-buttons a.negative {
  color: #fff;
  background-color: #007B13;
  border-color: #007B13;
}
.cta-header-hcv .cta-buttons a.negative:hover,
.cta-header-cicles .cta-buttons a.negative:hover,
.cta-header-hcv .cta-buttons a.negative:focus,
.cta-header-cicles .cta-buttons a.negative:focus {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.cta-header-hcv .cta-text,
.cta-header-cicles .cta-text {
  display: block;
  padding-bottom: 30px;
  font-weight: normal;
}
.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);
  }
}
.cover-degradat {
  width: 100%;
  float: left;
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body {
  font-family: "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
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 */
.contact-info,
.bloc.gris-clar {
  border-radius: 5px;
}
.bloc.gris-clar {
  padding: 10px 10px 0 10px;
}
.bloc.gris-clar img.img-responsive {
  width: 100%;
  margin-bottom: 10px;
}
.bloc.gris-clar p {
  margin: 0;
  padding: 0 0 10px 0 !important;
}
/* aside-nav-content */
.aside-nav-content {
  border: 1px solid #dedede;
  border-radius: 5px;
}
.aside-nav-content .title {
  background-color: #e7e7e7;
  color: #000;
  font-weight: bold;
}
.aside-nav-content .title a {
  color: #111;
  text-decoration: none;
}
.aside-nav-content .title a:hover,
.aside-nav-content .title a:focus {
  color: #03420d;
}
.aside-nav-content ul li {
  border-bottom: 1px solid #dedede;
}
.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%;
  display: block;
  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;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .esdeveniments .custom-list li a {
    padding: 10px 10px 10px 20px;
    font-size: 18px;
  }
}
.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: 18px;
  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 0 10px 0;
  color: #007B13;
}
.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: #fff;
  padding: 0;
  margin: 30px 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: 16.66666667%;
  }
}
@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;
  text-decoration: none;
}
@media (min-width: 992px) {
  .alumni-links .alumni-link a {
    border-right: 1px solid #ccc;
  }
}
.alumni-links .alumni-link a:hover,
.alumni-links .alumni-link a:focus {
  color: #727272;
  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;
}
.icon.icon-maleta,
.icon.icon-calendar,
.icon.icon-tiktok {
  /* 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;
}
.icon.icon-maleta:before {
  content: "\e91f";
}
.icon.icon-calendar:before {
  content: "\e939";
}
.metode-tiktok:before {
  content: "\e951";
}
.metode-twitter-new:before {
  content: "\e905";
}
.metode-pointer-new:before {
  content: "\e94c";
}
.metode-youtube-new:before {
  content: "\e94e";
}
.metode-facebook-new:before {
  content: "\e94f";
}
.metode-instagram-new:before {
  content: "\e950";
}
.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';
}
.font-size {
  font-size: 16px;
  line-height: 1.5;
}
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: 16px;
}
a {
  text-decoration: underline;
}
a:hover,
a:focus {
  color: #03420d;
}
.btn {
  text-decoration: none;
}
.metode-logo-uab-xl,
.metode-logo-uab-xs {
  width: 115px;
  height: 50px;
  background-image: url(../img/logotip-uab-horitzontal-2-linies-negre.png);
  background-position: left center;
  display: block;
  background-repeat: no-repeat;
  background-size: 100% auto;
  font-size: 0;
}
.new-logo-uab {
  width: 115px;
  height: 50px;
  background-image: url(../img/logotip-uab-horitzontal-2-linies-negre.png);
  background-position: left center;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media (min-width: 390px) {
  .metode-logo-uab-xl,
  .metode-logo-uab-xs,
  .new-logo-uab {
    width: 130px;
  }
}
@media (min-width: 700px) {
  .metode-logo-uab-xl,
  .metode-logo-uab-xs,
  .new-logo-uab {
    width: 190px;
  }
}
.header .header-title {
  height: 70px;
}
.header .logo-centre {
  height: 70px;
  margin-left: 10px;
}
@media (min-width: 992px) {
  .header .logo-centre {
    margin-left: 0;
  }
}
.header .header-title a {
  width: 230px;
  height: 50px;
  background-image: url(../img/Fundacio-UAB.svg);
  background-position: left center;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100% auto;
  font-size: 0;
}
@media (min-width: 992px) {
  .header #custom-search-input {
    width: 90px;
  }
}
@media (min-width: 1200px) {
  .header #custom-search-input {
    width: 200px;
  }
}
.footer a,
#mapa a,
.pre-footer a {
  text-decoration: none;
}
#mapa a,
.pre-footer a {
  line-height: 1.2;
}
.footer .credits {
  margin-top: 30px;
}
.footer .credits .legal a {
  border-bottom: 2px solid transparent;
}
.footer .credits .legal a:hover,
.footer .credits .legal a:focus {
  border-bottom: 2px solid #ccc;
}
.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;
}
.header #custom-search-input input:active,
.header #custom-search-input input:focus {
  background: #666;
  color: #fff;
}
.pre-titol {
  font-size: 16px;
}
#main .breadcrumb,
.breadcrumb {
  font-size: 90%;
  padding-left: 0;
  padding-right: 0;
}
#main .breadcrumb a,
.breadcrumb a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
#main a.btn,
main a.btn {
  text-decoration: none;
}
.btn {
  font-weight: bold;
}
.btn-big {
  font-size: 22px !important;
  padding: 10px 40px !important;
}
.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;
}
.destacat,
.noticia .date {
  color: #007B13;
}
.datepicker table tr td.today,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover {
  background-color: #007B13 !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;
}
.post p {
  line-height: 1.5 !important;
}
.new-post h3 a,
.post h3 a {
  text-decoration: none !important;
  font-weight: bold;
}
.new-post h4 a,
.post h4 a {
  text-decoration: none !important;
  font-weight: bold;
}
#test .list_carousel li {
  font-size: 1rem;
}
.caroufredsel_wrapper {
  width: 100% !important;
}
@media (min-width: 768px) {
  #test .list_carousel li {
    width: 350px;
  }
}
@media (min-width: 992px) {
  #test .list_carousel li {
    width: 220px;
  }
}
@media (min-width: 1200px) {
  #test .list_carousel li {
    width: 267px;
  }
}
@media (min-width: 1350px) {
  #test .list_carousel li {
    width: 292px;
  }
}
#main .event .jornada a {
  text-decoration: none;
}
#main .service-list-static li a,
main .service-list-static li a {
  text-decoration: none;
}
a.img-seus .img-color img.grayscale {
  filter: none;
  -webkit-filter: none;
  opacity: 1;
}
a.img-seus .img-color {
  margin-top: 10px;
}
.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;
  clear: both;
  margin-bottom: 20px;
  font-size: 23px !important;
}
.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;
}
.capsetes-central ul {
  margin-left: 0 !important;
}
.header .header-nav .logo {
  margin: 0;
  text-align: left;
  width: 120px;
}
#sr-kw-only a {
  top: -200px;
}
/* page-title */
.header-title-bg-new {
  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-title-bg-new {
    min-height: 150px;
  }
}
@media (min-width: 1200px) {
  .header-title-bg-new {
    min-height: 200px;
  }
}
.header-title-bg-new .cover {
  width: 100%;
  background-color: transparent;
}
.header-title-bg-new .container {
  position: relative;
}
.header-title-bg-new .text-title,
.header-title-bg-new .h1,
.header-title-bg-new .page-title-heading {
  font-weight: bold;
  margin: 0;
  padding: 0;
  font-size: 23px !important;
  text-shadow: 1px 1px 1px #000;
  background-color: transparent;
}
@media (min-width: 600px) {
  .header-title-bg-new .text-title,
  .header-title-bg-new .h1,
  .header-title-bg-new .page-title-heading {
    font-size: 40px !important;
  }
}
.header-title-bg-new .badge {
  font-size: 0.8rem;
  vertical-align: middle;
  margin: 0;
}
/* 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: #03420d;
}
.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: 36px;
  line-height: 1;
  padding-right: 10px;
  min-width: 50px;
  width: 50px;
  text-align: center;
}
.dades-menu li a .img-bg {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center center;
  margin-right: 10px;
}
.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;
}
#main .capsa-color a,
.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;
}
#main .aside-nav-content .title,
.aside-nav-content .title {
  margin: 0;
  padding: 10px;
  font-weight: bold;
}
#main .aside-nav-content .title a,
.aside-nav-content .title a {
  text-decoration: none;
}
#main .aside-nav-content ul a,
.aside-nav-content ul a {
  font-size: 16px;
  padding: 7px 30px 7px 10px;
  text-decoration: none;
}
.contact-info {
  margin-bottom: 20px;
  padding: 15px;
  min-height: 220px;
}
.contact-info ul {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}
.contact-info a {
  word-break: break-all;
}
.contact-info p,
.contact-info ul {
  font-size: 0.85em;
}
.contact-info p:last-child,
.contact-info ul:last-child {
  margin-bottom: 0;
}
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;
}
#mapa {
  margin-top: 30px;
  padding: 30px 0 0 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;
}
.flex-align-center {
  align-items: center !important;
}
.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;
}
.mt05 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !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;
}
.pt40 {
  padding-top: 40px !important;
}
.pt50 {
  padding-top: 50px !important;
}
.pb00 {
  padding-bottom: 0px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}
.pb40 {
  padding-bottom: 40px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.pr00 {
  padding-right: 0px !important;
}
.pr10 {
  padding-right: 10px !important;
}
.pr20 {
  padding-right: 20px !important;
}
.pr30 {
  padding-right: 30px !important;
}
.pr40 {
  padding-right: 40px !important;
}
.pr50 {
  padding-right: 50px !important;
}
.pl00 {
  padding-left: 0px !important;
}
.pl10 {
  padding-left: 10px !important;
}
.pl20 {
  padding-left: 20px !important;
}
.pl30 {
  padding-left: 30px !important;
}
.pl40 {
  padding-left: 40px !important;
}
.pl50 {
  padding-left: 50px !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;
  }
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.ml-20 {
  margin-left: 20px !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;
  }
}
.fuab-title a {
  text-decoration: none;
}
.crides a {
  text-decoration: none;
}
.contacte.bg-gris {
  font-size: 13px;
}
.escola-title {
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  clear: both;
  margin: 0 0 20px 0;
}
.escola-title img {
  margin: auto 10px ;
  width: 170px;
}
@media (min-width: 768px) {
  .escola-title {
    line-height: 1;
  }
  .escola-title img {
    width: 220px;
  }
}
.fuab-masters .links-md li {
  font-size: 18px;
}
.btn-uab {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #007B13;
  border: 1px solid #007B13;
  padding: 15px 30px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  text-decoration: none;
}
.btn-uab:hover,
.btn-uab:focus {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  text-decoration: none;
}
.gris-btn {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  background-color: #dadada;
  border: 1px solid #dadada;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  margin-top: auto;
  margin-bottom: 30px;
  display: flex;
}
.gris-btn svg path {
  fill: #000;
}
.gris-btn:hover,
.gris-btn:focus {
  text-decoration: none;
  color: #000;
  background-color: #f7f7f9;
}
.gris-btn .carrot {
  margin-left: auto;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .flex-row {
    display: flex;
    flex-wrap: wrap;
  }
  .flex-column {
    display: flex;
    flex-direction: column;
  }
}
.text-icon-link {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100px;
  overflow: hidden;
  display: flex;
  text-decoration: none !important;
  padding: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #767676;
  margin-bottom: 20px;
}
.text-icon-link .link-text {
  position: relative;
  z-index: 100;
  margin: auto 0;
}
.text-icon-link .ic-link {
  z-index: 100;
  padding: 0 0 0 15px;
  margin: auto 0 auto auto;
  display: flex;
  align-items: center;
}
.text-icon-link .ic-link svg {
  width: 40px;
}
.text-icon-link img {
  width: 40px;
  height: auto;
}
.text-icon-link .ic-link svg path {
  fill: #FFFFFF;
}
.text-icon-link:hover,
.text-icon-link:focus {
  text-decoration: none;
  color: #fff;
  background-color: #4d4d4d;
}
.fc-highlight {
  border: 2px solid black;
}
.row-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1200px) {
  .row-flex-lg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.col-flex {
  display: flex;
  flex-direction: column;
}
/* Correccions a11y 2022 */
.header #custom-search-input .input-group {
  background-color: #fff;
}
.header #custom-search-input .input-lg {
  height: auto;
  min-height: 30px;
}
.header #custom-search-input button {
  height: auto;
  min-height: 30px;
}
.header ul.xarxes-socials li a {
  line-height: 1;
  width: auto !important;
  height: auto !important;
}
.footer .widget .footer-contacte li {
  padding-left: 0 !important;
}
.footer .widget .footer-contacte li a,
.pre-footer .widget .footer-contacte li a {
  display: flex;
}
.footer .widget ul li .icon {
  position: relative !important;
  min-width: 20px;
  margin-right: 5px;
}
.footer .widget ul li a {
  word-break: break-word;
}
.form-control {
  height: auto;
  min-height: 32px;
}
.contact-form-cc .form-control {
  border: 1px solid #666 !important;
}
@media (min-width: 1600px) {
  .container {
    width: 1450px;
  }
}
@media (min-width: 1800px) {
  .container {
    width: 1600px;
  }
}
@media (min-width: 1600px) {
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12 {
    float: left;
    padding: 0 10px;
  }
  .col-xl-12 {
    width: 100%;
  }
  .col-xl-11 {
    width: 91.66666667%;
  }
  .col-xl-10 {
    width: 83.33333333%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-8 {
    width: 66.66666667%;
  }
  .col-xl-7 {
    width: 58.33333333%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-5 {
    width: 41.66666667%;
  }
  .col-xl-4 {
    width: 33.33333333%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-2 {
    width: 16.66666667%;
  }
  .col-xl-1 {
    width: 8.33333333%;
  }
  .col-xl-pull-12 {
    right: 100%;
  }
  .col-xl-pull-11 {
    right: 91.66666667%;
  }
  .col-xl-pull-10 {
    right: 83.33333333%;
  }
  .col-xl-pull-9 {
    right: 75%;
  }
  .col-xl-pull-8 {
    right: 66.66666667%;
  }
  .col-xl-pull-7 {
    right: 58.33333333%;
  }
  .col-xl-pull-6 {
    right: 50%;
  }
  .col-xl-pull-5 {
    right: 41.66666667%;
  }
  .col-xl-pull-4 {
    right: 33.33333333%;
  }
  .col-xl-pull-3 {
    right: 25%;
  }
  .col-xl-pull-2 {
    right: 16.66666667%;
  }
  .col-xl-pull-1 {
    right: 8.33333333%;
  }
  .col-xl-pull-0 {
    right: auto;
  }
  .col-xl-push-12 {
    left: 100%;
  }
  .col-xl-push-11 {
    left: 91.66666667%;
  }
  .col-xl-push-10 {
    left: 83.33333333%;
  }
  .col-xl-push-9 {
    left: 75%;
  }
  .col-xl-push-8 {
    left: 66.66666667%;
  }
  .col-xl-push-7 {
    left: 58.33333333%;
  }
  .col-xl-push-6 {
    left: 50%;
  }
  .col-xl-push-5 {
    left: 41.66666667%;
  }
  .col-xl-push-4 {
    left: 33.33333333%;
  }
  .col-xl-push-3 {
    left: 25%;
  }
  .col-xl-push-2 {
    left: 16.66666667%;
  }
  .col-xl-push-1 {
    left: 8.33333333%;
  }
  .col-xl-push-0 {
    left: auto;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xl-offset-0 {
    margin-left: 0%;
  }
}
.col-5 {
  width: 100%;
  float: left;
  padding: 0 10px;
}
@media (min-width: 600px) {
  .col-5 {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .col-5 {
    width: 20%;
  }
}
@media (min-width: 1600px) {
  .col-5 {
    width: 20%;
  }
}
.header {
  /*
    .header-top {
        background: transparent;
        @media (min-width:@screen-md-min) {
            background: #f7f7f9;
        }
    }

    // logo color
    .logo {
        color: #000 !important;
        @media (min-width: @screen-sm-min) {
            color: #000 !important;
        }
    }
    */
}
.header a {
  text-decoration: none;
}
.header .logo-centre {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: auto;
  float: left;
}
@media (min-width: 992px) {
  .header .logo-centre {
    margin: 0 0 0 -10px;
    height: 90px;
  }
}
.header .logo-centre .logo-uab-centre {
  display: block;
  margin: 10px 0;
}
@media (min-width: 992px) {
  .header .logo-centre .logo-uab-centre {
    margin: auto 20px auto 0;
  }
}
.header .logo-centre .logo-uab-centre img {
  width: auto;
  max-width: none;
  height: 28.5px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .header .logo-centre .logo-uab-centre img {
    height: 50px;
  }
}
.header .logo-centre .logo-uab-centre:hover,
.header .logo-centre .logo-uab-centre:focus {
  text-decoration: none;
}
.header .logo-centre a {
  color: #000;
}
.header .logo-centre a:hover,
.header .logo-centre a:focus {
  text-decoration: none;
  columns: #007B13;
}
.header .logo-menu {
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
  display: block;
  width: 100%;
  float: left;
}
.header .logo-menu li {
  display: inline-block;
  float: left;
  margin: 0 10px 0 0;
}
.header .logo-menu li:last-child {
  margin: 0;
}
.header .logo-menu li a {
  border: 1px solid #007B13;
  padding: 0 0.5rem;
  color: #007B13;
  display: block;
  font-size: 13.5px;
  min-width: 74px;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  .header .logo-menu li a {
    min-width: 74px;
  }
}
@media (min-width: 992px) {
  .header .logo-menu li a {
    min-width: 99px;
  }
}
@media (min-width: 1200px) {
  .header .logo-menu li a {
    min-width: 105px;
  }
}
.header .logo-menu li a:hover,
.header .logo-menu li a:focus,
.header .logo-menu li a.active {
  text-decoration: none;
  color: #fff;
  background-color: #007B13;
  border: 1px solid #007B13;
}
.header .logo-uab-xs {
  display: flex;
  height: 70px;
  align-items: center;
}
.header .logo-uab-xs .logo-uab {
  display: block;
  margin: 10px 20px;
  height: auto;
  color: #000 !important;
}
.header .logo-uab-xs .logo-uab:hover,
.header .logo-uab-xs .logo-uab:focus {
  text-decoration: none;
}
.header .logo-uab {
  margin: 0 20px 0 0;
  padding: 0;
  line-height: 1 !important;
  font-size: 23px;
  height: 50px;
  display: flex;
  align-items: center;
  width: auto;
  float: left;
  color: #000 !important;
}
.header .logo-uab a {
  color: #000;
  display: inline-block;
}
.header .logo-uab a:hover,
.header .logo-uab a:focus {
  color: #007B13;
  text-decoration: none;
}
@media (min-width: 992px) {
  .header .navbar-nav {
    margin: 0 -10px 0 -10px;
  }
}
.header .navbar-nav > li > a {
  padding: 5px 0px;
  border: 0;
}
@media (min-width: 992px) {
  .header .navbar-nav > li > a {
    padding: 0 10px 0 10px;
    font-size: 16px;
    border-right: 1px solid #939598;
  }
}
@media (min-width: 1200px) {
  .header .navbar-nav > li > a {
    padding: 0 15px 0 15px;
    font-size: 18px;
  }
}
.header .navbar-nav > li > a:hover,
.header .navbar-nav > li > a:focus,
.header .navbar-nav > li.open > a {
  color: #03420d !important;
  outline: none;
}
@media (min-width: 992px) {
  .header .navbar-nav > li:last-child > a {
    border-right: none;
  }
}
.header .navbar-nav > li.open > a {
  color: #007B13;
}
.header #custom-search-input {
  padding: 20px 0;
}
@media (min-width: 992px) {
  .header #custom-search-input {
    padding: 10px 0;
  }
}
.header #custom-search-input .input-group {
  width: 100%;
}
.header #custom-search-input .input-lg {
  padding: 0 10px;
  min-height: 40px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .header #custom-search-input .input-lg {
    min-height: 30px;
  }
}
.header #custom-search-input .input-group-btn {
  width: 40px;
  height: 40px;
  border-radius: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .header #custom-search-input .input-group-btn {
    height: 30px;
    width: 30px;
  }
}
.header .search-uab {
  clear: both;
  font-size: 14px;
}
@media (min-width: 992px) {
  .header .search-uab {
    clear: none;
    margin-right: 10px;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
  }
}
.header .seccions {
  margin: 10px -5px;
}
@media (min-width: 992px) {
  .header .seccions {
    margin: 0;
  }
}
.header .seccions li {
  padding: 0;
  margin: 0;
  border: 0 !important;
}
.header .seccions li a {
  color: #000;
}
@media (min-width: 992px) {
  .header .seccions {
    width: auto;
    margin: 0 !important;
    display: inline-block;
    float: left;
    line-height: 50px;
  }
}
.header .seccions li a .icon {
  padding-left: 5px;
  color: #9b9b9b;
  vertical-align: middle;
}
.header .seccions li a:hover .icon,
.header .seccions li a:focus .icon {
  color: #007B13;
}
.header .access-login {
  list-style: none;
  margin: 8px 0;
  padding: 0;
  font-size: 13px;
  overflow: hidden;
  float: left;
}
@media (min-width: 992px) {
  .header .access-login {
    margin: 0 auto 0 20px;
  }
}
.header .access-login li {
  float: left;
  display: inline-block;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .header .access-login li {
    line-height: 50px;
  }
}
.header .access-login li a {
  color: #000;
}
.header .access-login li a .icon {
  padding-left: 5px;
  color: #9b9b9b;
}
.header .access-login li a:hover,
.header .access-login li a:focus {
  color: #000 !important;
}
.header .access-login li a:hover .icon,
.header .access-login li a:focus .icon {
  color: #007B13;
}
.header .access-login.alumni li a .icon {
  color: #0eaf2c;
}
.header .access-login.alumni li a .icon:hover,
.header .access-login.alumni li a .icon:focus {
  color: #000;
}
@media (min-width: 992px) {
  .header #custom-search-input {
    margin: 10px 0 10px 10px;
    padding: 0;
  }
}
.header .navbar-toggle {
  margin: 0 10px 0 auto !important;
  height: 70px;
}
.parclogo {
  display: flex;
  line-height: 1;
  width: auto !important;
}
@media (max-width: 991px) {
  .navbar-nav .open .dropdown-menu,
  .navbar-nav .show .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: 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;
  color: #fff;
  background-color: #000;
}
@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);
}
.img-16_9 {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding-bottom: 56%;
  overflow: hidden;
  display: flex;
  text-decoration: none !important;
}
.img-16_9 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-16_9 .cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
.img-16_9 .link-text {
  position: relative;
  z-index: 100;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}
.img-16_9 .carrot {
  z-index: 100;
  padding: 0;
  margin: auto 10px auto auto;
  color: #fff;
}
.img-16_9:hover,
.img-16_9:focus {
  text-decoration: none;
}
.img-16_9:hover .link-text,
.img-16_9:focus .link-text,
.img-16_9:hover .carrot,
.img-16_9:focus .carrot {
  position: relative;
  z-index: 10;
  color: #fff;
}
.img-16_9:hover .cover,
.img-16_9:focus .cover {
  background-color: rgba(0, 123, 19, 0.75);
}
.img-cicles {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding-bottom: 35%;
  overflow: hidden;
  display: flex;
  text-decoration: none !important;
}
.img-cicles 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-cicles .cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
.img-cicles .link-text {
  position: relative;
  z-index: 100;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}
.img-cicles .carrot {
  z-index: 100;
  padding: 0;
  margin: auto 10px auto auto;
  color: #fff;
}
.img-cicles:hover,
.img-cicles:focus {
  text-decoration: none;
}
.img-cicles:hover .link-text,
.img-cicles:focus .link-text,
.img-cicles:hover .carrot,
.img-cicles:focus .carrot {
  position: relative;
  z-index: 10;
  color: #fff;
}
.img-cicles:hover .cover,
.img-cicles: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-client {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.foto-client:before {
  padding-top: 44%;
  display: block;
  content: "";
}
@media (min-width: 992px) {
  .foto-client:before {
    padding-top: 56.2%;
  }
}
@media (min-width: 1200px) {
  .foto-client:before {
    padding-top: 39%;
  }
}
@media (min-width: 1350px) {
  .foto-client:before {
    padding-top: 44%;
  }
}
.foto-client.apaisada:before {
  padding-top: 56.2%;
  display: block;
  content: "";
}
.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;
  }
}
.footer .pre-footer {
  background-color: #f7f7f9;
}
.footer .pre-footer .form-newsletter {
  margin: 0;
}
.footer .pre-footer .form-newsletter .btn {
  width: 40%;
}
.footer .pre-footer .form-group .option-left {
  font-size: 14px;
}
.footer .pre-footer .footer-contacte {
  padding: 0 0 20px 0;
}
@media (min-width: 768px) {
  .footer .pre-footer .footer-contacte {
    padding: 0 0 0 20px;
  }
}
/* footer -- peu de pàgina */
#mapa,
.pre-footer {
  margin-bottom: 0;
  margin-top: 30px;
  padding: 30px 0 0 0;
  word-break: break-word;
  clear: both;
  width: 100%;
  float: left;
}
#mapa .widget .footer-title,
.pre-footer .widget .footer-title {
  font-weight: bold;
  font-size: 20px;
  margin: 10px 0;
}
#mapa .widget ul,
.pre-footer .widget ul {
  margin: 0 0 20px 0 !important;
  padding: 0;
  list-style: none;
  width: 100%;
  float: left;
}
#mapa .widget ul li,
.pre-footer .widget ul li {
  position: relative;
}
#mapa .widget ul li .icon,
.pre-footer .widget ul li .icon {
  position: relative !important;
  min-width: 15px;
  margin-right: 5px;
}
#mapa .widget ul li a,
.pre-footer .widget ul li a {
  color: #000;
  float: none;
  display: flex;
  word-break: break-word;
}
#mapa .widget ul li a:hover,
.pre-footer .widget ul li a:hover,
#mapa .widget ul li a:focus,
.pre-footer .widget ul li a:focus {
  text-decoration: none;
  color: #03420d;
}
#mapa .widget small,
.pre-footer .widget small,
#mapa .widget .small,
.pre-footer .widget .small {
  font-size: 90%;
}
#mapa .widget .footer-contacte li,
.pre-footer .widget .footer-contacte li {
  padding-bottom: 8px;
  padding-left: 0;
  width: 100%;
  display: flex;
  line-height: 1.2;
  font-size: 15px;
}
#mapa .widget .footer-contacte li .icon,
.pre-footer .widget .footer-contacte li .icon {
  color: #007B13;
}
#mapa .contacte,
.pre-footer .contacte {
  background-color: transparent;
  padding: 0;
  margin-bottom: 20px;
  min-height: auto;
}
#mapa .contacte li .icon,
.pre-footer .contacte li .icon {
  color: #007B13;
}
#mapa .contacte a,
.pre-footer .contacte a {
  float: none;
  padding: 0;
  display: block;
}
#mapa .map-item,
.pre-footer .map-item {
  width: 100%;
  height: 240px;
  margin: 0 0 30px 0!important;
  padding: 0 !important;
  border: 0;
}
#mapa .map-item iframe,
.pre-footer .map-item iframe {
  width: 100%;
  height: 240px;
  margin: 0!important;
  padding: 0 !important;
  border: 0;
}
#mapa .map-item iframe .i4ewOd-pzNkMb-tJHJj,
.pre-footer .map-item iframe .i4ewOd-pzNkMb-tJHJj {
  display: none;
}
#mapa .map-item .gmnoprint.gm-bundled-control,
.pre-footer .map-item .gmnoprint.gm-bundled-control {
  transform: scale(0.6);
  bottom: 60px !important;
  right: 20px !important;
}
.footer {
  padding: 0;
  margin: 0;
  width: 100%;
  float: left;
}
.footer .form-newsletter {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  padding: 0;
  margin: 10px 0;
  width: 100%;
  float: left;
  text-align: left;
}
.footer .form-newsletter .input-group {
  margin: 5px 0;
  display: inline-block;
  float: left;
  width: 60%;
}
.footer .form-newsletter .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;
}
.footer .form-newsletter .form-control {
  border-radius: 0 !important;
  background-color: #fff;
  color: #007B13;
  border-color: #ccc;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 40px;
  font-weight: bold;
  margin: 0;
}
.footer .form-newsletter .form-control::-moz-placeholder {
  color: #007B13;
  opacity: 1;
}
.footer .form-newsletter .form-control:-ms-input-placeholder {
  color: #007B13;
}
.footer .form-newsletter .form-control::-webkit-input-placeholder {
  color: #007B13;
}
.footer .form-newsletter .btn {
  border-radius: 0 !important;
  background-color: #007B13;
  color: #fff;
  border-color: #007B13;
  font-weight: bold !important;
  margin: 5px 0;
  display: inline-block;
  float: left;
  height: 40px;
}
.footer .form-newsletter .btn:hover,
.footer .form-newsletter .btn:focus {
  background-color: #0eaf2c;
  color: #fff;
  border-color: #0eaf2c;
}
.footer .form-newsletter .form-accept {
  width: 100%;
  float: left;
}
.footer .logo {
  display: block;
  color: #000;
  margin: 0 auto;
  text-align: center;
  font-size: 60px;
  margin-bottom: 15px;
}
.footer .logo:hover,
.footer .logo:focus {
  text-decoration: none;
}
.footer .logo .logo-cei:after {
  content: '\e601';
  font-size: 60px;
}
.footer .logo .hrexcellence:after {
  content: '\e913';
  font-size: 60px;
}
.footer .logo em {
  display: none;
}
.footer .contacte {
  background-color: transparent;
  padding: 0;
  margin-bottom: 20px;
  min-height: auto;
}
.footer .contacte li .icon {
  color: #007B13;
}
.footer .widget .footer-title {
  font-weight: bold;
  margin: 10px 0;
}
.footer .widget ul {
  margin: 0 0 20px 0 !important;
  padding: 0;
  list-style: none;
  width: 100%;
  float: left;
}
.footer .widget ul li {
  position: relative;
}
.footer .widget ul li .icon {
  position: relative !important;
  min-width: 20px;
  margin-right: 5px;
}
.footer .widget ul li a {
  color: #000;
}
.footer .widget ul li a:hover,
.footer .widget ul li a:focus {
  text-decoration: none;
  color: #007B13;
}
.footer .widget small,
.footer .widget .small {
  font-size: 90%;
}
.footer .map-item {
  width: 100%;
  height: 240px;
  margin: 0 0 30px 0!important;
  padding: 0 !important;
  border: 0;
}
.footer .map-item iframe {
  width: 100%;
  height: 240px;
  margin: 0!important;
  padding: 0 !important;
  border: 0;
}
.footer .map-item iframe .i4ewOd-pzNkMb-tJHJj {
  display: none;
}
.footer .map-item .gmnoprint.gm-bundled-control {
  transform: scale(0.6);
  bottom: 60px !important;
  right: 20px !important;
}
.footer .legal-footer {
  background: #000;
  color: #fff;
  clear: both;
}
.footer .legal-footer a {
  color: #fff;
}
.footer .legal-footer a:hover,
.footer .legal-footer a:focus {
  color: #fff;
  text-decoration: underline !important;
  background: none !important;
}
.footer .legal-footer .legal-content {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
}
.footer .legal-footer .legal-content .legal-copy {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .legal-footer .legal-content .legal-copy {
    width: auto;
    text-align: left;
    margin-right: auto;
  }
}
.footer .legal-footer .legal-content .legal-copy p {
  margin: 0;
}
.footer .legal-footer .legal-content .legal-links {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .legal-footer .legal-content .legal-links {
    width: auto;
    text-align: right;
    margin-left: auto;
  }
}
.footer .legal-footer .legal-content .legal-links ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: auto;
}
.footer .legal ul li {
  padding: 5px 0;
}
.footer .legal a {
  color: #000;
}
.footer .social ul li {
  padding: 5px 0;
}
.footer .social ul li a {
  color: #000;
  display: flex;
  align-items: center;
}
.footer .social ul li a:hover,
.footer .social ul li a:focus {
  text-decoration: none;
  color: #007B13;
}
.footer .social ul li span {
  font-size: 30px;
  padding-right: 10px;
  font-weight: normal;
}
.footer .credits {
  margin-top: 30px;
  text-align: center;
}
.footer .credits .legal {
  list-style: none;
  margin: 10px auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer .credits .legal li {
  padding: 5px;
}
.footer .credits .legal li:last-child {
  border-right: 0;
}
.footer .credits .legal a {
  display: block;
  border-bottom: 2px solid transparent;
}
.footer .credits .legal a:hover,
.footer .credits .legal a:focus {
  border-bottom: 2px solid #c9c9c9;
}
.xarxes-socials-footer li {
  line-height: 1;
  font-size: 22px;
  display: inline-block;
  margin-right: 2px;
}
.xarxes-socials-footer li a {
  color: #000;
  display: block;
  text-decoration: none;
}
.xarxes-socials-footer li a:hover,
.xarxes-socials-footer li a:focus {
  text-decoration: none;
  color: #007B13;
}
.footer-links {
  color: #000;
}
.footer-links li {
  padding-bottom: 5px;
}
.footer-links .footer-link-title {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
}
.footer-links a {
  display: block;
  float: none !important;
  line-height: 1.2 !important;
}
.footer .widget .footer-contacte {
  margin-bottom: 10px !important;
}
.footer .widget .footer-contacte li {
  padding-bottom: 5px;
  padding-left: 20px;
}
.footer .widget .footer-contacte .footer-contacte-title {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  padding-left: 0;
}
#mapa .widget .footer-contacte .footer-contacte-title,
.pre-footer .widget .footer-contacte .footer-contacte-title {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  padding-left: 0;
}
.footer .legal-footer a:hover,
.footer .legal-footer a:focus {
  color: #007B13;
}
.footer .widget .footer-contacte li {
  padding-left: 0 !important;
}
.footer .widget .footer-contacte li a,
.pre-footer .widget .footer-contacte li a {
  display: flex;
  flex-wrap: wrap;
}
.footer .widget .footer-contacte li .icon,
.pre-footer .widget .footer-contacte li .icon {
  padding-top: 3px;
}
.footer .widget .footer-contacte li p,
.pre-footer .widget .footer-contacte li p {
  margin: 0;
}
/*
.footer .widget ul li .icon {
    position: relative !important;
    min-width: 20px;
    margin-right: 5px;
}
*/
.footer .widget ul li a {
  word-break: break-word;
}
.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;
}
#main .capsa-color,
.capsa-color {
  position: relative;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}
#main .capsa-color a,
.capsa-color a {
  padding: 20px 30px 20px 20px;
  display: block;
  background-color: #007B13;
  color: #fff;
  position: relative;
  border: 2px solid #007B13;
  text-decoration: none;
}
#main .capsa-color a:hover,
.capsa-color a:hover,
#main .capsa-color a:focus,
.capsa-color a:focus {
  text-decoration: none;
  background-color: #f7f7f9;
  color: #007B13;
  border: 2px solid #007B13;
}
#main .capsa-color .icon,
.capsa-color .icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-weight: bold;
}
#main .capsa-color-gran,
.capsa-color-gran {
  position: relative;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  #main .capsa-color-gran,
  .capsa-color-gran {
    margin-bottom: 5px;
  }
}
@media (min-width: 1200px) {
  #main .capsa-color-gran,
  .capsa-color-gran {
    margin-bottom: 20px;
  }
}
#main .capsa-color-gran a,
.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;
  text-decoration: none;
}
@media (min-width: 992px) {
  #main .capsa-color-gran a,
  .capsa-color-gran a {
    min-height: auto;
  }
}
@media (min-width: 1200px) {
  #main .capsa-color-gran a,
  .capsa-color-gran a {
    min-height: 120px;
  }
}
#main .capsa-color-gran a:hover,
.capsa-color-gran a:hover,
#main .capsa-color-gran a:focus,
.capsa-color-gran a:focus {
  text-decoration: none;
  background-color: #f7f7f9;
  color: #007B13;
  border: 2px solid #007B13;
}
#main .capsa-color-gran .icon,
.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;
}
#main .mosaic-capsa,
.mosaic-capsa {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  background-size: cover;
  background-position: center center;
  cursor: auto;
  overflow: hidden;
}
#main .mosaic-capsa .hover,
.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);
  text-decoration: none;
}
#main .mosaic-capsa .hover .cover,
.mosaic-capsa .hover .cover {
  width: 100%;
  padding: 15px;
}
@media (min-width: 992px) {
  #main .mosaic-capsa .hover .cover,
  .mosaic-capsa .hover .cover {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  #main .mosaic-capsa .hover .cover,
  .mosaic-capsa .hover .cover {
    padding: 25px;
  }
}
#main .mosaic-capsa .hover .capsa-content,
.mosaic-capsa .hover .capsa-content {
  width: 100%;
  padding: 15px;
}
@media (min-width: 992px) {
  #main .mosaic-capsa .hover .capsa-content,
  .mosaic-capsa .hover .capsa-content {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  #main .mosaic-capsa .hover .capsa-content,
  .mosaic-capsa .hover .capsa-content {
    padding: 25px;
  }
}
#main .mosaic-capsa .hover:hover,
.mosaic-capsa .hover:hover,
#main .mosaic-capsa .hover:focus,
.mosaic-capsa .hover:focus {
  background-color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}
#main .mosaic-capsa .icon,
.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) {
  #main .mosaic-capsa .icon,
  .mosaic-capsa .icon {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  #main .mosaic-capsa .icon,
  .mosaic-capsa .icon {
    font-size: 35px;
  }
}
#main .capsa,
.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;
  cursor: auto;
}
@media (min-width: 768px) {
  #main .capsa,
  .capsa {
    width: 100%;
    padding-bottom: 100%;
  }
}
@media (min-width: 992px) {
  #main .capsa,
  .capsa {
    width: 100%;
    padding-bottom: 100%;
  }
}
#main .capsa .hover,
.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);
  text-decoration: none;
}
@media (min-width: 992px) {
  #main .capsa .hover,
  .capsa .hover {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  #main .capsa .hover,
  .capsa .hover {
    padding: 25px;
  }
}
#main .capsa .hover:hover,
.capsa .hover:hover,
#main .capsa .hover:focus,
.capsa .hover:focus {
  background: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}
#main .capsa-doble,
.capsa-doble {
  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) {
  #main .capsa-doble,
  .capsa-doble {
    width: 100%;
    padding-bottom: 50%;
  }
}
@media (min-width: 992px) {
  #main .capsa-doble,
  .capsa-doble {
    width: 100%;
    padding-bottom: 45%;
  }
}
#main .capsa-doble .hover,
.capsa-doble .hover {
  color: #fff;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
@media (min-width: 992px) {
  #main .capsa-doble .hover,
  .capsa-doble .hover {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  #main .capsa-doble .hover,
  .capsa-doble .hover {
    padding: 25px;
  }
}
#main .capsa-doble .hover:hover,
.capsa-doble .hover:hover,
#main .capsa-doble .hover:focus,
.capsa-doble .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-triple {
  width: 100%;
  padding-bottom: 50%;
}
@media (min-width: 768px) {
  .cuadrat-triple {
    width: 50%;
    padding-bottom: 25%;
  }
}
@media (min-width: 992px) {
  .cuadrat-triple {
    width: 60%;
    padding-bottom: 20%;
  }
}
.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;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: bold;
  clear: both;
  width: 100%;
  float: left;
}
@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;
}
#main .capsa-icona,
.capsa-icona {
  width: 100%;
  min-height: 100px;
  position: relative;
  margin: 0 0 20px 0;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  padding: 20px;
}
#main .capsa-icona .cover,
.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;
}
#main .capsa-icona:hover .cover,
.capsa-icona:hover .cover,
#main .capsa-icona:focus .cover,
.capsa-icona:focus .cover {
  background-color: rgba(0, 123, 19, 0.75);
}
#main .capsa-icona a,
.capsa-icona a {
  color: #fff;
  position: relative;
  display: block;
  text-decoration: none;
}
#main .capsa-icona a:hover,
.capsa-icona a:hover,
#main .capsa-icona a:focus,
.capsa-icona a:focus {
  text-decoration: none;
}
#main .capsa-icona .icona-title,
.capsa-icona .icona-title {
  margin: 0;
  padding-right: 30px;
}
#main .capsa-icona .icona,
.capsa-icona .icona {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: auto;
  background-color: transparent;
  text-align: center;
}
#main .capsa-icona .icon,
.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;
}
.capsa-220 .hover {
  text-decoration: none;
}
.foto-link {
  margin: 0 auto 20px auto;
}
.fitxa-llistat .icon-candau,
.llistat-gran .icon-candau {
  font-size: 60%;
  padding-left: 5px;
}
.cicle-formatiu {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.cicle-titol {
  background-color: #007B13;
  color: #fff;
  font-size: 18px;
  margin: 0 0 8px 0;
  padding: 10px 20px;
  display: block;
}
.cicle-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.cicle-image {
  width: 33.333%;
}
.cicle-image img {
  aspect-ratio: 1;
  object-fit: cover;
}
.cicle-text {
  width: 66.666%;
  padding-left: 8px;
  font-size: 14px;
}
.cicle-pestanyes .links {
  margin: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  column-gap: 8px;
}
.cicle-pestanyes .links li {
  line-height: 1.1;
}
.cicle-pestanyes .links li:first-child {
  border-top: 0;
}
.cercador-curs {
  background-color: #000;
  color: #fff;
}
.cercador-curs .btn {
  width: 100%;
}
.filtra {
  position: relative;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  font-size: 27px;
  line-height: 30px;
  outline: none;
}
@media (min-width: 992px) {
  .filtra {
    display: none;
  }
}
.filtra:hover,
.filtra:focus {
  outline: none;
}
.filtra .toggle-on {
  display: inline-block;
  color: #fff;
}
.filtra .toggle-off {
  display: none;
  color: #fff;
}
.filtra.collapsed .toggle-on {
  display: none;
}
.filtra.collapsed .toggle-off {
  display: inline-block;
}
.resultats-cercador {
  background-color: #eee;
}
.resultats-cercador .resultat {
  background-color: #fff;
  width: 100%;
}
.resultats-cercador .resultat ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cc-form label {
  font-weight: normal;
}
.titol-cc-h3 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 23px;
}
.titol-cc-h4 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 20px;
}
.doble-title {
  display: flex;
}
.veure-espais {
  color: #000;
  text-decoration: none;
  margin-top: 17px;
  margin-bottom: 20px;
  margin-left: auto;
  border-bottom: 1px solid #000;
}
.veure-espais:hover,
.veure-espais:focus {
  text-decoration: none;
  border-bottom: 1px solid #007B13;
}
.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 .ico {
  min-width: fit-content;
}
.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;
}
.intro-text {
  font-size: 24px;
  margin: 0 auto 20px auto;
}
.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-title a:visited,
.black-links h2 a:visited {
  color: #333;
}
.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%;
}
.espai-block {
  display: flex;
  margin-bottom: 30px;
  width: 100%;
  flex-wrap: wrap;
}
.espai-block .espai-img {
  width: 100%;
  max-width: 300px;
  display: flex;
}
@media (min-width: 992px) {
  .espai-block .espai-img {
    max-width: 33.333%;
    width: 33.333%;
    padding-right: 60px;
  }
}
@media (min-width: 1200px) {
  .espai-block .espai-img {
    max-width: 25%;
    width: 25%;
    padding-right: 60px;
  }
}
.espai-block .espai-img img {
  width: 100%;
  margin-top: auto;
}
.espai-block .espai-text {
  width: 100%;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 992px) {
  .espai-block .espai-text {
    width: 66.666%;
  }
}
@media (min-width: 1200px) {
  .espai-block .espai-text {
    width: 75%;
  }
}
.espai-block .espai-title {
  font-size: 24px;
  display: block;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.espai-block .espai-columns {
  padding: 0 0 20px 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.espai-block .espai-columns li {
  margin: 0;
  padding: 0;
  display: block;
}
.espai-block .espai-columns a {
  display: flex;
  position: relative;
  padding: 5px 0 5px 0;
  color: #000;
  overflow: hidden;
  text-decoration: none;
  font-size: 18px;
}
.espai-block .espai-columns a .ico {
  min-width: fit-content;
  padding: 0 0 2px 0;
  margin: 0 5px 0 0;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}
.espai-block .espai-columns a:hover,
.espai-block .espai-columns a:focus {
  text-decoration: underline;
}
.espai-block .espai-columns a:hover .ico,
.espai-block .espai-columns a:focus .ico {
  color: #000;
}
.espai-block .espai-columns a .espai-mark {
  color: #007B13;
  font-weight: bold;
}
.espai-block .espai-1-columns {
  width: 100%;
}
@media (min-width: 340px) {
  .espai-block .espai-1-columns {
    width: 50%;
  }
}
@media (min-width: 600px) {
  .espai-block .espai-1-columns {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  .espai-block .espai-1-columns {
    width: 25%;
  }
}
.espai-block .espai-1-columns li {
  width: 100%;
}
.espai-block .espai-2-columns {
  width: 100%;
}
@media (min-width: 340px) {
  .espai-block .espai-2-columns {
    width: 100%;
  }
}
@media (min-width: 600px) {
  .espai-block .espai-2-columns {
    width: 66.666%;
  }
}
@media (min-width: 1200px) {
  .espai-block .espai-2-columns {
    width: 50%;
  }
}
.espai-block .espai-2-columns li {
  width: 100%;
}
@media (min-width: 340px) {
  .espai-block .espai-2-columns li {
    width: 50%;
  }
}
@media (min-width: 600px) {
  .espai-block .espai-2-columns li {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .espai-block .espai-2-columns li {
    width: 50%;
  }
}
.espai-block .espai-4-columns {
  width: 100%;
}
.espai-block .espai-4-columns li {
  width: 100%;
}
@media (min-width: 340px) {
  .espai-block .espai-4-columns li {
    width: 50%;
  }
}
@media (min-width: 600px) {
  .espai-block .espai-4-columns li {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  .espai-block .espai-4-columns li {
    width: 25%;
  }
}
.espai-block .espai-4-columns {
  width: 100%;
}
.espai-block .espai-4-columns li {
  width: 100%;
}
@media (min-width: 340px) {
  .espai-block .espai-4-columns li {
    width: 50%;
  }
}
@media (min-width: 600px) {
  .espai-block .espai-4-columns li {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  .espai-block .espai-4-columns li {
    width: 25%;
  }
}
.espai-interactiu {
  margin-bottom: 30px;
}
.espai-planta {
  width: 100%;
}
.region-map {
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.region-map a {
  text-decoration: none;
}
.region-map svg {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}
.region-map .sala {
  fill: #007B13;
  opacity: 0.2;
}
.region-map .sala-text {
  font-family: "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: bold;
  font-size: 12px;
  opacity: 0.2;
}
.region-map .aula {
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.region-map .aula span {
  display: none;
  height: 0;
  width: 0;
}
.region-map .aula:hover .sala,
.region-map .aula:focus .sala {
  opacity: 0.7;
  fill: #007B13 !important;
}
.region-map .aula:hover .sala-text,
.region-map .aula:focus .sala-text {
  opacity: 1;
  fill: #000 !important;
}
.region-map .sala-name {
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
}
.region-map .sala-bg {
  fill: #fff;
  opacity: 0;
}
.cc-equipaments {
  padding-top: 20px;
}
@media (min-width: 1200px) {
  .cc-equipaments {
    padding-top: 40px;
  }
}
.cc-equipament {
  margin-bottom: 50px;
}
.cc-equipament h1,
.cc-equipament h2,
.cc-equipament h3 {
  font-weight: bold;
}
:root {
  --fc-border-color: #ddd;
  --fc-daygrid-event-dot-width: 5px;
}
/* classes attached to <body> */
/* TODO: make fc-event selector work when calender in shadow DOM */
.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* override events' custom cursors */
  cursor: not-allowed;
}
/* TODO: not attached to body. attached to specific els. move */
.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.fc {
  /* layout of immediate children */
  display: flex;
  flex-direction: column;
  font-size: 1em;
}
.fc,
.fc *,
.fc *:before,
.fc *:after {
  box-sizing: border-box;
}
.fc table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}
.fc th {
  text-align: center;
}
.fc th,
.fc td {
  vertical-align: top;
  padding: 0;
}
.fc a[data-navlink] {
  cursor: pointer;
}
.fc a[data-navlink]:hover {
  text-decoration: underline;
}
.fc-direction-ltr {
  direction: ltr;
  text-align: left;
}
.fc-direction-rtl {
  direction: rtl;
  text-align: right;
}
.fc-theme-standard td,
.fc-theme-standard th {
  border: 1px solid #ddd;
  border: 1px solid var(--fc-border-color, #ddd);
}
/* for FF, which doesn't expand a 100% div within a table cell. use absolute positioning */
/* inner-wrappers are responsible for being absolute */
/* TODO: best place for this? */
.fc-liquid-hack td,
.fc-liquid-hack th {
  position: relative;
}
@font-face {
  font-family: 'fcicons';
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format('truetype');
  font-weight: normal;
  font-style: normal;
}
.fc-icon {
  /* added for fc */
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'fcicons' !important;
  speak: none;
  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;
}
.fc-icon-chevron-left:before {
  content: "\e900";
}
.fc-icon-chevron-right:before {
  content: "\e901";
}
.fc-icon-chevrons-left:before {
  content: "\e902";
}
.fc-icon-chevrons-right:before {
  content: "\e903";
}
.fc-icon-minus-square:before {
  content: "\e904";
}
.fc-icon-plus-square:before {
  content: "\e905";
}
.fc-icon-x:before {
  content: "\e906";
}
/*
Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css

These styles only apply when the standard-theme is activated.
When it's NOT activated, the fc-button classes won't even be in the DOM.
*/
.fc {
  /* reset */
}
.fc .fc-button {
  border-radius: 0;
  overflow: visible;
  text-transform: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.fc .fc-button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
.fc .fc-button {
  -webkit-appearance: button;
}
.fc .fc-button:not(:disabled) {
  cursor: pointer;
}
.fc .fc-button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
.fc {
  /* theme */
}
.fc .fc-button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.4em 0.65em;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0.25em;
}
.fc .fc-button:hover {
  text-decoration: none;
}
.fc .fc-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}
.fc .fc-button:disabled {
  opacity: 0.65;
}
.fc {
  /* "primary" coloring */
}
.fc .fc-button-primary {
  color: #fff;
  color: var(--fc-button-text-color, #fff);
  background-color: #2C3E50;
  background-color: var(--fc-button-bg-color, #2C3E50);
  border-color: #2C3E50;
  border-color: var(--fc-button-border-color, #2C3E50);
}
.fc .fc-button-primary:hover {
  color: #fff;
  color: var(--fc-button-text-color, #fff);
  background-color: #1e2b37;
  background-color: var(--fc-button-hover-bg-color, #1e2b37);
  border-color: #1a252f;
  border-color: var(--fc-button-hover-border-color, #1a252f);
}
.fc .fc-button-primary:disabled {
  /* not DRY */
  color: #fff;
  color: var(--fc-button-text-color, #fff);
  background-color: #2C3E50;
  background-color: var(--fc-button-bg-color, #2C3E50);
  border-color: #2C3E50;
  border-color: var(--fc-button-border-color, #2C3E50);
  /* overrides :hover */
}
.fc .fc-button-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}
.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
  color: #fff;
  color: var(--fc-button-text-color, #fff);
  background-color: #1a252f;
  background-color: var(--fc-button-active-bg-color, #1a252f);
  border-color: #151e27;
  border-color: var(--fc-button-active-border-color, #151e27);
}
.fc .fc-button-primary:not(:disabled):active:focus,
.fc .fc-button-primary:not(:disabled).fc-button-active:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}
.fc {
  /* icons within buttons */
}
.fc .fc-button .fc-icon {
  vertical-align: middle;
  font-size: 1.5em;
  /* bump up the size (but don't make it bigger than line-height of button, which is 1.5em also) */
}
.fc .fc-button-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.fc .fc-button-group > .fc-button {
  position: relative;
  flex: 1 1 auto;
}
.fc .fc-button-group > .fc-button:hover {
  z-index: 1;
}
.fc .fc-button-group > .fc-button:focus,
.fc .fc-button-group > .fc-button:active,
.fc .fc-button-group > .fc-button.fc-button-active {
  z-index: 1;
}
.fc-direction-ltr .fc-button-group > .fc-button:not(:first-child) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.fc-direction-ltr .fc-button-group > .fc-button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-direction-rtl .fc-button-group > .fc-button:not(:first-child) {
  margin-right: -1px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-direction-rtl .fc-button-group > .fc-button:not(:last-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.fc .fc-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 1.5em;
}
.fc .fc-toolbar.fc-footer-toolbar {
  margin-top: 1.5em;
}
.fc .fc-toolbar-title {
  font-size: 1.75em;
  margin: 0;
}
.fc-direction-ltr .fc-toolbar > * > :not(:first-child) {
  margin-left: 0.75em;
  /* space between */
}
.fc-direction-rtl .fc-toolbar > * > :not(:first-child) {
  margin-right: 0.75em;
  /* space between */
}
.fc-direction-rtl .fc-toolbar-ltr {
  /* when the toolbar-chunk positioning system is explicitly left-to-right */
  flex-direction: row-reverse;
}
.fc .fc-scroller {
  -webkit-overflow-scrolling: touch;
  position: relative;
  /* for abs-positioned elements within */
}
.fc .fc-scroller-liquid {
  height: 100%;
}
.fc .fc-scroller-liquid-absolute {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.fc .fc-scroller-harness {
  position: relative;
  overflow: hidden;
  direction: ltr;
  /* hack for chrome computing the scroller's right/left wrong for rtl. undone below... */
  /* TODO: demonstrate in codepen */
}
.fc .fc-scroller-harness-liquid {
  height: 100%;
}
.fc-direction-rtl .fc-scroller-harness > .fc-scroller {
  /* undo above hack */
  direction: rtl;
}
.fc-theme-standard .fc-scrollgrid {
  border: 1px solid #ddd;
  border: 1px solid var(--fc-border-color, #ddd);
  /* bootstrap does this. match */
}
.fc .fc-scrollgrid,
.fc .fc-scrollgrid table {
  /* all tables (self included) */
  width: 100%;
  /* because tables don't normally do this */
  table-layout: fixed;
}
.fc .fc-scrollgrid table {
  /* inner tables */
  border-top-style: hidden;
  border-left-style: hidden;
  border-right-style: hidden;
}
.fc .fc-scrollgrid {
  border-collapse: separate;
  border-right-width: 0;
  border-bottom-width: 0;
}
.fc .fc-scrollgrid-liquid {
  height: 100%;
}
.fc .fc-scrollgrid-section {
  /* a <tr> */
  height: 1px /* better than 0, for firefox */;
}
.fc .fc-scrollgrid-section > td {
  height: 1px;
  /* needs a height so inner div within grow. better than 0, for firefox */
}
.fc .fc-scrollgrid-section table {
  height: 1px;
  /* for most browsers, if a height isn't set on the table, can't do liquid-height within cells */
  /* serves as a min-height. harmless */
}
.fc .fc-scrollgrid-section-liquid > td {
  height: 100%;
  /* better than `auto`, for firefox */
}
.fc .fc-scrollgrid-section > * {
  border-top-width: 0;
  border-left-width: 0;
}
.fc .fc-scrollgrid-section-header > *,
.fc .fc-scrollgrid-section-footer > * {
  border-bottom-width: 0;
}
.fc .fc-scrollgrid-section-body table,
.fc .fc-scrollgrid-section-footer table {
  border-bottom-style: hidden;
  /* head keeps its bottom border tho */
}
.fc {
  /* stickiness */
}
.fc .fc-scrollgrid-section-sticky > * {
  background: #fff;
  background: var(--fc-page-bg-color, #fff);
  position: sticky;
  z-index: 3;
  /* TODO: var */
  /* TODO: box-shadow when sticking */
}
.fc .fc-scrollgrid-section-header.fc-scrollgrid-section-sticky > * {
  top: 0;
  /* because border-sharing causes a gap at the top */
  /* TODO: give safari -1. has bug */
}
.fc .fc-scrollgrid-section-footer.fc-scrollgrid-section-sticky > * {
  bottom: 0;
  /* known bug: bottom-stickiness doesn't work in safari */
}
.fc .fc-scrollgrid-sticky-shim {
  /* for horizontal scrollbar */
  height: 1px;
  /* needs height to create scrollbars */
  margin-bottom: -1px;
}
.fc-sticky {
  /* no .fc wrap because used as child of body */
  position: sticky;
}
.fc .fc-view-harness {
  flex-grow: 1;
  /* because this harness is WITHIN the .fc's flexbox */
  position: relative;
}
.fc {
  /* when the harness controls the height, make the view liquid */
}
.fc .fc-view-harness-active > .fc-view {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.fc .fc-col-header-cell-cushion {
  display: inline-block;
  /* x-browser for when sticky (when multi-tier header) */
  padding: 2px 4px;
}
.fc .fc-bg-event,
.fc .fc-non-business,
.fc .fc-highlight {
  /* will always have a harness with position:relative/absolute, so absolutely expand */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fc .fc-non-business {
  background: rgba(215, 215, 215, 0.3);
  background: var(--fc-non-business-color, rgba(215, 215, 215, 0.3));
}
.fc .fc-bg-event {
  background: #8fdf82;
  background: var(--fc-bg-event-color, #8fdf82);
  opacity: 0.3;
  opacity: var(--fc-bg-event-opacity, 0.3);
}
.fc .fc-bg-event .fc-event-title {
  margin: 0.5em;
  font-size: 0.85em;
  font-size: var(--fc-small-font-size, 0.85em);
  font-style: italic;
}
.fc .fc-highlight {
  background: rgba(188, 232, 241, 0.3);
  background: var(--fc-highlight-color, rgba(188, 232, 241, 0.3));
}
.fc .fc-cell-shaded,
.fc .fc-day-disabled {
  background: rgba(208, 208, 208, 0.3);
  background: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
}
/* link resets */
/* ---------------------------------------------------------------------------------------------------- */
a.fc-event,
a.fc-event:hover {
  text-decoration: none;
}
/* cursor */
.fc-event[href],
.fc-event.fc-event-draggable {
  cursor: pointer;
}
/* event text content */
/* ---------------------------------------------------------------------------------------------------- */
.fc-event .fc-event-main {
  position: relative;
  z-index: 2;
}
/* dragging */
/* ---------------------------------------------------------------------------------------------------- */
.fc-event-dragging:not(.fc-event-selected) {
  /* MOUSE */
  opacity: 0.75;
}
.fc-event-dragging.fc-event-selected {
  /* TOUCH */
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}
/* resizing */
/* ---------------------------------------------------------------------------------------------------- */
/* (subclasses should hone positioning for touch and non-touch) */
.fc-event .fc-event-resizer {
  display: none;
  position: absolute;
  z-index: 4;
}
.fc-event:hover,
.fc-event-selected {
  /* TOUCH */
}
.fc-event:hover .fc-event-resizer,
.fc-event-selected .fc-event-resizer {
  display: block;
}
.fc-event-selected .fc-event-resizer {
  border-radius: 4px;
  border-radius: calc(var(--fc-event-resizer-dot-total-width, 8px) / 2);
  border-width: 1px;
  border-width: var(--fc-event-resizer-dot-border-width, 1px);
  width: 8px;
  width: var(--fc-event-resizer-dot-total-width, 8px);
  height: 8px;
  height: var(--fc-event-resizer-dot-total-width, 8px);
  border-style: solid;
  border-color: inherit;
  background: #fff;
  background: var(--fc-page-bg-color, #fff) /* expand hit area */;
}
.fc-event-selected .fc-event-resizer:before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
}
/* selecting (always TOUCH) */
/* ---------------------------------------------------------------------------------------------------- */
.fc-event-selected {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) /* expand hit area (subclasses should expand) */;
}
.fc-event-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fc-event-selected {
  /* dimmer effect */
}
.fc-event-selected:after {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  background: var(--fc-event-selected-overlay-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  z-index: 1;
  /* assume there's a border on all sides. overcome it. */
  /* sometimes there's NOT a border, in which case the dimmer will go over */
  /* an adjacent border, which looks fine. */
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}
/*
A HORIZONTAL event
*/
.fc-h-event {
  /* allowed to be top-level */
  display: block;
  border: 1px solid #3788d8;
  border: 1px solid var(--fc-event-border-color, #3788d8);
  background-color: #3788d8;
  background-color: var(--fc-event-bg-color, #3788d8);
}
.fc-h-event .fc-event-main {
  color: #fff;
  color: var(--fc-event-text-color, #fff);
}
.fc-h-event .fc-event-main-frame {
  display: flex;
  /* for make fc-event-title-container expand */
}
.fc-h-event .fc-event-time {
  max-width: 100%;
  /* clip overflow on this element */
  overflow: hidden;
}
.fc-h-event .fc-event-title-container {
  /* serves as a container for the sticky cushion */
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  /* important for allowing to shrink all the way */
}
.fc-h-event .fc-event-title {
  display: inline-block;
  /* need this to be sticky cross-browser */
  vertical-align: top;
  /* for not messing up line-height */
  left: 0;
  /* for sticky */
  right: 0;
  /* for sticky */
  max-width: 100%;
  /* clip overflow on this element */
  overflow: hidden;
}
.fc-h-event.fc-event-selected:before {
  /* expand hit area */
  top: -10px;
  bottom: -10px;
}
/* adjust border and border-radius (if there is any) for non-start/end */
.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-start),
.fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-end) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left-width: 0;
}
.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-end),
.fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-start) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-width: 0;
}
/* resizers */
.fc-h-event:not(.fc-event-selected) .fc-event-resizer {
  top: 0;
  bottom: 0;
  width: 8px;
  width: var(--fc-event-resizer-thickness, 8px);
}
.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start,
.fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end {
  cursor: w-resize;
  left: -4px;
  left: calc(var(--fc-event-resizer-thickness, 8px) / -2);
}
.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end,
.fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start {
  cursor: e-resize;
  right: -4px;
  right: calc(var(--fc-event-resizer-thickness, 8px) / -2);
}
/* resizers for TOUCH */
.fc-h-event.fc-event-selected .fc-event-resizer {
  top: 50%;
  margin-top: -4px;
  margin-top: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}
.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-start,
.fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-end {
  left: -4px;
  left: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}
.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-end,
.fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-start {
  right: -4px;
  right: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}
.fc .fc-popover {
  position: absolute;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.fc .fc-popover-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 3px 4px;
}
.fc .fc-popover-title {
  margin: 0 2px;
}
.fc .fc-popover-close {
  cursor: pointer;
  opacity: 0.65;
  font-size: 1.1em;
}
.fc-theme-standard .fc-popover {
  border: 1px solid #ddd;
  border: 1px solid var(--fc-border-color, #ddd);
  background: #fff;
  background: var(--fc-page-bg-color, #fff);
}
.fc-theme-standard .fc-popover-header {
  background: rgba(208, 208, 208, 0.3);
  background: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
}
:root {
  --fc-daygrid-event-dot-width: 8px;
}
/* help things clear margins of inner content */
.fc-daygrid-day-frame,
.fc-daygrid-day-events,
.fc-daygrid-event-harness {
  /* for event top/bottom margins */
}
.fc-daygrid-day-frame:before,
.fc-daygrid-day-events:before,
.fc-daygrid-event-harness:before {
  content: "";
  clear: both;
  display: table;
}
.fc-daygrid-day-frame:after,
.fc-daygrid-day-events:after,
.fc-daygrid-event-harness:after {
  content: "";
  clear: both;
  display: table;
}
.fc .fc-daygrid-body {
  /* a <div> that wraps the table */
  position: relative;
  z-index: 1;
  /* container inner z-index's because <tr>s can't do it */
}
.fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(255, 220, 40, 0.15);
  background-color: var(--fc-today-bg-color, rgba(255, 220, 40, 0.15));
}
.fc .fc-daygrid-day-frame {
  position: relative;
  min-height: 100%;
  /* seems to work better than `height` because sets height after rows/cells naturally do it */
}
.fc {
  /* cell top */
}
.fc .fc-daygrid-day-top {
  display: flex;
  flex-direction: row-reverse;
}
.fc .fc-day-other .fc-daygrid-day-top {
  opacity: 0.3;
}
.fc {
  /* day number (within cell top) */
}
.fc .fc-daygrid-day-number {
  position: relative;
  z-index: 4;
  padding: 4px;
}
.fc {
  /* event container */
}
.fc .fc-daygrid-day-events {
  margin-top: 1px;
  /* needs to be margin, not padding, so that available cell height can be computed */
}
.fc {
  /* positioning for balanced vs natural */
}
.fc .fc-daygrid-body-balanced .fc-daygrid-day-events {
  position: absolute;
  left: 0;
  right: 0;
}
.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
  position: relative;
  /* for containing abs positioned event harnesses */
  min-height: 2em;
  /* in addition to being a min-height during natural height, equalizes the heights a little bit */
}
.fc .fc-daygrid-body-natural {
  /* can coexist with -unbalanced */
}
.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
  margin-bottom: 1em;
}
.fc {
  /* event harness */
}
.fc .fc-daygrid-event-harness {
  position: relative;
}
.fc .fc-daygrid-event-harness-abs {
  position: absolute;
  top: 0;
  /* fallback coords for when cannot yet be computed */
  left: 0;
  /* */
  right: 0;
  /* */
}
.fc .fc-daygrid-bg-harness {
  position: absolute;
  top: 0;
  bottom: 0;
}
.fc {
  /* bg content */
}
.fc .fc-daygrid-day-bg .fc-non-business {
  z-index: 1;
}
.fc .fc-daygrid-day-bg .fc-bg-event {
  z-index: 2;
}
.fc .fc-daygrid-day-bg .fc-highlight {
  z-index: 3;
}
.fc {
  /* events */
}
.fc .fc-daygrid-event {
  z-index: 6;
  margin-top: 1px;
}
.fc .fc-daygrid-event.fc-event-mirror {
  z-index: 7;
}
.fc {
  /* cell bottom (within day-events) */
}
.fc .fc-daygrid-day-bottom {
  font-size: 0.85em;
  padding: 2px 3px 0;
}
.fc .fc-daygrid-day-bottom:before {
  content: "";
  clear: both;
  display: table;
}
.fc .fc-daygrid-more-link {
  position: relative;
  z-index: 4;
  cursor: pointer;
}
.fc {
  /* week number (within frame) */
}
.fc .fc-daygrid-week-number {
  position: absolute;
  z-index: 5;
  top: 0;
  padding: 2px;
  min-width: 1.5em;
  text-align: center;
  background-color: rgba(208, 208, 208, 0.3);
  background-color: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
  color: #808080;
  color: var(--fc-neutral-text-color, #808080);
}
.fc {
  /* popover */
}
.fc .fc-more-popover .fc-popover-body {
  min-width: 220px;
  padding: 10px;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-start,
.fc-direction-rtl .fc-daygrid-event.fc-event-end {
  margin-left: 2px;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
  margin-right: 2px;
}
.fc-direction-ltr .fc-daygrid-week-number {
  left: 0;
  border-radius: 0 0 3px 0;
}
.fc-direction-rtl .fc-daygrid-week-number {
  right: 0;
  border-radius: 0 0 0 3px;
}
.fc-liquid-hack .fc-daygrid-day-frame {
  position: static;
  /* will cause inner absolute stuff to expand to <td> */
}
.fc-daygrid-event {
  /* make root-level, because will be dragged-and-dropped outside of a component root */
  position: relative;
  /* for z-indexes assigned later */
  white-space: nowrap;
  border-radius: 3px;
  /* dot event needs this to when selected */
  font-size: 0.85em;
  font-size: var(--fc-small-font-size, 0.85em);
}
/* --- the rectangle ("block") style of event --- */
.fc-daygrid-block-event .fc-event-time {
  font-weight: bold;
}
.fc-daygrid-block-event .fc-event-time,
.fc-daygrid-block-event .fc-event-title {
  padding: 1px;
}
/* --- the dot style of event --- */
.fc-daygrid-dot-event {
  display: flex;
  align-items: center;
  padding: 2px 0;
}
.fc-daygrid-dot-event .fc-event-title {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  /* important for allowing to shrink all the way */
  overflow: hidden;
  font-weight: bold;
}
.fc-daygrid-dot-event:hover,
.fc-daygrid-dot-event.fc-event-mirror {
  background: rgba(0, 0, 0, 0.1);
}
.fc-daygrid-dot-event.fc-event-selected:before {
  /* expand hit area */
  top: -10px;
  bottom: -10px;
}
.fc-daygrid-event-dot {
  /* the actual dot */
  margin: 0 4px;
  box-sizing: content-box;
  width: 0;
  height: 0;
  border: 4px solid #3788d8;
  border: calc(var(--fc-daygrid-event-dot-width, 8px) / 2) solid var(--fc-event-border-color, #3788d8);
  border-radius: 4px;
  border-radius: calc(var(--fc-daygrid-event-dot-width, 8px) / 2);
}
/* --- spacing between time and title --- */
.fc-direction-ltr .fc-daygrid-event .fc-event-time {
  margin-right: 3px;
}
.fc-direction-rtl .fc-daygrid-event .fc-event-time {
  margin-left: 3px;
}
/*
A VERTICAL event
*/
.fc-v-event {
  /* allowed to be top-level */
  display: block;
  border: 1px solid #3788d8;
  border: 1px solid var(--fc-event-border-color, #3788d8);
  background-color: #3788d8;
  background-color: var(--fc-event-bg-color, #3788d8);
}
.fc-v-event .fc-event-main {
  color: #fff;
  color: var(--fc-event-text-color, #fff);
  height: 100%;
}
.fc-v-event .fc-event-main-frame {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fc-v-event .fc-event-time {
  flex-grow: 0;
  flex-shrink: 0;
  max-height: 100%;
  overflow: hidden;
}
.fc-v-event .fc-event-title-container {
  /* a container for the sticky cushion */
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 0;
  /* important for allowing to shrink all the way */
}
.fc-v-event .fc-event-title {
  /* will have fc-sticky on it */
  top: 0;
  bottom: 0;
  max-height: 100%;
  /* clip overflow */
  overflow: hidden;
}
.fc-v-event:not(.fc-event-start) {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.fc-v-event:not(.fc-event-end) {
  border-bottom-width: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-v-event.fc-event-selected:before {
  /* expand hit area */
  left: -10px;
  right: -10px;
}
.fc-v-event {
  /* resizer (mouse AND touch) */
}
.fc-v-event .fc-event-resizer-start {
  cursor: n-resize;
}
.fc-v-event .fc-event-resizer-end {
  cursor: s-resize;
}
.fc-v-event {
  /* resizer for MOUSE */
}
.fc-v-event:not(.fc-event-selected) .fc-event-resizer {
  height: 8px;
  height: var(--fc-event-resizer-thickness, 8px);
  left: 0;
  right: 0;
}
.fc-v-event:not(.fc-event-selected) .fc-event-resizer-start {
  top: -4px;
  top: calc(var(--fc-event-resizer-thickness, 8px) / -2);
}
.fc-v-event:not(.fc-event-selected) .fc-event-resizer-end {
  bottom: -4px;
  bottom: calc(var(--fc-event-resizer-thickness, 8px) / -2);
}
.fc-v-event {
  /* resizer for TOUCH (when event is "selected") */
}
.fc-v-event.fc-event-selected .fc-event-resizer {
  left: 50%;
  margin-left: -4px;
  margin-left: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}
.fc-v-event.fc-event-selected .fc-event-resizer-start {
  top: -4px;
  top: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}
.fc-v-event.fc-event-selected .fc-event-resizer-end {
  bottom: -4px;
  bottom: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
}
.fc .fc-timegrid .fc-daygrid-body {
  /* the all-day daygrid within the timegrid view */
  z-index: 2;
  /* put above the timegrid-body so that more-popover is above everything. TODO: better solution */
}
.fc .fc-timegrid-divider {
  padding: 0 0 2px;
  /* browsers get confused when you set height. use padding instead */
}
.fc .fc-timegrid-body {
  position: relative;
  z-index: 1;
  /* scope the z-indexes of slots and cols */
  min-height: 100%;
  /* fill height always, even when slat table doesn't grow */
}
.fc .fc-timegrid-axis-chunk {
  /* for advanced ScrollGrid */
  position: relative /* offset parent for now-indicator-container */;
}
.fc .fc-timegrid-axis-chunk > table {
  position: relative;
  z-index: 1;
  /* above the now-indicator-container */
}
.fc .fc-timegrid-slots {
  position: relative;
  z-index: 1;
}
.fc .fc-timegrid-slot {
  /* a <td> */
  height: 1.5em;
  border-bottom: 0 /* each cell owns its top border */;
}
.fc .fc-timegrid-slot:empty:before {
  content: '\00a0';
  /* make sure there's at least an empty space to create height for height syncing */
}
.fc .fc-timegrid-slot-minor {
  border-top-style: dotted;
}
.fc .fc-timegrid-slot-label-cushion {
  display: inline-block;
  white-space: nowrap;
}
.fc .fc-timegrid-slot-label {
  vertical-align: middle;
  /* vertical align the slots */
}
.fc {
  /* slots AND axis cells (top-left corner of view including the "all-day" text) */
}
.fc .fc-timegrid-axis-cushion,
.fc .fc-timegrid-slot-label-cushion {
  padding: 0 4px;
}
.fc {
  /* axis cells (top-left corner of view including the "all-day" text) */
  /* vertical align is more complicated, uses flexbox */
}
.fc .fc-timegrid-axis-frame-liquid {
  height: 100%;
  /* will need liquid-hack in FF */
}
.fc .fc-timegrid-axis-frame {
  overflow: hidden;
  display: flex;
  align-items: center;
  /* vertical align */
  justify-content: flex-end;
  /* horizontal align. matches text-align below */
}
.fc .fc-timegrid-axis-cushion {
  max-width: 60px;
  /* limits the width of the "all-day" text */
  flex-shrink: 0;
  /* allows text to expand how it normally would, regardless of constrained width */
}
.fc-direction-ltr .fc-timegrid-slot-label-frame {
  text-align: right;
}
.fc-direction-rtl .fc-timegrid-slot-label-frame {
  text-align: left;
}
.fc-liquid-hack .fc-timegrid-axis-frame-liquid {
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.fc .fc-timegrid-col.fc-day-today {
  background-color: rgba(255, 220, 40, 0.15);
  background-color: var(--fc-today-bg-color, rgba(255, 220, 40, 0.15));
}
.fc .fc-timegrid-col-frame {
  min-height: 100%;
  /* liquid-hack is below */
  position: relative;
}
.fc-media-screen.fc-liquid-hack .fc-timegrid-col-frame {
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.fc-media-screen .fc-timegrid-cols {
  position: absolute;
  /* no z-index. children will decide and go above slots */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fc-media-screen .fc-timegrid-cols > table {
  height: 100%;
}
.fc-media-screen .fc-timegrid-col-bg,
.fc-media-screen .fc-timegrid-col-events,
.fc-media-screen .fc-timegrid-now-indicator-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.fc {
  /* bg */
}
.fc .fc-timegrid-col-bg {
  z-index: 2;
  /* TODO: kill */
}
.fc .fc-timegrid-col-bg .fc-non-business {
  z-index: 1;
}
.fc .fc-timegrid-col-bg .fc-bg-event {
  z-index: 2;
}
.fc .fc-timegrid-col-bg .fc-highlight {
  z-index: 3;
}
.fc .fc-timegrid-bg-harness {
  position: absolute;
  /* top/bottom will be set by JS */
  left: 0;
  right: 0;
}
.fc {
  /* fg events */
  /* (the mirror segs are put into a separate container with same classname, */
  /* and they must be after the normal seg container to appear at a higher z-index) */
}
.fc .fc-timegrid-col-events {
  z-index: 3;
  /* child event segs have z-indexes that are scoped within this div */
}
.fc {
  /* now indicator */
}
.fc .fc-timegrid-now-indicator-container {
  bottom: 0;
  overflow: hidden;
  /* don't let overflow of lines/arrows cause unnecessary scrolling */
  /* z-index is set on the individual elements */
}
.fc-direction-ltr .fc-timegrid-col-events {
  margin: 0 2.5% 0 2px;
}
.fc-direction-rtl .fc-timegrid-col-events {
  margin: 0 2px 0 2.5%;
}
.fc-timegrid-event-harness {
  position: absolute /* top/left/right/bottom will all be set by JS */;
}
.fc-timegrid-event-harness > .fc-timegrid-event {
  position: absolute;
  /* absolute WITHIN the harness */
  top: 0;
  /* for when not yet positioned */
  bottom: 0;
  /* " */
  left: 0;
  right: 0;
}
.fc-timegrid-event-harness-inset .fc-timegrid-event,
.fc-timegrid-event.fc-event-mirror,
.fc-timegrid-more-link {
  box-shadow: 0px 0px 0px 1px #fff;
  box-shadow: 0px 0px 0px 1px var(--fc-page-bg-color, #fff);
}
.fc-timegrid-event,
.fc-timegrid-more-link {
  /* events need to be root */
  font-size: 0.85em;
  font-size: var(--fc-small-font-size, 0.85em);
  border-radius: 3px;
}
.fc-timegrid-event {
  /* events need to be root */
  margin-bottom: 1px /* give some space from bottom */;
}
.fc-timegrid-event .fc-event-main {
  padding: 1px 1px 0;
}
.fc-timegrid-event .fc-event-time {
  white-space: nowrap;
  font-size: 0.85em;
  font-size: var(--fc-small-font-size, 0.85em);
  margin-bottom: 1px;
}
.fc-timegrid-event-short .fc-event-main-frame {
  flex-direction: row;
  overflow: hidden;
}
.fc-timegrid-event-short .fc-event-time:after {
  content: '\00a0-\00a0';
  /* dash surrounded by non-breaking spaces */
}
.fc-timegrid-event-short .fc-event-title {
  font-size: 0.85em;
  font-size: var(--fc-small-font-size, 0.85em);
}
.fc-timegrid-more-link {
  /* does NOT inherit from fc-timegrid-event */
  position: absolute;
  z-index: 9999;
  /* hack */
  color: inherit;
  color: var(--fc-more-link-text-color, inherit);
  background: #d0d0d0;
  background: var(--fc-more-link-bg-color, #d0d0d0);
  cursor: pointer;
  margin-bottom: 1px;
  /* match space below fc-timegrid-event */
}
.fc-timegrid-more-link-inner {
  /* has fc-sticky */
  padding: 3px 2px;
  top: 0;
}
.fc-direction-ltr .fc-timegrid-more-link {
  right: 0;
}
.fc-direction-rtl .fc-timegrid-more-link {
  left: 0;
}
.fc {
  /* line */
}
.fc .fc-timegrid-now-indicator-line {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  border-style: solid;
  border-color: red;
  border-color: var(--fc-now-indicator-color, red);
  border-width: 1px 0 0;
}
.fc {
  /* arrow */
}
.fc .fc-timegrid-now-indicator-arrow {
  position: absolute;
  z-index: 4;
  margin-top: -5px;
  /* vertically center on top coordinate */
  border-style: solid;
  border-color: red;
  border-color: var(--fc-now-indicator-color, red);
}
.fc-direction-ltr .fc-timegrid-now-indicator-arrow {
  left: 0;
  /* triangle pointing right. TODO: mixin */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.fc-direction-rtl .fc-timegrid-now-indicator-arrow {
  right: 0;
  /* triangle pointing left. TODO: mixin */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
:root {
  --fc-list-event-dot-width: 10px;
  --fc-list-event-hover-bg-color: #f5f5f5;
}
.fc-theme-standard .fc-list {
  border: 1px solid #ddd;
  border: 1px solid var(--fc-border-color, #ddd);
}
.fc {
  /* message when no events */
}
.fc .fc-list-empty {
  background-color: rgba(208, 208, 208, 0.3);
  background-color: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* vertically aligns fc-list-empty-inner */
}
.fc .fc-list-empty-cushion {
  margin: 5em 0;
}
.fc {
  /* table within the scroller */
  /* ---------------------------------------------------------------------------------------------------- */
}
.fc .fc-list-table {
  width: 100%;
  border-style: hidden;
  /* kill outer border on theme */
}
.fc .fc-list-table tr > * {
  border-left: 0;
  border-right: 0;
}
.fc .fc-list-sticky .fc-list-day > * {
  /* the cells */
  position: sticky;
  top: 0;
  background: #fff;
  background: var(--fc-page-bg-color, #fff);
  /* for when headers are styled to be transparent and sticky */
}
.fc .fc-list-table th {
  padding: 0;
  /* uses an inner-wrapper instead... */
}
.fc .fc-list-table td,
.fc .fc-list-day-cushion {
  padding: 8px 14px;
}
.fc {
  /* date heading rows */
  /* ---------------------------------------------------------------------------------------------------- */
}
.fc .fc-list-day-cushion:after {
  content: "";
  clear: both;
  display: table;
  /* clear floating */
}
.fc-theme-standard .fc-list-day-cushion {
  background-color: rgba(208, 208, 208, 0.3);
  background-color: var(--fc-neutral-bg-color, rgba(208, 208, 208, 0.3));
}
.fc-direction-ltr .fc-list-day-text,
.fc-direction-rtl .fc-list-day-side-text {
  float: left;
}
.fc-direction-ltr .fc-list-day-side-text,
.fc-direction-rtl .fc-list-day-text {
  float: right;
}
/* make the dot closer to the event title */
.fc-direction-ltr .fc-list-table .fc-list-event-graphic {
  padding-right: 0;
}
.fc-direction-rtl .fc-list-table .fc-list-event-graphic {
  padding-left: 0;
}
.fc .fc-list-event.fc-event-forced-url {
  cursor: pointer;
  /* whole row will seem clickable */
}
.fc .fc-list-event:hover td {
  background-color: #f5f5f5;
  background-color: var(--fc-list-event-hover-bg-color, #f5f5f5);
}
.fc {
  /* shrink certain cols */
}
.fc .fc-list-event-graphic,
.fc .fc-list-event-time {
  white-space: nowrap;
  width: 1px;
}
.fc .fc-list-event-dot {
  display: inline-block;
  box-sizing: content-box;
  width: 0;
  height: 0;
  border: 5px solid #3788d8;
  border: calc(var(--fc-list-event-dot-width, 10px) / 2) solid var(--fc-event-border-color, #3788d8);
  border-radius: 5px;
  border-radius: calc(var(--fc-list-event-dot-width, 10px) / 2);
}
.fc {
  /* reset <a> styling */
}
.fc .fc-list-event-title a {
  color: inherit;
  text-decoration: none;
}
.fc {
  /* underline link when hovering over any part of row */
}
.fc .fc-list-event.fc-event-forced-url:hover a {
  text-decoration: underline;
}
.fc-theme-bootstrap a:not([href]) {
  color: inherit;
  /* natural color for navlinks */
}
/* slide event */
.event-block {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  max-width: 600px;
  margin: 20px auto;
}
@media (min-width: 768px) {
  .event-block {
    margin: 50px 0 30px auto;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  .event-block {
    margin: 90px 0 30px auto;
    display: flex;
    flex-wrap: wrap;
  }
}
.event-block .event-date {
  margin-left: 0;
  margin-right: 10px;
}
.event-block .event-title {
  font-weight: bold;
  margin-left: 0;
  margin-right: 10px;
}
.event-block .event-link {
  color: #007B13;
  margin-left: auto;
  margin-right: 0;
  border-left: 1px solid #eee;
  padding-left: 10px;
}
.event-block .event-link span {
  margin-left: 5px;
}
.event-block:hover,
.event-block:focus {
  background-color: #333;
  color: #fff;
  border: 1px solid #eee;
  text-decoration: none;
}
#calendar {
  margin: 20px auto 30px auto;
}
#calendar a {
  color: #000;
  text-decoration: none;
}
.fc .fc-view-harness-active > .fc-view {
  position: relative;
}
.fc .fc-scroller-liquid-absolute {
  position: relative;
  overflow: hidden;
}
.fc .fc-view-harness {
  height: 100% !important;
}
.fc .fc-button-primary {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.fc .fc-button-primary:hover,
.fc .fc-button-primary:focus {
  color: #000;
  background-color: #007B13;
  border-color: #007B13;
}
.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
  color: #000;
  background-color: #007B13;
  border-color: #007B13;
}
.fc .fc-toolbar-title {
  font-size: 24px;
  font-weight: bold;
}
.fc .fc-prev-button,
.fc .fc-next-button {
  border-radius: 50%;
  padding: 0;
  width: 20px;
  height: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc .fc-button .fc-icon {
  font-size: 14px;
}
.fc.fc-theme-standard td,
.fc.fc-theme-standard th {
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
.fc .fc-col-header th {
  padding-bottom: 20px;
  font-weight: normal;
  text-align: left;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  font-size: 14px;
}
.fc .fc-button-group {
  font-size: 14px;
}
.fc .fc-toolbar-chunk {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc .fc-daygrid-day-number {
  font-weight: bold;
}
@media (min-width: 992px) {
  .fc .fc-daygrid-day-number {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .fc .fc-daygrid-day-number {
    font-size: 24px;
  }
}
.fc .fc-daygrid-day.fc-day-today {
  background-color: transparent;
}
.fc .fc-day-sat .fc-daygrid-day-number,
.fc .fc-day-sun .fc-daygrid-day-number {
  color: #000 !important;
  font-weight: normal;
}
.fc .fc-non-business {
  background-color: transparent;
}
.fc .fc-daygrid-day-top {
  flex-direction: row;
  padding: 0 5px;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    min-height: 120px;
  }
}
.fc .fc-day-other {
  opacity: 0;
}
@media (min-width: 992px) {
  .fc .fc-daygrid-event-dot {
    display: none;
  }
}
.fc .fc-daygrid-event {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0;
  flex-wrap: wrap;
  white-space: normal;
  padding: 5px;
  margin: 0;
}
.fc .fc-daygrid-event .fc-event-title {
  text-decoration: underline;
  display: none;
}
@media (min-width: 992px) {
  .fc .fc-daygrid-event .fc-event-title {
    display: block;
  }
}
.fc .fc-daygrid-event .fc-event-time {
  display: none;
}
@media (min-width: 992px) {
  .fc .fc-daygrid-event .fc-event-time {
    display: block;
  }
}
.fc-daygrid-day[data-date="2022-02-02"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-02-08"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-02-11"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-02-12"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-02-16"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-02-22"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-03-02"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-03-08"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-03-11"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-03-12"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-03-16"] .fc-daygrid-day-top,
.fc-daygrid-day[data-date="2022-03-22"] .fc-daygrid-day-top {
  background-color: #007B13;
}
.fc-direction-ltr .fc-toolbar > * > :not(:first-child) {
  margin-left: 0.75rem;
}
@media (min-width: 992px) {
  .fc-direction-ltr .fc-toolbar > * > :not(:first-child) {
    margin-left: 30px;
  }
}
.fc-toolbar-title:first-letter {
  text-transform: capitalize;
}
.fc-day .fc-col-header-cell-cushion {
  text-transform: capitalize;
}
.fc-theme-standard .fc-scrollgrid {
  border: 0;
}
.fc-tooltip-title {
  margin: 0;
  font-weight: bold;
  font-size: 15px;
}
.fc-tooltip-img {
  margin: 0 0 10px 0;
}
.fc-tooltip-hores {
  margin: 0 0 8px 0;
  font-size: 15px;
}
.fc-tooltip-text {
  font-size: 14px;
}
@media only screen and (max-width: 500px) {
  /* As stated not sure why you'd use :hover for mobile. */
  .popper,
  .tooltip {
    display: inline-block !important;
    position: absolute !important;
    top: calc(100vh/2) !important;
    left: calc(100vw/2) !important;
    transform: translateX(-50%) !important;
  }
}
.popper,
.tooltip {
  position: absolute;
  z-index: 9999;
  background: #fff;
  color: black;
  width: 100%;
  max-width: 300px;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
  opacity: 1;
}
.tooltip-inner {
  max-width: 260px;
  padding: 0;
  color: #000;
  text-align: left;
  text-decoration: none;
  background-color: transparent;
  border-radius: 0;
  position: relative;
}
.closinglink {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 900;
  width: 20px;
  height: 20px;
  background: #e9ca0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}
.closinglink a {
  transition: none;
}
.popper .popper__arrow,
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
}
.tooltip .tooltip-arrow,
.popper .popper__arrow {
  border-color: #eee;
}
.popper[x-placement^="top"],
.tooltip[x-placement^="top"] {
  margin-bottom: 5px;
}
.popper[x-placement^="top"] .popper__arrow,
.tooltip[x-placement^="top"] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
  display: none;
}
.popper[x-placement^="bottom"],
.tooltip[x-placement^="bottom"] {
  margin-top: 5px;
}
.tooltip[x-placement^="bottom"] .tooltip-arrow,
.popper[x-placement^="bottom"] .popper__arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
  display: none;
}
.tooltip[x-placement^="right"],
.popper[x-placement^="right"] {
  margin-left: 5px;
}
.popper[x-placement^="right"] .popper__arrow,
.tooltip[x-placement^="right"] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
  display: none;
}
.popper[x-placement^="left"],
.tooltip[x-placement^="left"] {
  margin-right: 5px;
}
.popper[x-placement^="left"] .popper__arrow,
.tooltip[x-placement^="left"] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
  display: none;
}
.tooltip .close-tooltip {
  width: 20px;
  height: 20px;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tooltip a {
  text-decoration: none;
  color: #000;
}
.bg-verd {
  background-color: #007913;
  color: #fff !important;
  border: 0 !important;
}
.bg-groc {
  background-color: #ffaa1e;
  color: #000 !important;
  border: 0 !important;
}
.bg-blau {
  background-color: #375faa;
  color: #fff !important;
  border: 0 !important;
}
.bg-magenta {
  background-color: #dc017e;
  color: #fff !important;
  border: 0 !important;
}
.titol-hcv-h4 {
  font-weight: bold;
  margin-bottom: 18px;
  position: relative;
  font-size: 18px !important;
}
.titol-hcv-h4 a {
  color: #000;
  text-decoration: underline;
}
.titol-hcv-h4 a:hover,
.titol-hcv-h4 a:focus {
  color: #007B13;
}
.titol-hcv-h3 {
  font-weight: bold;
  margin-bottom: 18px;
  position: relative;
  font-size: 20px !important;
}
.titol-hcv-h3 a {
  color: #000;
  text-decoration: none;
}
.titol-hcv-h3 a:hover,
.titol-hcv-h3 a:focus {
  color: #007B13;
}
.titol-hcv-h2 {
  font-weight: bold;
  margin-bottom: 18px;
  position: relative;
  font-size: 24px !important;
}
.titol-hcv-h2 a {
  color: #000;
  text-decoration: none;
}
.titol-hcv-h2 a:hover,
.titol-hcv-h2 a:focus {
  color: #007B13;
}
.titol-hcv-h2 a:visited {
  color: #333;
}
#main .titol-hcv-h2 a,
#main .titol-hcv-h3 a {
  text-decoration: none;
}
.titol-hcv-h1 {
  font-weight: bold;
  margin-bottom: 18px;
  position: relative;
  font-size: 38px !important;
}
.titol-hcv-h1 a {
  color: #000;
  text-decoration: underline;
}
.titol-hcv-h1 a:hover,
.titol-hcv-h1 a:focus {
  color: #007B13;
}
.forum-entrevista {
  width: 100%;
  margin-bottom: 0;
}
.forum-entrevista .titol-hcv-h3 {
  font-weight: normal;
}
@media (min-width: 1800px) {
  .forum-entrevista-text {
    min-height: 287px;
  }
}
.instagram-block {
  display: flex;
  flex-wrap: wrap;
  margin: -2px -2px 20px -2px;
}
.instagram-block .col-3 {
  width: 33.333%;
  padding: 2px;
}
.instagram-block img {
  display: block;
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}
@supports not (aspect-ratio: 1 / 1) {
  .instagram-block img::before {
    float: left;
    padding-top: 100%;
    content: '';
  }
  .instagram-block img::after {
    display: block;
    content: '';
    clear: both;
  }
}
.instagram-block-4 {
  display: flex;
  flex-wrap: wrap;
  margin: -2px -2px 20px -2px;
}
.instagram-block-4 .col-3 {
  width: 50%;
  padding: 2px;
}
.instagram-block-4 img {
  display: block;
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}
@supports not (aspect-ratio: 1 / 1) {
  .instagram-block-4 img::before {
    float: left;
    padding-top: 100%;
    content: '';
  }
  .instagram-block-4 img::after {
    display: block;
    content: '';
    clear: both;
  }
}
.featured-post {
  margin-bottom: 20px;
}
.mapa-row {
  display: flex;
  flex-wrap: wrap;
  background-color: #F6F7F8;
}
.mapa-row .mapa-col-iframe {
  width: 100%;
}
@media (min-width: 992px) {
  .mapa-row .mapa-col-iframe {
    width: 66.666%;
  }
}
.mapa-row .mapa-col-adress {
  width: 100%;
  padding: 20px;
}
@media (min-width: 992px) {
  .mapa-row .mapa-col-adress {
    width: 33.333%;
    padding: 20px;
  }
}
.mapa-row .map-item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.mapa-hcv-ratio {
  width: 100%;
  height: 0;
  padding-bottom: 42.857%;
  overflow: hidden;
  position: relative;
  background-color: #dedede;
}
.adress-icons,
#main .adress-icons {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}
.adress-icons span.icon,
#main .adress-icons span.icon {
  font-size: 0.9em;
  color: #007B13;
  min-width: 1.5em;
  padding: 3px 5px 0 0;
  display: flex;
  justify-content: center;
}
.adress-icons li,
#main .adress-icons li {
  position: relative;
  color: #000;
  display: flex;
  width: 100%;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1.3;
}
.adress-icons p,
#main .adress-icons p {
  width: 100%;
  position: relative;
}
.adress-icons a,
#main .adress-icons a,
.adress-icons .block,
#main .adress-icons .block {
  text-decoration: none;
  color: #000;
  display: flex;
  width: 100%;
}
.adress-icons a:hover,
#main .adress-icons a:hover,
.adress-icons .block:hover,
#main .adress-icons .block:hover,
.adress-icons a:focus,
#main .adress-icons a:focus,
.adress-icons .block:focus,
#main .adress-icons .block:focus {
  color: #007B13;
  text-decoration: none;
}
.partners_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.partners_grid img {
  max-width: 152px;
  max-height: 66px;
  width: auto;
  height: auto;
}
.partners_grid img:hover,
.partners_grid img:focus {
  transition: all 0.3s;
  transform: scale(1.2);
}
.partners_grid .partners_grid_img {
  text-align: center;
  width: 180px;
  padding: 15px 10px;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
}
.footer-logos img {
  max-width: 150px;
  max-height: 90px;
  width: auto;
  height: auto;
}
.footer-logos .partners_grid_img {
  text-align: center;
  width: 180px;
  padding: 15px 10px;
}
.search-by-name {
  padding-top: 20px;
  padding-bottom: 50px;
}
.search-name {
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1d1d1b;
}
.search-name .form-control {
  box-shadow: none;
  font-size: 16px;
}
.search-name .btn {
  font-size: 16px;
}
.search-name .input-group-btn {
  width: auto;
}
.search-name .btn-default {
  border-color: #fff;
  color: #007B13;
}
#main .search-alphabetical,
.search-alphabetical {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  #main .search-alphabetical,
  .search-alphabetical {
    font-size: 20px;
  }
}
#main .search-alphabetical a,
.search-alphabetical a {
  text-decoration: none;
  color: #007B13;
  padding: 2px;
  position: relative;
}
#main .search-alphabetical a:hover,
.search-alphabetical a:hover,
#main .search-alphabetical a:focus,
.search-alphabetical a:focus {
  color: #1d1d1b;
}
#main .search-alphabetical a:after,
.search-alphabetical a:after {
  content: '·';
  padding-left: 4px;
}
#main .search-alphabetical a:last-child:after,
.search-alphabetical a:last-child:after {
  content: '';
  padding-left: 0;
}
.hcv-members {
  display: flex;
  flex-wrap: wrap;
}
.hcv-members .hcv-member {
  width: 50%;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .hcv-members .hcv-member {
    width: 33.333%;
  }
}
.hcv-members-4 {
  display: flex;
  flex-wrap: wrap;
}
.hcv-members-4 .hcv-member {
  width: 50%;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .hcv-members-4 .hcv-member {
    width: 33.333%;
  }
}
@media (min-width: 1200px) {
  .hcv-members-4 .hcv-member {
    width: 25%;
  }
}
.hcv-member-featured {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  padding-top: 30px;
  padding-bottom: 30px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .hcv-member-featured {
    flex-direction: row;
  }
}
.hcv-member-featured .hcv-member-avatar {
  margin: 0;
  width: 280px;
  height: 280px;
  max-width: 280px;
}
@media (min-width: 992px) {
  .hcv-member-featured .hcv-member-avatar {
    margin: 20px 0;
  }
}
.hcv-member-featured .hcv-member-info {
  padding: 20px 0;
  margin: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .hcv-member-featured .hcv-member-info {
    padding: 20px 0 20px 40px;
    margin: auto 0 auto 0;
    width: calc(100% - 280px);
  }
}
.hcv-member-featured .hcv-member-info .hcv-member-contact {
  margin: 0;
  padding: 20px 0 0 0;
  justify-content: flex-start;
}
.hcv-member-featured .hcv-member-info .hcv-member-name {
  font-size: 26px;
}
.hcv-member-featured .hcv-member-info .hcv-member-position {
  font-size: 20px;
}
#main .hcv-member-avatar {
  max-width: 220px;
  width: 100%;
  margin: 0 auto 20px auto;
}
#main .hcv-member-avatar a {
  text-decoration: none;
  display: block;
}
#main .hcv-member-avatar a:hover figure:after,
#main .hcv-member-avatar a:focus figure:after {
  content: '';
  opacity: 0.6;
}
#main .hcv-member-avatar figure {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
#main .hcv-member-avatar figure:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 123, 19, 0.75);
  opacity: 0;
  transition: all 0.2s;
  border-radius: 50%;
}
#main .hcv-member-info .hcv-member-name,
.hcv-member-info .hcv-member-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
  color: #007B13;
}
#main .hcv-member-info .hcv-member-name a,
.hcv-member-info .hcv-member-name a {
  text-decoration: none;
}
#main .hcv-member-info .hcv-member-position,
.hcv-member-info .hcv-member-position {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: normal;
  color: #1d1d1b;
}
#main .hcv-member-info .hcv-member-contact,
.hcv-member-info .hcv-member-contact {
  margin: 0 auto 30px auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main .hcv-member-info .hcv-member-contact-icon,
.hcv-member-info .hcv-member-contact-icon {
  text-decoration: none;
  color: #fff;
  background-color: #678080;
  width: 2.8em;
  height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 5px;
}
#main .hcv-member-info .hcv-member-contact-icon:hover,
.hcv-member-info .hcv-member-contact-icon:hover,
#main .hcv-member-info .hcv-member-contact-icon:focus,
.hcv-member-info .hcv-member-contact-icon:focus {
  background-color: #007B13;
}
.intranet-btn {
  padding: 10px 30px !important;
  border: 1px solid #000 !important;
  border-radius: 8px;
  display: inline-block !important;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .intranet-btn {
    margin-top: auto;
    margin-left: 20px !important;
  }
}
/* page-title */
header.page-title,
.header-title-bg,
.headerImg {
  min-height: 100px;
}
@media (min-width: 992px) {
  header.page-title,
  .header-title-bg,
  .headerImg {
    min-height: 170px;
  }
}
@media (min-width: 1200px) {
  header.page-title,
  .header-title-bg,
  .headerImg {
    min-height: 170px;
  }
}
@media (min-width: 1200px) {
  .hcv-member-text-big {
    font-size: 24px;
    line-height: 32px;
  }
}
.container-capselera-principal {
  padding: 0 !important;
}
.container-capselera-principal .col-md-9 {
  padding-left: 0;
}
.row-cicles {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.new-col-noticies {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .new-col-noticies {
    width: 40%;
  }
}
.new-col-instagram {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .new-col-instagram {
    width: 33.333%;
  }
}
@media (min-width: 1200px) {
  .new-col-instagram {
    width: 20%;
  }
}
.new-col-avisos {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .new-col-avisos {
    width: 33.333%;
  }
}
@media (min-width: 1200px) {
  .new-col-avisos {
    width: 20%;
  }
}
.new-col-estudiants {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .new-col-estudiants {
    width: 33.333%;
  }
}
@media (min-width: 1200px) {
  .new-col-estudiants {
    width: 20%;
  }
}
.avisos-centre {
  padding: 20px 20px 0 20px;
  background-color: #eee;
  display: flex;
  flex-direction: column;
}
.avis-centre,
#main .avis-centre {
  margin-bottom: 20px;
}
.avis-centre h3,
#main .avis-centre h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
}
.avis-centre a,
#main .avis-centre a {
  text-decoration: none;
  color: #111;
}
.escoles-bg-image {
  background-color: #000;
  position: relative;
  background-size: cover;
  background-position: center center;
}
.escoles-bg-image .cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.escoles-bg-image-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.escoles-bg-image-links li {
  margin: 0;
  padding: 0;
}
.escoles-bg-image-links li a {
  text-decoration: none !important;
  color: #fff;
  font-weight: bold;
  padding: 48px 20px;
  position: relative;
  display: block;
  font-size: 20px;
}
@media (min-width: 1600px) {
  .escoles-bg-image-links li a {
    padding: 48px 40px;
  }
}
.escoles-bg-image-links li a:after {
  content: '';
  width: 100px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 40px;
}
.escoles-bg-image-links li:last-child a:after {
  height: 0;
}
.banner-mobilitat {
  padding: 20px;
  background-color: #eee;
  background-size: cover;
  background-image: url('../img/escoles/baner-mobile.jpeg');
}
@media (min-width: 992px) {
  .banner-mobilitat {
    padding: 40px 0;
    background-image: url('../img/escoles/baner.jpeg');
  }
}
.banner-row {
  display: flex;
  flex-wrap: wrap;
}
.banner-column {
  width: 100%;
  padding: 20px;
  position: relative;
}
@media (min-width: 992px) {
  .banner-column {
    width: 50%;
    padding: 0 40px;
  }
  .banner-column:first-child {
    border-right: 2px solid #111;
  }
}
.banner-mobilitat-title {
  font-weight: bold;
  font-size: 24px;
  margin-top: 0;
}
@media (min-width: 1350px) {
  .banner-mobilitat-title {
    font-size: 32px;
  }
}
.featured-list-cfgs {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.featured-list-cfgs li {
  display: block;
  margin-bottom: 10px;
}
.featured-list-cfgs a {
  text-decoration: none !important;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.featured-list-cfgs a:hover,
.featured-list-cfgs a:focus {
  color: #007B13;
}
.cfgs-icon {
  background-color: #007B13;
  color: #fff;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cfgs-icon svg {
  width: 20px;
  fill: #fff;
}
.info-escola {
  background-color: #eee;
  display: flex;
  flex-wrap: wrap;
}
.info-escola-text {
  width: 50%;
  padding: 20px;
  font-size: 14px;
}
.info-escola-image {
  width: 50%;
}
.info-escola-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media (min-width: 600px) {
  .info-escola-image img {
    aspect-ratio: 16 / 9;
  }
}
@media (min-width: 992px) {
  .info-escola-image img {
    aspect-ratio: 3 / 2;
  }
}
@media (min-width: 1024px) {
  .info-escola-image img {
    aspect-ratio: 3 / 2;
  }
}
@media (min-width: 1200px) {
  .info-escola-image img {
    aspect-ratio: 1 / 1.85;
  }
}
@media (min-width: 1350px) {
  .info-escola-image img {
    aspect-ratio: 1 / 1.55;
  }
}
@media (min-width: 1600px) {
  .info-escola-image img {
    aspect-ratio: 1 / 1.15;
  }
}
@media (min-width: 1800px) {
  .info-escola-image img {
    aspect-ratio: 1 / 1;
  }
}
.featured-post-cfgs {
  border-bottom: 1px solid #eee;
}
.featured-post-cfgs a {
  text-decoration: none !important;
}
.cfgs-button {
  display: flex;
  align-items: center;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none !important;
  border: 2px solid #000;
  padding: 10px 20px;
  width: 100%;
  max-width: 250px;
  margin: 10px auto;
}
.cfgs-button .cfgs-icon {
  margin-left: auto;
}
.cfgs-button .cfgs-icon svg {
  fill: #fff;
}
.cfgs-button:hover,
.cfgs-button:focus {
  color: #007B13;
  background-color: #fff;
}
.link-escoles {
  position: relative;
  width: 100%;
  min-height: 100px;
  display: flex;
  text-decoration: none !important;
  color: #fff;
  background-color: #000;
  overflow: hidden;
  padding: 15px;
  margin: 10px 0;
  font-weight: normal;
}
@media (min-width: 1200px) {
  .link-escoles {
    min-height: 120px;
  }
}
.link-escoles img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 105% !important;
  max-width: none;
  height: auto !important;
  border: 0;
  transition: all 0.2s ease-in-out;
  transform: translate(-50%, -50%);
  text-indent: -9999px;
}
.link-escoles .cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.link-escoles .link-text {
  position: relative;
  z-index: 100;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  font-weight: normal;
  margin: auto 0;
  font-size: 16px;
}
@media (min-width: 1600px) {
  .link-escoles .link-text {
    font-size: 20px;
  }
}
.link-escoles .carrot {
  z-index: 100;
  padding: 0;
  margin: auto 10px auto auto;
  color: #fff;
  margin-right: 0;
  font-size: 20px;
  font-weight: bold;
}
.link-escoles:hover,
.link-escoles:focus {
  text-decoration: none;
}
.link-escoles:hover .link-text,
.link-escoles:focus .link-text,
.link-escoles:hover .carrot,
.link-escoles:focus .carrot {
  position: relative;
  z-index: 10;
  color: #fff;
}
.link-escoles:hover .cover,
.link-escoles:focus .cover {
  background-color: rgba(0, 123, 19, 0.75);
}
.view-more-btn {
  text-decoration: none !important;
  background-color: #007B13;
  color: #fff;
  border: 2px solid #007B13;
  padding: 10px 20px;
  max-width: 220px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.view-more-btn:hover,
.view-more-btnfocus {
  color: #007B13;
  background-color: #fff;
}
.logo-centre-top {
  display: none;
}
@media (min-width: 1200px) {
  .logo-centre-top {
    display: flex;
    height: 50px;
  }
}
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;
}
.headerImg h1,
.headerImg span:first-child {
  background: transparent;
}
.section-subtitle,
.titol-seccio-1,
h2.section-title {
  border: 0;
}
/* header -- capselera */
.header .header-nav {
  background-color: #fff;
}
.header .header-top {
  background: transparent;
}
@media (min-width: 992px) {
  .header .header-top {
    background: #f7f7f9;
  }
}
.header .logo {
  color: #000 !important;
}
@media (min-width: 768px) {
  .header .logo {
    color: #000 !important;
  }
}
@media (min-width: 992px) {
  .header .navbar-nav-- {
    margin: 0 -10px 0 -10px;
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .header .navbar-nav-- > li {
    padding: 5px 0 0 0;
    float: left;
    display: inline;
    position: static;
  }
}
.header .navbar-nav-- > li > a {
  border-right: 0;
}
a.icona-button .img-bg {
  width: 100px;
  min-width: 100px;
  height: 78px;
  display: table-cell;
  background-position: 50% 50%;
  background-size: cover;
  margin-right: 10px;
}
.header .logo-centre {
  margin-left: 10px;
}
@media (min-width: 992px) {
  .header .logo-centre {
    margin-left: -10px;
  }
}
.header .logo-centre .logo-uab-centre img {
  width: auto;
  height: 28.5px;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .header .logo-centre .logo-uab-centre img {
    height: 38px;
  }
}
@media (min-width: 1200px) {
  .header .logo-centre .logo-uab-centre img {
    height: 40px;
  }
}
.header .navbar-toggle {
  color: #000;
  font-size: 20px;
}
/* aside */
.aside-nav-content ul li {
  border-bottom: 1px solid #dedede;
}
.aside-nav-content {
  border: 1px solid #dedede;
  border-radius: 5px;
}
.aside-nav-content .title {
  background-color: #e7e7e7;
  padding: 10px;
  color: #000;
  font-weight: bold;
}
.aside-nav-content .title a {
  color: #111;
  text-decoration: none;
}
.aside-nav-content .title a:hover,
.aside-nav-content .title a:focus {
  color: #03420d;
}

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