body {
    background-color: black;
    margin: auto;
    padding: auto;
    overflow-x: hidden;
}



/* Lynx Main Page */


.lynx-main-f {
  
}

.wel {
      background: -webkit-linear-gradient(45deg, rgb(255, 49, 193), rgb(48, 224, 255));
    font-size: 1.4em;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
    margin-top: 500px;
    font-family: Aeonik-Reg, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.text-wrap {
    width: fit-content;
    width: calc(100% - 200px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.text-wrap2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.lynx-main-f {
    width: calc(100% - 80px);
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.LynxLogo {
    width: 97px;
}

.logo-wrap {
   
}

.navi {
    
    font-family: Aeonik-Medium;
    color: white;
    margin-left: auto;
    margin-right: auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.reg-div {
    font-family: Aeonik-Medium;
    color: white;
    margin-top: 30px;
    font-family:Aeonik-Medium, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

ul {
    margin-top: 40px;
}

li {
    text-decoration: none;
    list-style-type: none;
    display: inline;
    padding: 20px;
}

.nav-link {
    color: white;
    font-family:  Aeonik-light, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: none;
}

.register {
    font-family: Aeonik-light;
    color: white;
    background-color: #fb1aff00;
    width: 200px;
    height: 40px;
    color: white;
    border-style: solid;
    border-image: linear-gradient(to right, #FA1AFF, #29FFE5) 1;
    transition: 300ms ease-in-out;
}
.register1 {
    font-family: Aeonik-light;
    color: white;
    background-color: #fb1aff00;
    width: 200px;
    height: 40px;
    color: white;
    border-style: solid;
    border-image: linear-gradient(to left, #FA1AFF, #29FFE5) 1;
    transition: 300ms ease-in-out;
    margin-right: 10px;
}

.register1:hover {
    border-image: linear-gradient(to right, #1ac2ff, #fb29ff) 1;
}

.register:hover {
    
    border-style: solid;
    border-image: linear-gradient(to right, #1ac2ff, #fb29ff) 1;
}


.Main-Header-div  {
    animation: slide 2s;
    width: calc(95% - 50px);
    height: 600px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    background-image: url(/asset/Group\ 12.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px 0px 0px;
    backdrop-filter: blur(5px);
}

.wrap-div {
    width: 100%;
    height: 450px;
    margin-left: 80px;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
}

.wrap-main {
    font-size: larger;
    width: 560px;
    height: 450px;
    margin-left: 50px;
    font-family: Aeonik;
}

.para-info {
    font-size: 18px;
    opacity: 50%;
    font-family: Aeonik-light;
}

.DemoBtn {
    width: 200px;
    height: 50px;
    background-image: linear-gradient(45deg,#FA1AFF, #68ffed);
    border: none;
    color: white;
    font-family: Aeonik-reg;
    font-size: 15px;
    font-weight: 100;
    transition: 300ms ease;
}

.DemoBtn:hover {
    background-image: linear-gradient(white, white);
    color: black;
}
.Learn-More {
    font-family: Aeonik-light;
    color: white;
    background-color: #fb1aff00;
    width: 200px;
    height: 50px;
    color: white;
    border-style: solid;
    border-image: linear-gradient(45deg, #29FFE5, #FA1AFF ) 3;
    transition: 300ms ease;
    font-family: Aeonik-reg;
}

.Learn-More:hover {
    background-color: white;
    color: black;
    border-image: linear-gradient(white, white);
}

.cards-div {
    background-color: #ffffff16;
    margin-left: 50px;
    width: 700px;
    height: 450px;
    display: flex;
    justify-content: space-evenly;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap'); 

/* Card Flip */

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    width: 280px;
    height: 200px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }
  
  /* This container is needed to position the front and back side */
  .flip-card-inner {
    position: relative;
    width: 280px;
    height: 200px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 280px;
    height: 200px;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
  }
  
  /* Style the front side (fallback if image is missing) */
  .flip-card-front {
    background-color: rgba(0, 0, 0, 0.399);
    color: black;
  }
  
  /* Style the back side */
  .flip-card-back {
    background-color: rgba(0, 0, 0, 0.549);
    color: white;
    transform: rotateY(180deg);
  }

  .card-front-wrap {
    margin-top: 50px;
  }

  .bene {
    color: white;
  }

  .secondary-c-div {
    width: 40%;
    height: 90%;
    margin-left: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    
  }
  .cards-v-wrap {
    width: 40%;
    height: 90%;
    margin-left: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;

  }

  .para-wrap {
    font-family: Aeonik-Light;
    margin-top: 50px;
    width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .desc-bene {
    font-family: Poppins;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 300;
  }

  .bene-h {
    font-family: Poppins;
    font-size: 20px;
    color: white;
    text-decoration: none;
    
  }

  .ben-p {
    color: rgb(255, 255, 255);
  
    font-family: Poppins;
    font-size: 12px;
    font-weight: 300;

  }

  .boldlink {
    font-family: Poppins;
    background: -webkit-linear-gradient(60deg, rgb(225, 89, 255), rgb(64, 217, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .bene {
    font-family: Poppins;
    font-weight: 400;
  }
/* Support */
.support {
    transition: 300ms ease;
    width: 100%;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}

.support:hover {
    width: 105%;
}

.con-sprt {
    
    width: calc(230px - 40px);
    margin-left: auto;
    margin-right: 50px;
    position: fixed;
    bottom: 1%;
    left: 85%;
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}


/* Vision Goal */

.headingwrap {
    width: calc(660px - 50px);
    height: 70px;
    margin-top: 150px;
    margin-left: auto;
    margin-right: auto;
}
.headingwrap1 {
    width: calc(600px - 50px);
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    font-family: Aeonik;
   
}

.vision {
    text-align: center;
    font-size: 50px;
    letter-spacing: 10px;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: rgba(255, 255, 255, 0.782) 2px 2px 50px;
    
}
.vision1 {
    text-align: center;
    font-size: 20px;
    opacity: 80%;
    color: white;
    letter-spacing: 2px;
    font-family: Poppins;
    font-weight: 300;

}
.vision2 {
    text-align: center;
    font-size: 30px;
    color: white;
    font-family: Poppins;
    font-weight: 700;
    text-shadow: rgba(255, 255, 255, 0.944) 2px 2px 40px;



}

.wrapper-two {
    
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    opacity: 50%;
    font-family: Poppins;
    font-weight: 100;
}

.reasonwhy {
    font-family: Poppins;
    font-weight: 300;
    text-align: center;

}

/* #box {
    width: 800px;
    height: 200px;
    color: white;
    font-size: 2.5rem;
    margin-left: auto;
    margin-right: auto;
  }
  .gradient-border {
    --borderWidth: 3px;
    background: #000000;
    position: relative;
    border-radius: var(--borderWidth);
  }
  .gradient-border:after {
    content: '';
    position: absolute;
    top: calc(-1 * var(--borderWidth));
    left: calc(-1 * var(--borderWidth));
    height: calc(100% + var(--borderWidth) * 2);
    width: calc(100% + var(--borderWidth) * 2);
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    border-radius: calc(2 * var(--borderWidth));
    z-index: -1;
    animation: animatedgradient 3s ease alternate infinite;
    background-size: 300% 300%;
  }
  
  
  @keyframes animatedgradient {
      0% {
          background-position: 0% 50%;
      }
      50% {
          background-position: 100% 50%;
      }
      100% {
          background-position: 0% 50%;
      }
  }
   */
  
.product-panel {
    width: calc(800px - 100px);
    height: 200px;
    display: flex;
    justify-content: space-evenly;
}

.register2 {
    font-family: Aeonik-light;
    color: white;
    background-color: #fb1aff00;
    width: 250px;
    height: 60px;
    color: white;
    border-style: solid;
    border-image: linear-gradient(to right, #FA1AFF, #29FFE5) 1;
    transition: 300ms ease-in-out;
}
.enterprise-solution {
    font-family: Aeonik-light;
    color: white;
    background-color: #fb1aff00;
    width: 250px;
    height: 60px;
    color: white;
    border-style: solid;
    border-image: linear-gradient(to left, #FA1AFF, #29FFE5) 1;
    transition: 300ms ease-in-out;
}
.contact-sales {
    font-family: Aeonik-light;
    color: white;
    background-color: #fb1aff00;
    width: 60px;
    height: 60px;
    color: white;
    border-style: solid;
    border-image: linear-gradient(to top, #FA1AFF, #29FFE5) 1;
    transition: 300ms ease-in-out;
}

.uil-comment-question {
    font-size: 20px;
    text-align: center;
    
}

.sales-wrap {
    height: 400px;
    width: 60px;
    

}

.cs {
    text-align: center;
    font-family: Aeonik-light;
    font-size: 13px;
}

.video-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -10;
}

/* Chat Container */

.chat-container {
    height: 550px;
    background-color: #252525;
    width: calc(400px - 30px);
    border-radius: 4px;
    margin-left: auto;
    position: fixed;
    bottom: 1%;
    left: 75%;
    display: block;
}
.secondary-container {
    width: 350px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    
    
}

.lynx-chat-text-container {
    width: 350px;
    height: 50px;
    background-color: #444d4f;
    font-family: Delina;
    text-align: center;
    font-size: 40px;
    border-radius: 4px;
}

.watermark {
    width: 350px;
    height: 40px;
    
}

.ty {
    font-family: Poppins;
    font-size: 10px;
    text-align: left;
}

.invis {
    opacity: 0%;
}
.sig {
    font-family: Delina;
    font-size: 30px;
    
    text-align: right;
}
.chat-container-t {
    width: 350px;
    height: 350px;
    background-color: #3a3a3a;
    margin-left: auto;
    margin-right: auto;
}

.text-typeplace {
    width: 350px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-evenly;
}

.input-field {
    background-color: #3a3a3a;
    margin-left: auto;
    width: 285px;
    height: 40px;
    border-style: solid;
    border-image: linear-gradient(to left, #FA1AFF, #29FFE5) 1;
    color: white;
    font-family: Poppins;
    transition: 300ms ease-in-out;
}
.sendmsg {
    background-color: #3a3a3a;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border-style: solid;
    border-image: linear-gradient(to left, #FA1AFF, #29FFE5) 1;
    transition: 300ms ease-in-out;
    color: white;
}

.input-field:focus {
    border-style: solid;
    border-image: linear-gradient(to left, #FA1AFF, #29FFE5) 1;
    transition: 300ms ease-in-out;
    
}

input:focus {outline:none!important;}

.close-spt {
    background-color: #1ac2ff00;
    border-style: solid;
    border: 2px solid white;
    border-radius: 50px;
    transition: 300ms ease-in-out;
    width: 50px;
    height: 50px;
    margin-left: 60px;
    margin-top: -20px;
    background-color: #000000;
    color: white;
    position: absolute;
    display: inline;
}

.hwdi {
    width: calc(95% - 100px);
    height: 500px;
    background-color: #66bcdbba;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
}
.newsletter {
    width: calc(75% - 100px);
    height: 500px;
    margin-top: 400px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    
}
.left-text {
    width: calc(60% - 50px);
    height: 400px; 
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    border-style: solid;
    border-image: linear-gradient(to left, #FA1AFF, #29FFE5) 1;
    border-radius: 12px;

    color: white
   
    
    
}
.form {
    width: 50%;
    height: 500px;
    margin-left: auto;
   
    
    
}

.cybers-v {
    width: 100%;    
    height: auto;   
    border-radius: 25px;
    
}

.gt2 {
    letter-spacing: 10px;
    font-size: 50px;
    font-family: Aeonik-Light;
}

.gra-2 {
    background-color: #1d1d1d00;
    margin-left: auto;
    width: 90%;
    height: 50px;
    border-style: solid;
    border-image: linear-gradient(to left, #FA1AFF, #29FFE5) 1;
    transition: 300ms ease-in-out;
    color: white;

}
.gra-3 {
    width: 90%;
    height: 50px;
    background: -webkit-linear-gradient(40deg,rgb(73, 255, 231), rgb(202, 44, 255));
    color: white;
}

.gt-p {
    font-family: Aeonik-Light; 
        letter-spacing: 4px;
        opacity: 50%;
    
}