/* ------------------------------------- INDEX --------------------------------- */


 body
 {
   margin: 0;
   padding: 0;
   
   /* make it look decent enough */
   background: #232323;
   color: #cdcdcd;
   font-family: "Avenir Next", "Avenir", sans-serif;
 }
 
 #menuToggle
 {
   display: block;
   position: relative;
   top: 50px;
   left: 50px;
   
   z-index: 1;
   
   -webkit-user-select: none;
   user-select: none;
 }
 
 #menuToggle a
 {
   text-decoration: none;
   color: #232323;
   
   transition: color 0.3s ease;
 }
 
 #menuToggle a:hover
 {
  color: rgb(81, 80, 149);
}
 
 
 #menuToggle input
 {
   display: block;
   width: 40px;
   height: 32px;
   position: absolute;
   top: -7px;
   left: -5px;
   
   cursor: pointer;
   
   opacity: 0; /* hide this */
   z-index: 2; /* and place it over the hamburger */
   
   -webkit-touch-callout: none;
 }
 
 /*
  * Just a quick hamburger
  */
 #menuToggle span
 {
   display: block;
   width: 33px;
   height: 4px;
   margin-bottom: 5px;
   position: relative;
   
   background: #cdcdcd;
   border-radius: 3px;
   
   z-index: 1;
   
   transform-origin: 4px 0px;
   
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               opacity 0.55s ease;
 }
 
 #menuToggle span:first-child
 {
   transform-origin: 0% 0%;
 }
 
 #menuToggle span:nth-last-child(2)
 {
   transform-origin: 0% 100%;
 }
 
 /* 
  * Transform all the slices of hamburger
  * into a crossmark.
  */
 #menuToggle input:checked ~ span
 {
   opacity: 1;
   transform: rotate(45deg) translate(-2px, -1px);
   background: #232323;
 }
 
 /*
  * But let's hide the middle one.
  */
 #menuToggle input:checked ~ span:nth-last-child(3)
 {
   opacity: 0;
   transform: rotate(0deg) scale(0.2, 0.2);
 }
 
 /*
  * Ohyeah and the last one should go the other direction
  */
 #menuToggle input:checked ~ span:nth-last-child(2)
 {
   transform: rotate(-45deg) translate(0, -1px);
 }
 
 /*
  * Make this absolute positioned
  * at the top left of the screen
  */
 #menu
 {
   position: absolute;
   width: 300px;
   margin: -100px 0 0 -50px;
   padding: 50px;
   padding-top: 125px;
   
   background: rgba(196,196,196, 0.7);
   list-style-type: none;
   -webkit-font-smoothing: antialiased;
   /* to stop flickering of text in safari */
   
   transform-origin: 0% 0%;
   transform: translate(-100%, 0);
   
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
 }
 
 #menu li
 {
   padding: 10px 0;
   font-size: 22px;
 }
 
 /*
  * And let's slide it in from the left
  */
 #menuToggle input:checked ~ ul
 {
   transform: none;
 }



 .imagine{
margin-left: 13%;
margin-top: 6;
 }









 
 /* #Primary style
 ================================================== */
 
 .hero-section {
     position: relative;
   width: 100%;
   display: block;
   overflow: hidden;
   height: 100vh;
   background-image: url('https://images.squarespace-cdn.com/content/v1/580fbaac440243d8731ffc57/1623078968754-8UXF044SNYQ4R7XSAZH3/20kHz_Foley_E1_16x9.jpg?format=2500w');
   opacity: 0.8;
   background-size: cover;
   background-position: center;
   transform: scale(1) rotateX(0);
   box-shadow: 0 0 40px rgba(0,0,0,0.2);
   -webkit-transition: all 300ms linear;
   transition: all 300ms linear;
   -webkit-transition-delay: 400ms;
   transition-delay: 400ms;
   transform-origin: center top;
 }

 /* ugen */
 .hero-section h1{
     color: #fff;
   font-size: 8vw;
   line-height: 1;
   font-weight: 900;
   margin-top: 18%;

 }

 /* link sotto */
 .hero-section .dancing{
   letter-spacing: 1px;
   color: #ffeba7;
   font-size: 25px;
   line-height: 1;
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   transform: translateY(-175px) rotate(-45deg);
   z-index: 2;
   margin-top: 5%;
 }

 /* sonorizations */
 /* .hero-section .dancing span{
   padding: 8px 15px;
   padding-right: 10px;
   display: inline-block;
   border-radius: 5px;
   background-color: rgb(72,78,92);
   margin-top: 10%;
 } */
 
 @media screen and (max-width: 580px){
   .hero-section .dancing{
     font-size: 18px;
   }
 }
 .hero-section p{
   font-size: 20px;
   line-height: 1;
   font-weight: 700;
   color: #ffeba7;
   text-decoration: none;
 }
 .hero-section p span{
   margin-left: 15px;
   margin-right: 15px;
   position: relative;
   display: inline-block;
   cursor: pointer;
 }
 
 body.about-on .hero-section {
   transform: scale(0.75);
   -webkit-transition-delay: 0ms;
   transition-delay: 0ms;
 }
 body.contact-on .hero-section {
   transform: scale(0.75);
   -webkit-transition-delay: 0ms;
   transition-delay: 0ms;
 }
 body.travel-on .hero-section {
   transform: rotateX(-10deg);
   -webkit-transition-delay: 0ms;
   transition-delay: 0ms;
 }
 body.wildlife-on .hero-section {
   transform: rotateX(-10deg);
   -webkit-transition-delay: 0ms;
   transition-delay: 0ms;
 }
 body.nature-on .hero-section {
   transform: rotateX(-10deg);
   -webkit-transition-delay: 0ms;
   transition-delay: 0ms;
 }
 .about-text {
     position: absolute;
     font-size: 35px; 
     color: rgb(34,34,34);
     background-color: white;
     border-radius: 13%;
   line-height: 1;
   font-weight: 700;
   letter-spacing: 2px;
   top: 50%;
   left: 20px;
   cursor: pointer;
   z-index: 2;
   -webkit-writing-mode: vertical-lr;
   writing-mode: vertical-lr;
   transform: translateY(-50%);
   -webkit-transition: all 200ms linear;
   transition: all 200ms linear;
   text-decoration: none;
 }
 .about-text:hover {
   opacity: 1;
   text-decoration: none;

 }



 .works-text{
  font-size: 35px; 
  color: rgb(34,34,34);
  background-color: white;
  border-radius: 13%;
    /* color: white; */
  /* opacity: 0.5;  */
  font-weight: 700;
  text-decoration: none;

 }
 
 .contact-text {
     position: absolute;
     font-size: 35px; 
     color: rgb(34,34,34);
     background-color: white;
     border-radius: 13%;
   line-height: 1;
   font-weight: 700;
   letter-spacing: 2px;
   top: 50%;
   right: 20px;
   cursor: pointer;
   z-index: 2;
   -webkit-writing-mode: vertical-lr;
   writing-mode: vertical-lr;
   transform: translateY(-50%) rotate(180deg);
   -webkit-transition: all 200ms linear;
   transition: all 200ms linear;
   text-decoration: none;
 }

 .contact-text:hover {
   opacity: 1;
   text-decoration: none;
 }
 .contact-section {
     position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   display: block;
   overflow: hidden;
   height: 100vh;
   background-color: #102770;
   transform: translateX(100%);
   -webkit-transition: all 300ms linear;
   transition: all 300ms linear;
   z-index: 10;
   text-decoration: none;
 }
 @media screen and (max-width: 580px){
   .contact-section a{
     font-size: 17px;
   }
   .contact-section .social a{
     margin-left: 3px;
     margin-right: 3px;
     font-size: 13px;
     letter-spacing: 0;
   }
 }
 

 
 

 
 
 @media (max-width: 1200px) {
   .hero-section .dancing{
     font-size: 15px;
     transform: translateY(-80px) rotate(-45deg);
   }
 }
 
 @media (max-width: 967px) {
   .hero-section h1{
     font-size: 11vw;
   }
   .hero-section p{
     font-size: 18px;
   }
   .hero-section p span{
     margin-left: 10px;
     margin-right: 10px;
   }
   .travel-section h3,
   .wildlife-section h3,
   .nature-section h3 {
     font-size: 13vw;
   }
 }




















/* ------------------------------------- BIO --------------------------------- */


 body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

html {
  box-sizing: border-box;
  
}

*, *:before, *:after {
  box-sizing: inherit;
}

.column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
}


.column1 {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
  margin-left: 15%;
}



.column3 {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
  margin-left: 15%;
}

@media screen and (max-width: 767px) {
  .column1 {
    width: 100%;
    margin-left: 0%;
  }

  .column3 {
    width: 100%;
    margin-left: 0%;
  }
}


.card1 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
  background-color: rgb(88,106,165);

}

.about-section1 {
  padding: 50px;
  text-align: center;
  background-color: #5d4947;
  color: white;
  background-color: rgb(88,106,165);
}

.container {
  padding: 0 16px;
  background-color: rgb(88,106,165);
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: grey;
}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: rgb(35,33,59);
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.button:hover {
  background-color: rgb(48, 46, 71);
}

@media screen and (max-width: 750px) {
  .column {
    width: 100%;
    display: block;
  }
}








/* ------------------------------------- WORKS --------------------------------- */


.workcss{
border-radius: 2%;
}


@media screen and (max-width: 650px) {
  .video1{
    width:100%;
    height:230px;
    }
}









/* ---------------------------------------------------- FOOTER ----------------------------------------------------- */

* {
  box-sizing: border-box
}


ul {
  list-style: none
}
a {
  text-decoration: none
}
.generic-anchor {
  color: primary-light-blue;
  &:visited {
    color: primary-light-blue
  }
  &:hover {
    color: primary-line-color
  }
}
.flex-rw {
  display: flex;
  flex-flow: row wrap;
}
/* //This main is mostly to push the footer to the bottom and for demo purposes. */
.main1 {
  flex: 1 1 auto; 
  display: flex;
  align-items: center;
  justify-content: center;
  font: 10em "Oswald", sans-serif;
  color: rgb(155,155,155);
  line-height: 1;
}

footer {
  background: rgb(35, 33, 61);
  margin-top: auto;
  width: 100%
}
.footer-list-top {
  width: 33.333%;
}
.footer-list-top > li {
  text-align: center;
  padding-bottom: 10px;
  font-size: 60%;
}
.footer-list-header {
  /* padding: 25px 0 5px 0; */
  color: #fff;
  font: 2.3vw "Oswald", sans-serif;
  font-size: 250%;
}
.footer-list-anchor {
  font: 1.3em "Open Sans", sans-serif
}
.footer-social-section {
  width: 100%;
  align-items: center;
  justify-content: space-around;
  position: relative;
  margin-top: 5px;
}
.footer-social-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 10px;
  border-top: 1px solid primary-line-color;
  width: calc(100% - 20px)
}
.footer-social-overlap {
  position: relative;
  z-index: 2;
  background: rgb(55,55,55);
  padding: 0 20px
}
.footer-social-connect {
  display: flex;
  align-items: center;
  font: 3.5em "Oswald", sans-serif;
  color: #fff
}
.footer-social-small {
  font-size: 0.6em;
  padding: 0px 20px
}
.footer-social-overlap > a {
  font-size: 3em
}
.footer-social-overlap > a:not(:first-child) {
  margin-left: 0.38em
}
.footer-bottom-section {
  width: 100%;
  padding: 10px;
  border-top: 1px solid primary-line-color;
  margin-top: 10px
}
.footer-bottom-section > div:first-child {
  margin-right: auto
}
.footer-bottom-wrapper {
  font-size: 1.5em;
  color: #fff
}
.footer-address {
  display: inline;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .footer-list-header {
    font-size: 2em
  }
  .footer-list-anchor {
    font-size: 1.1em
  }

  .footer-bottom-wrapper {
    font-size: 1.3em
  }
}
@media only screen and (max-width: 568px) {
  main {
    font-size: 5em
  }
  .footer-list-top {
    width: 100%
  }
  .footer-list-header {
    font-size: 3em;
    /* margin-left: -10%; */
      }
  .footer-list-anchor {
    font-size: 1.5em;
    /* margin-left: -10%; */
  }
  .footer-social-section {
    justify-content: center
  }
  .footer-social-section::after {
    top: 25%;
  }
  .footer-social-connect {
    margin-bottom: 10px;
    padding: 0 10px;
  }
  .footer-social-overlap {
    display: flex;
    justify-content: center;
  }
  .footer-social-icons-wrapper {
    width: 100%;
    padding: 0;
  }
  .footer-social-overlap > a:not(:first-child) {
    margin-left: 20px;
  }
  .footer-bottom-section {
    padding: 0 5px 10px 5px;
  }
  .footer-bottom-wrapper {
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }

}
@media only screen and (max-width: 480px) {
  .footer-social-overlap > a {
    margin: auto
  }
  .footer-social-overlap > a:not(:first-child) {
    margin-left: 0;
  }
  .footer-bottom-rights {
    display: block
  }
}
@media only screen and (max-width: 320px) {
  .footer-list-header {
    font-size: 2.2em
  }
  .footer-list-anchor {
    font-size: 1.2em
  }
  .footer-social-connect {
    font-size: 2.4em
  }
  .footer-social-overlap > a {
    font-size: 2.24em
  }
  .footer-bottom-wrapper {
    font-size: 1.3em
  }
}






/* Toggle this class - hide and show the popup */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 290px;
  background-color: rgba(102,102,102, 0.7);
  color: rgb(246, 244, 231);
  text-align: center;
  border-radius: 6px;
  padding: 1px 0;
  position: absolute;
  z-index: 1;
  bottom: 105%;
  left: -70%;
  margin-left: -80px;
  font-size: medium;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(102,102,102) transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}





@media only screen and (max-width: 480px) {
/* Toggle this class - hide and show the popup */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 120px;
  background-color: rgba(102,102,102, 0.7);
  color: rgb(246, 244, 231);
  text-align: center;
  border-radius: 6px;
  padding: 1px 0;
  position: absolute;
  z-index: 1;
  bottom: 105%;
  left:70%;
  margin-left: -80px;
  font-size: smaller;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(102,102,102) transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}



/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
}






/* -------------------------------------------CONTACTS------------------------------------------ */




@keyframes wave {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.music-card{
  margin: 100px auto;
  background: #fff;
  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  overflow: hidden;
  position: relative;
  /* width: 300px; */
  width: 300px;
  height: 500px;
  border-radius: 6px;
  margin-left: 10%;
  /* margin-left: 3%; */
}

.image .bg1{
  /* background: url('https://www.oreilly.com/api/v2/epubs/9780415840859/files/images/fig12_1.jpg') no-repeat 75%; */
  background-size: cover;  
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  height: 300px;
  width: 300px;
}

.image:after {
  height: 100px;
  content: '';
  top: 200px;
  position: absolute;
  width: 100%;
  z-index: 1;
  background: linear-gradient(rgba(9, 2, 4, 0), #444);
}

.wave {
  position: absolute;
  height: 750px;
  width: 750px;
  opacity: 0.07;
  left: 0;
  top: 0;
  margin-left: -70%;
  margin-top: -140%;
  background: radial-gradient(#740cb5, #2663c4);
}

.wave:nth-child(2),
.wave:nth-child(3) {
  top: 10px;
}

.playing .wave {
  border-radius: 40%;
  animation: wave 3000ms infinite linear;
}
/* when stop */
.wave {
  border-radius: 40%;
  animation: wave 55s infinite linear;
}

.playing .wave:nth-child(2) {
  animation-duration: 4000ms;
}
/* when stop */
.wave:nth-child(2) {
  animation-duration: 50s;
}

.playing .wave:nth-child(3) {
  animation-duration: 5000ms;
}
/* when stop */
.wave:nth-child(3) {
  animation-duration: 45s;
}

.info {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.title {
  font-size: 1.4em;
  font-weight: 400;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: 'Reem Kufi', sans-serif;
}

.artist {
  color: #cfcfcf;
  font-size: 1.2em;
  letter-spacing: 0.08em;
  font-family: 'Reem Kufi', sans-serif;
  margin-top: -10px;
}

.fa {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
  color: #555;
}

.fa-play {
  display: none;
}






.music-card2 {
  margin: 100px auto;
  background: #fff;
  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  overflow: hidden;
  position: relative;
  width: 300px;
  height: 500px;
  border-radius: 6px;
  /* margin-left: 30%; */
  /* margin-left: 28%; */
  margin-top: -40%;
}

.image2 .bg2{
  /* background: url('https://www.oreilly.com/api/v2/epubs/9780415840859/files/images/fig3_1.jpg') no-repeat 75%; */
  background-size: cover;  
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  height: 300px;
  width: 300px;
}

.image2:after {
  height: 100px;
  content: '';
  top: 200px;
  position: absolute;
  width: 100%;
  z-index: 1;
  background: linear-gradient(rgba(9, 2, 4, 0), #444);
}





.music-card3 {
  margin: 100px auto;
  background: #fff;
  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  overflow: hidden;
  position: relative;
  width: 300px;
  height: 500px;
  border-radius: 6px;
  /* margin-left: 53%; */
  margin-left: 71%;
  margin-top: -40%;
}

.image3 .bg3{
  /* background: url('https://www.oreilly.com/api/v2/epubs/9780415840859/files/images/fig3_1.jpg') no-repeat 75%; */
  background-size: cover;  
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  height: 300px;
  width: 300px;
}

.image3:after {
  height: 100px;
  content: '';
  top: 200px;
  position: absolute;
  width: 100%;
  z-index: 1;
  background: linear-gradient(rgba(9, 2, 4, 0), #444);
}






.music-card4 {
  margin: 100px auto;
  background: #fff;
  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  overflow: hidden;
  position: relative;
  width: 300px;
  height: 500px;
  border-radius: 6px;
  /* margin-left: 77%; */
  margin-left: 25%;
  margin-top: 0%;
}

.image4 .bg4{
  /* background: url('https://www.oreilly.com/api/v2/epubs/9780415840859/files/images/fig3_1.jpg') no-repeat 75%; */
  background-size: cover;  
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  height: 300px;
  width: 300px;
}

.image4:after {
  height: 100px;
  content: '';
  top: 200px;
  position: absolute;
  width: 100%;
  z-index: 1;
  background: linear-gradient(rgba(9, 2, 4, 0), #444);
}





.music-card5 {
  margin: 100px auto;
  background: #fff;
  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  overflow: hidden;
  position: relative;
  width: 280px;
  height: 500px;
  border-radius: 6px;
  /* margin-left: 77%; */
  margin-left: 55%;
  margin-top: -40%;
}

.image5 .bg5{
  /* background: url('https://www.oreilly.com/api/v2/epubs/9780415840859/files/images/fig3_1.jpg') no-repeat 75%; */
  background-size: cover;  
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  height: 300px;
  width: 300px;
}

.image5:after {
  height: 100px;
  content: '';
  top: 200px;
  position: absolute;
  width: 100%;
  z-index: 1;
  background: linear-gradient(rgba(9, 2, 4, 0), #444);
}





@media screen and (max-width: 767px) {
  body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
  }
  
  html {
    box-sizing: border-box;
    
  }
  
  *, *:before, *:after {
    box-sizing: inherit; 
  }
  
  
  
  .music-card {
    width: 70%;
    margin-left: auto;
    width: 300px;

  }
  
  .music-card2 {
    width: 70%;
    margin-left: auto;
    margin-top: auto;
    width: 300px;

  }

  .music-card3 {
    width: 70%;
    margin-left: auto;
    margin-top: auto;
    width: 300px;

  }

  .music-card4 {
    width: 70%;
    margin-left: auto;
    margin-top: auto;
    width: 300px;

  }



  .music-card5 {
    width: 70%;
    margin-left: auto;
    margin-top: auto;
    width: 300px;

  }



}


#menuToggle{
  width: 10%;
}





.blob{
	/* transform: scale(0); */
	animation: pulse 2s infinite;
 width:fit-content;
 /* background: red; */
 /* border-radius: 100%; */
 box-shadow: none;
}

/* .animate__heartBeat{
  animation: pulse 2s infinite;
} */





/* ---------------------------------------------------- FAQ --------------------------------------------------------- */


@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,800);

/* body {
  font-family: 'Open Sans';
  font-size:larger;
  background: #eee;
} */

.content {
  width: 80%;
  padding: 20px;
  margin: 0 auto;
  padding: 0 60px 0 0;
  font-family: 'Open Sans';
  font-size:larger;
}

.centerplease {
  margin: 0 auto;
  max-width: 270px;
  font-size: 40px;
}

.question {
  position: relative;
  background: rgba(34,32,58, 1);
  margin: 0;
  padding: 10px 10px 10px 50px;
  display: block;
  width:100%;
  cursor: pointer;
}

.answers {
  background: rgba(92,105,161, 1);
  padding: 0px 15px;
  margin: 5px 0;
  height: 0;
  overflow: hidden;
  /* z-index: -1; */
  position: relative;
  opacity: 0;
  -webkit-transition: .7s ease;
  -moz-transition: .7s ease;
  -o-transition: .7s ease;
  transition: .7s ease;
}

.questions:checked ~ .answers{
  height: auto;
  opacity: 1;
  padding: 15px;
}

.plus {
  position: absolute;
  margin-left: 10px;
  z-index: 5;
  font-size: 2em;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

.questions:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.questions {
  display: none;
}


@media screen and (max-width: 767px){
  .question{
    width:120%;
  }
  .answers{
    width: 125%;
  }

}





/* --------------------SITO IN COSTRUZIONE ------- */



@keyframes ballMovement {
  0% {top:280px;left:40px;}
  5% {top:280px;left:40px;}
  15% {top:35px;left:40px;}
  20% {top:35px;left:110px;}
  22% {top:45px;left:110px;}
  30% {top:74px;left:295px;}
  32% {top:114px;left:295px;}
 40% {top:150px;left:110px;}
 42%{top:194px;left:110px;}
 50%{top:224px;left:290px;}
 52%{top:280px;left:290px;}
 55%{top:280px;left:290px;}
 80%{top:280px;left:40px;}
 100%{top:280px;left:40px;}
}

@keyframes cartMovement {
  0% {right:278px;}
  5% {right:278px;}
 55% {right:18px;}
 80% {right:278px;}
 100% {right:278px;}
}

@keyframes craneMovement1 {
  0% {top:270px;}
  5% {top:270px;}
 15% {top:30px;}
 20% {top:30px;}
 30% {top:30px;}
 50% {top:150px;}
 90% {top:150px;}
 100% {top:270px;}
}

@keyframes lineMovement {
  0% {height:270px;}
 5% {height:270px;}
 15% {height:30px;left:50px;}
 21% {height:30px;left:132px;}
 23% {height:30px;left:132px;}
 30% {height:30px;left:50px;}
 50% {height:150px;}
 90% {height:150px;}
 100% {height:270px;}
}

/* body {
 background-color: white;
} */

.wrapper {
 width:350px;
 height:400px;
 margin:0 auto;
 margin-top:5%;
 position: relative;
 background:radial-gradient(#33ABE3,#59ABE3);
 box-shadow:0 0 15px #000;
}

.wrapper::before {
 content:"";
 position: absolute;
 width:350px;
 height:75px;
 bottom:0;
 left:0;
 background:linear-gradient(#EB9532, #D35400);
}

.wrapper::after {
 content:"";
 position: absolute;
 width:80px;
 height:290px;
 border-right:20px solid gray;
 border-left:20px solid gray;
 left:150px;
 bottom:75px;
 opacity:0.3;
}

.bar1 {
 width:170px;
 height:20px;
 background-color:#EF4836;
 position: absolute;
 left:115px;
 top:80px;
 z-index:2;
 transform:rotate(10deg);
}

.bar1::before {
 content:"";
 position: absolute;
 top:4px;
 left:0;
 width:170px;
 height:12px;
 background-color:#C0392B;
}

.bar2 {
 width:170px;
 height:20px;
 background-color:#EF4836;
 position: absolute;
 left:140px;
 top:155px;
 z-index:2;
 transform:rotate(-10deg);
}

.bar2::before {
 content:"";
 position: absolute;
 top:4px;
 left:0;
 width:170px;
 height:12px;
 background-color:#C0392B;
}

.bar3 {
 width:180px;
 height:20px;
 background-color:#EF4836;
 position: absolute;
 left:105px;
 top:230px;
 z-index:2;
 transform:rotate(10deg);
}

.bar3::before {
 content:"";
 position: absolute;
 top:4px;
 left:0;
 width:180px;
 height:12px;
 background-color:#C0392B;
}

.cart {
 position: absolute;
 border-bottom: 30px solid #34495E;
 border-left: 10px solid transparent;
 border-right: 10px solid transparent;
 height: 0;
 width: 30px;
 transform:rotate(180deg);
 top:290px;
 right:25px;
 animation: cartMovement 8s linear infinite;
 z-index:5;
}

.cart::before {
 content:'';
 position: absolute;
 width:15px;
 height:15px;
 border-radius:50%;
 background-color:#67809F;
 top:-7px;
 right:18px;
}

.cart::after {
 content:'';
 position: absolute;
 width:15px;
 height:15px;
 border-radius:50%;
 background-color:#67809F;
 top:-7px;
 right:-4px;
}

.line {
 width:3px;
 height:270px;
 background-color:gray;
 position: absolute;
 left:50px;
 top:0;
 animation: lineMovement 8s linear infinite;
}

.line::before {
 content:"";
 position: absolute;
 left:-19px;
 width: 0;
 height: 0;
 border-left: 20px solid transparent;
 border-right: 20px solid transparent;
 border-top: 20px solid #C0392B;
}

.claw {
 position: absolute;
 top:270px;
 left:-16px;
 width:26px;
 height:20px;
 border-top:6px solid #F5AB35;
 border-left:6px solid #F5AB35;
 border-right:6px solid #F39C12;
 animation: craneMovement1 8s linear infinite;
}

.ball {
 position: absolute;
 width:25px;
 height:25px;
 background-color:#2C3E50;
 border-radius:50%;
 top:280px;
 left:40px;
 animation: ballMovement 8s linear infinite;
 z-index:4;
}





/* ___________________________Divider____________________ */






/* ___________________________________--____________-Form_________________ */


