@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300&family=Poppins:wght@200;800&family=Special+Elite&display=swap');

*{
  margin: 0;
  padding:0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  overscroll-behavior: scroll;

}
html{
  overflow-x: hidden;
}

body {
  background: #111;
  overflow-x: hidden;
  cursor: url(Cursor/Cursor.png), pointer;
}

/*Navigation*/
header {
  position: fixed;
  top:0;
  left:0;
  width:99%;
  display:flex;
  justify-content:space-between;
  align-items: center;
  transition: 1s;
  padding:15px 100px;
  z-index: 1000000;
  background: transparent;


}

header .logo {
  position: relative;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  font-size: 1.5em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  padding:5px 0px;
}

/* header ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;


}

header ul li {
position: relative;
list-style: none;
} */

a{
  text-decoration: none;
}

header ul li a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  letter-spacing: 2px;
  font-weight: 500px;
  transition: 1s;
  font-family: 'Poppins', sans-serif;
 position: sticky;

}

header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  color: #000;
  background:#DCDCDC;
  box-shadow: 0 15px 20px rgba(0,0,0,0,0.1);
}
header.sticky nav .menu-toggle{
  background: #ccc;
}
header.sticky nav .menu{
  background: inherit;
}

header.sticky .logo {
  color: #111;
}

header.sticky ul li a {
  color: #111;
}
@media screen and (max-width: 500px) {
  header{
    padding: 12.5px 20px
  }
  .container{
    padding: 100px 20px;
  }
  img{
    padding: 0px 20px;
  }

}

/*Scroll bar*/
::-webkit-scrollbar {
  width: 0;
  z-index: 1000000000000000000;
}
#scrollPath{
  position: fixed;
  top:0;
  right: 0;
  width: 10px;
  height:100%;
  background: rgba(255,255,255,0.05);
}

#progressbar {
  position: fixed;
  top:0;
  right: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(to top, #008aff,#00ffe7);
  animation: animato 5s linear infinite;
  z-index: 1000000000000000000;
  border-radius:5%;
}

@keyframes animato {
  0%{
      filter: hue-rotate(0deg);
  }
  50%{
    filter:hue-rotate(360deg);
  }
  100%{
      filter: hue-rotate(120deg);
  }
}

#progressbar:before {
  content:'';
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height:100%;
  background: linear-gradient(to top, #008aff,#00ffe7);
  filter: blur(30px);
}

/*Hero*/
section{
  position: relative;
  width: 100%;

  height: 150vh;
  overflow: hidden;
  background: #111;
}

.text {
  position: relative;
  transform: skewY(345deg) translateY(-100px);
  animation: animateColor 5s linear infinite;
}



@keyframes animateColor {
  0%{
    filter: hue-rotate(0deg);
  }
  100%{
    filter: hue-rotate(360deg);
  }
}
.text h2 {
  position: relative;
  width: 100%;
  font-size: 8em;
  color: #fff;
  pointer-events: none;
  line-height: 1em;
  white-space: nowrap;
  text-shadow: calc(var(--x)) 100px 0 rgba(255, 255, 255, 0.1);
  transform: translateX(calc(0% - var(--x) * 2));
}

.text  h2 span {
  color: #0f0;
  margin: 0 10px;
}

.text h2 span:nth-child(even){
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

b{
  font-weight: 400;
  margin-bottom: 17px;
}

/* picture animation */
.box {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: animate 20s linear infinite;
  animation-play-state: running;
}

.box:hover {
  animation-play-state: paused;
}

.box1 {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: animate 20s linear infinite;
  animation-play-state: running;
}

.box1:hover {
  animation-play-state: paused;
}

@keyframes animate {
  0%{
    transform: perspective(1000px) rotateY(0deg);
  }
  100%{
    transform: perspective(1000px) rotateY(360deg);
  }
}

section1 {
   background-color: #111;
}

.box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 45deg))translateZ(400px);
  background-color: #111;
}

.box span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box1 span {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 45deg))translateZ(-400px);
  background-color: #111;
}

.box1 span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img{
  width:  250px;
    height: 250px;
    object-fit: cover;
}

/*My Art*/
.container1{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.container1 .box2{
  transform-style: preserve-3d;
  animation: animata 25s linear infinite;
}

@keyframes animata {
  0%{
    transform: perspective(1000px) rotateX(0deg) rotate(25deg);
  }

  100% {
    transform: perspective(1000px) rotateX(360deg) rotate(25deg);
  }
}

.container1 .box2 span {
  position: absolute;
  color:rgb(208, 253, 253);
  font-size: 3.35em;
  white-space: no-wrap;
  text-transform: Uppercase;
  font-weight: 900;
  transform-style: preserve-3d;
  text-shadow: 0 5px 15px rgba(0,0,0,0.25);
  transform: translate(-50%,-50%) rotateX(calc(var(--i) * 22.5deg)) translateZ(100px);
}

.container1 .box2 span i:nth-child(1) {
  font-style: initial;
  color: cadetblue;
  line-height: 15px;
}

.container1 .box2 span i:nth-child(2) {
  font-style: initial;
  color:rgb(208, 253, 253);
}

/*Art classes*/

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  flex-wrap:wrap;
  z-index: 1;
}

.container .card {
  position: relative;
  width: 325px;
  height: 450px;
  margin: 30px;
  box-shadow: 50px 50px 50px rgba(0,0,0,1.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.container .card .content {
  padding: 20px;
  text-align: left;
  transition: 0.5s;
}

.container .card .content h3 {
  position: absolute;
  top: -40px;
  font-size: 11em;
  color: rgba(255, 255, 255, 0.05);
}


.container .card .content h4 {
  font-size: 1.2em;
  color: #fff;
  font-weight: 800;
  transform: translateY(-50px);
    transition: 0.5s;
}

.container .card .content h5 {
  font-size: 0.9em;
  color: #fff;
  font-weight: 300;
    transform: translateY(-40px);
    transition: 0.5s;
}
#myBtn{
  color: #FFF;
  border: 1px solid cadetblue;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

#myBtn:hover {
  box-shadow: inset 400px 0 0 0 cadetblue;
}

#myBtn1{
  color: #FFF;
  border: 1px solid cadetblue;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

#myBtn1:hover {
  box-shadow: inset 400px 0 0 0 cadetblue;
}

#myBtn2{
  color: #FFF;
  border: 1px solid cadetblue;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

#myBtn2:hover {
  box-shadow: inset 400px 0 0 0 cadetblue;
}

#myBtn3{
  color: #FFF;
  border: 1px solid cadetblue;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

#myBtn3:hover {
  box-shadow: inset 400px 0 0 0 cadetblue;
}

#myBtn4{
  color: #FFF;
  border: 1px solid cadetblue;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

#myBtn4:hover {
  box-shadow: inset 400px 0 0 0 cadetblue;
}

#myBtn5{
  color: #FFF;
  border: 1px solid cadetblue;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

#myBtn5:hover {
  box-shadow: inset 400px 0 0 0 cadetblue;
}

#myBtn6{
  color: #FFF;
  border: 1px solid cadetblue;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

#myBtn6:hover {
  box-shadow: inset 400px 0 0 0 cadetblue;
}

#myBtn7{
  color: #FFF;
  border: 1px solid cadetblue;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

#myBtn7:hover {
  box-shadow: inset 400px 0 0 0 cadetblue;
}
.buetton{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

.buetton1{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton1:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

    .buetton2{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton2:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

    .buetton3{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton3:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

    .buetton4{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.-4:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

    .buetton5{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton5:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

    .buetton6{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton6:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal1 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content1 {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal2 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content2 {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal3 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content3{
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal4{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content4 {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal5 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content5 {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal6 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content6 {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal7 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content7 {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.close1 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close1:hover,
.close1:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.button{
  position: relative;
  display: inline-flex;
  width: 180px;
  height: 55px;
  margin: 0 15px;
  perspective: 1000px;
  cursor: pointer;
}
.button a{
  font-size: 19px;
  letter-spacing: 1px;
  transform-style: preserve-3d;
  transform: translateZ(-25px);
  transition: transform .25s;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;

}
.button a:before,
.button a:after{
  position: absolute;
  content: "REGISTER";
  height: 55px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-sizing: border-box;
  border-radius: 5px;
}
.button a:before{
  color: #fff;
  background: #000;
  transform: rotateY(0deg) translateZ(25px);
}
.button a:after{
  color: #fff;
  transform: rotateX(90deg) translateZ(25px);
}
.button a:hover{
  transform: translateZ(-25px) rotateX(-90deg);
}

/*scroll to top*/
.scroll-top {
  height: 60px;
  width: 60px;
  background-color: white;
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.336);
  /* hover effect default */
  transform: scale(0.9);
  transition: 0.3s ease-in-out transform;
  /* for centering the icon */
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top svg {
  width: 200%;
  z-index: 10000000;
  color: black;
  pointer-events: none;
}

.scroll-top:hover {
  transform: scale(1);
}


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

nav {
	width: 100%;
}
nav .navbar {
	margin:0 auto
}
nav .logo {
	float: left;
	display: inline-block;
}
nav .menu-toggle {
	cursor: pointer;
	display: none;
	float: right;
	padding: 12px;
	margin: 10px 0;
	transition: background-color .5s
}
nav .icon-bar {
	background-color: #fff;
	display: block;
	width: 22px;
	height: 2px
}
nav .icon-bar + .icon-bar { margin-top: 4px }

nav .menu ul { float: right }
nav .menu li {
	float: left;
	list-style: none;
}
nav .menu li:first-child { border-left: 0 }
nav .menu li a{
	color: #fff;
	cursor: pointer;
	position: relative;
	display: block;
  padding: 12px 0px;
	margin: 0 15px;
	transition: background-color .3s
}

@media(max-width:992px) {
	nav .logo { padding-top: 8px }
	nav .menu-toggle { display: inline-block }
	nav .menu { display: none; clear: both; background: rgba(19, 17, 17, 0.42) none repeat scroll 0% 0%;
min-height: 250px; }
	nav .menu > ul { float: none }
	nav .menu li { width: 100%; border: 0 }
	nav .menu li:last-child { margin: 0 0 15px 0 }
	nav .menu li a{
		display: block;
		padding: 10px;
		margin: 2px 0 0 0
	}
  
  @media(hover: hover) and (pointer: fine) {
  .container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  flex-wrap:wrap;
  z-index: 1;
}


.container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  flex-wrap:wrap;
  z-index: 1;
}

.container .card {
  position: relative;
  width: 325px;
  height: 450px;
  margin: 30px;
  box-shadow: 50px 50px 50px rgba(0,0,0,1.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.container .card .content {
  padding: 20px;
  text-align: left;
  transition: 0.5s;
}

.container .card .content h3 {
  position: absolute;
  top: -40px;
  font-size: 11em;
  color: rgba(255, 255, 255, 0.05);
}


.container .card .content h4 {
  font-size: 1.2em;
  color: #fff;
  font-weight: 800;
  transform: translateY(-50px);
    transition: 0.5s;
}

.container .card .content h5 {
  font-size: 0.9em;
  color: #fff;
  font-weight: 300;
    transform: translateY(-40px);
    transition: 0.5s;
}

.buttone{
  color: #FFF;
  border: 1px solid cadetblue;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
#myBtn{
  color: #FFF;
  border: 1px solid cadetblue;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

#myBtn:hover {
  box-shadow: inset 400px 0 0 0 cadetblue;
}

.buetton{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

.buetton1{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton1:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

    .buetton2{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton2:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

    .buetton3{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton3:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

    .buetton4{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.-4:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

    .buetton5{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton5:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}

    .buetton6{
  color: #000;
  border: 1px solid black;
  border-radius: 0px;
  padding: 12px 16px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  box-shadow: #fff;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  text-decoration: none;
}

.buetton6:hover {
  box-shadow: inset 400px 0 0 0 black;
  color: white;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;

}

@media (max-width: 575px){
  .text{
    transform: skewY(345deg) translateY(40px) !important;
  }
  .text h2{
    font-size: 4rem !important;
  }
}
