@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;
}
.wrapper{
  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{
  color: #fff;
  font-size: 30px;
  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);
}
.content .links ul li{
  position: relative;
}
.content .links ul li:hover ul{
  top: 0;
}

/* 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: 338px;
  } */
  /* .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: 450px;
  }
  

}
/* @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: 28px;
  }
  .menu ul{
    padding-bottom: 5rem;
  }
  .tv h2{
    margin-top: -6rem;
  }

}
@media  (max-width: 370px){
  .search-box input {
    width: 110%;
}
}
@media (max-width: 450px){
  .search-box input {
    width: 105%;
  }
}

@media (max-width: 400px){
  .card{
    width: 400px;
  }
  .search-box input {
    width: 105%;
  }
  .search-box .go-icon {
    position: absolute;
    right: -29px;
  }
  .content .logo a {
    font-size: 23px;
  }
}
@media (min-width: 1350px){
  
  .card-wrapper{
  width: 1000px;
  }
  .card-wrapper .card {
    width: 1000px;
  }
  /* .wrapper .search-box input {
    
    width: 309px; */
}

@media screen and (max-width: 400px){
  .wrapper nav{
    padding: 0 10px;
  }
  .content .logo a{
    font-size: 27px;
  }
  .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;
  }
 }

.card .right iframe{
  width: 60%;
  /* height: 200px; */
}
.container{
 
  /* height: 1500px; */
  background: white;
  padding-top: 6rem;
  /* position: relative; */
  color: black;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* font-size: 30px; */
  
  
}
.container img{
  align-items: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid black;
   

    
}
.container .txt h1{
  margin-bottom: 1rem;
  text-align: center;
  cursor: pointer;
  background: whitesmoke;

  
  
}
.container .txt p{
  /* text-align: center; */
  padding: 2rem;
  padding-top:0rem;
  /* font-size: 20px; */
}
#menu{
  border: 2px solid black;
  width: 500px;
  background: whitesmoke;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
  padding: 1rem 3rem;
  font-size: 20px;
  margin-bottom: 3rem;
  
  
}
#menu li {
  list-style-type: none;
}
#menu li strong{
  color: rgb(12, 15, 1)
  
}
#menu p{
  color: yellowgreen;
  background: red;
}
#menu a strong{
  color: rgb(12, 15, 1);
}

#menu h1{
  text-align: center;
 
}
#menu  li {
  text-decoration: none;

} 
/* for section html */
/* section {
  font-size: 0px;
} */
section .whtml{
  background: #EBE4FF;
    border: 2px solid #673DE6;
    border-radius: 4px;
    padding: 45px;
    margin-bottom: 14px
}
section .whtml h2{
  
  line-height: 120%;
 
}
lform iframe{
align-items: center;
  width:100%;
  display: block;
    margin-left: auto;
    margin-right: auto;
  height: 400px;
  margin-top: 2rem;
}

section{
  background: whitesmoke;
  padding: 0 2rem;
  
}
.feahtml ul {
  padding-left:2rem;
  padding-bottom: 1rem;
}
section  h1 {
  text-align: center;

}
section h1 span{
  color: aqua;
  
}
section .download {
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid black;
  width: 100%;


}
section .download a{
  text-decoration: none;
  color: #e44332;
  cursor: pointer;

  transition: all .3s ease;
}
section .download a:hover{
  color: aqua;
}
section h4,section p, section h3,section img{
  padding-bottom:1rem
  
}
lform img{
  width: 50%;
  border: 2px solid white;
  margin-top: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  
}

.sthtml img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.sthtml{
  width: 60% ;
  margin-left: auto;
  margin-right: auto;
}
section h1 {
  padding-bottom: 10px;
}

/* Customization for mobiloe */

@media (max-width: 440px){
  .container .txt h1{
    font-size: 17px;
    padding:0 5px;
  }
  section{
    padding:0 1rem;
  }
  .container img{
    width: 90%;
    margin-bottom: 0rem;
  }
  .container .txt p{
    font-size: 12px;
    padding: 1rem;
  }
  #menu{
    margin-top: 1rem;
    width: auto;
    margin-bottom: 1rem;
  }
  #menu h1{
    font-size: 17px;
  }
  #menu a strong,#menu p{
    font-size: 12px;
  }
  section .whtml h2{
    font-size: 17px;
    line-height: 100%;
  }
  section p, .feahtml ul{
    font-size: 12px;
  }
  section .whtml{
    padding: 15px;
    margin-bottom: 0px;

  }
  .sthtml{
    width: 100%;
  }
  .sthtml h2, .feahtml h2, section h1, section h2{
    font-size: 17px;
  }
  .sthtml img , lform img{
    width: 95%;
  }
  section .download {
    padding: 1rem;
  }
  section .download h1{
    margin-bottom: -10px;
  }
  section h1{
    margin-bottom: 10px;
  }
}

                        /* for footer  */
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: 2rem; 
}
                      /* footer end::-webkit-slider-runnable-track */