/* COLORI */

:root {
 --primo: #b14645;
 --secondo: #ffdc3d;
 --terzo: #0FA3B1;
 --nero: #000000;
 --bianco: #ffffff;
 --grigio: #F0F3F5;
 --trasp: rgba(0, 0, 0, 0);
}

/* FINE COLORI */

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

a{
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

p{
  position: relative;
  font-size: 20px;
  line-height: 40px;
  font-weight: 200;
  color: var(--nero);
  margin-bottom: 40px;
}



.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--primo);
    z-index: -1;
}

.sticky-top{
  background-color: var(--primo) !important;
}

.bg-white {
    background-color: var(--primo) !important;
}

.hero-header {
    margin-top: 0px;
    padding: 0px!important;
    background: url(../img/hero-bg.png) top center no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: calc(100vh - 88px);
    display: flex;
    align-items: center;
}

.hero-header h1{
    position: relative;
    z-index: auto;
    width: 100%;
    height: calc(100vh - 96px);
    display: block;
    text-indent: -9999px;
    background-image: url(../img/fuori-tutto_hero.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-header .container{
  position: relative;
  height: 100%;
}

.hero-header .container .row{
  position: relative;
  height: 100%;
  align-items: center;
}

.navbar .navbar-nav .nav-link {
  position: relative;
  font-size: 18px;
  line-height: 18px;
  padding: 20px 0 20px 0;
  color: var(--bianco);
  font-weight: 200;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondo);
}

.navbar-brand img{
  position: absolute;
  top:5px;
  left: 0;
  width: 200px;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--bianco);
    transition: .5s;
    border-radius: 3px;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--bianco);
}

.chi-siamo{
  position: relative;
  background-color: var(--primo);
  padding-top: 120px;
  padding-bottom: 120px;
}

.chi-siamo p{
  color: var(--bianco);
}

.chi-siamo p strong{
  color: var(--grigio);
  font-style: italic;
  font-weight: 900;
}

.chi-siamo h2{
  position: relative;
  font-size: 80px;
  line-height: 80px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bianco);
  margin-bottom: 40px;
}

.chi-siamo h2 strong{
  font-weight: 500;
  color: var(--secondo);
}

.bg-primary {
    background-color: var(--secondo)!important;
}

.chi-siamo h3{
  color: var(--primo);
}

.prodotti{
  position: relative;
  background-color: var(--bianco);
  padding-top: 120px;
  padding-bottom: 120px;
}

.prodotti h2{
  position: relative;
  font-size: 80px;
  line-height: 80px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primo);
  margin-bottom: 40px;
}

.prodotti img{
  position: relative;
  width: 150px;
  margin-bottom: 20px;
}

.prodotti h4{
  color: var(--primo);
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

.prodotti p.blocco-p{
  min-height: 300px;
  height:auto !important;
  height: 300px;
  border-bottom: 5px solid var(--primo);
}

.contatti{
  position: relative;
  background-color: var(--grigio);
  padding-top: 120px;
  padding-bottom: 120px;
}

.contatti .btn-square{
  position: relative;
  margin-bottom: 40px;
  text-align: center;
  left: 50%;
  margin-left: -50px;
  color: var(--primo);
}

.contatti h2{
  position: relative;
  font-size: 80px;
  line-height: 80px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primo);
  margin-bottom: 40px;
}

.contatti p.blocco-p{
  line-height: 30px;
}

.contatti a:link,
.contatti a:visited{
  color: var(--primo);
  position: relative;
}

.contatti a:hover{
  color: var(--secondo);
}

.contatti a::before{
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 1px;
  background-color: var(--primo);
  width: 100%;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.contatti a:hover::before{
  width: 0%;
  background-color: var(--secondo);
}

.footer{
  position: relative;
  background-color: var(--primo)!important;
  padding-top:40px;
  padding-bottom: 40px;
}

.footer .copyright {
  padding: 0;
  border-top: 0px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

.footer p{
  font-size: 16px;
  line-height: 24px;
  color: var(--bianco);
  margin-bottom: 0;
  text-align:center;
}

.back-to-top{
  background-color: var(--secondo);
  z-index: 999;
  color: var(--primo);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.back-to-top:hover{
  color: var(--bianco);
  background-color: var(--primo);
}

/* MAPPA */

.mappa{
  position:relative;
  margin: 0;
  padding: 0;
}

#map{
  display: block;
  position: relative;
  width: 100%;
  height: 600px;
}

.leaflet-tile-pane {
  -webkit-filter: grayscale(100%)!important;
  filter: grayscale(100%)!important;
}

/* FINE MAPPA */

/* STILI PER MOBILE */
@media only screen and (min-width: 1920px) {
}

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1300px) {
}

@media only screen and (max-width: 1280px) {
}

@media only screen and (max-width: 1239px) {
}

@media only screen and (max-width: 1199px) {
}

@media only screen and (max-width: 1043px) {
}

@media only screen and (max-width: 991px) {
  .navbar-light .navbar-toggler {
      color: var(--bianco)!important;
      border:0!important;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0rem;
  }

  .navbar-light .navbar-toggler-icon {
    background-image:url(../img/menu_1.png);
  }
  .navbar .navbar-nav .nav-link{
    text-align: right;
  }

  .hero-header{
    height: auto;
    padding-bottom: 120px!important;
  }

  .prodotti p {
    min-height: 150px!important;
    height: auto !important;
    height: 150px;
    border-bottom: 5px solid var(--primo);
  }

  .prodotti h4 {
    min-height: 80px;
    height:auto !important;
    height: 80px;
  }

  p.no-border{
    border: 0!important;
  }
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 620px) {
}

@media only screen and (max-width: 575px) {
}

@media only screen and (max-width: 559px) {
  .chi-siamo h3{
    font-size: 20px!important;
    line-height: 20px!important;
  }

  .chi-siamo h2 {
    position: relative;
    font-size: 60px;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--bianco);
    margin-bottom: 20px;
  }
  p {
    position: relative;
    font-size: 16px;
    line-height: 32px;
    font-weight: 200;
    color: var(--nero);
    margin-bottom: 20px;
  }

  .prodotti h2 {
    position: relative;
    font-size: 60px;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primo);
    margin-bottom: 20px;
  }
  .prodotti h4 {
    color: var(--primo);
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
    min-height: 80px;
    height:auto !important;
    height: 80px;
  }

  .contatti h2 {
    position: relative;
    font-size: 60px;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primo);
    margin-bottom: 20px;
  }
  .contatti .btn-square{
    margin-bottom: 10px;
  }

  .footer p {
    font-size: 12px;
    line-height: 18px;
    color: var(--bianco);
    margin-bottom: 0;
    text-align: center;
}
}

@media only screen and (max-width: 479px) {

}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) {

}

@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 812px)
  and (orientation: landscape) {
}
