@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  
}

.buttn {
  background: linear-gradient(90deg,#83dbfd,#955bfd);
  -webkit-border-radius: 60px;
  border-radius: 10px;
  padding: 30px 100px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
}
.buttn {
  animation: glowing 1300ms infinite;
}
@-webkit-keyframes glowing {
  0% {
    background-color: #0091b2;
    -webkit-box-shadow: 0 0 3px #0091b2;
  }
  50% {
    background:  linear-gradient(#955bfd,#fd8efd);
    -webkit-box-shadow: 0 0 40px #21c7ed;
  }
  100% {
    background-color: #0091b2;
    -webkit-box-shadow: 0 0 3px #0091b2;
  }
}
@keyframes glowing {
  0% {
    background-color: #0091b2;
    box-shadow: 0 0 3px #0091b2;
  }
  50% {
    background:  linear-gradient(#955bfd,#fd8efd);
    box-shadow: 0 0 40px #21c7ed;
  }
  100% {
    background-color: #0091b2;
    box-shadow: 0 0 3px #0091b2;
  }

}

body {
	background: linear-gradient(-45deg, #955bfd,#fd8efd,#83dbfd);
	background-size: 400% 400%;
	animation: gradient 80s ease infinite;
	height: 100vh;
  background-image: url(monti4.png);
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

section
{
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 100px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  
}

header ul
{
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li
{
  list-style: none;
  margin-left: 20px;
}
header ul li a
{
  text-decoration: none;
  
  color: #fff;
  border-radius: 20px;
}

header ul li a:hover
{
  background: linear-gradient(#83dbfd,#955bfd);
  color: #c422c4;
  border-radius: 60px;
}
section:before
{
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;

  z-index: 1000;
}
section img
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
section img#moon
{
  mix-blend-mode: screen;
}
section img#mountains_front
{
  z-index: 10;
}
h2#text
{
  position: absolute;
  color: #fff;
  font-family: 'UnifrakturMaguntia', cursive;
  right: -350px;
  white-space: nowrap;
  font-size: 5.5vw;
  transform: translateY(0px);
}
#btn
{
  
  padding: 8px 30px;
  border-radius: 40px;
  background: linear-gradient(90deg,#83dbfd,#955bfd);
  transform: translateY(100px);
  
  z-index: 9;
  color: #eeeeee;
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
}

#btn {
  animation: glowing 1300ms infinite;
}

#btn:hover
{
  background: linear-gradient(#83dbfd,#955bfd);
  color: #ff56ff;
  border-radius: 60px;
}
.sec
{
  position: relative;
  min-height: 500px;
  padding: 100px;
  background: linear-gradient(-45deg, #955bfd,#fd8efd,#75d8ff);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	overflow: hidden;
  
}
.sec h2
{
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana,
    "sans-serif";
    display:inline-block;
    float:none;
    width:100%;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;
  color: #fff;
  
}
.sec p
{
  font-size: 1.2em;
  color: #fff;
}

a
{
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 24px;
    overflow: hidden;
    transition: 0.1s;
}
a:hover
{
  color: #ff56ff;
    background:  linear-gradient(#955bfd,#fd8efd);
    transition-delay: 0.2s;
    box-shadow: 0 0 10px #83dbfd, 0 0 40px #eb52ff, 0 0 80px #ffffff;
}
a span
{
    position: absolute;
    display: block;
}
a span:nth-child(1)
{
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#2196F3);
}
a:hover span:nth-child(1)
{    color: #ff56ff;
    left: 100%;
    transition: 0.2s;
}
a span:nth-child(3)
{
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,#2196F3);
}
a:hover span:nth-child(3)
{    color: #ff56ff;
    right: 100%;
    transition: 0.2s;
    transition-delay: 0.2s;
}
a span:nth-child(2)
{
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#2196F3);
}
a:hover span:nth-child(2)
{   color: #ff56ff;
    top: 100%;
    transition: 1s;
    transition-delay: 0.25s;
}
a span:nth-child(4)
{
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#ff32f5);
}
a:hover span:nth-child(4)
{
  color: #ff56ff;
    bottom: 100%;
    transition: 1s;
    transition-delay: 0.75s;
}





* {
  box-sizing: border-box;
  color: #fff;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana,
    "sans-serif";
    
}



*:focus {
  outline: 0;
}

.wrapper {
  margin: 100px auto 0;
  width: 70%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  padding: 8px 30px;
  border-radius: 40px;
}

form {
  width: 100%;
  margin: 0;
  padding: 8px 30px;
  border-radius: 40px;
}

form * {
  font-size: 20px;
  letter-spacing: 0.075em;
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  padding: 8px 30px;
  border-radius: 40px;
  
}

form .field {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  
}

form .field label {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg,#83dbfd,#955bfd);
  width: 100%;
  height: 64px;
  transition: width 333ms ease-in-out;
  text-align: center;
  padding: 8px 30px;
  border-radius: 40px;
}

form .field input[type="text"],
form .field textarea {
  border: none;
  width: 100%;
  height: 64px;
  margin: 0;
  padding-left: 19.5%;
  color: #313a3d;
}

form #comment {
  height: 64px;
  resize: none;
  transition: all 333ms ease-in-out;
  padding-top: 18px;
}
form textarea:focus#comment,
form textarea:not(:placeholder-shown)#comment {
  height: 166px;
}
form input[type="text"]:focus + label,
form input[type="text"]:not(:placeholder-shown) + label,
form textarea:focus + label,
form textarea:not(:placeholder-shown) + label,
form .field:hover label {
  width: 18%;
}
form input[type="submit"] {
  background: linear-gradient(90deg,#83dbfd,#955bfd);
  border: none;
  position: relative;
  padding: 13px 50px;
  transition: all 0.3s ease-in-out;
}
form input[type="submit"]:hover,
form input[type="submit"]:focus {
  background: linear-gradient(#fb8afd,#a361fb)
}



p{
  font-family: 'Teko', sans-serif;
  font-size: 21px;
}




ul#book li {
  display: inline;
}


h1{
  
  border-bottom: #777;
  padding: 20px 60px;
  font-family: 'Teko', sans-serif;
  color:#ffffff;
}


@import url(https://fonts.googleapis.com/css?family=Montserrat:700);
#path{
  align-content: center;
  
}

svg{
  width:100%;
}

@media (max-width: 992px)
{
  #header
  {
    padding: 20px;
  }
  #header .logo
  {
    font-size: 1.5em;
  }
  #header ul
  {
    display: none;
  }
  #header ul.active
  {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-image: url(cristalli2.png);
  }
  #header ul li
  {
    margin-left: 0;
  }
  #header ul li a
  {
    margin: 5px 0;
    font-size: 1.5em;
    border-radius: 30px;
    display: inline-block;
  }
  .toggle
  {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(menu.png);
    background-size: 30px;
 
    background-position: center;
    background-repeat: no-repeat;
    z-index: 100;
  }
  .toggle.active
  {
    position: fixed;
    top: 20px;
    right: 20px;
    background: url(close.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
  }
 #btn{
  font-size: 1em;
  
  
 }
 
 section img#mountains_front
  {
    transform: translateY(-4x);
  }
  .sec
  {
    padding: 20px;
  }
  .sec h2
  {
    font-size: 1.5em;
  }

  
.wrapper {
  width: 100%;
    margin-top: 0;
    
}
form{
  width: 100%;
    margin-top: 0;
}
form * {
  width: 100%;
    margin-top: 0;
  
}

form .field {
  width: 100%;
    margin-top: 0;
    color: white;
}

form .field label {
  width: 100%;
    margin-top: 0;
}



}


@font-face {
  font-family: Clip;
  src: url("https://acupoftee.github.io/fonts/Clip.ttf");
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}
html *,
html *:before,
html *:after {
  box-sizing: inherit;
}



.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 100px 0 70px;
}

.card {
  width: 300px;
  margin: 40px;
  background-color: white;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.card:hover .card__caption {
  top: 50%;
  transform: translateY(-50%);
}
.card:hover .card__image {
  transform: translateY(-10px);
}
.card:hover .card__thumb::after {
  top: 0;
}
.card:hover .card__snippet {
  margin: 20px 0;
}
.card__thumb {
  position: relative;
  max-height: 400px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .card__thumb {
    max-height: 500px;
  }
}
.card__thumb::after {
  position: absolute;
  top: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 40%, rgba(255, 255, 255, 0) 100%);
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .card__thumb::after {
    top: calc(100% - 140px);
  }
}
.card__image {
  transition: 0.5s ease-in-out;
}
.card__caption {
  position: absolute;
  top: 50%;
  z-index: 1;
  padding: 0 20px;
  color: white;
  transform: translateY(-50%);
  text-align: center;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .card__caption {
    top: calc(100% - 110px);
    transform: unset;
  }
}
.card__title {
  display: -webkit-box;
  max-height: 95px;
  overflow: hidden;
  font-family: 'Teko', sans-serif;
  font-size: 40.5px;
  line-height: 33px;
  text-shadow: 0px 1px 5px black;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card__snippet {
  display: -webkit-box;
  max-height: 150px;
  margin: 20px 0;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-overflow: ellipsis;
  transition: 0.5s ease-in-out;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media (min-width: 1024px) {
  .card__snippet {
    margin: 60px 0;
  }
}
.card__button {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border: 1px solid white;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
.card__button:hover {
  color: black;
  background-color: white;
}

.disclaimer {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 10px;
  background-color: white;
  transform: translateX(-50%);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  text-align: center;
}
.disclaimer__link {
  color: #755D87;
  text-decoration: none;
}




iframe{
  /* video border */
    border: 1px solid #ccc;
    padding: 20px;
    margin: 10px;
    border-radius: 20px;
    /* tranzitionstransitions applied to the vodeovideo element */
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
 }
 /* background color and gradient */
 video, #start, #stop, #pause, #plus, #minus, #mute {
  /* background color */
    background-color: #ffcccc;
    /* background gradient */
    background-image: linear-gradient(top, #fff, #fcc);
    background-image: -moz-linear-gradient(top, #fff, #fcc);
    background-image: -webkit-linear-gradient(top, #fff, #fcc);
    background-image: -o-linear-gradient(top, #fff, #fcc);
    background-image: -ms-linear-gradient(top, #fff, #fcc);
 }
 /* shadows */
 iframe, #start, #stop, #pause, #plus, #minus, #mute {
    box-shadow: 0 0 10px #ccc;
 }
 iframe:hover, iframe:focus, #start:hover, #stop:hover, #pause:hover, #plus:hover,
 #minus:hover, #mute:hover {
  /* glow */
   box-shadow: 0 0 20px #f88;
 }
 footer
 {
   text-align: center;
   
   text-shadow: 2px 2px rgba(255, 84, 255, 0.801), 3px 3px 2px rgba(138, 149, 151, 0.603);
        /* (A1) FIXED AT BOTTOM */
  position: relative;
  bottom: 0;
  left: 0;
  /* (A2) DIMENSIONS */
  width: 100%;
  height: 20px;
  padding: 0 5px;
  /* (A3) CENTER TEXT */
  display: flex;
  align-items: center;
  justify-content: center;

}
