* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

@font-face {
    font-family: "SQ Lite";
    src: url(sqlite.otf) format("opentype");
}

@font-face {
    font-family: "Roboto Bold";
    src: url(fonts/Roboto-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "Roboto Thin";
    src: url(fonts/Roboto-Thin.ttf) format("truetype");
}

@font-face {
    font-family: "Roboto Normal";
    src: url(fonts/Roboto-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Samarkan Normal";
    src: url(fonts/Samarkan-Normal.ttf) format("truetype");
}

@font-face {
    font-family: "Nirmala UI";
    src: url(fonts/Nirmala.ttf) format("truetype");
}

@font-face {
    font-family: "Consolas";
    src: url(fonts/Consolas.ttf) format("truetype");
}

html, body{
  width: 100%;
  height: 100%;
  min-width: 432px;
  min-height: 243px;
  text-align: center;
  /* overflow: hidden; */
  /* position: relative; */
  background-color: black;
  /* color: black; */
}

/* header{
  overflow: hidden;

  position: fixed;
  top: 5px;
  left: 100px;

  width: 170px;
  height: 50px;
  background-color: black;

  color: white;

  font-size: 1rem;

} */

header h3{
  font-size: 1.8rem;
  margin-top: 9px;
}

h1{
  font-size: 9rem;
}

h1, h2, h3, h4, h6, p, ul, li{
  font-family: "SQ Lite";
}

.fullwidth{
  width: 100%;
}

.whitetext{
  color: white;
}

.whitetextbluebackground{
  color: white;
  background-color: #005dcc;
}

.orangetextborder{
  border-style: solid;
  border-width: 1px;
  border-color: #cc5500;
  padding: 5px;
  margin-top: 10px;
}

.graytext{
  color: #bfbfbf;
}

.yellowtext{
  color: #ffde00;
}

.boldtext{
  font-weight: bold;
}

.graysection{
  background-color: #333030;
}



/* Dropdown Button */
.dropbtn {
    font-family: "SQ Lite";
    font-size: 1.5rem;

  width: 140px;
  height: 50px;

    color: white;
  
    border: none;
    cursor: pointer;

    background-color: black;
  margin:0;
  padding: 0 0 0 15px;
  border-style: none;

  outline: none;

  padding-right: 13px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: rgba(255, 255, 255, 0.11);
    outline: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {

  font-family: "SQ Lite";

  position: fixed;
  top: 0px;
  left: 100px;
  display: inline-block;

  padding: 0;

  width: 140px;
  height: 50px;
  background-color: black;

  color: white;

  font-size: 1rem;
    
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;

    text-align: left;
    background-color: rgba(66, 66, 66, 0.9);;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;

    width: 250px; 
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover{
  background-color: rgba(255, 255, 255, 0.3);
  color: #ffde00;;
  font-weight: bold;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}








#logosection{
  height: 100%;
 
  display: flex;
  flex-direction: column;

  min-height: 243px;

  align-items: center;
  justify-content: center;

  background-image: url("images/codebg02.jpg");
  background-repeat: repeat-y;
  background-attachment: fixed;

}

#logodiv{
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  align-items: center;
  justify-content: center;
}

#logodiv img, h1{
  background-color: rgba(0, 0, 0, 0.8);
}

#logo{
  width: 150px;
  height: 143px;
    
  background-color: black;
  text-align: center;
  display: none;
  opacity: 0.9;
  z-index: 3;
  background-color: transparent;
}

#leftlogotext{
  margin-right: 17px;
}

#rightlogotext{
  margin-left: 17px;
}

.logotext{
  font-family: "SQ Lite";
  color: #ffde00;
}

.mainlogotextmargin{
  margin-top: 0px;
}

.divider{
  height: 1px;
  background-color: #cc5500;
  border-style: solid;
  border-width: 1px;
  border-color: #cc5500;

/*   position: fixed;
top: 28px;
z-index: 0; */
}




.blinking-cursor {
  font-weight: 80;
  font-size: 30px;
  color: #2E3D48;
  -webkit-animation: 1.5s blink step-end infinite;
  -moz-animation: 1.5s blink step-end infinite;
  -ms-animation: 1.5s blink step-end infinite;
  -o-animation: 1.5s blink step-end infinite;
  animation: 1.5s blink step-end infinite;
}

@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: white;
  }
}

@-moz-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: white;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: white;
  }
}

@-ms-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: white;
  }
}

@-o-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: white;
  }
}





.sectionheader{
  /* min-height: 500px; */
  /* background-color: #282828; */
  /* background-color: black; */

  /* color: #ffde00; */
  color: white;
  
  display: flex;

  font-family: "SQ Lite";
  font-weight: bold;

  padding-left: 75px;
  padding-top: 10px;
  padding-bottom: 10px;
  /* margin-top: 75px; */

  border-style: solid;
  border: blue;
  border-width: 1px;
}


.sectionsubheader{
  /* min-height: 500px; */
  /* background-color: #282828; */
  /* background-color: black; */

  width: 100%;

  color: white;
  
  display: flex;

  font-family: "SQ Lite";

  /* padding-left: 10%; */
  padding-left: 9px;
  padding-top: 9px;

  margin-left: 10%;
  margin-top: 50px;

  
}

.paragraphdiv{
  width: 80%;
  margin: 0 auto;
  padding-bottom: 75px;

  font-family: "SQ Lite";
}

.sectionheader h2{
  font-size: 2.5rem;
}
.sectionsubheader h2{
  font-size: 2.1rem;
}

#aboutsection{
  background-color: rgba(255, 255, 255, 0.11);
}

#aboutsection span{
  font-size: 1.7rem;
}

#areasofinterestsection{
  padding-bottom: 30px;
}

.interestsdiv{
  width: 80%;
  margin: 40px auto;

  display: flex;
  align-items: center;

  flex-wrap: wrap;
  justify-content: space-around;
}

.interestsdiv img{
  width: 250px;
  margin-top: 40px;
}

.interestsdiv h4{
  color: white;
  width: 250px;
 /*  background: blue; */
}

.productsectioncontainer{
/*   min-width: 1351px; */


  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.productsectioncontainer a{
 
  min-width: 675.5px;
  text-decoration: none;
} 

.productimagewidthfordesktop{
  /*  width: 100%; */ 
   flex: 1; 

}

.productimagewidthforphone{
   width: 100%; 
  /* flex: 1; */

}


.productsectioncontainer a:hover{
  background-color: rgba(255, 255, 255, 0.4);
}

.productsectiondiv{
  height: 420px;
  min-width: 675.5px;

  /* flex: 1; */

  width: 100%;
  display: flex;

  align-items: center;
}

.productsectiondivsmall{
  height: 420px;
  /* min-width: 675.5px; */

  /* flex: 1; */

  width: 100%;
  display: flex;

  align-items: center;
}

.productsectiondiv img{
  height: 300px;
  width: 300px;
  
  min-height: 300px
  min-width: 300px;

  margin-left: 75px;
  margin-right: 50px;
}

.productsectiondivsmall img{
  height: 300px;
  width: 300px;
  
  min-height: 300px
  min-width: 300px;

  margin-left: 75px;
  margin-right: 50px;
}

#cfocontentdiv{
  background-color: rgba(0, 74, 204, 0.3);
}

#cfocontentdiv span{
  font-family: "Roboto Normal";
  text-align:  left;
}

#hdtlogo{
  margin-left: 50px;
}

#hinditoolscontentdiv{
  background-color: rgba(255, 199, 0, 0.4);
}

#hinditoolscontentdiv span{
  text-align:  left;
  margin-left: -30px;
  font-family: "Nirmala UI";
}

.productdetailsdiv{
  display: flex;
  flex-direction: column;

  margin-right: 30px;
}

#cfotitle{
  font-family: "Roboto Bold";
  font-size: 3.8rem;
  text-align: left;
  color: white;
}

#cfosubtitle{
  font-family: "Roboto Thin";
  font-size: 2rem;
  text-align: left;
  color: #ffde00;
}


#hdttitle{
  font-family: "Samarkan Normal";
  color: white;
  margin-left: -30px;
  text-align: left;
  font-size: 3rem;
}

#notepad3000contentdiv{
  background-color: rgba(255, 255, 255, 0.11);

}

#notepad3000contentdiv span{
  text-align: left;
  font-family: "Consolas";
}

#notepadtitle{
  font-family: "Consolas";
  color: yellow;
  text-align: left;
  font-size: 2.5rem;
}

#hindipdfcontentdiv{
  background-color: rgba(255, 255, 255, 0.9);
}

#hindipdfcontentdiv span{
  text-align: left;
  font-family: "Roboto Normal";
  color: #5d6363;
}

#hindipdftitle{
  font-family: "Roboto Bold";
  color: #0ea391;
  font-size: 2.7rem;
  text-align: left;
}

#supportsection{
  background-color: rgba(255, 255, 255, 0.11);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;

  padding-top: 60px;
  padding-bottom: 40px;
}

#supportsection h6{
  color: white;
  font-size: 1.7rem;

  margin-bottom: 30px;

  font-weight: bold;
}

#supportsection ul{
  width: 50%;
  margin: 20px auto 30px auto;
}

#supportsection li{
  text-align: left;
  color: white;
  font-size: 1.2rem;
}

#cfohelpheader{
  font-family: "SQ Lite";
  font-weight: bold;

  width: 60%;
  margin: 0 auto;
}

#forhelpheader{
  font-family: "SQ Lite";
  font-weight: bold;

  width: 60%;
  margin: 0 auto;
}


.supportcolumndiv{
  flex: 1;
  padding-left: 30px;
  padding-right: 30px;

  min-width: 675.5px;
}

.supportcolumndiv p{
  padding-top: 20px;
  padding-bottom: 20px;

  color: white;
}


#footerdiv{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#footerdiv p{
  font-family: "SQ Lite";
  color: white;
  margin:0;
  padding:0;
}
#footerdiv span{
  font-family: "SQ Lite";
  margin:0;
  padding:0;
}