@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

:root {
  --blue: #004efc;
  --light-blue: #0074ff;
  --black: #08061d;
  --light-color: #666;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
}

body {
  background: #eee;
}

section {
  padding: 2rem 7%;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  margin-left: 2rem;
  border-radius: 0.5rem;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 0.6rem 2rem;
}

.btn2 {
  display: inline-block;
  border-radius: 0.5rem;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 0.6rem 2rem;
}

.btn:hover {
  background: var(--light-blue);
}

.btn2:hover {
  background: var(--light-blue);
}

.heading span {
  font-weight: bolder;
  color: var(--light-blue);
}

.header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 7%;
}

.header .logo img {
  width: 100%;
  height: 70px;
}

.header .navbar a {
  font-size: 1.7rem;
  margin: 8px;
  color: var(--black);
}

.header .navbar a:hover {
  color: var(--light-blue);
}

.header .btn {
  margin-top: 0px;
}

.header #login-btn i {
  font-size: 2.5rem;
  color: var(--light-color);
  cursor: pointer;
  display: none;
}

#menu-btn {
  font-size: 2.5rem;
  color: var(--light-color);
  cursor: pointer;
  display: none;
}

.header .active {
  box-shadow: var(--box-shadow);
  padding: 2rem 9%;
}

/*  login form  */

.login-form-form-container {
  padding-top: 11rem;
  margin-bottom: 5rem;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form-form-container form {
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  background: #fff;
  border: var(--border);
  text-align: center;
  width: 40rem;
}

.login-form-form-container form .checkbox {
  font-size: 1.4rem;
  float: left;
  margin: 1rem;
}

.login-form-form-container form .btn {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
}

.login-form-form-container form h3 {
  color: var(--black);
  font-size: 2.5rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.login-form-form-container form .box {
  margin: 0.7rem 0;
  width: 100%;
  text-transform: none;
  color: var(--black);
  font-size: 1.6rem;
  padding: 1rem 1.2rem;
  border: var(--border);
  border-radius: 0.5rem;
}

.login-form-form-container form .forgot a {
  font-size: 1.4rem;
  color: var(--light-blue);
  cursor: pointer;
  float: right;
  margin: 1rem;
}

.login-form-form-container form .forgot a:hover {
  color: red;
}

.login-form-form-container form p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
}

.login-form-form-container form p a {
  color: var(--light-blue);
  text-decoration: underline;
}

/* sign page */

.sign-up-form {
  padding-top: 13rem;
  margin-bottom: 5rem;
}

.sign-up-form-form-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-up-form-form-container form {
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  background: #fff;
  border: var(--border);
  text-align: center;
  width: 50%;
}

.sign-up-form-form-container form .btn {
  width: 50%;
  margin-top: 3rem;
  margin-right: 1rem;
  align-items: center;
  justify-content: center;
}

.sign-up-form-form-container form h3 {
  color: var(--black);
  font-size: 2.8rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.sign-up-form-form-container form .box {
  margin: 0.5rem 0;
  width: 100%;
  text-transform: none;
  color: var(--black);
  font-size: 1.5rem;
  display: flex;
  padding: 0.5rem 1rem;
  border: var(--border);
  border-radius: 0.5rem;
}

.sign-up-form-form-container form label {
  font-size: 1.5rem;
  float: left;
  color: var(--black);
  margin: 5px;
}

.sign-up-form-form-container form label code {
  color: red;
}

.sign-up-form-form-container form ::placeholder {
  color: var(--black);
}

.sign-up-form-form-container form .check-box input {
  float: left;
  margin-top: 1rem;
}

.sign-up-form-form-container form .check-box label {
  float: left;
}

/* home section start */

.home-container {
  padding-top: 13rem;
  padding-bottom: 2.5rem;
  overflow-x: hidden;
  background: #eee;
}

.home-container .home-container-box {
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 0.5rem;
}

.home-container .home-container-box .content-heading h4 {
  width: 100%;
  height: 51px;
  font-size: 18px;
  background: var(--light-blue);
  color: #fff;
  padding: 3px 20px 20px 20px;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  border: var(--border);
}

.home-container-box .home-content {
  padding-bottom: 2rem;
  background: #fff;
  box-shadow: var(--box-shadow);
}

.home-container-box .home-content .content {
  width: 100%;
  padding: 2rem;
}

.home-container-box .home-content .content h1 {
  font-size: 2rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  color: var(--light-color);
  line-height: 1.5em;
}

.home-container-box .home-content .content h1 span {
  color: var(--light-blue);
  letter-spacing: 1px;
}

.home-container-box .home-content .content p {
  font-size: 1.5rem;
  color: var(--black);
  line-height: 1.5em;
}

.home-container-box .home-content button i {
  font-size: 1.3rem;
  color: #fff;
}

/* about section start */
.about-container {
  width: 100%;
  padding-bottom: 5rem;
}

.about-container h4 {
  width: 100%;
  height: 51px;
  font-size: 18px;
  background: var(--light-blue);
  color: #fff;
  padding: 3px 20px 20px 20px;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  border: var(--border);
}

.about-container-box {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2.5rem;
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.about-container-box .about-right-content h1 {
  font-size: 2.5rem;
  padding-bottom: 1.5rem;
  color: var(--light-color);
}

.about-container-box .about-right-content h2 {
  font-size: 2rem;
  padding-bottom: 1.5rem;
  color: var(--light-color);
}

.about-container-box .about-right-content h2 span {
  color: var(--light-blue);
  letter-spacing: 1px;
}

.about-container-box .about-right-content p {
  font-size: 1.5rem;
  word-spacing: 2px;
  padding-bottom: 3rem;
  color: var(--black);
}

.about-container-box .about-right-content .Social-icons {
  gap: 1.5rem;
  display: flex;
}

.about-container-box .about-right-content .Social-icons i {
  width: 5rem;
  height: 5rem;
  font-size: 2.5rem;
  line-height: 5.5rem;
  border-radius: 50%;
  background: #eee;
  color: var(--black);
  text-align: center;
  cursor: pointer;
}

.about-container-box .about-right-content .Social-icons i:hover {
  background: var(--light-blue);
  color: #fff;
}

.about-container-box .about-left-content img {
  width: 270px;
  height: 310px;
  float: right;
}

.about-container-box .about-left-content img:hover {
  cursor: pointer;
}

/* footer section */
.footer {
  background: #fff;
  box-shadow: var(--box-shadow);
}

.footer .box-container img {
  width: 90%;
  height: 60px;
  margin-right: 5rem;
  margin-top: 5rem;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  padding: 1rem 0;
  color: var(--blue);
}

.footer .box-container .box a {
  display: block;
  font-size: 1.4rem;
  padding: 1rem 0;
  color: var(--black);
  text-transform: none;
}

.footer .box-container .box a:hover {
  color: var(--light-blue);
}

.footer .box-container .box a i {
  padding-right: 0.5rem;
  color: var(--black);
}

.footer .box-container .box a:hover i {
  color: var(--light-blue);
}

.credit {
  text-align: center;
  padding: 1.5rem;
  padding-top: 2.5rem;
  margin-top: 2rem;
  border-top: var(--border);
  font-size: 1.5rem;
  color: var(--black);
}

/* Fee Structure */

.fees-home {
  padding-top: 11rem;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
}

.fees-home .content h1 {
  font-size: 3.5rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bolder;
}

.fees-home .fee-table-box {
  width: 100%;
  height: 250px;
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 0.5rem;
  border: var(--border);
  padding-bottom: 1rem;
}

.fees-home .fee-table-box thead tr th {
  font-size: 18px;
  font-weight: 500;
  background: var(--light-blue);
  box-shadow: var(--box-shadow);
  color: white;
  border: var(--border);
  border-radius: 0.5rem;
}

.fees-home .fee-table-box tbody tr td {
  font-size: 18px;
  color: var(--blue);
  text-align: center;
}

/* privacy-policy */
.privacy-policy {
  padding-top: 11rem;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
}

.privacy-policy .content h1 {
  font-size: 3.5rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bolder;
}

.privacy-policy .Privacy-box {
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 0.5rem;
  padding-bottom: 1rem;
}

.privacy-policy .Privacy-box h2 {
  font-size: 2rem;
  color: var(--light-blue);
  text-align: center;
  margin-top: 20px;
}

.privacy-policy .Privacy-box h3 {
  font-size: 1.9rem;
  margin: 10px 10px 10px 10px;
  color: var(--light-color);
}

.privacy-policy .Privacy-box p {
  font-size: 1.3rem;
  margin: 10px 10px 10px 10px;
  color: var(--black);
  line-height: 20px;
}

.privacy-policy .Privacy-box ol li {
  font-size: 1.3rem;
  margin: 10px 10px 10px 23px;
  color: var(--black);
}

/* terms and conditions */
.terms-conditions {
  padding-top: 11rem;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
}

.terms-conditions .content h1 {
  font-size: 3.5rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bolder;
}

.terms-conditions .terms-conditions-box {
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 0.5rem;
  padding-bottom: 1rem;
}

.terms-conditions .terms-conditions-box h3 {
  font-size: 1.9rem;
  margin: 10px 10px 10px 10px;
  color: var(--light-color);
}

.terms-conditions .terms-conditions-box p {
  font-size: 1.3rem;
  margin: 10px 10px 10px 10px;
  color: var(--black);
  line-height: 20px;
}

.terms-conditions .terms-conditions-box ol li {
  font-size: 1.3rem;
  margin: 10px 10px 10px 23px;
  color: var(--black);
}

/* contact us  */

.contact-us {
  padding-top: 11rem;
  background: #eee;
  margin-bottom: 5rem;
}

.contact-us .content h1 {
  font-size: 3.5rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bolder;
}

.contact-us .location-box iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.contact-us .icons-container {
  padding-top: 3rem;
  padding-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
  background: #eee;
}

.contact-us .icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 0.5rem;
}

.contact-us .icons-container .icons i {
  width: 5rem;
  height: 5rem;
  line-height: 5.5rem;
  font-size: 2.5rem;
  border-radius: 50%;
  background: #eee;
  color: var(--black);
  text-align: center;
}

.contact-us .icons-container .icons h3 {
  color: var(--blue);
  font-weight: bolder;
  font-size: 2rem;
}

.contact-us .icons-container .icons p {
  color: var(--light-color);
  font-size: 1.4rem;
  cursor: pointer;
  text-transform: none;
}

.contact-us .icons-container .icons:hover {
  background: var(--blue);
}

.contact-us .icons-container .icons:hover i {
  background: var(#fff);
}

.contact-us .icons-container .icons:hover .content h3 {
  color: #fff;
}

.contact-us .icons-container .icons:hover .content p {
  color: #eee;
}

.forgot-password-form-form-container {
  padding-top: 11rem;
  margin-bottom: 5rem;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forgot-password-form-form-container form {
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  background: #fff;
  border: var(--border);
  text-align: center;
  width: 40rem;
}

.forgot-password-form-form-container form .btn {
  display: block;
  width: 100%;
  margin: 2rem 0;
}

.forgot-password-form-form-container form h3 {
  color: var(--black);
  font-size: 2.8rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.forgot-password-form-form-container form .box {
  margin: 0.7rem 0;
  width: 100%;
  text-transform: none;
  color: var(--black);
  font-size: 1.6rem;
  display: flex;
  padding: 1rem 1.2rem;
  border: var(--border);
  border-radius: 0.5rem;
}

.forgot-password-form-form-container form ::placeholder {
  color: var(--black);
}
/* Media queries  */
@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
  
   .header .btn{
   font-size: 0.7vw;
  }
  
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 2rem;
  }

  .header .active {
    padding: 2rem;
  }

  section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: block;
  }

  #menu-btn .fa-times {
    transform: rotate(180deg);
  }

  .header #login-btn i {
    display: block;
  }

  .header #login-btn .btn {
    display: none;
  }

  .header #sign-up-btn .btn2 {
    display: none;
  }

  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .header .navbar a {
    display: block;
    margin: 2rem;
    font-size: 2rem;
  }

  .fee-table {
    width: 100%;
    margin-left: 0rem;
  }

  .sign-up-form-form-container form {
    width: 100%;
  }

  .footer .footer-box .content h1 {
    font-size: 27px;
  }

  .footer .footer-box .content p {
    font-size: 12px;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  /* change today logo margin */
  .header .logo img {
    width: 100%;
    margin-left: 1rem;
  }

  .sign-up-form-form-container form .check-box label {
    margin-top: -2rem;
  }
}
