/* 000webhost */
.disclaimer{
  display: none;
}
/* 000webhost */
*{
  box-sizing: border-box;
  font-family: sans-serif;
}
body{
  background: #fff;
  margin: 0;
}
#dismiss{
  position: fixed;
  top: 0;
  padding: 1px;
  background: #000;
  z-index: -10;
}
.image-item {
  margin: 8px;
  border: 2px solid #333;
  border-radius: 10px;
  box-shadow: 5px 5px 0px 4px #333;
}
.d-none{ 
  display: none ;
}
.d-block{
  display: block;
}
.display-n3{
  display: none;
}
html{
  scroll-behavior: smooth;
  font-size: 62.5%;
  scrollbar-width: thin;
  scrollbar-color:#000 rgba(0, 0, 0,.4) ;
}

html::-webkit-scrollbar{
  width: .6vw;
}
html::-webkit-scrollbar-track{
  background: rgba(0, 0, 0,.4);
}
html::-webkit-scrollbar-thumb{
  background: #000;
}
.display-flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section{
  width: 100%;
}

.sticky{
  position: sticky;
  top: 0;
  z-index:10;
}
.sticky-two{
  position: sticky;
  top: 75px;
}
.bdr{
  box-shadow: 0 0 1rem  .8rem rgba(0, 0, 0,.1);
  border-bottom: .5rem solid #000; 

}
.butn{
  text-align: center;
  border-radius: .3rem;
  background-color: #000;
  color: white;
  font-size: 1.5rem;
}
.butn2{
  padding: .5rem .7rem;
  border: .4rem solid #000;
}

.butn2:hover{
  background: #fff;
  color: #000;
}
.social-icon{
  font-size: 3.5rem;
  color: black;
  }
b,span,li,label,span,p,a{
  cursor: default;
  font-size: 1.6rem;
  list-style: none;
  text-decoration: none;
  transition: all .5s;
  color: black;
  margin: 0;
}
span{
  display: block;
  font-weight: bold;
  padding: .2rem .5rem  ;
}
a{ cursor: pointer;
   display: block;
   font-weight: bold;
   padding: 1rem;
 }
 p{
   padding: 1rem 0;
 }
 h2{
  cursor: default;
   margin: 0;
   padding: 1rem 0;
   font-size: 2.8rem;
 }
 h3{
  cursor: default;
   margin: 0;
   padding: .3rem 0;
   font-size: 1.8rem;
 }
nav{
  background: #fff;
}

nav a.active {
  background-color: #000;
  color: rgb(255, 255, 255);
  border-radius: .3rem;
}
nav img{
margin-right: 1rem;
}
.navbar-inner{
  align-items: center;
  padding: .8rem 0;
  width: 95%;
  margin: auto;
}
.nav-left{
  align-items: center;
}
.in-search{
  display: block;
  padding:.6rem .7rem;
 border: .2rem solid #000;
 border-radius: .5rem 0 0 .5rem;
}
::-webkit-input-placeholder{
  color: #000;
}
::-moz-placeholder{
  color: #000;
}
.sub-search{
  padding:.6rem .6rem;
  border: .2rem solid #000;
  background: #000;
  color: white;
  border-radius: 0 .5rem .5rem 0;
}
.nav-right{
  align-items: center;
}
.nav-left a{
  line-height: .7;
  padding: 0;
}
.nav-left .social-link  a{
  padding: .3rem;
}
.nav-left a:nth-child(5){
  padding-right: 0;
}

/* Nav Menu */

#popup{
  z-index: 13;
  padding: 2.8rem 2.5rem;
  position: fixed;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;

  max-width: 100%;
  height:100vh;
  background-color: #333;
  visibility: hidden;
  transition: all .5s;
  opacity: 0;
}
#popup:target{
  left: 0;
  visibility: visible;
  transition: all .5s;
  opacity: 1;
}
#popup nav a{
  box-shadow: 0 0 1rem  .8rem rgba(0, 0, 0,.1);
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0;
  border-radius: .5rem;
}
.navPopup{
  background: #000;
  color: #fff;
}
#popup nav .m-coder{
  background: #000;
  box-shadow: none;
}
#popup nav{
  background: transparent;
}
.close-popup{
  border-radius: 50%;
  background: #000;
  padding:0 .5rem;
  font-size: 2rem;
  color: #fff;
  top: 1.5rem;
  right: 1.5rem;
  top: 15px;
  right: 15px;
  position: absolute;
}
/* popup2 */


#popup2{

  opacity: 0;
  transition: all .5s;
  z-index: -1;
  position: fixed;
  top:-20%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height:100vh;
  visibility: hidden;
  background: transparent;
  padding: 2rem;
}

#popup2:target{
  top:0;
  visibility: visible;
  z-index: 15;
  opacity: 1;
}
#popup2 .popup-content{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 40rem;
  height:50rem;
  box-shadow: 0 0 1rem  .8rem rgba(0, 0, 0,.1);
  padding: 2rem 2.5rem;
  background-color: #000;
  border-radius: .5rem;
}
#popup2  .popup-content::before {
  position: absolute;
  content: "";
  width: 3rem;
  height: 3rem;
  transform: rotate(135deg);
  background: #000;
  top: 2.5rem;
  left: -1.2rem;
}

#popup2 .close-popup2{
  font-size: 2rem;
  padding:0 .3rem ;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: white;
  font-weight: bold;
  border-radius: .5rem;
}
#popup2 h2{
  color: #fff;
  padding-top: .5rem;
}
.f_width {
  height: 6.5rem;
}
.f_t_width {
  height: 18rem;
}
form ::-webkit-input-placeholder {
  color: #fff;
  font-weight: 700;
}

form ::-moz-placeholder{
  color: #fff;

}
.btn-input {
  background: transparent;
  border: .2rem solid #fff;
  display: block;
  width: 100%;
  padding: .9rem;
  border-radius: .3rem;
  color: #fff;
  font-family: sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}
.btn-input:focus {
  outline: 0;
}
textarea {
  height: 15rem;
  min-height: 15rem;
  max-height: 15rem;
}
.formerror {
  font-size: 1.3rem;
  color: #900C3F;
  font-weight: bold;
  padding: .2rem;
  display: block;
}
.btn-submit {
  cursor: pointer;
  background-color: #fff;
  color: #000;
  transition: all 0.3s;
  font-weight: bolder;
}
.btn-submit:hover {
  background: transparent;
  color: #fff;
}




/* main-area */

.main-area{
  width: 90%;
  margin: auto;
  padding: 1rem 0;
}

/* main-left */

.main-left{
  width: 60%;
}

/* overview */
.trac {
display: none;
  position: relative;
  padding: .5rem;
  width: 100%;
  background: #000;
  border-radius: 5px;
}
.trac::before {

  position: absolute;
  content: " ";
  width: 7rem;
  height: 7rem;
  transform: rotate(135deg);
  background: #000;
  top: 2.1rem;
  left: -1.2rem;
  transform: skew(30deg);
}
.trac  p{
  text-align: center;
  font-variant: small-caps;
  padding-top: 10px ;
  color: #6b7777;
  font-weight: bold;
}
.quote{
  padding: 1rem 2rem;
  width: 100%;
  height: 15rem;
  background: url(.//img/quote.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.quote p{
  padding-top: 2rem;
  color: #fff;
}
.psd{
  padding: 1rem 0;
}
.psd.display-flex{
  justify-content: start;
}
.psd.display-flex span{
  font-size: 1.5rem;
}
.carosol h2{
  position: relative;
  text-indent: 60px;
  line-height: 1.5;
  text-decoration:double  underline;
}
.carosol .m_pic{

  width: 50px;
  height: 50px;
  padding: 0;
  border: 2px solid #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}
.carosol{
 width:100%;
}
.carosol a{

  padding: 0;
}
.carosol a img{
  height: 12rem;
  border:none;
  border-radius: .5rem;
}
.carosol img{
  border: 1rem solid #333;
  border-radius: 1rem;
 width:100%;

}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #000;
}
.owl-carousel .owl-stage-outer{
  border-radius: 1rem;
}
/* seller / offer */

.bars{
  padding: .5rem 0;
}
.progress{

  position: relative;
  width: 100%;
  height: 1.7rem;
  background: rgb(247, 242, 242);
  border-radius: .3rem;
}
.progress::after{
content: "";
position: absolute;
height: 1.7rem;
top: 0;
left: 0;
background: #000;
border-radius: .3rem;
}
.progress-one::after{
width: 90%;
}
.progress-two::after{
width: 80%;
}
.progress-three::after{
width: 85%;
}
.progress-four::after{
width: 65%;
}
.progress-bar .display-flex{
  justify-content: start;
}

.fixed_left{
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
  margin-left: .5rem;
  }
  .fixed_left .butn{
    
    padding:.7rem 1rem;
    border-radius: 0;
    border-radius: .5rem 0 0 .5rem;
    border: .3rem solid #000;
  }
  .fixed_left .butn:nth-child(2){
    
  
    border-radius:  0 .5rem .5rem 0;
  
  }
  .fixed_left .butn:nth-child(2){
    background: #fff;
    color: #000;
    border: .3rem solid #000;
  }
  .fixed_left:hover .butn{
    background: #fff;
    color: #000;
  }
  .fixed_left:hover .butn:nth-child(2){
    background: #000;
    color: #fff;
  }
  
  .butn:nth-child(1):hover{
    background: #000;
    color: #fff;
  }
  .butn:nth-child(2):hover{
    background: #000;
    color: #fff;
  }
  #popup3{
    border-radius: .5rem;
    position: fixed;
    top:-20%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 32rem;
    height: 45rem;
    visibility: hidden;
    z-index: -1;
    background-color: #fff;
    opacity: 0;
    transition: all .5s;
    padding: 2rem;
    border-top: 1rem solid #000;
    border-bottom: 1rem solid #000;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);
  }
  #popup4{
    border-radius: .5rem;
    position: fixed;
    top:-20%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 32rem;
    height: 45rem;
    visibility: hidden;
    z-index: -1;
    background-color: #fff;
    opacity: 0;
    transition: all .5s;
    padding: 2rem;
    border-top: 1rem solid #000;
    border-bottom: 1rem solid #000;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);   
  }
  .b_top{
    font-size: 1.7rem;
  }
  #popup4 ul{ 
  padding-left: 2rem;
  }
  #popup4 li{ 
  list-style-type: disc;
  }
  
  #popup3:target{
    top:0;
    visibility: visible;
    z-index: 11;
    opacity: 1;
   
  }
  #popup4:target{
    top:0;
    visibility: visible;
    z-index: 11;
    opacity: 1;
  }







/* faq */

#faq{
  margin-top: 2.5rem;
}
.accordion .accordion-lavel{
cursor: pointer;
background-color: white;
padding: 1.5rem;
display: block;
  
}
.accordion-mrg{
  overflow: hidden;
  border-radius: .3rem;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin: 1rem 0;
}
.accordion-lavel{

  position: relative;
  transition: all .3s;
}

.accordion input:checked ~ .accordion-lavel{
  font-weight: bold;
  background-color: #000;
  color: white;
}
.accordion .remove{
  font-size: larger;
  font-weight: bold;
  top:.5rem;
  right:.5rem;
  position: absolute;
  display: inline-block;
}
.accordion input:checked ~ .accordion-lavel .remove{
  display: none;
  }
.accordion .add{
  font-weight: bold;
  font-size: larger;
  top: .5rem;
  right: .5rem;
  position: absolute;
display: none;
}
.accordion input:checked ~ .accordion-lavel .add{
display: inline-block;
color: #fff;
}
.accordion input[type="radio"]{
  display: none;
}
.accordion-content{
  max-height: 0;
  background: #fff;
  overflow: hidden;
  transition: all .7s;
  opacity: 0;
}
.accordion-content p{
  padding: 1.8rem 1.5rem;
}
.accordion input:checked ~ .accordion-content{
  border-bottom: .6rem solid #000;
  max-height: 10rem;
  opacity: 1;
}

/* main-right */

.main-right{
  background: #fff;
  width: 35%;
  height: 52rem;
  
}
.main-right-inner{
  padding:.1rem;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  border-top: 1rem solid #000;
  border-bottom: 1rem solid #000;
}
/* tab */

.tab{
  width: 100%;
}
.nav-label{
  overflow: hidden;
  padding: 0 3rem;
  margin-bottom: .5rem;
}
.nav-label label{
  transition: all .3s;
  border: .4rem solid #000;
  text-align: center;
  background-color: white;
  padding: .5rem 0;
  width: 33.33%;
  display: block;
  font-weight: bold;
  cursor: pointer;
}
.nav-label label:hover{
  background: #000;
  color: #fff;
}
#tab-one:checked ~ nav .tab-lavel-one,
#tab-two:checked ~ nav .tab-lavel-two,
#tab-three:checked ~ nav .tab-lavel-three{
  background-color: #000;
  color: white;
}
input[type="radio"]{
  display: none;
}
.tab-content{
  padding:2rem ;
  display: none;
  background: #fff;
}
.tab-content ul{
  padding: 0;
}
#tab-one:checked ~ .tab-content-one,
#tab-two:checked ~ .tab-content-two,
#tab-three:checked ~ .tab-content-three{
  display: block;
}

/* modal-btn */

.modal-btn{
  padding: 0 1rem;
}
.modal-btn .butn{
  padding: .5rem;
  border: .5rem solid #000;
  border-radius: 0;
}
.butn .social-icon{
font-weight: bold;
  font-size: 1.6rem;
  color: #000;
  background: #fff;
  padding:0 .2rem;
  border-radius: .2rem;
 }


.main-right-inner .modal-btn .butn:hover{
  background: white;
  color: #000;
}

/* footer */


#footer{
  border-top: thick solid #000;
  text-align: center;
  padding: 2rem;
  margin: 4rem 0;
}
#footer .social-link{
  justify-content:center;
}
#footer .display-flex{
  justify-content: center;
}
#footer span{
  display: block;
  margin: 1rem 1rem;
  font-weight: bold;
}

/* success message */


.form_message {
  position: relative;
  text-align: center;
  box-shadow: 0 0 .5rem  .8rem rgba(0, 0, 0,.1);
  margin: auto;
  margin-top: 5rem;
  width: 27rem;
  padding: 1.5rem .5rem;
  background-color: #fff;
  border-radius: 2rem;
}
.form_success_messagee {

  border-left: 1rem solid #049729;
  border-right: 1rem solid #049729;
}
.form_error_messagee {

  border-left: 1rem solid #900C3F;
  border-right: 1rem solid #900C3F;
}
.form_message h3 {
  color: #000;
  padding: 0;
  font-size: 2rem;
}
.p_color {
  font-size: 1.2rem;
  padding-bottom: 0;
}
.s_success {
  display: inline-block;
  color: #fff;
  background-color: #049729;
  border-radius: .5rem;
}
.s_error{
  display: inline-block;
  color: #fff;
  background-color: #900C3F;
  border-radius: .5rem;
}
.close-popup3{
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  color: #000;
  padding:.2rem .5rem;
}











/* MediaMediaMediaMedia */
@media (max-width: 1024px) {
  .display-n1{
    display: none;
  }
  .main-left{
    width: 62%;
  }
  .main-right{
    width: 35%;
  }
  .carosol h2{
    font-size: 2.5rem;
  }
}

@media (max-width: 980px) {
  .quote{
    height: 12rem;
   }
  .display-n8{
    display: none;
  }
  label{
    font-size: 1.4rem;
  }
  .display-n2{
    display: none;
  }
}

@media (max-width: 820px) {
 
  .quote p{
    padding-top: 1rem;
    font-size: 1.4rem;
  }
  .quote{

   height: 10rem;
  }
}

@media (max-width: 768px) {

  .quote{
    height: 12rem;
   }
  .display-n8{
    display: inline-block;
  }
  .quote p{
    font-size: 1.6rem;
  }
  label{
    font-size: 1.6rem;
  }
  .sticky-two{
    position: static;
    box-shadow: none;
    margin-top: 2rem;
  }
  .main-area{
    width: 85%;
  }
  .main-left{
    width: 100%;
  }
  .main-right{
    height: auto;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .display-n3{
    display: block;
  }
  .display-n4{
    display: none;
  }
}

@media (max-width: 576px) {
  .quote {
    padding:.8rem 2rem;
    height: 10rem;
  }
  .display-n5{
    display: none;
  }
  .carosol h2{
    font-size: 2rem;

  }
  .carosol .m_pic{
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .quote {
    padding:.5rem 2rem;
    height: 8rem;
  }
  .accordion .accordion-lavel{
    font-size: 1.3rem;
    }
  .display-n6{
    display: none;
  }
  .display-n7{
    display: block;
  }
  .carosol h2{
    font-size: 2rem;
    text-indent: 50px;
  }
  .carosol .m_pic{
    
    width: 38px;
    height: 38px;
  }

  #popup2{
    max-width: 32rem;
  }
  .trac::before {
    width: 4.5rem;
    height: 4.5rem;
  }
}

@media (min-width: 701px) {
  #popup{
    display: none;
  }
}
