@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.content .links  .signupo a{
  background: white;
  color: black;
  margin-left: 7px;

}
.deactive{
  display: none;
}
.active{
  display: block;
}
.content .links  .signupo a:hover{
  background-color: #323c4e;
  color: white;
}
.wrapper{
  z-index: 1;
  background: #171c24;
  position: fixed;
  width: 100%;
}
.wrapper nav{
  position: relative;
  display: flex;
  max-width: calc(100% - 200px);
  margin: 0 auto;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}

nav .content{
  display: flex;
  align-items: center;
}
nav .content .links{
  margin-left: 80px;
  display: flex;
}

.content .logo a{
  background: #171c24;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.content .links li{
  list-style: none;
  line-height: 70px;
}
.content .links li a,
.content .links li label{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 17px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.content .links li label{
  display: none;
}
.content .links li a:hover,
.content .links li label:hover{
  background: #323c4e;
}
.wrapper .search-icon,
.wrapper .menu-icon{
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}
.wrapper .menu-icon{
  display: none;
}
.wrapper #show-search:checked ~ .search-icon i::before{
  content: "\f00d";
}

.wrapper .search-box{
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.wrapper #show-search:checked ~ .search-box{
  opacity: 1;
  pointer-events: auto;
}
.search-box input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  color: #fff;
  background: #171c24;
  padding: 0 100px 0 15px;
}
.search-box input::placeholder{
  color: #f2f2f2;
}
.search-box .go-icon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 60px;
  width: 70px;
  background: #171c24;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.wrapper input[type="checkbox"]{
  display: none;
}

/* Dropdown Menu code start */
.content .links ul{
  position: absolute;
  background: #171c24;
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.content .links li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.content .links ul li a{
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px!important;
}
.content .links ul ul{
  position: absolute;
  top: 0;
  /* right: calc(-100% + 8px); */
  right: calc(-100% + 108px);
  background: brown;
}
.content .links ul li{
  position: relative;
}
.content .links ul li:hover ul{
  top: 0;
}
.new1 h4 {
  animation: colorchange 5s infinite;
}

@keyframes colorchange {
  0% {color: red;}
  25% {color: rgb(51, 0, 255);}
  50% {color: rgb(0, 234, 255);}
  75% {color: rgb(71, 228, 71);}
  100% {color: rgb(204, 66, 188);}
}

.new1{
position: relative;
float: right;
margin-bottom: 10px;
}
.card h4{
  color: rgb(237, 18, 18);
  margin-bottom: 10px;
}
.new{
  background: red;
}
/* Responsive code start */
@media screen and (max-width: 1250px){
  .wrapper nav{
    max-width: 100%;
    padding: 0 20px;
  }
  nav .content .links{
    margin-left: 30px;
  }
  .content .links li a{
    padding: 8px 13px;
  }
  .wrapper .search-box{
    max-width: calc(100% - 100px);
  }
  .wrapper .search-box input{
    padding: 0 100px 0 15px;
    width: 340px;
  }
  .search-box .go-icon {
    position: absolute;
    right: -19px;
  }
  .container{
    
    background: white;
  }
  .card-wrapper{
    width: 550px;
  }
  .card-wrapper .card{
    width: 550px;
  }
}

@media screen and (max-width: 900px){
  .wrapper .menu-icon{
    display: block;
  }
  .wrapper #show-menu:checked ~ .menu-icon i::before{
    content: "\f00d";
  }
  nav .content .links{
    display: block;
    position: fixed;
    background: #14181f;
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 432px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }
  nav #show-menu:checked ~ .content .links{
    left: 0%;
  }
  .content .links li{
    margin: 15px 20px;
  }
  .content .links li a,
  .content .links li label{
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
  }
  .content .links li a.desktop-link{
    display: none;
  }

  /* dropdown responsive code start */
  .content .links ul,
  .content .links ul ul{
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }
  .content .links #show-features:checked ~ ul,
  .content .links #show-services:checked ~ ul,
  .content .links #show-items:checked ~ ul{
    max-height: 100vh;
  }
  .content .links ul li{
    margin: 7px 20px;
  }
  .content .links ul li a{
    font-size: 18px;
    line-height: 30px;
    border-radius: 5px!important;
  }
  .container{
    flex-wrap: wrap;
  }
  .card-wrapper{
    width: 450px;
  }
  .card-wrapper .card{
    width: auto;
  }
  

}
/* @media (min-width: 900px) and (max-width: 1300px){
  .card-wrapper{
    max-width: 800px;
  }
  .card{
    max-width: 600px;
  }
} */
@media (max-width: 900px){
  
  .content .logo a{
    font-size: 30px;
  }
  .menu ul{
    padding-bottom: 5rem;
  }
  .tv h2{
    margin-top: -6rem;
  }

}
@media (max-width: 390px){
  .content .logo a{
    font-size: 20x;
  }
}

@media (max-width: 440px){
  .card{
    width: 400px;
  }
  .card h1 a{
    font-size: 20px;
    line-height: 0.5;
  }
  .card .right img {
    width: 300px;
  }
  .card h1 {
    line-height: 1;
    padding-bottom: 1rem;
  }
  .menu h1{
    font-size: 32px;
  }
  .menu .tv h1{
    /* padding-top: 1rem; */
    font-size: 16px;
  }
  .menu{
    margin-top: 2.5rem;
    padding: 1rem;
  }
  .card-wrapper .card{
    padding-bottom: 1.5rem;
  }
  

}

@media (min-width: 1550px){
  
  .card-wrapper{
  width: 1000px;
  }

}
/* @media (min-width: 1350px){
  
  .card-wrapper .card {
    width: 940px;
    width: 700px;
  }
} */

@media screen and (max-width: 400px){
  .wrapper nav{
    padding: 0 10px;
  }
  .content .logo a{
    font-size: 25px;
  }
  .wrapper .search-box{
    max-width: calc(100% - 70px);
  }
  .wrapper .search-box .go-icon{
    width: 30px;
    right: 0;
  }
  .wrapper .search-box input{
    padding-right: 30px;
  }
  .container{
    flex-wrap: wrap;
  }
  .card-wrapper{
    width: 350px;
  }
  .card-wrapper .card{
    width: 350px;
  }
    .card img{
    width: 350px;
  }
  .card-wrapper .Heading{
    padding-bottom: 1rem;
  }
 }
 /*
.cbody img{
  position: absolute;
  top: 10%;
  height: 300px;
  width: 600px;
}
.dummy-text h2{
  font-size: 45px;
  margin: 5px 0;
} */
/* .card .right iframe{
  width: 120%;
  height: 120%;
  margin-top: 5rem;
  padding-right: 5rem;
} */

.container{
  padding-top:5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background: #f2f2f2;
}
/* .card-wrapper{
  background-color: #fff;
  border: 2px solid black;
} */
.Heading{
  text-align: center;
  padding-bottom: 2rem;
  font-family: sans-serif;
}
.section-heading{
  background: black;
  color: white;
}
.card{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  /* border: 1px solid black ; */
  padding: 1rem;
  width: 400px;
  /* margin-bottom: 2rem; */
  cursor: pointer;
}
.card .left, .card .Left{
  font-size: 10px;
  text-decoration: none;
  width: 100%;
  flex: 1;
  padding: 0 1rem;
}
.card h1,h5{
  
  text-align: left;
  transition: all .2s ease;
}
.card h1{
  line-height: 1.3;
  text-align: left;
}
.card h5{
  padding-top: 4px;
  text-align: left;
}
.card h1 a{
color: black;
font-size: 20px;
/* line-height: 1; */
}
.card .Left p, .card .left p{
  margin-top: 0.5rem;
  text-align: left;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card h1 a:hover{
  color: #4db2ec;
}
.tv .all .left img{
  transition: transform ease-in-out 0.3s;
}
.tv .all .left img:hover{
  transform: scale(1.1)

}
.card .right img{
  transition: transform ease-in-out 0.3s;
}
.card .right img:hover{
  
  transform: scale(1.1)
}
.menu .hii li{
  transition: transform ease-in-out 0.3s;

}
.menu .hii li:hover,.menu li a:hover{
  transform: scale(1.3);
  color: #4db2ec;


}
.menu{
  /* border: 1px solid black; */
  text-align: center;
  height: fit-content;
  width: 400px;
  /* margin-top: 5rem; */
  font-size: 20px;

}
.logoa{
  text-align: center;
  background: black;
  color: white;
}
.menu ul{
  list-style-type: none;
  /* width: 200px; */
  text-align: center;
  padding-bottom: 10rem;
}
.menu h1{
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
  font-size: 19px;
}
.menu li{
  margin-bottom: 9px;
  text-align: center;
  
}
.menu li a{
  color: black;
  cursor: pointer;
  transition: transform ease-in-out 0.3s;
}
.all{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 3rem;
  /* width: 450px; */
  font-size: 17px;
}
.tv h2{
  margin-bottom: 2rem;
  background: black;
  color: white;
}
footer{
  background: #161616;
  text-align: center;
  padding: 3rem 0;
}
footer .f-logo {
  margin-bottom: 2rem;
  /* width: 180px; */
}

footer .footer-social a{
  margin-right: 1rem;
  

}

footer .copy{
  color: #F2F2F2;
  margin-top: 3rem;
  
}

@media screen and (min-width: 1250px){
.card-wrapper {
    width: 550px;
}
.card {
  
  width: 550px;
}
}
.hidec{
  display: none;
}


/* comment */


.maindiv {
  margin-top: 16px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* max-width: 1200px; */
  /* position: relative; */
  left: 50%;
  /* transform: translate(-50%, 0); */
}

.linkaa {
  
  height: auto;
  width: 98%;
  background-color: white;
  border-radius: 4px;
  margin: 15px 0 10px 0;
}

.linkaa h1 {
  text-align: center;
  font-size: 25px;
  /* color: aqua; */
  background-color: rgb(237, 18, 18);
}

.upload {
  display: contents;
  height: 100vh;
  width: 95%;
  background-color: whitesmoke;
  border-radius: 4px;
  margin: 0 0 10px 0;
}

.uploaded {
  border: 2px solid rgb(60, 2, 2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* overflow: scroll; */
  height: 555px;
  overflow: scroll;
  /* height: 3500px; */
  width: 97%;
  margin: 1.5%;
  background-color: rgb(223, 223, 223);
  border-radius: 2px;
  padding: 10px;
}

.data {
  height: auto;
  width: 50%;
  align-items: center;
  margin: 1%;
  background-color: rgb(76, 123, 177);
  border-radius: 4px;

  align-items: center;
  padding: 5px;
  /* position: sticky; */
  bottom: 10px;
}

.fromdevice {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.send {
  margin-bottom: 6px;
  height: 40px;
  width: 100px;
  /* border-radius: 50%; */
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 40%;
}

#txt,
#name {
  height: 40px;
  width: 95%;
  background-color: white;
  color: black;
  border: none;
  outline: none;
  border-radius: 5px;
  margin: 5px;
  padding: 10px;
  
}
.ab{
  
  display: block;
}

.di{
  display: none;
}
.errmsg{
  height: 40px;
  width: 100%;
  background-color: white;
  border: 2px solid red;
  color: red;
  text-align: center;
  align-items: center;
  width: 70%;margin: auto;
  padding: auto;
  margin-bottom: 10px;
  display: none;

}

#fromdevicefiles {
  display: none;
}


.uploadedmsg {
  width: 60%;
  margin: 10px 10px 10px 10px;
  background: chocolate;
}

.chat {
  height: auto;
  width: 50%;
  margin: 5px;
  background: white;
  padding: 10px;
  border-radius: 10px;
}

.h1 {
  font-size: 20px;
  font-weight: 600;

}

.scroll {
  /* enable div scrolling */
  overflow: scroll;
  height: 50vh;
  background-color: aqua;
  border: 1px black solid;
  padding: 2%;
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  font-size: large;
}

.form1{
  border: 2px solid black;
}
@media (max-width:500px) {
  .data {

      width: 93%;
  }

  .send {

      margin-left: 34%;
  }

  .chat {
      margin-bottom: 20px;
      width: 90%;
  }
}

h6{
  font-weight: 500;
}


@media (max-width:400px) {
  .wrapper .search-box input {
    
    width: 300px;
}
}
@media (max-width:355px) {
  .wrapper .search-box input {
    
    width: 295px;
}
}

/* comment End */

.game{
  border: 1px solid grey;
  padding: 20px;
  width: auto;
  background: white;
  border-radius: 3px;
}

.challenge{
  color: red;
}