@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul, ol, p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  overflow: unset;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: initial;
  width: 100%;
  height: 110px;
  background-color: white;
}

.header .topheader {
  width: 100%;
  height: 60%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .topheader .logo .techvantoLogo {
  width: 170px;
  height: 60px;
}

.header .topheader .headersocialIconsAndRegisterBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
}

.header .topheader .headersocialIconsAndRegisterBtn .registerNowBtn {
  border: 2px solid #010e76;
  border-radius: 18px;
  font-size: 18px;
  color: #010e76;
  text-decoration: none;
  padding: 0px 24px;
}

.header .topheader .headersocialIconsAndRegisterBtn .registerNowBtn:hover {
  background-color: #010e76;
  color: white;
  -webkit-transition: .3s;
  transition: .3s;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons .socialLinks {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons .socialLinks a {
  text-decoration: none;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons .socialLinks a .fa {
  border-radius: 50%;
  padding: 8px 8px;
  color: white;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons .socialLinks a .fa:hover {
  -webkit-box-shadow: 0px 0px 20px #010e76;
          box-shadow: 0px 0px 20px #010e76;
}

.header .topheader .headersocialIconsAndRegisterBtn .socialIcons .socialLinks a .fa:nth-last-child(2) {
  padding: 0px 1px;
}

.header .navBar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 100px;
  left: 0px;
  background-color: #010e76;
  width: 100%;
  height: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .navBar .navLinks {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 60%;
}

.header .navBar .navLinks li {
  position: relative;
  border-right: 1px solid white;
}

.header .navBar .navLinks li a {
  padding: 4px 20px;
  display: block;
  color: white;
  text-decoration: none;
}

.header .navBar .navLinks li ul {
  position: absolute;
  border-bottom-left-radius: 10px;
  top: 30px;
  left: -20px;
  background: rgba(17, 30, 108, 0.95);
  display: none;
}

.header .navBar .navLinks li ul li {
  height: auto;
  border: none;
  display: block;
  width: 270px;
  padding: 5px 0px;
}

.header .navBar .navLinks li:hover ul {
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  display: block;
}

.header .navBar .navLinks li:hover ul li:hover {
  background: #FA6400;
}

.header .navBar .navLinks .subMenu::before {
  content: '\f0d7';
  position: absolute;
  font-family: fontAwesome;
  color: white;
}


#preLoader{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  right: 0;
  bottom: 0;
  width: 100%;

  background-color: white;
background:rgba(0, 0, 0, 0.4);
  z-index: 9999999999999999 !important;
  display: none;
}
#preLoader .loader{
  width: 200px;
  height: 200px;
  /* background-color: royalblue; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.header .navBar .navLinks .lastChild {
  border: none;
}

.mobileHeader {
  display: none;
}

.mobileStudentBenefits {
  display: none;
}

.hero {
  width: 100%;
  height: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero img {
  width: 100%;
  height: auto;
}

.aboutTechOlympiad {
  padding: 40px 40px;
  padding-bottom:10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
}

.aboutTechOlympiad h2 {
  font-weight: 900;
  text-transform: uppercase;
  color: #010e76;
}

.aboutTechOlympiad h4 {
  font-weight: 900;
  text-transform: uppercase;
  color: #010e76;
}



.aboutTechOlympiad .aboutTTO {
  text-align: center;
}

.studentBenefits {
  background-color: #010e76;
  padding: 40px 40px;
  width: 100%;
  height: auto;
  text-align: center;
}

.studentBenefits h2 {
  text-transform: uppercase;
  color: #010e76;
  font-weight: 900;
  display: inline-block;
}

.marksSection {
  width: 100%;
  height: auto;
}

.marksSection .markslaptopView {
  width: 100%;
  height: 100%;
}

.marksSection .marksmobileView {
  display: none;
}

.ttoResultSection {
  width: 100%;
  min-height: 300px;
  background-color: white;
  padding: 40px;
}

.ttoResultSection img {
  width: 100%;
  height: auto;
}

.ttoResultSection .ttoResultSectionTitle {
  color: black;
  font-size: 40px;
}

.ttoResultSection .ttoResultSectionSubTitle {
  color: black;
}

.ttoResultSection .ttoResultDownloadBox {
  width: 50%;
  height: 150px;
  margin: auto;
  background-color: #FA6400;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border-radius: 6px;
}

.ttoResultSection .ttoResultDownloadBox .ttoResultDownloadBoxTitle {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: white;
}

.TTO-ProcessSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #010e76;
  width: 100%;
  height: auto;
}

.TTO-ProcessSection h2 {
  text-transform: uppercase;
  margin-bottom: 30px;
}

.TTO-ProcessSection .ttoProcesslaptopView {
  width: 60%;
  height: 100%;
}

.TTO-ProcessSection .ttoProcessmobileView {
  display: none;
}

.ttoRegisterFormSection {
  width: 100%;
  margin: auto;
  height: auto;
  padding: 40px 40px;
}

.ttoRegisterFormSection h2 {
  text-transform: uppercase;
  font-weight: 900;
  color: #010e76;
}

.ttoRegisterFormSection .TTORegisterForm {
  border-radius: 16px;
  width: 50%;
  margin: auto;
  /* reset input */
}

.ttoRegisterFormSection .TTORegisterForm .form__group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 10px;
  width: 100%;
}

.ttoRegisterFormSection .TTORegisterForm .form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 2px solid #010e76;
  outline: 0;
  font-size: 15px;
  color: Black;
  padding: 7px 0;
  background: transparent;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.ttoRegisterFormSection .TTORegisterForm .form__field::-webkit-input-placeholder {
  color: transparent;
}

.ttoRegisterFormSection .TTORegisterForm .form__field:-ms-input-placeholder {
  color: transparent;
}

.ttoRegisterFormSection .TTORegisterForm .form__field::-ms-input-placeholder {
  color: transparent;
}

.ttoRegisterFormSection .TTORegisterForm .form__field::placeholder {
  color: transparent;
}

.ttoRegisterFormSection .TTORegisterForm .form__field:placeholder-shown ~ .form__label {
  font-size: 1rem;
  cursor: text;
  top: 20px;
}

.ttoRegisterFormSection .TTORegisterForm .form__label {
  position: absolute;
  top: 0;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 1rem;
  color: #010e76;
}

.ttoRegisterFormSection .TTORegisterForm .form__field:focus {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  -o-border-image: linear-gradient(to right, #010e76, #010e76);
  border-image: -webkit-gradient(linear, left top, right top, from(#010e76), to(#010e76));
  border-image: linear-gradient(to right, #010e76, #010e76);
  border-image-slice: 1;
}

.ttoRegisterFormSection .TTORegisterForm .form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 1rem;
  color: #010e76;
  font-weight: 700;
}

.ttoRegisterFormSection .TTORegisterForm .form__field:required, .ttoRegisterFormSection .TTORegisterForm .form__field:invalid {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ttoRegisterFormSection .TTORegisterForm .TTOregisterSubmit {
  background: transparent;
  color: #010e76;
  border-radius: 20px;
  border: 3px solid #010e76;
}

.ttoRegisterFormSection .TTORegisterForm .TTOregisterSubmit:hover {
  background-color: #010e76;
  color: white;
}

.ttoRegisterFormSection .TTORegisterForm .TTOregisterSubmit:focus {
  outline: none;
}

.mobileStudentBenefits {
  padding: 40px 20px;
  background-color: #010e76;
}

.mobileStudentBenefits .mobileViewBenefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mobileStudentBenefits h2 {
  text-transform: uppercase;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .headersocialIconsAndRegisterBtn {
    width: 70% !important;
  }
  .navLinks {
    width: 75% !important;
  }
}

@media screen and (max-width: 791px) {
  .headersocialIconsAndRegisterBtn {
    width: 650% !important;
  }
  .navLinks {
    width: 90% !important;
  }
}

.mobileHeader {
  width: 100%;
  height: auto;
  color: white;
}

.mobileHeader .mobileTopHeader {
  width: 100%;
  height: 40px;
  background-color: #010e76;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobileHeader .mobileTopHeader a {
  border: 2px solid;
  padding: 0px 6px;
  border-radius: 16px;
  text-decoration: none;
}

.mobileHeader .mobileTopHeader a:hover {
  background: white;
  color: #010e76 !important;
}

.mobileHeader .socialIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
}

.mobileHeader .socialIcons .socialLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobileHeader .socialIcons .socialLinks a {
  text-decoration: none;
}

.mobileHeader .socialIcons .socialLinks a .fa {
  background-color: red;
  border-radius: 50%;
  padding: 8px 8px;
  color: white;
}

.mobileHeader .socialIcons .socialLinks a .fa:nth-last-child(2) {
  padding: 0px 1px;
}

.mobileHeader .socialIcons .contactus {
  color: #010e76;
  text-align: center;
}

.mobileHeader .socialIcons hr {
  height: 1px;
  background-color: #010e76;
  width: 100%;
}

.mobileHeader .socialIcons .mobileNavBar {
  position: relative;
  z-index: 1;
  right: 0px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
}

.mobileHeader .socialIcons .mobileNavBar .techvantoMobileLogo {
  width: 130px;
  height: 40px;
}

.mobileHeader .socialIcons .mobileNavBar .menu-toggle .fa {
  font-size: 26px;
  color: #010e76;
  cursor: pointer;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav {
  position: absolute;
  width: 100%;
  height: auto;
  background: #010e76;
  top: 50px;
  left: -150%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav ul li {
  list-style: none;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav ul li a {
  height: 50px;
  padding: 0px 20px;
  color: white;
  text-decoration: none;
  display: block;
  line-height: 50px;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav ul li a:hover {
  background: white;
  color: #010e76 !important;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav ul li .subMenu::before {
  content: '\f0d7';
  position: absolute;
  font-family: fontAwesome;
  color: white;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav .mobileActive {
  display: block;
}

.mobileHeader .socialIcons .mobileNavBar .mobileNav .mobileHide {
  display: none;
}

@media screen and (max-width: 660px) {
  .header {
    display: none;
  }
  .mobileHeader {
    display: block;
  }
  .hero {
    width: 100%;
    height: auto;
  }
  .hero img {
    width: 100%;
    height: auto !important;
  }
  .studentBenefits {
    display: none;
  }
  .mobileStudentBenefits {
    display: block;
  }
  .mobileStudentBenefits h2 {
    font-size: 22px;
  }
  .mobileStudentBenefits .mobileViewBenefits .mobileSize {
    width: 70px !important;
    height: 70px !important;
  }
  .TTO-ProcessSection {
    padding: 40px 20px;
  }
  .TTO-ProcessSection h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 900;
  }
  .TTO-ProcessSection .ttoProcesslaptopView {
    display: none;
  }
  .TTO-ProcessSection .ttoProcessmobileView {
    display: block;
    width: 100%;
    height: 100%;
  }
  .aboutTechOlympiad {
    height: auto;
    padding: 20px 20px;
  }
  .aboutTechOlympiad h2 {
    font-size: 22px;
    font-weight: 900;
    text-align:center;
  }
  
   .aboutTechOlympiad h4{
    font-size: 18px;
    font-weight: 900;
    text-align:center;
  }
  .aboutTechOlympiad p {
    font-size: 18px;
  }
  .marksSection {
    width: 100%;
    height: auto;
  }
  .marksSection .markslaptopView {
    display: none !important;
  }
  .marksSection .marksmobileView {
    width: 100%;
    height: 100%;
    display: block;
  }
  .ttoResultSection .ttoResultDownloadBox {
    margin-top: 25px;
    width: 100%;
  }
  .TTORegisterForm {
    width: 100% !important;
    margin: auto;
  }
  .aboutTechOlympiad .aboutTTO {
    text-align: justify;
  }
  .ttoRegisterFormSection {
    padding: 20px;
  }
}
/*# sourceMappingURL=onlineTest.css.map */