/*
Theme Name: 	GreenLab Theme
Description: 	Responsive WordPress Theme based on Boostrap and Font Awesome.
Version:     	1.0.0
Author:     	Marco Ledda, Manuel Boi
Author URI:   
Site:         
Text Domain: 	greenlab
Domain Path: 	/languages
Tags:        	grid-layout, blog, custom-menu, featured-images, right-sidebar
License:    	GNU General Public License v3.0
License URI:	http://www.gnu.org/licenses/gpl-3.0.html
*/


/* ! Base style */
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

.pll-parent-menu-item{border-bottom: 0px !important;}


.admin-bar .fixed-top {
  top: 32px;
}

.pll-parent-menu-item> a >img{
  width: 24px !important;
  height: 16.5px !important;
}

.dropdown-menu > .lang-item > img {
  width: 24px;
  height: 16.5px;
}



a {
  color: #47b2e4;
  text-decoration: none !important;
}

.dropdown {
  color: white;
}

.active {
  border-bottom: solid white 1px;
}

.active-2{
    border-bottom: solid white 2px;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

/* ! Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ! Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3bf79c;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* ! Header */
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/* ! Navigation menu */
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
}

.navbar li {
  position: relative;
  flex: 0 0 auto; /* Added property */
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px 5px 15px;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.dropdown-item {
  margin: 0 0 0 0;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar .active{border-bottom: 1px solid white;}

.navbar a:hover,
.navbar .active:focus,
.navbar li:hover>a {
  color: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown .dropdown-menu {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown .dropdown-menu li {
  min-width: 200px;
}

.navbar .dropdown .dropdown-menu a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown .dropdown-menu a i {
  font-size: 12px;
}

.navbar .dropdown .dropdown-menu a:hover,
.navbar .dropdown .dropdown-menu .active:hover,
.navbar .dropdown .dropdown-menu li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>.dropdown-menu {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown .dropdown-menu {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>.dropdown-menu {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.dropdown-item.active, .dropdown-item:active{
  background: #fff !important;
  color: #47b2e4 !important;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown-menu .dropdown-menu {
    left: -90%;
  }

  .navbar .dropdown .dropdown-menu:hover>.dropdown-menu {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 900px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed !important;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown .dropdown-active {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  border: none;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

@media (max-width: 768px) {
  .navbar .dropdown .dropdown-menu {
    display: none;
  }
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* ! Hero section */
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#myVideo {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero p {
  color: #fff;
  margin-bottom: 50px;
}

.btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

.btn-get-started:hover {
  background: #31a9e1;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 25px;
  }

  #hero p{margin-bottom: 25px;}

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* ! About Hero */
#about-hero {
  width: 100%;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/heroes/about-hero.jpg") fixed center center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#about-hero .container {
  padding-top: 72px;
}

#about-hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#about-hero p {
  color: #fff;
  margin-bottom: 50px;
}

#about-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #about-hero {
    height: 100vh;
    text-align: center;
  }

  #about-hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #about-hero .hero-img {
    text-align: center;
  }

  #about-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #about-hero h1 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 25px;
  }

  #about-hero p{margin-bottom: 25px;}

  #about-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #about-hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #about-hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* ! Pools Hero */
#pools-hero {
  width: 100%;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#myVideo-2{
  width: 100%;
  object-fit: cover;
  height: 70vh;
  position: absolute;
}

@media (max-width: 992px){
  #myVideo-2{
    height: 100vh;
  }
}


#pools-hero .container {
  padding-top: 72px;
}

#pools-hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#pools-hero p {
  color: #fff;
  margin-bottom: 50px;
}

#pools-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #pools-hero {
    height: 100vh;
    text-align: center;
  }

  #pools-hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #pools-hero .hero-img {
    text-align: center;
  }

  #pools-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #pools-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #pools-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #pools-hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #pools-hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


.testo-index {
  margin-top: 10%;
}

.concessionario-logo {
  margin-top: -10%;
}


/* ! About Hero 2 */
#about-hero2 {
  width: 100%;
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#myVideo-3{
  width: 100%;
  object-fit: cover;
  height: 40vh;
  position: absolute;
}

@media (max-width: 992px){
  #myVideo-3{
    height: 100vh;
  }
}


#about-hero2 .container {
  padding-top: 72px;
}

#about-hero2 h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#about-hero2 p {
  color: #fff;
  margin-bottom: 50px;
}

#about-hero2 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #about-hero2 {
    height: 100vh;
    text-align: center;
  }

  #about-hero2 .animated {
    -webkit-animation: none;
    animation: none;
  }

  #about-hero2 .hero-img {
    text-align: center;
  }

  #about-hero2 .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #about-hero2 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #about-hero2 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #about-hero2 .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #about-hero2 .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}







/* ! Product Hero */
#product-hero {
  width: 100%;
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/heroes/product-hero.jpg") fixed center center;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

#product-hero .container {
  padding-top: 72px;
}

#product-hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#product-hero p {
  color: #fff;
  margin-bottom: 50px;
}

#product-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #product-hero {
    height: 100vh;
    text-align: center;
  }

  #product-hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #product-hero .hero-img {
    text-align: center;
  }

  #product-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #product-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #product-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #product-hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #product-hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}









/* ! Flooring Hero */
#flooring-hero {
  width: 100%;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/heroes/flooring-hero.jpg") fixed center center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#flooring-hero .container {
  padding-top: 72px;
}

#flooring-hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#flooring-hero p {
  color: #fff;
  margin-bottom: 50px;
}

#flooring-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #flooring-hero {
    height: 100vh;
    text-align: center;
  }

  #flooring-hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #flooring-hero .hero-img {
    text-align: center;
  }

  #flooring-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #flooring-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #flooring-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #flooring-hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #flooring-hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}






/* ! Saunas Hero */
#saunas-hero {
  width: 100%;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/heroes/saunas-hero.jpg") fixed center center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#saunas-hero .container {
  padding-top: 72px;
}

#saunas-hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#saunas-hero p {
  color: #fff;
  margin-bottom: 50px;
}

#saunas-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #saunas-hero {
    height: 100vh;
    text-align: center;
  }

  #saunas-hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #saunas-hero .hero-img {
    text-align: center;
  }

  #saunas-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #saunas-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #saunas-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #saunas-hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #saunas-hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}





/* ! SPA Hero */
#spa-hero {
  width: 100%;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/heroes/spa-hero.jpg") fixed center center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#spa-hero .container {
  padding-top: 72px;
}

#spa-hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#spa-hero p {
  color: #fff;
  margin-bottom: 50px;
}

#spa-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #spa-hero {
    height: 100vh;
    text-align: center;
  }

  #spa-hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #spa-hero .hero-img {
    text-align: center;
  }

  #spa-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #spa-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #spa-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #spa-hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #spa-hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}





/* ! Scenografies Hero */
#scenografies-hero {
  width: 100%;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/heroes/scenografies-hero.jpg") fixed center center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#scenografies-hero .container {
  padding-top: 72px;
}

#scenografies-hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#scenografies-hero p {
  color: #fff;
  margin-bottom: 50px;
}

#scenografies-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #scenografies-hero {
    height: 100vh;
    text-align: center;
    margin-bottom: 25px;
  }

  #scenografies-hero p{margin-bottom: 25px;}

  #scenografies-hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #scenografies-hero .hero-img {
    text-align: center;
  }

  #scenografies-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #scenografies-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #scenografies-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #scenografies-hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #scenografies-hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


/* ! Catalog Hero */
#catalog-hero {
  width: 100%;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/heroes/catalog-hero.jpg") fixed center center;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

#catalog-hero .container {
  padding-top: 72px;
}

#catalog-hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#catalog-hero p {
  color: #fff;
  margin-bottom: 50px;
}

#catalog-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.product-title{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.sidebar-title{
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.aside-title h3{
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.product-desc{
  font-size: 16px;
  opacity: 0.8;
}

.product{
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.categories-list li{
  margin-bottom: 20px;
}

.cat-item a{color: #47b2e4 !important; font-size: 18px;}

@media (max-width: 991px) {
  #catalog-hero {
    height: 100vh;
    text-align: center;
  }

  #catalog-hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #catalog-hero .hero-img {
    text-align: center;
  }

  #catalog-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #catalog-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #catalog-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #catalog-hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #catalog-hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.categories-list{list-style-type: none; padding:0; margin:0;}


/* ! Contacts hero */
#contacts-hero {
  width: 100%;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/heroes/contacts-hero.jpg") fixed center center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#contacts-hero .container {
  padding-top: 72px;
}

#contacts-hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#contacts-hero p {
  color: #fff;
  margin-bottom: 50px;
}

#contacts-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #contacts-hero {
    height: 100vh;
    text-align: center;
  }

  #contacts-hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #contacts-hero .hero-img {
    text-align: center;
  }

  #contacts-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #contacts-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #contacts-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #contacts-hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #contacts-hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}




/* ! Realizations hero */
#realizations-hero {
  width: 100%;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/heroes/realizations-hero.jpg") fixed center center;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}

#realizations-hero .container {
  padding-top: 72px;
}

#realizations-hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#realizations-hero p {
  color: #fff;
  margin-bottom: 50px;
}

#realizations-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #realizations-hero {
    height: 100vh;
    text-align: center;
    margin-bottom: 25px;
  }

  #realizations-hero p{
    margin-bottom: 25px;
  }

  #realizations-hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #realizations-hero .hero-img {
    text-align: center;
  }

  #realizations-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #realizations-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #realizations-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #realizations-hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #realizations-hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* ! Sections general */
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/* ! Chi siamo */
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #31a9e1;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #31a9e1;
  color: #fff;
  text-decoration: none;
}

/* ! Servizi */
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #47b2e4;
}

/* ! Realizzazioni singole */
.realizations .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.realizations .icon-box .icon {
  margin-bottom: 10px;
}

.realizations .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.realizations .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.realizations .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.realizations .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.realizations .icon-box:hover {
  transform: translateY(-10px);
}

.realizations .icon-box:hover h4 a {
  color: #47b2e4;
}

/* ! Parallax */
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/parallax/parallax-1.jpg") fixed center center;
  background-size: cover;
  padding: 150px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #31a9e1;
  border: 2px solid #31a9e1;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}




#product-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  background-color:#73c5eb;
}

#product-btn:hover {
  background: #31a9e1;
  border: 2px solid #31a9e1;
}

/* ! Cta2 */
.cta-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/parallax/parallax-2.jpg") fixed center center;
  background-size: cover;
  padding: 150px 0;
}

.cta-2 h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta-2 p {
  color: #fff;
}

.cta-2 .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta-2 .cta-btn:hover {
  background: #31a9e1;
  border: 2px solid #31a9e1;
}

@media (max-width: 1024px) {
  .cta-2 {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta-2 .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}



/* ! cta3 */
.cta3 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/parallax/parallax-3.png") fixed center center;
  background-size: cover;
  padding: 150px 0;
}

.cta3 h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta3 p {
  color: #fff;
}

.cta3 .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta3 .cta-btn:hover {
  background: #31a9e1;
  border: 2px solid #31a9e1;
}

@media (max-width: 1024px) {
  .cta3 {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta3 .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}




#product-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  background-color:#73c5eb;
}

#product-btn:hover {
  background: #31a9e1;
  border: 2px solid #31a9e1;
}





/* ! cta4 */
.cta4 {
  background-size: cover;
  padding: 150px 0;
}

.cta4 h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta4 p {
  color: #fff;
}

.cta4 .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta4 .cta-btn:hover {
  background: #31a9e1;
  border: 2px solid #31a9e1;
}

@media (max-width: 1024px) {
  .cta4 {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta4 .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}




#product-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  background-color:#73c5eb;
}

#product-btn:hover {
  background: #31a9e1;
  border: 2px solid #31a9e1;
}




/* ! cta5 */
.cta5 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/parallax/parallax-5.jpg") fixed center center;
  background-size: cover;
  padding: 150px 0;
}

.cta5 h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta5 p {
  color: #fff;
}

.cta5 .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta5 .cta-btn:hover {
  background: #31a9e1;
  border: 2px solid #31a9e1;
}

@media (max-width: 1024px) {
  .cta5 {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta5 .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#product-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  background-color:#73c5eb;
}

#product-btn:hover {
  background: #31a9e1;
  border: 2px solid #31a9e1;
}



/* ! cta6 */
.cta6 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/parallax/parallax-6.jpg") fixed center center;
  background-size: cover;
  padding: 150px 0;
}

.cta6 h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta6 p {
  color: #fff;
}

.cta6 .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta6 .cta-btn:hover {
  background: #31a9e1;
  border: 2px solid #31a9e1;
}

@media (max-width: 1024px) {
  .cta6 {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta6 .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}







/* ! Portfolio */
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #47b2e4;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/* ! Portfolio details */
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/* ! Contatti */
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form input[type=submit] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form input[type=submit]:hover {
  background: #209dd8;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ! Breadcrumbs*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/* ! Footer */
#footer {
  font-size: 14px;
  background: #37517e;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #47b2e4;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/* Carousel */
.carousel-control-next,
.carousel-control-prev /*, .carousel-indicators */ {
    filter: invert(100%);
}


/* Carousel 2 */
* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

/* ! Piscine Mobile */
@media (max-width: 768px) {
  .furnitured{display: flex;}
  .furnitured-text{order: 1;}
  .furnitured-img{order: 2;}
}

/* ! SPA */
@media (max-width: 768px) {
  .docce{display: flex;}
  .docce-text{order: 1;}
  .docce-img{order: 2;}
}

/* ! Saune */
@media (max-width: 768px) {
  .traditional{display: flex;}
  .traditional-text{order: 1;}
  .traditional-img{order: 2;}

  .esterno{display: flex;}
  .esterno-text{order: 1;}
  .esterno-img{order: 2;}
}

/* ! Scenografie */
@media (max-width: 768px) {
  .lake{display: flex;}
  .lake-text{order: 1;}
  .lake-img{order: 2;}
}

/* ! Pavimentazioni */
@media (max-width: 768px) {
  .arch{display: flex;}
  .arch-text{order: 1;}
  .arch-img{order: 2;}
}

/* ! Contatti */
@media (max-width: 768px) {
  iframe{width: 300px}
}

.grid-shop{
  display: flex;
}

.shop-aside{
  flex: 3;
}

.shop-products{
  flex: 7;
}

@media (max-width: 768px) {
  .work{
    width: 100% !important;
    margin-bottom: 15px;
  }
}

.img-tech{width: 6rem !important;}

@media (max-width: 768px) {
  .cta, .cta-2, .cta3, .cta4, .cta5, .cta6{
    background-attachment: scroll !important;
  }  
  
  #about-hero, #catalog-hero, #contacts-hero, #product-hero, #realizations-hero, #flooring-hero, #saunas-hero, #scenografies-hero, #spa-hero{
      background-attachment: scroll !important;
  }
}

.portfolio .portfolio-item a {
  display: block;
  width: 100%;
}

.portfolio .portfolio-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.portfolio .portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}