@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:wght@300;600;700;800&display=swap');

* {
    margin: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	letter-spacing: 0px;
}
body{
	font-family: 'Inter';
	font-weight: 300;
	font-size: 15px;
	line-height: 1.7;
	background-color: #fff;
	transition: all 300ms linear;

}
a {
  cursor: pointer;
  text-decoration: none;
}

.cd-header{
  position: fixed;
  width:100%;
  top:0;
  left:0;
  z-index:100;
} 
.header-wrapper{
  position: relative;
  width: calc(100% - 100px);
  margin-left: 50px;
} 
.logo-wrap {
  position: absolute;
  display:block;
  left:0;
  top: 40px;
  cursor: pointer;
}
.logo-wrap a {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  transition : all 0.3s ease-out;
}
.logo-wrap a span{ 
  color: #000;
}
.logo-wrap a:hover {
  opacity: 0.9;
}
.nav-but-wrap{ 
  position: relative;
  display: inline-block;
  float: right;
  padding-left: 435px;
  padding-top: 56px;
  transition : all 0.3s ease-out;
}
.menu-icon {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block;
}
.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #000;
  margin-bottom: 7px;
  cursor: pointer;
  -webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, background-color .5s ease;
  transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
  width: 16.5px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon__line-right {
  width: 16.5px;
  float: right;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}
.nav {
  position: fixed;
  z-index: 98;
position: sticky;
}
.nav:before, .nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 102vh;
  background: rgba(20, 21, 26,0.6);
  border-bottom-left-radius: 200%;
  z-index: -1;
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  -webkit-transform: translateX(100%) translateY(-100%);
        transform: translateX(100%) translateY(-100%);
}
.nav:after {
  background: #000;
  -webkit-transition-delay: 0s;
        transition-delay: 0s;
}
.nav:before {
  -webkit-transition-delay: .2s;
        transition-delay: .2s;
}
.nav__content {
  position: fixed;
  visibility: hidden;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
}
.nav__list {
  position: relative;
  padding: 0;
  z-index: 2;
}
.nav__list-item {
  position: relative;
  display: block;
  -webkit-transition-delay: 0.8s;
        transition-delay: 0.8s;
  opacity: 0;
  text-align: center;
  color: #000;
  overflow: hidden; 
  font-family: 'Inter';
  font-size: 8vh;
  font-weight: 900;
  line-height: 1.15;
  -webkit-transform: translate(100px, 0%);
        transform: translate(100px, 0%);
  -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, transform .3s ease;
  transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
  margin-top: 0;
  margin-bottom: 0;
}
.nav__list-item a{ 
  position: relative;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  overflow: hidden; 
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 900;
  z-index: 2;
  display: inline-block;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear; 
}
.nav__list-item a:after{ 
  position: absolute;
  content: '';
  top: 50%;
  margin-top: -2px;
  left: 50%;
  width: 0;
  height: 0;
  opacity: 0;
  background-color: rgb(255, 68, 68);
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear; 
}
.nav__list-item a:hover:after{ 
  height: 4px;
  opacity: 1;
  left: 0;
  width: 100%;
}
.nav__list-item a:hover{
  color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a{
  color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a:after{ 
  height: 4px;
  opacity: 1;
  left: 0;
  width: 100%;
}
body.nav-active .nav__content {
  visibility: visible;
}
body.nav-active .menu-icon__line {
  background-color: #fff;
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
        transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
  width: 15px;
  -webkit-transform: translate(2px, 4px) rotate(45deg);
        transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
  width: 15px;
  float: right;
  -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
        transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
  width: 15px;
}
body.nav-active .nav:before, body.nav-active .nav:after {
  -webkit-transform: translateX(0%) translateY(0%);
        transform: translateX(0%) translateY(0%);
  border-radius: 0;
}
body.nav-active .nav:after {
  -webkit-transition-delay: .1s;
        transition-delay: .1s;
}
body.nav-active .nav:before {
  -webkit-transition-delay: 0s;
        transition-delay: 0s;
}
body.nav-active .nav__list-item {
  opacity: 1;
  -webkit-transform: translateX(0%);
        transform: translateX(0%);
  -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
  -webkit-transition-delay: 0.7s;
        transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(1) {
  -webkit-transition-delay: 0.8s;
        transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(2) {
  -webkit-transition-delay: 0.9s;
        transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(3) {
  -webkit-transition-delay: 1s;
        transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(4) {
  -webkit-transition-delay: 1.1s;
        transition-delay: 1.1s;
}
.mega-container {
  display: flex;
  justify-content: center; /* centra i div orizzontalmente */
  align-items: center; /* centra i div verticalmente */
}
.container {
    display: flex;
    justify-content: center; /* centra i div orizzontalmente */
    align-items: center; /* centra i div verticalmente */
    height: 100%; /* imposta l'altezza del container come 100% della pagina */
    transform: translate(0%, 50%);

}
.card {
    height: 450px;
    width: 300px;
    background-color: rgb(0, 0, 0);
    border-radius: 30px;
    filter: drop-shadow(10px 10px 50px #00000024);
    margin-right: 50px;
    transition: all 100ms linear;
    display: inline-block;
}

.card:hover {
    background-color: rgb(50, 50, 50);
}

.testo {
    text-align: center;
    margin-top: -10px;
    filter:drop-shadow(0px 10px 50px black);
    font-size: 40px;
    text-decoration: none;
    color: white;
}

.img-div {
    height: 300px;
    margin-left: -120px;
    margin-top: -20px;
}

.bottone-shop {
  border: none;
  color: black;
  margin-top: -20px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  font-size: 20px;
  border-radius: 15px;
  background-color: rgb(226, 226, 226);
  transition: background-color 200ms;
  filter: drop-shadow(0 0 50px #00000059);
  width: 160px;
  height: 50px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {

  .container {
    display: block;
    margin-left: 40px;
    margin-top: -200px;
  }
  .card {
    margin-bottom: 40px;
    display: grid;
    height: 200px;
    width: 800px;
    filter: drop-shadow(10px 10px 50px #0000000f);
  }
  .img-div {
     height: 230px;
     margin-left: -100px;
     margin-top: -15px;
  }
  .testo { 
   z-index: 10;
   position: absolute;
   margin-left: 300px;
   margin-top: 67px;
  }
  .bottone-shop {
    z-index: 9;
    position: absolute;
    margin-top: -135px;
    margin-left: 500px;
  }
}
@media screen and (max-width: 900px) {

  .container {
    display: block;
    margin-left: 40px;
    margin-top: -200px;
  }
  .card {
    margin-bottom: 40px;
    display: grid;
    height: 200px;
    width: 600px;
    filter: drop-shadow(10px 10px 50px #0000000f);
  }
  .img-div {
     height: 230px;
     margin-left: -100px;
     margin-top: -15px;
  }
  .testo { 
   z-index: 10;
   position: absolute;
   margin-left: 250px;
   margin-top: 67px;
  }
  .bottone-shop {
    z-index: 9;
    position: absolute;
    margin-top: -135px;
    margin-left: 350px;
  }
}

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

  .container {
    display: block;
    margin-left: 40px;
    margin-top: -200px;
  }
  .card {
    margin-bottom: 40px;
    display: grid;
    height: 200px;
    width: 500px;
    filter: drop-shadow(10px 10px 50px #0000000f);
  }
  .img-div {
     height: 230px;
     margin-left: -100px;
     margin-top: -15px;
  }
  .testo { 
   z-index: 10;
   position: absolute;
   margin-left: 300px;
   margin-top: 37px;
  }
  .bottone-shop {
    z-index: 9;
    position: absolute;
    margin-top: -95px;
    margin-left: 250px;
  }
}
@media screen and (max-width: 500px) {

  .container {
    display: block;
    margin-left: 40px;
    margin-top: -200px;
  }
  .card {
    margin-bottom: 40px;
    display: grid;
    height: 200px;
    width: 400px;
    filter: drop-shadow(10px 10px 50px #0000000f);
  }
  .img-div {
     height: 180px;
     margin-left: -110px;
     margin-top: 10px;
  }
  .testo { 
   z-index: 10;
   position: absolute;
   margin-left: 200px;
   margin-top: 7px;
  }
  .bottone-shop {
    z-index: 9;
    position: absolute;
    margin-top: -85px;
    margin-left: 150px;
  }
}
.product-slider__bottom {
    
    
    justify-content: center;
    display: flex;
  }
  

  
  .tag {
    font-family: 'Inter';
    font-size: 0,5rem;
    font-weight: 300;
    color: rgb(97, 97, 97);
    text-align: center;
    padding-top: 0px;
}