/**
* Template Name: Company
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/company-free-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
}

a {
  color: #cc0000;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Roboto", sans-serif;
}
/*--------------------------------------------------------------
# Fine General
--------------------------------------------------------------*/

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

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

.back-to-top i:hover {
  background-color: #fff;
  color: #000;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Fine Back to top button
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Fine Disable AOS delay on mobile
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #000000;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  width: 150px;
  height: 69px;
}

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

#header .logo a span {
  color: #cc0000;
}

#header .logo img {
  max-height: 40px;
}
/*--------------------------------------------------------------
# Fine Header
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin: 0px 20px;
  border-left: 1px solid #ffff;
}

.header-social-links a {
  color: #ffff;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: 20px;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #cc0000;
}

@media (max-width: 768px) {
  .header-social-links {
    padding: 0 15px 0 0;
    border-left: 0;
  }
}
/*--------------------------------------------------------------
# Fine Header Social Links
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffff;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

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

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

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

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

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

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #cc0000;
}

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

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

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

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

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

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

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

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 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;
  background-color: #000;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

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

.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: #cc0000;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Fine Navigation Menu
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 60px;
  top: 70px;
  left: 55px;
  right: 55px;
}

#hero .carousel-content {
  color: #fff;
}

#hero .carousel-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #cc0000;
  background: #cc0000;
}

#hero .btn-get-started:hover {
  background-color: #00000000;
  color: #fff;
  text-decoration: none;
  border: 2px solid #cc0000;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  transition: 0.3s;
  color: #cc00009c;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgb(0 0 0 / 70%);
  color: #cc0000;
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #cc0000;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 72%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 992px) {
  #hero .carousel-container {
    top: 58px;
  }

  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 35px !important;
  }

  #hero .carousel-content p {
    font-size: 15px;
  }

  .h1-slide {
    font-size: 3rem !important;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
  .h1-slide {
    font-size: 3rem !important;
  }
}
/*--------------------------------------------------------------
# Fine Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #000;
  color: #fff;
  border-top: 1px solid #fff;
}

.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: #fff;
}

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

.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Fine Sections General
--------------------------------------------------------------*/

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

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.breadcrumbs ol a {
  color: #fff;
}

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

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

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 54px;
    text-align: center;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Fine Breadcrumbs
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #cc0000;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

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

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

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}
/*--------------------------------------------------------------
# Fine Services
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Slide Home
--------------------------------------------------------------*/
.h1-slide{
  text-align: center;
  text-transform: uppercase;
  font-size: 5rem;
  padding: 15px;
  letter-spacing: 10px;
  text-shadow: -2px 0 #000000, 0 2px #000000, 2px 0 #000000, 0 -2px #000000;
}
.p-slide{
  display: inline;
  text-transform: uppercase;
}
.txt-slide{
  text-align: center;
}
.img-slide{
  width: 20%;
  margin-bottom: 20px;
}
.logo-slide{
  text-align: center;
}
.pulsante-slide{
  text-transform: uppercase;
}
/*--------------------------------------------------------------
# Fine Slide Home
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.h4-portfolio{
  text-transform: uppercase;
}

.btn-batteria:hover{
  background: #33ff33 !important;
}

.btn-erba-siepi:hover{
  background: #008000 !important;
}

.btn-legno-foglie-alberi:hover{
  background: #ca581a !important;
}

.btn-terra:hover{
  background: #753a11 !important;
}

.btn-acqua:hover{
  background: #33ccff !important;
}

.btn-neve:hover{
  background-color: #a5becd !important;
}

.btn-utilità:hover{
  background-color: #0359a4 !important;
}

.portfolio{
  background-color: #000;
  border-top: 1px solid #fff;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 50px auto;
  list-style: none;
  text-align: center;
  background-color: #000;
  color: #fff;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s;
  border-radius: 4px;
  
}

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

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

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

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #cc0000e0;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

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

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 46px;
  font-size: 15px;
  top: calc(50% - -6px);
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
}

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

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

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

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

.vai-product-cat:hover p,
.vai-product-cat:hover i{
    color: #fff !important;
}
.vai-product:hover p,
.vai-product:hover i{
    color: #cc0000 !important;
}

/*Stile bottoni rasaerba/motosega/decespugliatori*/
.btn-filter-tutti{
  background-color: #000;
}
.btn-scoppio,
.btn-elettrici,
.btn-motoseghe,
.btn-potatura,
.btn-kawasaki,
.btn-honda{
  background-color: #000;
}

/*End stile bottoni rasaerba*/
/*Stile specifiche tecniche*/
.img-spec-tech{
  width: 25px; 
  margin: 0px 20px;
}

/*Mobile Preview-link*/
@media (max-width: 1200px) {
  .preview-link{
    right: 45px !important;
    font-size: 12px !important;
    top: calc(50% - -8px) !important;
  }
  .attila-icons{
    font-size: 70px;
  }
}

@media (max-width: 992px) {
  .preview-link{
    right: 45px !important;
    font-size: 12px !important;
    top: calc(50% - -8px) !important;
  }
  .attila-icons{
    font-size: 70px;
  }
}

@media (max-width: 768px) {
  .preview-link{
    right: 45px !important;
    font-size: 12px !important;
    top: calc(50% - -8px) !important;
  }
  .img-info-portfolio{
    width: 20% !important;
  }
  .attila-icons{
    font-size: 70px;
  }
}

/*--------------------------------------------------------------
# Fine Portfolio
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# My Prodotti Details
--------------------------------------------------------------*/
.h4-title-prodotti{
  text-transform: uppercase;
  text-align: center;
  color: #000;
  font-weight: 900;
  margin: 50px 0px;
}
.decespugliatori{
  background-color: #fff;
}
.title-prod{
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-prod{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 900;
}
.prodotti-home{
  padding-top: 150px;
}
.motofalciatrici,.decespugliatori-a-ruota{
  background-color: #fff;
  margin-bottom: 5.25rem;
}
/*--------------------------------------------------------------
# Fine My Prodotti Details
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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 #cc0000;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px 10px rgba(17, 17, 17, 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: 0px;
  padding-bottom: 10px;
}

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

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

.h2-portfolio{
  text-transform: uppercase;
  font-weight: 400 !important;
  font-size: 18px;
}
.h4-model{
  text-transform: uppercase;
  font: bold;
  font-size: 25px !important;
  margin-bottom: 0px;
}

.img-info-portfolio{
  position: absolute;
  right: 1%;
  top: 10%;
  width: 25%;
  margin-bottom: 8px;
  margin-right: 10px;
}

.img-info-portfolio-logo{
  display: block;
  width: 25%;
}

.img-info-portfolio-logo-ego{
  display: block;
  width: 52%;
}

.icon-portfolio{
  font-size: 30px !important;
  top: calc(50% - 6px) !important;
}

.portfolio-color{
  background: rgba(255, 255, 255, 0.9) !important;
}


.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #cc00009c;
  line-height: 1;
  text-align: center;
  padding: 0;
  margin: 0 5px;
  z-index: 50;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover{
  background-color: #000;
  color: #cc0000;
}

.container-iframe{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

.iframe-youtube{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/*--------------------------------------------------------------
# Fine Portfolio Details
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Dove Acquistare
--------------------------------------------------------------*/
.dove-acquistare{
  background-color: #000;
  padding: 7.9% 15% 5% 15%;
  border-top: 1px solid #fff;
  
}
.title-dove{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.dove{
  text-align: center;
}
.dove h5{
  color: #cc0000;
  text-transform: uppercase;
}
.dove p{
  color: #fff;
}
.img-dove{
  width: 100%;
}
.img-box{
  box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
  padding: 10px;
}
@media (max-width: 768px) {
  .img-dove{
    width: 100%;
  }

}
/*--------------------------------------------------------------
# Fine Dove Acquistare
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients{
  background-color: #000;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
}



.clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  overflow: hidden;
  background: #cc0000;
  height: 100px;
}

.clients .client-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
  filter: grayscale(100%);
}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.1);
}
/*--------------------------------------------------------------
# Fine Clients
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .content h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-us .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

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

.about-us .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about-us .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #cc0000;
}

.about-us .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Fine About Us
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #ffff;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #cc0000;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #ffff;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #b4aca8;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #847872;
}

.team .member:hover .social {
  opacity: 1;
}
/*--------------------------------------------------------------
# Fine Our Team
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #ffff;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e7e7e7;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #cc0000;
}
/*--------------------------------------------------------------
# Fine Our Skills
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #ffff;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #cc0000;
}
/*--------------------------------------------------------------
# Fine Features
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #847872;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #cc0000;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #4d4643;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #cc0000;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #cc0000;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #2ae149;
}

.pricing .featured h3 {
  color: #fff;
  background: #cc0000;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #cc0000;
  color: #fff;
}
/*--------------------------------------------------------------
# Fine Pricing
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: lightgray;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #cc0000;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
/*--------------------------------------------------------------
# Fine FAQ
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #ffff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #dddddd;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}
/*--------------------------------------------------------------
# Fine Testimonials
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #cc0000;
  float: left;
  width: 44px;
  height: 44px;
  border: 1px solid #cc0000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

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

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

.contact .info:hover i {
  background: #cc0000;
  color: #fff;
}

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

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

.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;
  animation: animate-loading 1s linear infinite;
}

.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: #cc0000;
}

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

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

.contact .php-email-form button[type=submit] {
  background: #cc0000;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #2ae149;
}

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

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Fine Contact
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #ffff;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #cc0000;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #847872;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #1ed33c;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #4d4643;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #ffff;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #cc0000;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #ffff;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #bfb9b6;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #4d4643;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #cc0000;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #ffff;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #57e76f;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #57e76f;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #ffff;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1e1e1e;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #ffff;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #cc0000;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #ffff;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #cc0000;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #1ecf3b;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #ffff;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #cc0000;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b4aca8;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #ffff;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #cc0000;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b4aca8;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #cc0000;
  background: #cc0000;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}
/*--------------------------------------------------------------
# Fine Blog
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #1E1E1E;
}

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

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

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  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: #cc0000;
  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: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
  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: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #cc0000;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #2ae149;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #cc0000;
  color: #fff;
  text-decoration: none;
}
.btn-privacy{
  background-color: rgba(255, 255, 255, 0.08);
  border: 0px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 4px;
  width: 120px;
  height: 30px;
  transition: 0.3s;
}
.btn-privacy:hover{
  background-color: #cc0000;
  border: #cc0000;
}
.btn-privacy a{
  color: #fff !important;
}
.btn-cookie{
  margin-left: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 0px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 4px;
  width: 120px;
  height: 30px;
  transition: 0.3s;
}
.btn-cookie:hover{
  background-color: #cc0000;
  border: #cc0000;
}
.btn-cookie a{
  color: #fff !important;
}

/*--------------------------------------------------------------
# Fine Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Singolo Prodotto
--------------------------------------------------------------*/
.product-bottom{
  margin-bottom: 20px;
  text-align: center;
}
.button-rivenditori{
    font-size: 0.9rem;
    padding: 0.8em 0.5em;
    background-color: #cc0000;
    border: 3px solid #cc0000;
    border-radius: 1em;
    color: #fff;
    font-weight: bolder;
    margin-bottom: 2px;
    margin-left: 0px;
    text-transform: uppercase;
}
.button-rivenditori:hover{
    background-color: #cc0000;
    color: #000;
}
.button-rivenditori:active{
  background-color: #fff;
  color: #000;
}
.button-info{
  font-size: 0.9rem !important;
  padding: 0.8em 0.5em !important;
  background-color: #cc0000 !important;
  border: 3px solid #cc0000 !important;
  border-radius: 1em !important;
  color: #fff !important;
  font-weight: bolder;
  margin-bottom: 0px;
  margin-left: 2%;
  text-transform: uppercase;
}
.button-info:hover{
    background-color: #cc0000 !important;
    color: #000 !important;
}
.button-info:active{
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 767px) {
  .button-info{
    margin: 0;
    margin-top: 5px;
  }
  .btn-privacy-cookie{
    text-align: center;
  }
  .footer-brumar{
    text-align: center;
  }
}
.share-product{
  margin-bottom: 30px;
  text-align: center;
}

.share-icon-product{
  font-size: 1.2rem;
  margin-right: 20px;
  margin-left: 5px;
}
.social-facebook-product{
  color: #3b5998;
  font-size: 1.5rem;
}
.social-envelope-product{
  margin-left: 5px;
  font-size: 1.5rem;
}
.social-whatsapp-product{
  color: #25D366;
  margin-left: 5px;
  font-size: 1.5rem;
}
.social-facebook-product:hover,
.social-envelope-product:hover,
.social-whatsapp-product:hover{
  color: #000;
}
.h2-title,
.h3-title{
  text-align: center;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Fine Singolo Prodotto
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Trova Rivenditore
--------------------------------------------------------------*/
.p-dove{
  color: #cecece;
  text-align: center;
}
.input-mappa{
  display: flex;
  justify-content: center;
  padding: 20px;
}
#cityInput,
.btn-cerca-mappa,
.btn-input-mappa,
#updateButton{
  padding: 10px 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid;
  border-radius: 4px;
}
.btn-input-mappa{
  display: flex;
  justify-content: center;
  background-color: #000;
  border-color: #cc0000;
  color: #fff;
  margin-left: 15px;
}
.btn-input-mappa:hover{
  background-color: #cc0000;
  transition: 0.5s;
  transition-delay: 0s;
}
.btn-carca-mappa,
#updateButton{
  background-color: #000;
  border-color: #cc0000;
  color: #fff;
}
#updateButton{
  margin-left: 10px;
}
#updateButton:hover{
  background-color: #cc0000;
  transition: 0.5s;
  transition-delay: 0s;
}
.btn-vai-rivenditore{
  text-align: center;
  background-color: #cc0000;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 5px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-top: 10px;
  border: 2px solid #cc0000;
}
.btn-vai-rivenditore:hover{
  background-color: #fff;
  border: 2px solid #cc0000;
  transition: 0.4s;
  transition-delay: 0s;
}
#cityInput{
  width: 240px;
  border-color: #cc0000;
  background-color: #000;
  color: #fff;
}
#cityInput::placeholder{
  color:#fff;
}
#cityInput:target{
  background-color: #ff5828 I !important;
}
.contenitore-info-rivenditori{
  padding: 10px;
  width: 300px;
}
.nome-rivenditore{
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 5px;
  margin-top: 0px;
}
.telefono-rivenditore{
  font-family: "Roboto", sans-serif;
  margin: 0px;
}
.indirizzo-rivenditore{
  font-family: "Roboto", sans-serif;
  margin-bottom: 3px;
}
.icon-cerca{
  color: #fff;
  padding: 10px 15px;
  margin-left: 2px;
  border: 2px solid #cc0000;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-user-position{
  font-size: 1rem;
  text-align: center;
}
.link-sito-rivenditore{
  color: #cc0000 !important;
}
#mapContainer{
  z-index: 10;
}
.popup-wrapper {
  position: absolute;
  top: 192px;
  right: 10px;
  bottom: 0;
  color: #fff;
  padding: 10px;
  overflow-x: auto;
  width: auto;
  z-index: 200;
}
.popup-rivenditori-title {
  margin-top: 0;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  border: 5px solid #cc0000;
  border-radius: 4px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}
.popup-rivenditore-name{
  font-size: 16px;
  line-height: 30px;
}
.popup-rivenditore {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
  border: 3px solid #cc0000;
  border-radius: 4px;
  color: #000;
}
.popup-rivenditore-title {
  margin-top: 0;
  font-size: 16px;
}
.popup-rivenditore-distance {
  margin: 0;
  font-size: 14px;
}
.contenitore-info-rivenditori p{
  font-size: 14px;
  font-weight: 400;
}
.popup-rivenditore-distance{
  margin-left: 10px;
}
/*--------------------------------------------------------------
# Fine Trova Rivenditore
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Icon
--------------------------------------------------------------*/
.attila-icons{
  font-size: 70px !important;
  text-align: center;
  line-height: 90px;
  margin: 28px 0px;
}

.bi-x-circle{
  color: #000;
  font-size: 30px;
  display: flex;
  justify-content: end;
}
.bi-arrow-up-short{
  padding: 5px;
}

/*--------------------------------------------------------------
# Fine Icon
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# FlipBook PDF
--------------------------------------------------------------*/
.flipbook-pdf{
  width: 100%;
  height: 900px;
  margin-bottom: -6px;
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  /*Header*/
  .logo{
    width: 100px !important;
    height: 46px !important;
  }
  /*Fine Header*/
  /*Mappa*/
  .input-mappa {
    flex-direction: column;
  }
  .input-mappa > * {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .btn-input-mappa {
    margin: 0px;
  }
  #updateButton {
    margin-left: 6px;
  }
  .input-group-text{
    justify-content: center;
  }
  .popup-wrapper{
    top: 32rem;
    height: 56%;
    left: 10px;
  }
  .dove-acquistare{
    padding-left: 20px;
    padding-right: 20px;
  }
  .input-mappa,
  .p-dove {
    padding: 6% 15% 5% 15%;
  }
  .title-dove{
    margin-top: 70px;
  }
  /*Fine Mappa*/
}
/*--------------------------------------------------------------
# Fine Mobile
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Pagina Media
--------------------------------------------------------------*/
.slider {
  align-items: center;
  justify-content: center;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.slider .video-link {
  width: 300px;
  scroll-snap-align: start;
  margin-right: 10px;
}

.slider .video-link img {
  width: 100%;
}
.fancybox-navigation button{
  background-color: #ff660000;
}
.fancybox-navigation div {
  background-color: #cc0000; /* Colore di sfondo dei pulsanti */
  color: #ffffff; /* Colore del testo dei pulsanti */
  border-radius: 50%;
}
.fancybox-toolbar button {
  background-color: #cc0000;
  color: #ffffff;
  border-radius: 50%;
  margin: 10px 5px;
}
.video-link img{
    border-radius: 10% !important;
  }
/* Stili per dispositivi con larghezza massima di 768px */
@media (max-width: 768px) {
  .slider {
    flex-wrap: wrap;
  }
  .slider .video-link {
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 997px) {
  .slider {
    flex-wrap: wrap;
  }
  .slider .video-link {
    width: 30%;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
/*--------------------------------------------------------------
#  fine Pagina Media
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Popup Cookie
--------------------------------------------------------------*/
.cookie {
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.80);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 13px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 9999;
  transition: transform 0.3s ease;
}

.cookie.show {
  transform: translateY(0%);
}

#cookieSvg {
  width: 50px;
}

#cookieSvg g path {
  fill: rgb(97, 81, 81);
}

.cookieHeading {
  font-size: 1.2em;
  font-weight: 800;
  color: rgb(255, 255, 255);
}

.cookieDescription {
  text-align: center;
  font-size: 0.7em;
  font-weight: 600;
  color: rgb(182, 182, 182);
}

.cookieDescription a {
  color: #cc0000;
}

.cookieDescription a:hover {
  text-decoration-line: underline;
}

.buttonContainer {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.acceptButton {
  width: 90px;
  height: 40px;
  background-color: #cc0000;
  transition-duration: 0.2s;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.6s ease;
}

.declineButton {
  width: 90px;
  height: 40px;
  background-color: #ffffff;
  transition-duration: 0.2s;
  color: rgb(46, 46, 46);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.6s ease;
}

.declineButton:hover {
  background-color: #cc0000;
  color: #fff;
  transition-duration: 0.2s;
}

.acceptButton:hover {
  background-color: #ffffff;
  color: #cc0000;
  transition-duration: 0.2s;
}

.cookie.hidden {
  display: none;
}

/* Powered by Kawasaki + EGO*/
.section-vantaggi{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.section-card{
  padding: 120px 30px 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
}
.section-card:nth-child(1){
  --color: #CC0000;
}
.section-card:nth-child(2){
  --color: #CC0000;
}
.section-card:nth-child(3){
  --color: #CC0000;
}
.section-card::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color);
  z-index: -1;
  clip-path: circle(40px at 70px 70px);
  transition: clip-path 0.8s ease;
}
.section-card:hover::before{
  clip-path: circle(100%);
}
.section-card span{
  position: absolute;
  left: 0;
  top: 0;
  height: 80px;
  width: 80px;
  font-size: 50px;
  font-weight: bold;
  transform: translate(30px, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 100%);
  transition: transform 1s ease;
}
.section-card:hover span{
  transform: translate(0, 30px);
}

.section-card a:hover{
  color: transparent;
}

.section-card h2{
  font-size: 26px;
  color: hsl(0, 0%, 0%);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.section-card p{
  color: hsl(0, 0%, 0%);
  line-height: 1.5;
}
.section-card a{
  display: inline-block;
  text-transform: uppercase;
  color: #CC0000;
  margin-top: 20px;
  font-weight: 500;
  font-weight: 900;
}
.section-card a,
.section-card h2,
.section-card p{
  transition: color 0.5s ease;
}
.section-card:hover a,
.section-card:hover h2,
.section-card:hover p{
  color: hsl(0, 0%, 0%);
}
@media(max-width:991px){
  .section-vantaggi{
    grid-template-columns: repeat(1, 1fr);
  }
}
@media(max-width:575px){
  .section-vantaggi{
    grid-template-columns: repeat(1, 1fr);
  }
}
.container-pwbykawa,
.container-pwbyego{
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-pwbykawa{
  max-width: 1500px;
  width: 100%;
  margin-bottom: 50px;
}

.img-pwbykawa-2,
.img-pwbyego-2{
  max-width: 400px;
  width: 100%;
}

/* End Powered by Kawasaki */
/*Powered by EGO*/
.img-pwbyego{
  max-width: 1000px;
  width: 100%;
  margin-bottom: 50px;
}

.section-vantaggi-ego{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.section-card-ego{
  padding: 120px 30px 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
}
.section-card-ego:nth-child(1){
  --color: #76BC21;
}
.section-card-ego:nth-child(2){
  --color: #76BC21;
}
.section-card-ego:nth-child(3){
  --color: #76BC21;
}
.section-card-ego::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color);
  z-index: -1;
  clip-path: circle(40px at 70px 70px);
  transition: clip-path 0.8s ease;
}
.section-card-ego:hover::before{
  clip-path: circle(100%);
}
.section-card-ego span{
  position: absolute;
  left: 0;
  top: 0;
  height: 80px;
  width: 80px;
  font-size: 50px;
  font-weight: bold;
  transform: translate(30px, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 100%);
  transition: transform 1s ease;
}
.section-card-ego:hover span{
  transform: translate(0, 30px);
}

.section-card-ego a:hover{
  color: transparent;
}

.section-card-ego h2{
  font-size: 26px;
  color: hsl(0, 0%, 0%);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.section-card-ego p{
  color: hsl(0, 0%, 0%);
  line-height: 1.5;
}
.section-card-ego a{
  display: inline-block;
  text-transform: uppercase;
  color: #76BC21;
  margin-top: 20px;
  font-weight: 500;
  font-weight: 900;
}
.section-card-ego a,
.section-card-ego h2,
.section-card-ego p{
  transition: color 0.5s ease;
}
.section-card-ego:hover a,
.section-card-ego:hover h2,
.section-card-ego:hover p{
  color: hsl(0, 0%, 0%);
}
@media(max-width:991px){
  .section-vantaggi-ego{
    grid-template-columns: repeat(1, 1fr);
  }
  .image-column-autonomie{
    margin-top: 50px;
  }
}
@media(max-width:575px){
  .section-vantaggi-ego{
    grid-template-columns: repeat(1, 1fr);
  }
}
.btn-ego{
  background-color: #76BC21;
}

/*Autonomia Batterie EGO*/
.container-autonomie {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;
}

.form-group-autonomie {
  margin-bottom: 15px;
}

.form-group-autonomie label {
  font-size: 18px;
}

.form-group-autonomie select {
  padding: 5px;
  font-size: 16px;
  width: 60%;
  text-align: center;
}

.container-autonomie button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
}

.container-autonomie button:hover {
  background-color: #0056b3;
}

#result {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

.align-txt-batterie,
.align-txt-accessori{
  text-align: center;
  color: #000000;
}

.align-txt-batterie strong{
  color: #76BC21;
}

.align-txt-accessori strong{
  color: #CC0000;
}

.align-txt-batterie::marker,
.align-txt-accessori::marker{
  content: none;
}

#battery-image,
#macchine-image{
  display: none;
  width: 100%;
}

.image-column-autonomie{
  width: 50%;
}

.disclaimer-autonomie{
  font-size: 10px;
}


/*Fine autonomia batterie EGO*/