@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
 body{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background:#000;
}
.hero{
  margin-top:0px;
  width:100%;
  height:100%;
  background:linear-gradient(rgba(0,0,0,0.1),#111526),url("bg.jpg");
  background-size: cover;
  background-position: center;
  
}
nav{
  top:-100px;
  transition:0.5s;
  font-family: 'Poppins', sans-serif;
  padding: 0 50px 0 50px;
  background:#000;
  box-shadow: 0 0 10px  #000;
}
.line {
  fill: none;
  stroke: white;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
button{
  margin-right: 25px;
  margin-top: 2px;
  background: none;
  border: none;
  color: #fff;
}
ul li a{
  margin-left: 30px;
}

.loader {
  margin-top: 90%;
  margin-left: 45%;
  --cell-size: 22px;
  --cell-spacing: 1px;
  --cells: 3;
  --total-size: calc(var(--cells) * (var(--cell-size) + 2 * var(--cell-spacing)));
  display: flex;
  flex-wrap: wrap;
  width: var(--total-size);
  height: var(--total-size);
}

.cell {
  flex: 0 0 var(--cell-size);
  margin: var(--cell-spacing);
  background-color: transparent;
  box-sizing: border-box;
  border-radius: 4px;
  animation: 1.5s ripple ease infinite;
}

.cell.d-1 {
  animation-delay: 100ms;
}

.cell.d-2 {
  animation-delay: 200ms;
}

.cell.d-3 {
  animation-delay: 300ms;
}

.cell.d-4 {
  animation-delay: 400ms;
}

.cell:nth-child(1) {
  --cell-color: #00FF87;
}

.cell:nth-child(2) {
  --cell-color: #0CFD95;
}

.cell:nth-child(3) {
  --cell-color: #17FBA2;
}

.cell:nth-child(4) {
  --cell-color: #23F9B2;
}

.cell:nth-child(5) {
  --cell-color: #30F7C3;
}

.cell:nth-child(6) {
  --cell-color: #3DF5D4;
}

.cell:nth-child(7) {
  --cell-color: #45F4DE;
}

.cell:nth-child(8) {
  --cell-color: #53F1F0;
}

.cell:nth-child(9) {
  --cell-color: #60EFFF;
}

/*Animation*/
@keyframes ripple {
  0% {
    background-color: transparent;
  }

  30% {
    background-color: var(--cell-color);
  }

  60% {
    background-color: transparent;
  }

  100% {
    background-color: transparent;
  }
}
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url("disco.jpg") center center no-repeat;
    background-size: cover;
}

@font-face{
  font-family:rays;
  src:url("nasalization-rg.otf")
}

.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 64px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #73C0FC;
  transition: .4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  border-radius: 20px;
  left: 2px;
  bottom: 2px;
  z-index: 2;
  background-color: #e8e8e8;
  transition: .4s;
}

.sun svg {
  position: absolute;
  top: 6px;
  left: 36px;
  z-index: 1;
  width: 24px;
  height: 24px;
}

.moon svg {
  fill: #73C0FC;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
  width: 24px;
  height: 24px;
}

/* .switch:hover */.sun svg {
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
 
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* .switch:hover */.moon svg {
  animation: tilt 5s linear infinite;
}

@keyframes tilt {
 
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.input:checked + .slider {
  background-color: #183153;
}

.input:focus + .slider {
  box-shadow: 0 0 1px #183153;
}

.input:checked + .slider:before {
  transform: translateX(30px);
}

.cardo {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  height: 360px;
  width: 200px;
  border-radius: 20px;

}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* Add some padding inside the card container */
.con {
  padding: 3px 16px;
  margin-top: 10px;
}



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

  #img {
    width:95px;
    height: 90px;
    object-fit:contain;
    align-items: center;
    
    
  }
  .con{
    font-size: 8px;
  }
  b{
    font-size: 13px;
    margin-right: 30px
  }
  #cardo{
    height: 228px;
  }
  #conss{
    height: 250px;
  }
  #h4{
    text-align: left;
    font-size: 12px;
  }
  
    .loader {
      margin-top: 90%;
      margin-left: 40%;
    }
    
  
}
@media only screen and (max-width: 992px) {

  #img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    align-items: center;

  }
  #btno{
    margin-left: 45px;
  }

  
}
span{
  color: yellow;
}

input[type=text],[type=email], [type=tel],select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #fff; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; 
  background: #000;
  color: #fff;/* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color:blue;
  color: white;
  padding: 12px 20px;
  
  border:none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
 box-shadow: 0 0 10px blue;
}
span{
  color: red;
}
footer{
  width: 100%;
  height: 50px;
  background: #000;
}

#log{
  padding-bottom: 20px;
}
#sub{
  width: 150px;
  border-radius: 20px;
  color:orangered;
  margin-bottom: 15px;
  border: 1px solid orangered;
}
#sub:hover{
  color: #fff;
}
footer {
  
 
  bottom: 0;

  left: 0;

  right: 0;

  background: #000;

  height: 250px;

  width: 100%;

  padding-top: 20px;

  color: #fff;
}

.footer-content {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;
}
#imgs{
  border-radius: 20px;
  
}
#cardi{
  width: 210px;
}
.socials .so{
  display: -webkit-inline-box;
  margin: 4px;
  color: orangered;
  margin-right: 30px;
}
#spn{
        color: white;
}