



/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}


body {
  background-color: #333;
}
footer {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 20px 0px;
}
.navbar-dark .navbar-nav .nav-link.btn-light {
  color: #333;
}
.navbar-dark .navbar-nav .nav-link.btn {
  padding-left: 16px;
  padding-right: 16px;
  display: inline;
}
.navbar {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav .nav-link {
      padding: 0.5rem 0.8rem;
  }
  .navbar-dark .navbar-nav .nav-link.btn {
    display: inline-block;
    margin-left: 16px;
  }
  .navbar {
    padding-bottom: 1rem;
  }
}

/* Hero Message Home */
#fullscreen {
	display: flex;
	flex-direction: column;
	height: 100vh;
}
.hero {
	flex-grow: 1;
	overflow: hidden;
	background-size: cover;
}

#home .hero {
	position: relative;
	overflow: hidden;
	background-color: transparent;
	background-image: none;
}
#home .hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../img/cover.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	animation: hero-zoom-out 12s ease-out forwards;
	z-index: -1;
	transform: scale(1.2);
	transform-origin: center;
	will-change: transform; /* keep hero animation smooth without affecting other layers */
}
#home .hero .vcenter {
	position: relative;
	z-index: 1;
}
#home .hero .clients {
	z-index: 1;
}
@keyframes hero-zoom-out {
	from {
		transform: scale(1.2);
	}
	to {
		transform: scale(1);
	}
}

/* TIPOGRAFIA */
ul.text {
  padding-left: 15px;
}
ul.text li {
  margin-top: 5px;
}
p {
  margin-bottom: 0.5rem;
}
h1 {
  font-size: 42px;
}
.btn-lg {
  font-size: 1.2rem;
  padding: 12px 30px;
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 56px;
  }
  p.lead {
    font-size: 1.5rem;
  }
  .btn-lg {
    font-size: 1.4rem;
    padding: 15px 40px;
  }
}

/* LINK */
#content a:link, #content a:visited {
  color: #666;
}
#content a:hover, #content a:active {
  color: #999;
}

/* ALLINEAMENTO VERT */
.vparent {
  position: relative;
}

.vcenter {
	width: 100%;
	margin: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.bg-text {
  padding: 0px 8px 2px;
  border-radius: 3px;
}
.bg-bk {
  background-color: rgba(0,0,0,0.6);
  color: white;
}
.bg-wh {
  color: #333;
}
.bg-wh-1 {
  background-color: rgba(255,255,255,0.9);
}
.bg-wh-2 {
  background-color: rgba(255,255,255,0.8);
}