/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.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;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.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 {
  touch-action: pan-y;
  -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;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
            This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
            calculation of the height of the owl-item that breaks page layouts
         */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.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('../../images/owlcarousel/owl.video.play.png') no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/*
 *  Owl Carousel - Nav & Dots
 */
.owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-nav [class*="owl-"] {
  display: inline-block;
  margin: auto;
  padding: 0.9rem 0;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.25s;
}
.owl-nav [class*="owl-"]:hover {
  text-decoration: none;
}
.owl-nav.disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-nav .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-nav .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-nav .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-nav .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 0.3125rem;
  background: #424753;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 15px;
}
.owl-nav .owl-dots .owl-dot.active span, .owl-nav .owl-dots .owl-dot:hover span {
  background: #ffffff;
}
.g-owlcarousel {
  color: #eceeef;
}
.g-owlcarousel .g-owlcarousel-item-wrapper {
  position: relative;
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-img {
  position: relative;
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-img:after {
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-style: preserve-3d;
}
@media only all and (min-width: 75rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
    width: 75rem;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
    width: 40rem;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container {
    width: 100%;
  }
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper {
    padding-top: 2.5rem;
  }
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content {
  margin: 1.25rem 0.625rem 0.625rem;
  padding: 0.938rem;
  text-align: center;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content {
    padding-top: 2.5rem;
  }
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
  font-family: "Raleway", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: 500;
  margin: 1.25rem 1.25rem 0.625rem;
  text-shadow: 0.15rem 0.1rem 0.2rem #444;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
    font-size: 3rem;
    line-height: 3.875rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
    font-size: 2rem;
    line-height: 2.875rem;
    margin-top: 3.125rem;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
    margin-top: 0;
    font-size: 2rem;
    line-height: 2.875rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-title {
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-desc {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 200;
  padding-bottom: 1.407rem;
  margin-top: 0;
  margin-bottom: 0.625rem;
  text-shadow: 0.15rem 0.1rem 0.2rem #444;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-desc {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-desc {
    font-size: 1rem;
    line-height: 1.875rem;
    padding-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-desc {
    display: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-button {
    padding: 1rem 2.625rem;
    font-size: 0.6rem;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-owlcarousel .g-owlcarousel-item-wrapper .g-owlcarousel-item-content-container .g-owlcarousel-item-content-wrapper .g-owlcarousel-item-content .g-owlcarousel-item-button {
    display: none;
  }
}
.g-owlcarousel .owl-nav {
  margin: 0;
}
.g-owlcarousel .owl-nav button.owl-prev, .g-owlcarousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s;
}
.g-owlcarousel .owl-nav button.owl-prev .fa, .g-owlcarousel .owl-nav button.owl-next .fa {
  position: relative;
}
.g-owlcarousel .owl-nav button.owl-prev:hover, .g-owlcarousel .owl-nav button.owl-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.g-owlcarousel .owl-nav .owl-prev {
  left: 3rem;
}
@media only all and (max-width: 47.99rem) {
  .g-owlcarousel .owl-nav .owl-prev {
    left: 2rem;
  }
}
.g-owlcarousel .owl-nav .owl-prev .fa {
  left: -1px;
  top: 1px;
}
.g-owlcarousel .owl-nav .owl-next {
  right: 3rem;
}
@media only all and (max-width: 47.99rem) {
  .g-owlcarousel .owl-nav .owl-next {
    right: 2rem;
  }
}
.g-owlcarousel .owl-nav .owl-next .fa {
  left: 1px;
  top: 1px;
}
.g-owlcarousel .owl-dots {
  position: absolute;
  bottom: 12%;
  width: 100%;
  text-align: center;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-owlcarousel .owl-dots {
    bottom: 5%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-owlcarousel .owl-dots {
    bottom: 1rem;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-owlcarousel .owl-dots {
    bottom: 0.5rem;
  }
}
.g-owlcarousel .owl-dots .owl-dot {
  display: inline-block;
  background: #424753;
  margin: 0 0.3125rem;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  opacity: 0.75;
  transition: all 0.2s;
}
.g-owlcarousel .owl-dots .owl-dot.active, .g-owlcarousel .owl-dots .owl-dot:hover {
  opacity: 1;
  background: #ffffff;
}
.g-owlcarousel.has-color-overlay .owl-stage > .owl-item:nth-child(even) .g-owlcarousel-item-img:after {
  background-color: #4db2b3;
  background: linear-gradient(40deg, #4db2b3, #8f4dae);
  opacity: 0.65;
}
.g-owlcarousel.has-color-overlay .owl-stage > .owl-item:nth-child(odd) .g-owlcarousel-item-img:after {
  background-color: #8f4dae;
  background: linear-gradient(140deg, #8f4dae, #4db2b3);
  opacity: 0.65;
}
.g-mosaicgrid {
  margin: -0.6rem;
}
.g-mosaicgrid-sizer, .g-mosaicgrid-item-container {
  padding: 0.6253333333rem;
}
.g-mosaicgrid-sizer .g-mosaicgrid-item, .g-mosaicgrid-item-container .g-mosaicgrid-item {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
}
.g-mosaicgrid-1-col .g-mosaicgrid-sizer, .g-mosaicgrid-1-col .g-mosaicgrid-item-container {
  width: 100%;
}
.g-mosaicgrid-2-col .g-mosaicgrid-sizer, .g-mosaicgrid-2-col .g-mosaicgrid-item-container {
  width: 50%;
}
@media only all and (max-width: 30rem) {
  .g-mosaicgrid-2-col .g-mosaicgrid-sizer, .g-mosaicgrid-2-col .g-mosaicgrid-item-container {
    width: 100%;
  }
}
.g-mosaicgrid-3-col .g-mosaicgrid-sizer, .g-mosaicgrid-3-col .g-mosaicgrid-item-container {
  width: 33.33333%;
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-mosaicgrid-3-col .g-mosaicgrid-sizer, .g-mosaicgrid-3-col .g-mosaicgrid-item-container {
    width: 50%;
  }
}
@media only all and (max-width: 30rem) {
  .g-mosaicgrid-3-col .g-mosaicgrid-sizer, .g-mosaicgrid-3-col .g-mosaicgrid-item-container {
    width: 100%;
  }
}
.g-mosaicgrid-4-col .g-mosaicgrid-sizer, .g-mosaicgrid-4-col .g-mosaicgrid-item-container {
  width: 25%;
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-mosaicgrid-4-col .g-mosaicgrid-sizer, .g-mosaicgrid-4-col .g-mosaicgrid-item-container {
    width: 50%;
  }
}
@media only all and (max-width: 30rem) {
  .g-mosaicgrid-4-col .g-mosaicgrid-sizer, .g-mosaicgrid-4-col .g-mosaicgrid-item-container {
    width: 100%;
  }
}
.g-mosaicgrid-5-col .g-mosaicgrid-sizer, .g-mosaicgrid-5-col .g-mosaicgrid-item-container {
  width: 20%;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-mosaicgrid-5-col .g-mosaicgrid-sizer, .g-mosaicgrid-5-col .g-mosaicgrid-item-container {
    width: 33.33333%;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-mosaicgrid-5-col .g-mosaicgrid-sizer, .g-mosaicgrid-5-col .g-mosaicgrid-item-container {
    width: 50%;
  }
}
@media only all and (max-width: 30rem) {
  .g-mosaicgrid-5-col .g-mosaicgrid-sizer, .g-mosaicgrid-5-col .g-mosaicgrid-item-container {
    width: 100%;
  }
}
.g-mosaicgrid-6-col .g-mosaicgrid-sizer, .g-mosaicgrid-6-col .g-mosaicgrid-item-container {
  width: 16.66667%;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-mosaicgrid-6-col .g-mosaicgrid-sizer, .g-mosaicgrid-6-col .g-mosaicgrid-item-container {
    width: 33.33333%;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-mosaicgrid-6-col .g-mosaicgrid-sizer, .g-mosaicgrid-6-col .g-mosaicgrid-item-container {
    width: 50%;
  }
}
@media only all and (max-width: 30rem) {
  .g-mosaicgrid-6-col .g-mosaicgrid-sizer, .g-mosaicgrid-6-col .g-mosaicgrid-item-container {
    width: 100%;
  }
}
.g-mosaicgrid-item:hover img, .g-mosaicgrid-item:focus img {
  opacity: 0.15;
}
.g-mosaicgrid-zoom .g-mosaicgrid-item:hover img, .g-mosaicgrid-zoom .g-mosaicgrid-item:focus img {
  transform: scale(1.25);
}
.g-mosaicgrid-rotate .g-mosaicgrid-item:hover img, .g-mosaicgrid-rotate .g-mosaicgrid-item:focus img {
  transform: rotate(5deg) scale(1.25);
}
.g-mosaicgrid-blur .g-mosaicgrid-item:hover img, .g-mosaicgrid-blur .g-mosaicgrid-item:focus img {
  filter: blur(3px);
}
.g-mosaicgrid-grayscale .g-mosaicgrid-item:hover img, .g-mosaicgrid-grayscale .g-mosaicgrid-item:focus img {
  opacity: 1;
  filter: grayscale(100%);
}
.g-mosaicgrid-blur.g-mosaicgrid-grayscale .g-mosaicgrid-item:hover img, .g-mosaicgrid-blur.g-mosaicgrid-grayscale .g-mosaicgrid-item:focus img {
  filter: blur(3px) grayscale(100%);
}
.g-mosaicgrid-style2 .g-mosaicgrid-item:hover .g-mosaicgrid-item-desc, .g-mosaicgrid-style2 .g-mosaicgrid-item:focus .g-mosaicgrid-item-desc {
  opacity: 1;
  font-size: 14px;
  transform: scale(1);
}
.g-mosaicgrid-image {
  background: #102424;
  overflow: hidden;
}
.g-mosaicgrid-image img {
  transition: all 0.25s;
}
.g-mosaicgrid-content {
  padding: 1.6415rem 1.876rem 1.407rem 1.876rem;
}
.g-mosaicgrid-style1 .g-mosaicgrid-content {
  background: #ffffff;
  color: #424753;
}
.g-mosaicgrid-style2 .g-mosaicgrid-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.g-mosaicgrid-item-title {
  font-family: "Lato", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
  font-size: 1.5rem;
  line-height: 1.75;
  text-shadow: 0.15rem 0.1rem 0.2rem black;
  font-weight: bolder;
}
.g-mosaicgrid-style1 .g-mosaicgrid-item-title a {
  color: #0a0a0c;
}
.g-mosaicgrid-style1 .g-mosaicgrid-item-title a:hover {
  color: #4db2b3;
}
.g-mosaicgrid-style2 .g-mosaicgrid-item-title a {
  color: inherit;
  font-size: 1.5rem;
}
.g-mosaicgrid-style2 .g-mosaicgrid-item-title a:hover {
  color: #a6d9d9;
}
.g-mosaicgrid-item-desc {
  padding-top: 0.3126666667rem;
  font-size: 0.9rem;
  font-weight: 450;
  color: #6f788c;
}
.g-mosaicgrid-style2 .g-mosaicgrid-item-desc {
  color: #8b92a3;
  opacity: 0;
  font-size: 0;
  transform: scale(0);
  transition: all 0.25s;
}
.g-mosaicgrid-item-tag-wrapper {
  margin: 0.625rem 0;
  font-size: 0.9rem;
}
.g-mosaicgrid-style1 .g-mosaicgrid-item-tag-wrapper {
  opacity: 0.5;
  margin-top: 1.25rem;
  padding-top: 0.938rem;
  margin-bottom: 0;
  border-top: 1px solid #e0e0e5;
}
.g-mosaicgrid-style2 .g-mosaicgrid-item-tag-wrapper {
  position: absolute;
  top: 0.938rem;
  left: 0.938rem;
  right: 0.938rem;
}
.g-mosaicgrid-item-tag {
  float: left;
}
.g-mosaicgrid-style2 .g-mosaicgrid-item-tag {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.g-mosaicgrid-item-tagicons-container {
  float: right;
  white-space: nowrap;
}
.g-mosaicgrid-item-tagicons {
  display: inline-block;
  margin: 0 2%;
}
.g-mosaicgrid-style2 .g-mosaicgrid-item-tagicons {
  padding: 0.25rem 0;
}
/*
 *  Rotante Carousel - Animate Plugin
 */
.rotante-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.rotante-carousel .rotante-animated-in {
  z-index: 0;
}
.rotante-carousel .rotante-animated-out {
  z-index: 1;
}
.rotante-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Rotante Carousel - Auto Height Plugin
 */
.rotante-height {
  transition: height 500ms ease-in-out;
}
/*
 *  Rotante Carousel - Core
 */
.rotante-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.rotante-carousel .rotante-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.rotante-carousel .rotante-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.rotante-carousel .rotante-stage-outer {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.rotante-carousel .rotante-wrapper, .rotante-carousel .rotante-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.rotante-carousel .rotante-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.rotante-carousel .rotante-item img {
  display: block;
  width: 100%;
}
.rotante-carousel .rotante-nav.disabled, .rotante-carousel .rotante-dots.disabled {
  display: none;
}
.rotante-carousel .rotante-nav .rotante-prev, .rotante-carousel .rotante-nav .rotante-next, .rotante-carousel .rotante-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rotante-carousel .rotante-nav button.rotante-prev, .rotante-carousel .rotante-nav button.rotante-next, .rotante-carousel button.rotante-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.rotante-carousel.rotante-loaded {
  display: block;
}
.rotante-carousel.rotante-loading {
  opacity: 0;
  display: block;
}
.rotante-carousel.rotante-hidden {
  opacity: 0;
}
.rotante-carousel.rotante-refresh .rotante-item {
  visibility: hidden;
}
.rotante-carousel.rotante-drag .rotante-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rotante-carousel.rotante-grab {
  cursor: move;
  cursor: grab;
}
.rotante-carousel.rotante-rtl {
  direction: rtl;
}
.rotante-carousel.rotante-rtl .rotante-item {
  float: right;
}
/* No Js */
.no-js .rotante-carousel {
  display: block;
}
/*
 * 	Rotante Carousel - Lazy Load Plugin
 */
.rotante-carousel .rotante-item {
  /**
            This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
            calculation of the height of the rotante-item that breaks page layouts
         */
}
.rotante-carousel .rotante-item .rotante-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.rotante-carousel .rotante-item .rotante-lazy[src^=""], .rotante-carousel .rotante-item .rotante-lazy:not([src]) {
  max-height: 0;
}
.rotante-carousel .rotante-item img.rotante-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Rotante Carousel - Video Plugin
 */
.rotante-carousel .rotante-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.rotante-carousel .rotante-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url('../images/rotante/rotante.video.play.png') no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.rotante-carousel .rotante-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.rotante-carousel .rotante-video-playing .rotante-video-tn, .rotante-carousel .rotante-video-playing .rotante-video-play-icon {
  display: none;
}
.rotante-carousel .rotante-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.rotante-carousel .rotante-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/*
 *  Rotante Carousel - Nav & Dots
 */
.rotante-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.rotante-nav [class*="rotante-"] {
  display: inline-block;
  margin: auto;
  padding: 0.9rem 0;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.25s;
}
.rotante-nav [class*="rotante-"]:hover {
  text-decoration: none;
}
.rotante-nav.disabled {
  opacity: 0.5;
  cursor: default;
}
.rotante-nav .rotante-nav.disabled + .rotante-dots {
  margin-top: 10px;
}
.rotante-nav .rotante-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.rotante-nav .rotante-dots .rotante-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.rotante-nav .rotante-dots .rotante-dot span {
  width: 15px;
  height: 15px;
  margin: 0 0.3125rem;
  background: #424753;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 15px;
}
.rotante-nav .rotante-dots .rotante-dot.active span, .rotante-nav .rotante-dots .rotante-dot:hover span {
  background: #ffffff;
}
.g-rotantecarousel {
  color: #eceeef;
}
.g-rotantecarousel .g-rotantecarousel-item-wrapper {
  position: relative;
}
.g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-img {
  position: relative;
}
.g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-img:after {
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}
.g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-style: preserve-3d;
}
@media only all and (min-width: 75rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container {
    width: 75rem;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container {
    width: 40rem;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container {
    width: 100%;
  }
}
.g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 100%;
}
.g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content {
  padding-left: 4rem;
  text-align: left;
}
@media only all and (max-width: 30rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content {
    padding-left: 3.5rem;
  }
}
.g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-title {
  font-family: "Raleway", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 600;
  text-shadow: 0.15rem 0.1rem 0.2rem black;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-title {
    font-size: 1.98rem;
    line-height: 2.5rem;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-title {
    margin-top: 0;
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-title {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-desc {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  padding-bottom: 1.1256rem;
  margin-top: 0;
  margin-bottom: 0.625rem;
  text-shadow: 0.15rem 0.1rem 0.2rem black;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-desc {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-desc {
    font-size: 0.8rem;
    line-height: 1.75rem;
    padding-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-desc {
    display: none;
  }
}
.g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-links-wrapper {
  display: flex;
  align-items: center;
}
@media only all and (max-width: 47.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-links-wrapper {
    display: none;
  }
}
.g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-links-wrapper .g-rotantecarousel-item-button {
  padding: 0.8rem 2rem;
  margin-right: 1rem;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-links-wrapper .g-rotantecarousel-item-button {
    font-size: 0.6rem;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-rotantecarousel .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content .g-rotantecarousel-item-links-wrapper .g-rotantecarousel-item-button {
    display: none;
  }
}
.g-rotantecarousel .rotante-nav {
  margin: 0;
}
.g-rotantecarousel .rotante-nav button.rotante-prev, .g-rotantecarousel .rotante-nav button.rotante-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s;
}
.g-rotantecarousel .rotante-nav button.rotante-prev .fa, .g-rotantecarousel .rotante-nav button.rotante-next .fa {
  position: relative;
}
.g-rotantecarousel .rotante-nav button.rotante-prev:hover, .g-rotantecarousel .rotante-nav button.rotante-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.g-rotantecarousel .rotante-nav .rotante-prev {
  left: 1rem;
}
.g-rotantecarousel .rotante-nav .rotante-prev .fa {
  left: -1px;
  top: 1px;
}
.g-rotantecarousel .rotante-nav .rotante-next {
  right: 1rem;
}
.g-rotantecarousel .rotante-nav .rotante-next .fa {
  left: 1px;
  top: 1px;
}
.g-rotantecarousel .rotante-dots {
  position: absolute;
  bottom: 8%;
  width: 100%;
  text-align: center;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-rotantecarousel .rotante-dots {
    bottom: 5%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-rotantecarousel .rotante-dots {
    bottom: 1rem;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-rotantecarousel .rotante-dots {
    bottom: 0.5rem;
  }
}
.g-rotantecarousel .rotante-dots .rotante-dot {
  display: inline-block;
  background: #424753;
  margin: 0 0.3125rem;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  opacity: 0.75;
  transition: all 0.2s;
}
.g-rotantecarousel .rotante-dots .rotante-dot.active, .g-rotantecarousel .rotante-dots .rotante-dot:hover {
  opacity: 1;
  background: #ffffff;
}
.g-rotantecarousel.has-color-overlay .rotante-stage > .rotante-item:nth-child(even) .g-rotantecarousel-item-img:after {
  background-color: #4db2b3;
  background: linear-gradient(40deg, #4db2b3, #8f4dae);
  opacity: 0.9;
}
.g-rotantecarousel.has-color-overlay .rotante-stage > .rotante-item:nth-child(odd) .g-rotantecarousel-item-img:after {
  background-color: #8f4dae;
  background: linear-gradient(140deg, #8f4dae, #4db2b3);
  opacity: 0.9;
}
.button {
  display: inline-block;
  font-family: "Lato", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.15;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  background: #4db2b3;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 2.5rem;
  margin: 0 0 0.5rem 0;
  padding: 0.75rem 2.15rem;
  vertical-align: middle;
  text-shadow: none;
  transition: all 0.2s;
}
.button:hover, .button:active, .button:focus {
  background: #3d8f90;
  color: #ffffff;
  outline: 0;
}
.button:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.button:disabled:hover {
  background: #4db2b3;
}
.button.fa {
  line-height: 1.15;
}
.button.fa[class*="fa-"]:before, .button.fa[class*="fa-"]:after {
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
}
.button.button-block {
  width: 100%;
  display: block;
}
.button.button-xlarge {
  font-size: 1.2rem;
  padding: 1.9rem 3.525rem;
  border-radius: 3.5rem;
}
.button.button-large {
  font-size: 1rem;
  padding: 1.7rem 3.325rem;
}
.button.button-small {
  font-size: 0.7rem;
  padding: 1.2rem 2.825rem;
}
.button.button-xsmall {
  font-size: 0.6rem;
  padding: 1.1rem 2.725rem;
}
.button.button-2 {
  background: #8f4dae;
  transition: all 0.2s;
}
.button.button-2:hover, .button.button-2:active, .button.button-2:focus {
  background: #723d8b;
  color: #ffffff;
}
.button.button-outline {
  background: transparent;
  color: #4db2b3;
  border-color: #4db2b3;
}
.button.button-outline:hover, .button.button-outline:active, .button.button-outline:focus {
  background: #4db2b3;
  border-color: transparent;
  color: #ffffff;
}
.button.button-gradient {
  background: linear-gradient(90deg, #4db2b3, #8f4dae);
  border: none;
}
.button.button-gradient:hover, .button.button-gradient:active, .button.button-gradient:focus {
  background: #4db2b3;
  color: white;
}
.button.button-bevel {
  border-radius: 0.4rem;
}
.button.button-square {
  border-radius: 0;
}
#g-intro {
  padding-top: 0;
  padding-bottom: 2rem !important;
}
#g-header h2 {
  font-weight: 500;
  line-height: 1.5;
}
#g-header h1 {
  font-weight: 700;
}
.boxed .blog-item {
  box-shadow: 0 0 2px rgba(51, 57, 66, 0.1), 0 2px 5px rgba(51, 57, 66, 0.08), 0 5px 15px rgba(51, 57, 66, 0.08), inset 0 3px 0 #8f4dae;
  border-radius: 0.25rem;
}
.boxed .blog-item .item-content {
  padding: 10px;
  padding-top: 0;
}
.boxed .blog-item .item-image {
  padding: 10px;
  padding-bottom: 0;
}
.recensione h2 {
  font-size: 1.1rem;
  line-height: 1.6rem;
}
.recensione dl.article-info {
  margin: 0;
}
.recensione img {
  width: auto;
  height: 20rem;
  border: 1px solid #ececec;
}
.report h2 {
  font-size: 1.1rem;
  line-height: 1.6rem;
}
.report dl.article-info {
  margin: 0;
}
.contatto {
  box-shadow: 0 0 2px rgba(51, 57, 66, 0.1), 0 2px 5px rgba(51, 57, 66, 0.08), 0 5px 15px rgba(51, 57, 66, 0.08), inset 0 3px 0 #8f4dae;
  border-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 1.2rem;
  margin-top: 1.2rem;
  max-width: 700px;
}
.contatto-link {
  color: #40ad29;
  font-size: 1.1rem;
  line-height: 1.6rem;
  font-weight: 600;
}
.contatto-position {
  font-style: italic;
}
.gruppoboxed {
  box-shadow: 0 0 2px rgba(51, 57, 66, 0.1), 0 2px 5px rgba(51, 57, 66, 0.08), 0 5px 15px rgba(51, 57, 66, 0.08), inset 0 3px 0 #8f4dae;
  border-radius: 0.25rem;
  padding: 0.5rem;
  margin-bottom: 1.2rem;
  margin-top: 1.2rem;
  max-width: 600px;
}
.login-btn {
  background-color: #cd1e1e;
  border-radius: 40px;
  padding-left: 15px;
  padding-right: 15px;
}
.input-password-toggle {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  height: 41px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.smallfont h1 {
  font-size: 2.5rem;
  line-height: 3rem;
}
@media only all and (min-width: 75rem) {
  .smallfont h1 {
    font-size: 2.5rem !important;
    line-height: 3rem !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .smallfont h1 {
    font-size: 2rem !important;
    line-height: 2.7rem !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .smallfont h1 {
    font-size: 1.4rem !important;
    line-height: 1.8rem !important;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .smallfont h1 {
    font-size: 1rem !important;
    line-height: 1.3rem !important;
  }
}
@media only all and (max-width: 30rem) {
  .smallfont h1 {
    font-size: 0.8rem !important;
    line-height: 1rem !important;
  }
}
.loghino {
  margin: auto;
  height: 6rem;
  width: auto !important;
  margin-top: 1.2rem;
}
.g-rotantecarousel .white_txt .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content h1 {
  color: white;
}
.red-button {
  color: white !important;
  background: orange !important;
  border-color: red !important;
}
.red-button:hover {
  color: white !important;
  background: red !important;
  border-color: orange !important;
}
.g-rotantecarousel .blue_txt .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content h1 {
  color: blue;
}
.g-rotantecarousel .streaming_txt .g-rotantecarousel-item-wrapper .g-rotantecarousel-item-content-container .g-rotantecarousel-item-content-wrapper .g-rotantecarousel-item-content h1 {
  color: #36587b;
}
/*# sourceMappingURL=custom__body_only.css.map */