/*!
 * Project: Metodo Zero
 * Author: ADG, PF
 * E-mail: andreadegrandis1998@gmail.com
 * Website: /
 */
*:focus {
  outline: none;
}
html ::selection {
  /* Code for Firefox */
  background-color: #D8006C;
  color: #fff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
button:focus {
  outline: none;
}
body {
  color: #000;
  background-color: #e0e0e0;
  font-family: "dinregular";
  line-height: 1.2;
}
p {
  /*font-size: 15px;
    color: #000;
    font-weight: 300;*/
  font-family: "dinregular";
}
h1 {
  font-family: "dinbold";
  font-size: 120px;
  font-weight: 700;
  text-transform: uppercase;
  color: #D8006C;
  position: absolute !important;
  bottom: 50px;
  /* Animation */
}
h1.line-1 {
  margin: 0 auto;
  border-right: 5px solid rgba(0, 0, 0, 0.75);
  white-space: nowrap;
  overflow: hidden;
}
h1.anim-typewriter {
  animation: typewriter 3s steps(44) 1s 1 normal both, blinkTextCursor 600ms steps(44) infinite normal;
  max-width: max-content;
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blinkTextCursor {
  from {
    border-right-color: rgba(0, 0, 0, 0.75);
  }
  to {
    border-right-color: transparent;
  }
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1170px) and (max-width: 1440px) {
  h1 {
    font-size: 100px;
  }
}
@media only screen and (min-width: 767.98px) and (max-width: 1170px) {
  h1 {
    font-size: 60px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 40px;
  }
}
strong {
  font-weight: 700;
}
h2 {
  font-size: 80px;
  font-family: "dinbold";
  font-size: 100px;
  font-weight: 700;
  text-transform: uppercase;
  color: #D8006C;
}
h3 {
  font-family: "dinbold";
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: #D8006C;
}
h4 {
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
}
h4.brand {
  color: #AE9A62;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #D8006C;
}
.shadow {
  box-shadow: 0 8px 30px 0px rgba(0, 0, 0, 0.16);
}
@font-face {
  font-family: "dinregular";
  src: url("../fonts/DIN2014-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "dinmedium";
  src: url("../fonts/DIN2014-DemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "dinbold";
  src: url("../fonts/DIN2014-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "dinlight";
  src: url("../fonts/DIN2014-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #D8006C;
  padding-top: 80px;
}
.footer .img {
  width: 80px;
  height: auto;
}
.footer .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer svg {
  width: 30px;
  height: auto;
  margin-right: 10px;
  margin-top: 12px;
  transition: 0.2s;
}
.footer svg path {
  fill: #e8e8e8;
  transition: 0.2s;
}
.footer svg:hover path {
  fill: #fff;
}
.footer a {
  display: block;
  color: #e8e8e8;
  cursor: pointer;
  line-height: 1.6;
}
.footer a:hover {
  color: #fff;
}
.footer p {
  color: #e8e8e8;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 0;
}
.footer h3 {
  font-size: 18px;
  color: #fff;
}
.footer .copyright {
  padding-top: 60px;
  padding-bottom: 20px;
}
.footer .copyright span {
  font-size: 13px;
  color: #e8e8e8;
}
.header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 100;
  height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  transition: all ease-in-out 0.2s;
}
@media (max-width: 575.98px) {
  .header {
    height: 110px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .header {
    height: 100px;
  }
}
.header.shrink {
  height: 90px;
  position: fixed;
}
.header.shrink .logo img {
  width: 60px;
  height: auto;
}
@media (max-width: 575.98px) {
  .header.shrink .logo img {
    width: 55px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .header.shrink .logo img {
    width: 55px;
  }
}
.header.shrink .dropdown .dropdown-menu {
  margin-top: 15px;
}
.header.shrink .dropdown img {
  width: 60px;
  height: auto;
}
@media (max-width: 575.98px) {
  .header.shrink .dropdown img {
    width: 55px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .header.shrink .dropdown img {
    width: 55px;
  }
}
.header.home {
  background-color: #000;
}
.header.studio {
  background-color: #000;
}
.header .dropdown:hover {
  background-color: #D8006C;
}
.header .dropdown img {
  width: 75px;
  height: auto;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media (max-width: 575.98px) {
  .header .dropdown img {
    width: 55px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .header .dropdown img {
    width: 55px;
  }
}
.header .dropdown a::after {
  display: none;
}
.header .dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.header .dropdown .dropdown-menu {
  transition: all 0.3s;
  transform: unset !important;
  border: 0;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.95);
  top: unset !important;
  min-width: unset;
  margin-top: 25px;
  font-size: 14px;
  text-transform: uppercase;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  display: block;
}
.header .dropdown .dropdown-menu a {
  line-height: 2.4;
  font-family: "dinbold";
  text-decoration: none;
  transition: ease-in 0.1s;
  cursor: pointer;
}
.header .dropdown .dropdown-menu a:hover {
  color: #D8006C;
  transition: ease-out 0.1s;
}
@media (max-width: 575.98px) {
  .header .dropdown .dropdown-menu {
    margin-top: 27px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .header .dropdown .dropdown-menu {
    margin-top: 27px;
  }
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo img {
  width: 75px;
  height: auto;
  transition: all ease 0.2s;
}
@media (max-width: 575.98px) {
  .header .logo img {
    width: 55px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .header .logo img {
    width: 55px;
  }
}
.header nav ul {
  margin-bottom: 0;
  list-style-type: none;
}
.header nav ul li {
  color: #000;
}
.header nav ul li a {
  color: #000;
}
.header nav ul li.current-menu-item a {
  color: #D8006C;
}
.image-first {
  width: 100%;
  height: 100vh;
  position: relative;
}
.image-first.single {
  height: 60vh;
}
.image-first.single h1 {
  font-size: 30px;
}
.image-first img {
  position: absolute;
  object-fit: cover;
  display: block;
  height: 100%;
  width: 100%;
}
.article {
  padding-top: 150px;
  padding-bottom: 150px;
}
.article p {
  line-height: 1.4;
}
.article .article-item {
  height: 100%;
  margin-bottom: 50px;
}
.article .article-item:hover .text {
  border-bottom: 5px solid #D8006C;
}
.article .article-item:hover h2 {
  color: #D8006C;
}
.article .article-item:hover img {
  transform: scale(1.1, 1.1);
}
.article .article-item a {
  color: #000;
}
.article .article-item a:hover {
  color: #D8006C;
}
.article .article-item .img {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
}
.article .article-item .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease 0.3s;
}
.article .article-item .text {
  padding: 30px;
  background-color: #fff;
  max-height: 350px;
  text-align: center;
  border-bottom: 5px solid #fff;
  border-top: 5px solid #fff;
  transition: ease 0.3s;
}
.article .article-item .text h2 {
  font-family: "dinbold";
  text-align: center;
  font-size: 22px;
  text-transform: initial;
  font-weight: 700;
  margin-bottom: 30px;
  transition: ease 0.2s;
  cursor: pointer;
  color: #000;
}
.article .article-item .text ul {
  list-style-type: none;
  display: inline-block;
  margin-bottom: 0;
}
.article .article-item .text ul li {
  font-family: "dinbold";
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.article .article-item .text p {
  font-family: "dinbold";
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.article .article-item .text .date {
  display: inline-block;
  color: #D8006C;
}
.wpsisac-slick-carousal-wrp {
  position: relative;
}
.wpsisac-slick-carousal-wrp:after {
  content: "";
  border: 8px solid #D8006C;
  position: absolute;
  width: 480px;
  height: 480px;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575.98px) {
  .wpsisac-slick-carousal-wrp:after {
    content: "";
    border: 8px solid #d8006c;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(0.8);
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .wpsisac-slick-carousal-wrp:after {
    font-size: 80px;
  }
}
.slick-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.wpsisac-slick-carousal.wpsisac-center .slick-center .wpsisac-image-slide-wrap {
  transform: scale(2) !important;
  opacity: 1 !important;
  z-index: 100 !important;
}
.wpsisac-slick-carousal button.slick-prev, .wpsisac-slick-carousal button.slick-prev:hover, .wpsisac-slick-carousal button.slick-prev:focus {
  background: rgba(255, 255, 255, 0) url(https://www.metodo-zero.it/mz/wp-content/themes/metodozero-theme/img/arrow-left.png) center center no-repeat !important;
  background-size: 15px 26px !important;
  outline: none !important;
}
.wpsisac-slick-carousal button.slick-next, .wpsisac-slick-carousal button.slick-next:hover, .wpsisac-slick-carousal button.slick-next:focus {
  background: rgba(255, 255, 255, 0) url(https://www.metodo-zero.it/mz/wp-content/themes/metodozero-theme/img/arrow-right.png) center center no-repeat !important;
  background-size: 15px 26px !important;
  outline: none !important;
}
