/* root */

body {
    color: rgb(126, 126, 126);
    overflow-x: hidden;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h1, h2, h3, h4, h5, h6 {
  
}

p {
  color:aliceblue;
  font-size: x-large;
}

.pCopy {
  font-size: small;
}

.pParag {
  font-size: large;
}

.overflowX {
  overflow-x: hidden;
}

/* preloader */

/* *, *::after, *::before {
  box-sizing: border-box;
}

.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background: rgb(23, 22, 22);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity 0.3s linear;
}

.page-content {
  max-width: 768px;
  margin: 0 auto;
} */

  /* preloader 2 */

  /* CSS start - For Live Project */
  .preloader {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: #fff;
    background-color: #000000;
    font-family: Consolas, Menlo, Monaco, monospace;
    font-weight: bold;
    font-size: 30vh;
    z-index: 1099;
  }
  
  .preloader span {
    display: inline-block;
    opacity: 0.8;
    animation: pulse 0.4s alternate infinite ease-in-out;
  }
  .preloader span:nth-child(odd) {
    animation-delay: 0.4s;
    z-index: 1100;
  }
  
  @keyframes pulse {
    to {
      transform: scale(0.8);
      opacity: 0.5;
    }
  }
  
  .preloader.hidden {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
  }
  
  @keyframes fadeOut {
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  /* CSS end - For Live Project */
  
  
  /* Classes for Example Page Content */
  
  .imagen {
    display: inline-block;
    height: auto;
    width: auto;
    margin: 0px;
    padding: 0px;
  }

  /* end preloader */

  /* stiky call to action*/

.stikyButton {
  position: fixed;
  z-index: 9999;
  bottom: 25px;
  right: 25px;
  border-radius: 50% ;
  border: 2px solid #ae1e1e;
  background-color:rgba(0, 0, 0, 0.77) ;
  color: #ac2222;
  width: 100px;
  height: 100px;
  transition: 0.5s;
}
.stikyButton:hover {
  transform: scale(1.5);
}

/* navbar */

.navbar {
  z-index: 100;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 25%, rgb(255, 0, 0) 100%) !important;
  /* background-color: rgb(139, 12, 12) !important; */
  position: fixed;
  fixed: top;
  width: 100%;
}

.lpLogoNav {
    width: 50px;
    height: 50px;
    filter: invert(0%) sepia(0%) saturate(6481%) hue-rotate(246deg) brightness(102%) contrast(143%);
    transition: 1s;
  }

  .lpLogoNav:hover {
    transform: rotate(360deg);
  }

  /* header */

.titleMain {
  font-size: 80px;
  color: red;
  text-shadow: 20px -20px 20px rgb(164, 160, 160);
}

.parallaxBody {
    /* The image used */
    background:linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), url("/template-musica/img/originals/sfondonuovo.png");

    /* city image */
    /* background:linear-gradient(90deg, rgba(0, 0, 0, 0.647) 0%, rgba(0, 0, 0, 0.693) 100%), url("/template-musica/img/sfondo3.png"); */

    min-height: 1000px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover; 
}

.parallaxMan {
  /* The image used */
  background:linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0)30%, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 100%), url("/template-musica/img/webp/tizio.webp");
  min-height: 1000px;   
  background-position: center, top;
  background-size: cover;
  background-repeat: no-repeat !important;
  max-width: 100%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover; 
}

.parallaxMan2 {
  /* The image used */
  background:linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%), url("/template-musica/img/webp/tizio.webp");
  /* background-image: url(/img/tizio.png); */
  min-height: auto;   
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat !important;
  max-width: 100%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover; 
}

/* video */

video {
  width: 100%;
  height: auto;
}

.banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* uncomment this for red border on paragraph */

.borderDescription {
  /* border: 2px solid rgba(255, 0, 0, 0.251);
  border-radius: 25px; */
  text-shadow: 20px 20px 10px black;
}

.btnCustom {
  width: 200px;
  height: 80px;
  background-color: rgba(255, 0, 0, 0);
  border-color: rgba(255, 0, 0, 0.567);
  transition: 0.5s;
  color: gray;
}

.btnCustom:hover {
  background-color: rgba(255, 0, 0, 0.609);
  transform: scale(1.2);
  color: white;
}

.imgCustom {
  width: 500px;
  height: auto;
  box-shadow: 10px 10px 20px black;
  border-radius: 10px;
}

.pCustom {
  font-size:x-large ;
}

.guitar {
        /* The image used */
        background:linear-gradient(0deg, rgb(0, 0, 0) 5%,  rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 100%), url("/template-musica/img/chitarra.png") !important;
        min-height: 900px;   
        background-position: right;
        background-size: cover;
        background-repeat: no-repeat !important;
        max-width: 100%;
    
        /* Create the parallax scrolling effect */
        background-attachment: fixed;
        background-repeat: no-repeat !important;
        background-size: cover; 
}

.separatorBg {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(255, 0, 0) 100%) !important;
    width: 100%;
}

.separatorBg1 {
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(255, 0, 0) 100%) !important;
  width: 100%;
  height: 40px ;
}

/* cards */

.card {
    background-color: transparent;
    border: 2px solid rgba(255, 0, 0, 0.46);
    height: 470px;
    color: gray;
}

.card-img-top {
  width: auto;
  height: 240px;
}

.carouselRadius {
  border-radius: 25px !important;
  border: 2px solid rgba(255, 0, 0, 0.569);
}

.buttonCard {
  background-color: rgba(255, 0, 0, 0.325);
  border-color: rgba(255, 0, 0, 0.597);
  transition: 0.5s;
}
.buttonCard:hover {
  transform: scale(1.2);
  background-color: rgba(255, 0, 0, 0.505);
}

/* contact */

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

body { background:rgb(30,30,40); }
form { max-width:420px; margin:50px auto; }

.feedback-input {
  color:white;
  font-family: Helvetica, Arial, sans-serif;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid #ff000061;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #ffffff; }

textarea {
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  width: 100%;
  background:#4f4c4c00;
  border-radius:5px;
  border: 2px solid rgba(255, 0, 0, 0.519) !important;
  border:0;
  cursor:pointer;
  color:rgb(93, 91, 91);
  font-size:24px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}
[type="submit"]:hover { background:#ff000052; color: white;}

 /* footer */
 
.lpLogoNav2 {
    width: 50px;
    height: 50px;
    filter: invert(100%) sepia(0%) saturate(6481%) hue-rotate(246deg) brightness(102%) contrast(143%);
    transition: 1s;
  }

  .lpLogoNav2:hover {
    transform: rotate(360deg);
  }

  .iconCustom {
    transition: 0.5s;
}
.iconCustom:hover {
    transform: scale(2);
}

.filterBlur {
  backdrop-filter: blur(10px);
}

  /* media query */

  @media screen and (max-width:1400px) {
    .noFlex {
      display: block !important;
    }
  }

@media screen and (max-width:1200px) {
  .parallaxMan {
    background-attachment: scroll;
  }
  .parallaxMan2 {
    background-attachment: scroll;
  }
  .parallaxBody {
    background-attachment: scroll;
  }
}

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

    .navbar {
      background-color: rgba(255, 0, 0, 0.664) !important;
    }

    .parallaxMan {
      background:linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%), url("/template-musica/img/tizio.png") !important; 
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat !important;
    }
    .mainDescription {
      width: 100%;
    }

    .linkQuery {
      width: 50%;
    }

  }

  @media screen and (max-width:769px) {
    .borderDescription {
      text-align: center;
    }
  }

/* uncomment this for remove header background image on little screens */

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

  .parallaxMan {
    background-position: center !important;
  }

  .titleMain {
    font-size: 50px;
  }

}