html,
body {
  height: 100%;
   font-family: comic sans-serif;
}

body {
  margin: 0;
  background-color: #292929;
 
}
/*Star of the navbar stylings*/
.topnav{
display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    
}
nav {
 
  right: 0;
  left: 0;
  width: 319px;
  display: table;
  margin: 0 auto;
  transform: translateY(-50%);
}

nav a {
  position: relative;
  width: 33.333%;
  display: table-cell;
  text-align: center;
  color: #a8a8a8;
  text-decoration: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
 
  padding: 10px 20px;
  transition: 0.2s ease color;
}

nav a:before,
nav a:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.2s ease transform;
}

nav a:before {
  top: 0;
  left: 10px;
  width: 6px;
  height: 6px;
}

nav a:after {
  top: 5px;
  left: 18px;
  width: 4px;
  height: 4px;
}

nav a:nth-child(1):before {
  background-color: yellow;
}

nav a:nth-child(1):after {
  background-color: red;
}

nav a:nth-child(2):before {
  background-color: #00e2ff;
}

nav a:nth-child(2):after {
  background-color: #89ff00;
}

nav a:nth-child(3):before {
  background-color: purple;
}

nav a:nth-child(3):after {
  background-color: palevioletred;
}

nav a:nth-child(4):before {
  background-color: #ffcd00;
}

nav a:nth-child(4):after {
  background-color: #5800ff;
}

nav a:nth-child(5):before {
  background-color: #dfff00;
}

nav a:nth-child(5):after {
  background-color: #ff00df;
}

nav a:nth-child(6):before {
  background-color: #05d5f3;
}

nav a:nth-child(6):after {
  background-color: #f32305;
}

nav a:nth-child(7):before {
  background-color: #ffe200;
}

nav a:nth-child(7):after {
  background-color: #001dff;
}

nav a:nth-child(8):before {
  background-color: #ff005e;
}

nav a:nth-child(8):after {
  background-color: #00ffa1;
}

nav a:nth-child(9):before {
  background-color: #15f00a;
}

nav a:nth-child(9):after {
  background-color: #e50af0;
}

nav a:nth-child(10):before {
  background-color: #bf9e32;
}

nav a:nth-child(10):after {
  background-color: #c0c0c0;
}

#indicator {
  position: absolute;
  left: -85%;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
  transition: 0.2s ease left;
}

nav a:hover {
  color: #fff;
}

nav a:hover:before,
nav a:hover:after {
  transform: scale(1);
}

nav a:nth-child(1):hover ~ #indicator {
  left: 3.6%;
  background: linear-gradient(130deg, yellow, red);
}

nav a:nth-child(2):hover ~ #indicator {
  left: 19.1%;
  background: linear-gradient(130deg, #00e2ff, #89ff00);
}

nav a:nth-child(3):hover ~ #indicator {
  left: 33.5%;
  background: linear-gradient(130deg, purple, palevioletred);
}

nav a:nth-child(4):hover ~ #indicator {
  left: 60.5%;
  background: linear-gradient(130deg, #ffcd00,#5800ff);
}

nav a:nth-child(5):hover ~ #indicator {
  left: 81.2%;
  background: linear-gradient(130deg, #dfff00, #ff00df);
}


nav a:nth-child(6):hover ~ #indicator {
  left: 62.3%;
  background: linear-gradient(130deg, #05d5f3, #f32305);
}


nav a:nth-child(7):hover ~ #indicator {
  left: 72.2%;
  background: linear-gradient(130deg, #ffe200, #001dff);
}


nav a:nth-child(8):hover ~ #indicator {
  left: 81.5%;
  background: linear-gradient(130deg, #ff005e, #00ffa1);
}


nav a:nth-child(9):hover ~ #indicator {
  left: 94%;
  background: linear-gradient(130deg, #15f00a, #e50af0);
}

nav a:nth-child(10):hover ~ #indicator {
  left: 106.5%;
  background: linear-gradient(130deg, #bf9e32, #c0c0c0);
 
}

  
	  #hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px;
  margin-top: 5px;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}


.mobile-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu li {
  margin-bottom: 10px;
}


@media only screen and (max-width: 600px) {
   .topnav {
    display: none;
  }

  #hamburger-icon {
    display: block;
	 margin-top:55px;
	 margin-left:10px
  }
   nav a {
  position: relative;
  width: 144px;
  display: table-cell;
  text-align: center;
  color: #a8a8a8;
  text-decoration: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
 
  padding: 20px 20px;
  transition: 0.2s ease color;
  background-color:black;
  margin-left:45px;
 }

nav a:before,
nav a:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.2s ease transform;
 }

nav a:before {
  top: 0;
  left: 10px;
  width: 6px;
  height: 6px;
 }

nav a:after {
  top: 5px;
  left: 18px;
  width: 4px;
  height: 4px;
 }
}

/*article1*/

.article1{
    padding:20px;
	 margin-top:5px;
	 background-color:#f6f5f5;
	 width:100%;
	 margin-bottom:50px;
	 text-align:center;

}

p.first-p{
color:#22242a;
font-size: 18px;
padding:100px;

}

h2.main-header{
font-size: 30px;
  color: #23232a;
}

/*form*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900%display=swap');

*
{
    font-family: ubuntu;
	 box-sizing: border-box;
   
    

}

body{
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #23242a;
}

.box {
    position: relative;
    width: 380px;
    height: 420px;
    border-radius: 8px;
    background: #1c1c1c;
    overflow: hidden;
	 margin-left:auto;
	 margin-right:auto;
	 margin-bottom:150px;
	  
}

.box::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent, 
    #bf9e32, #bf9e32);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}

.box::after{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent, 
    #bf9e32, #bf9e32);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}

@keyframes animate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.form {
    position: absolute;
    inset: 2px;
    border-radius: 8px;
    background: #28292d;
    z-index: 10;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;

}
.form h2 {
    color: #bf9e32;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0,1em;

}

.inputBox{
    position: relative;
    width: 300px;
    margin-top: 35px;
	 font-size:22px;

}
.inputBox input {
    position: relative;
    width: 100%;
    padding: 10px 9px 10px;
    background: transparent;
    border: none;
    outline: none;
    color: #23242a;
    font-size: 1em;
    letter-spacing: 0.05em;
    z-index: 10;
}

.inputBox span{
    position: absolute;
    left: 0;
    padding: 10px 10px 10px;
    font-size: 1em;
    color: #8f8f8f;
    pointer-events: none;
    letter-spacing: 0.05em;
    transition: 0.5s;
}

.inputBox input:valid ~ span, 
.inputBox input:focus ~ span  {
    color: #bf9e32;
    transform: translateX(0px) translateY(-34px);
    font-size: 0.75em;

}

.inputBox i {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #bf9e32;
    border-radius: 4px;
    transition: 0.5s;
    pointer-events: none;
    z-index: 9;
}

.inputBox input:valid ~ i, 
.inputBox input:focus ~ i {
    height: 44px;

}

.links {
    display: flex;
    justify-content: space-between;

}

.links a {
    margin: 10px 0;
    font-size: 00.80em;
    color: #8f8f8f;
    text-decoration: none;
}

.links a:hover,
.links a:nth-child(2)
 {
    color: #bf9e32;

}
input[type='submit'] {
    border: none;
    outline: none;
    background: #bf9e32;
    padding: 15px 25px;
   
    margin-top: 10px;
    border-radius: 4px;
    font-weight: 400;
    font-size: 20px;
    cursor: pointer;
}

input[type='submit']:active {
    opacity: 0.8;
}

input[type=text] {
  border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
	 font-size:16px;
}


input[type=email] {
  border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
	 font-size:16px;
}

input[type=password] {
  border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
	 font-size:16px;
}
textarea{
border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	 padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
	 font-size:16px;
}

.option-dropdown{
padding: 15px;
    background-color: #2a2c61;
    color: #bf9e32;
    border-radius: 4px;
    font-size: 20px;
	 margin-bottom: 10px;
	 -webkit-text-stroke-width: thin;
}

/*table*/
.tabletable-stripedtable-bordered {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.5em;
    width: 100%;
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 16px;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	 margin-left: auto;
    margin-right: auto;
	 margin-bottom:75px;
}

.styled-table thead tr {
    background-color: #bf9e32;
    color: #fff;
    text-align: left;
	 font-size:20px;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
	 color:#383838;
	 font-size:17px;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #ffffff;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #ffffff;
}

.styled-table tbody tr.tr2 {
    font-weight: bold;
    color: #65c8c0;
}
/*footer start*/


footer {
  position: relative;
  width: 100%;
 
  background: rgb(2,0,36);
  background-image:linear-gradient(72deg, #292929, #bf9e32,transparent);
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.tc-textbox {
    background: #FFF;
    border: 1px solid #CCC;
    color: #666;
    height: 200px;
    margin: 3px;
    overflow: auto;
    padding: 5px;
	 }
	 
