@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
:root {
  --color-grey-1: #151515;
  --color-grey-2: #2c2c2c;
  --color-grey-3: #8a8a8a;
  --color-grey-4: #C1C1C1;
  --color-grey-5: #F2F2F2;
  --color-grey-6: #F6F6F6;
  --color-prim-1: #71afcd;
  --color-prim-2: #7dc2e4;
  --color-prim-3: #97cee9;
  --color-prim-4: #e5f3fa;
  --color-prim-5: #f2f9fc;
  --green-light: #F2FCF2;
  --green-dark: #B4FFB4;
  --red-light: #F4CBCB;
  --red-dark: #FF0000;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 85.375em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 53.12%;
  }
}
@media only screen and (max-width: 66em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 43.75%;
  }
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--color-grey-6);
}

.heading-primary {
  font-size: 3rem;
  font-weight: 400;
  position: relative;
  width: max-content;
}
.heading-primary::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 120%;
  width: 50%;
  height: 1px;
  background: black;
}

.h1 {
  font-size: 5.6rem;
  font-weight: 700;
  margin: 0;
}

.h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0;
}
.h2 span {
  font-weight: 300;
}

.h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
}

.h4 {
  font-size: 2.4rem;
  font-weight: 400;
}

.h5 {
  font-size: 1.8rem;
  font-weight: 700;
}

.p-1 {
  font-size: 1.8rem;
  font-weight: 600;
}

.p-2 {
  font-size: 1.8rem;
  font-weight: 300;
}

.p-3 {
  font-size: 1.6rem;
  font-weight: 600;
}

.p-4 {
  font-size: 1.6rem;
  font-weight: 300;
}

.btn--1 {
  text-decoration: none;
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  padding: 1.4rem 3.2rem;
  background-color: var(--color-grey-1);
  border-radius: 100px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn--1:hover {
  background-color: var(--color-grey-2);
}
.btn--2 {
  text-decoration: none;
  width: max-content;
  font-size: 1.6rem;
  color: #fff;
  background-color: var(--color-grey-1);
  border-radius: 100px;
  transition: all 0.2s;
  padding: 1.4rem 2.4rem 1.4rem 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.btn--2:hover {
  background-color: var(--color-grey-2);
}
.btn--3 {
  width: max-content;
  font-size: 1.6rem;
  padding: 1.4rem 2.4rem 1.4rem 1.6rem;
  background-color: var(--color-prim-4);
  border-radius: 1.4rem;
  color: var(--color-prim-1);
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.btn--3 svg {
  width: 2.8rem;
  height: 2.8rem;
}
.btn--3:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.04);
}
.btn--3:active {
  background-color: var(--color-prim-5);
  transform: translateY(-2.5px);
}
.btn--ghost {
  border: 2px solid var(--color-prim-1);
  padding: 1.4rem 2.4rem;
  font-size: 1.6rem;
  color: var(--color-prim-1);
  border-radius: 1.4rem;
  width: max-content;
  cursor: pointer;
  transition: all 0.2s;
}
.btn--ghost:hover {
  background-color: var(--color-prim-4);
  border: 2px solid var(--color-prim-4);
}

.section-header {
  width: 100%;
  height: 8rem;
  background-color: #fff;
  padding: 1rem 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .section-header {
    position: fixed;
    top: 0;
    z-index: 49;
  }
}
.section-header svg {
  height: 4rem;
}
.section-header svg path {
  fill: var(--color-grey-1);
}
.section-header .nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .section-header .nav {
    width: 80vw;
    height: 100vh;
    background-color: var(--color-prim-5);
    z-index: 51;
    position: absolute;
    top: 8rem;
    left: 0;
    transform: translateX(-100%);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
}
.section-header .nav--el {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-grey-2);
}
@media only screen and (max-width: 37.5em) {
  .section-header .nav--el {
    font-weight: 700;
  }
}
.section-header .nav--el:hover {
  color: var(--color-grey-1);
}
.section-header .nav a {
  cursor: pointer;
}
.section-header .nav__user-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.5rem;
  transition: all 0.3s;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-grey-2);
  text-decoration: none;
}
.section-header .nav__user-nav--photo {
  height: 4rem;
  border-radius: 50%;
  transition: all 0.3s;
}
.section-header .nav__user-nav:hover {
  transform: translateY(-2.5px);
}
@media only screen and (max-width: 37.5em) {
  .section-header .overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 8rem;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    opacity: 0;
    display: none;
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-header .navigation__button {
    position: absolute;
    top: 50%;
    right: 2%;
    z-index: 100;
    display: none;
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 37.5em) and (max-width: 56.25em) {
  .section-header .navigation__button {
    display: block;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-header .navigation__icon {
    transition: all 0.3s;
  }
  .section-header .navigation__icon, .section-header .navigation__icon::before, .section-header .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background-color: var(--color-grey-1);
    display: inline-block;
  }
  .section-header .navigation__icon::before, .section-header .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all 0.2s;
  }
  .section-header .navigation__icon::before {
    top: -0.8rem;
  }
  .section-header .navigation__icon::after {
    top: 0.8rem;
  }
}
.section-header.active {
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 51;
}
.section-header.active label span {
  background-color: transparent;
}
.section-header.active label span::before {
  top: 0;
  transform: rotate(135deg);
}
.section-header.active label span::after {
  top: 0;
  transform: rotate(-135deg);
}
@media only screen and (max-width: 37.5em) {
  .section-header.active .overlay {
    z-index: 50;
    display: block;
    opacity: 1;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-header.active .nav {
    transform: translateX(0);
  }
}

.notification {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-prim-2);
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border-radius: 100px;
}

.section-footer {
  width: 100%;
  padding: 6rem 3.2rem;
  background-color: var(--color-grey-1);
}
.section-footer .wrapper {
  max-width: 100rem;
  margin: 0 auto;
}
.section-footer .wrapper .prim {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid var(--color-grey-2);
}
.section-footer .wrapper .prim img {
  width: min-content;
  margin-bottom: 2rem;
  height: 4rem;
}
.section-footer .wrapper .prim .navs {
  display: flex;
  gap: 4rem;
}
.section-footer .wrapper .prim .navs nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section-footer .wrapper .prim .navs nav.active {
  display: none;
}
.section-footer .wrapper .prim .navs nav li {
  font-size: 1.4rem;
  list-style: none;
}
.section-footer .wrapper .prim .navs nav li a {
  text-decoration: none;
  color: var(--color-grey-6);
  font-weight: 300;
}
.section-footer .wrapper .sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3.2rem;
}
.section-footer .wrapper .sec .copyright {
  font-size: 1.4rem;
  color: var(--color-prim-5);
}
.section-footer .wrapper .sec .copyright a {
  color: var(--color-prim-5);
}
.section-footer .wrapper .sec .share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}
.section-footer .wrapper .sec .share p {
  font-size: 1.3rem;
  color: var(--color-grey-3);
}
.section-footer .wrapper .sec .share svg {
  width: 2.4rem;
  height: 2.4rem;
}
.section-footer .wrapper .sec .share a {
  cursor: pointer;
}
.section-footer .wrapper .sec .share a:hover svg path {
  fill: var(--color-prim-1);
}
@media only screen and (max-width: 37.5em) {
  .section-footer .wrapper .prim {
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
  }
  .section-footer .wrapper .prim .navs {
    width: max-content;
  }
  .section-footer .wrapper .sec {
    flex-direction: column;
  }
}

.main {
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-main {
  width: 100rem;
  height: max-content;
  margin: 5rem auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .section-main {
    width: 100%;
    padding: 0 20px;
    margin-top: 9rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-main {
    max-width: 50rem;
    grid-template-columns: 100%;
    margin-top: 9rem;
  }
}
.section-main > * {
  background-color: #fff;
  border-radius: 3.2rem;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
  padding: 2.4rem;
}

.section-typing {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.section-typing > * {
  padding: 2rem 3.2rem 3.2rem 3.2rem;
  border-radius: 3rem;
}
.section-typing > * select {
  font-size: 1.6rem;
  font-weight: 300;
  padding: 1.4rem 1.8rem;
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  border: none;
  color: var(--color-grey-1);
}
.section-typing .learn {
  background: var(--color-prim-4);
}
.section-typing .learn .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}
.section-typing .learn select {
  margin-bottom: 4rem;
}
.section-typing .test {
  background-color: var(--color-grey-6);
}
.section-typing .test h1 {
  margin-bottom: 4rem;
}
.section-typing .test .cont {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-results {
  display: flex;
  flex-direction: column;
}
.section-results h1 {
  margin-bottom: 4rem;
}
.section-results .table-header {
  width: 100%;
  background-color: var(--color-prim-5);
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-grey-1);
  font-weight: 700;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 20% 30% 20% 30%;
}
@media only screen and (max-width: 37.5em) {
  .section-results .table-header {
    grid-template-columns: 15% 40% 15% 30%;
  }
}
.section-results .table-body {
  width: 100%;
  height: 50rem;
  overflow-y: scroll;
  padding-right: 5px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  /* Track */
}
.section-results .table-body::-webkit-scrollbar {
  width: 0.8rem; /* width of the entire scrollbar */
  border-radius: 100px; /* roundness of the scroll thumb */
  overflow: hidden;
}
.section-results .table-body::-webkit-scrollbar-track {
  background: var(--color-grey-5); /* color of the tracking area */
}
.section-results .table-body::-webkit-scrollbar-thumb {
  border-radius: 100px; /* roundness of the scroll thumb */
  background-color: var(--color-grey-3);
  border: none;
}
.section-results .table-body .list {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 2rem 0;
  border-radius: 2rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: 20% 30% 20% 30%;
  text-align: center;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .section-results .table-body .list {
    grid-template-columns: 15% 40% 15% 30%;
  }
}
.section-results .table-body .list:nth-child(1) {
  background-color: var(--color-prim-4);
}
.section-results .table-body .list:not(:first-child) {
  background-color: var(--color-grey-6);
}
.section-results .table-body .list:not(:first-child):hover {
  background-color: var(--color-grey-5);
}
.section-results .table-body .list p {
  color: var(--color-grey-3);
}
.section-results .table-body .list p span {
  color: var(--color-grey-1);
  font-size: 1.8rem;
  font-weight: 700;
}
.section-results .table-body .list .profile {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1.5rem;
  font-weight: 700;
}
.section-results .table-body .list .profile img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}

.section-login-cont {
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-login-cont .error-cont {
  padding: 1.6rem 3.2rem;
  background-color: var(--color-grey-1);
  border-radius: 1rem;
  font-size: 1.8rem;
  color: #fff;
  position: absolute;
  top: 9rem;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.section-login-cont .error-cont .err {
  display: none;
}
.section-login-cont .error-cont.error .tick {
  display: none;
}
.section-login-cont .error-cont.error .err {
  display: block;
}
.section-login-cont .section-login {
  width: 40rem;
  background-color: #fff;
  margin: 2rem auto;
  padding: 3.2rem;
  text-align: center;
  border-radius: 3.2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}
.section-login-cont h1 {
  font-size: 3.8rem;
  font-weight: 400;
  margin-bottom: 4rem;
  color: var(--color-grey-2);
}
.section-login-cont input {
  border: none;
  background-color: var(--color-grey-5);
  font-size: 1.6rem;
  width: 100%;
  padding: 2rem 2.4rem;
  margin-bottom: 1rem;
  border-radius: 5px;
}
.section-login-cont a {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  text-align: right;
  color: var(--color-grey-1);
}
.section-login-cont button {
  width: 100%;
  text-decoration: none;
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  padding: 1.4rem 3.2rem;
  background-color: var(--color-grey-1);
  border-radius: 100px;
  transition: all 0.2s;
  cursor: pointer;
  margin-top: 1rem;
}
.section-login-cont button:hover {
  background-color: var(--color-grey-2);
}

.section-profile {
  width: 80rem;
  min-height: 80vh;
  background-color: #fff;
  margin: 4rem auto;
  padding: 3.2rem;
}
@media only screen and (max-width: 56.25em) {
  .section-profile {
    margin-top: 12rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-profile {
    width: 100%;
    margin: 12rem 1rem 4rem 1rem;
  }
}
.section-profile h1 {
  width: max-content;
  margin: 0 auto;
  margin-bottom: 4rem;
  color: var(--color-grey-2);
}
.section-profile .user-profile-cont {
  max-width: 50rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.section-profile .user-profile-cont img {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.section-profile .user-profile-cont form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section-profile .user-profile-cont form label {
  font-size: 1.6rem;
  color: var(--color-grey-4);
}
.section-profile .user-profile-cont form .input {
  background-color: var(--color-grey-5);
  border: 1px solid transparent;
  padding: 1.4rem 2.4rem;
  font-size: 1.6rem;
  color: var(--color-grey-2);
}
.section-profile .user-profile-cont form .btn--3 {
  margin-left: auto;
  margin-top: 3rem;
}

.section-container {
  padding: 3.2rem;
}
@media only screen and (max-width: 56.25em) {
  .section-container {
    padding: 3.2rem 1rem;
  }
}

.section-contact {
  width: 100%;
  height: max-content;
  background-color: #fff;
  border-radius: 3.2rem;
  padding: 3.2rem;
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  .section-contact {
    margin: 0 auto;
    margin-top: 8rem;
    max-width: 60rem;
    flex-direction: column;
    gap: 4rem;
  }
}
.section-contact .left {
  width: 50%;
  padding-right: 3.2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 56.25em) {
  .section-contact .left {
    width: 100%;
    padding-right: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-contact .left {
    text-align: center;
  }
}
.section-contact .left h1 {
  font-size: 4.8rem;
  color: var(--color-grey-2);
}
.section-contact .left p {
  max-width: 65rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-grey-3);
  line-height: 1.6;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .section-contact .left p {
    width: 100%;
  }
}
.section-contact .left form {
  width: 40rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .section-contact .left form {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-contact .left form {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }
}
.section-contact .left form input:nth-child(1) {
  grid-row: 1/2;
}
@media only screen and (max-width: 37.5em) {
  .section-contact .left form input:nth-child(2) {
    grid-row: 2/3;
  }
}
.section-contact .left form input:nth-child(3) {
  grid-row: 2/3;
  grid-column: 1/3;
}
@media only screen and (max-width: 37.5em) {
  .section-contact .left form input:nth-child(3) {
    grid-row: 3/4;
    grid-column: 1/2 !important;
  }
}
.section-contact .left input, .section-contact .left textarea {
  background-color: var(--color-grey-5);
  font-size: 1.6rem;
  outline: none;
  border: 1px solid transparent;
  padding: 1.4rem 2.4rem;
  border-radius: 0.8rem;
  font-family: inherit;
}
.section-contact .left textarea {
  resize: none;
  width: 100%;
  height: 16rem;
  margin-bottom: 2rem;
  grid-row: 3/4;
  grid-column: 1/3;
}
@media only screen and (max-width: 37.5em) {
  .section-contact .left textarea {
    grid-row: 4/5;
    grid-column: 1/2;
  }
}
.section-contact .right {
  width: 50%;
  background-color: var(--color-grey-5);
  border-radius: 2.8rem;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .section-contact .right {
    width: 100%;
  }
}
.section-contact .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-contact .right .info {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 2rem;
  width: 30rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  grid-gap: 0.8rem;
}
.section-contact .right .info a {
  text-decoration: none;
  font-size: 1.4rem;
  color: var(--color-prim-5);
}

.section-privacy-policy {
  width: 100%;
  min-height: 80vh;
  padding: 3.2rem 1rem;
  background-color: #fff;
}
.section-privacy-policy .cont {
  max-width: 100rem;
  margin: 0 auto;
}
.section-privacy-policy .cont h1 {
  font-size: 3.6rem;
}
.section-privacy-policy .cont h2 {
  font-size: 2.4rem;
  margin: 2rem 0 0.6rem 0;
}
.section-privacy-policy .cont p, .section-privacy-policy .cont li {
  font-size: 1.6rem;
  line-height: 1.7;
}
.section-privacy-policy .cont p span, .section-privacy-policy .cont li span {
  font-weight: 700;
}
.section-privacy-policy .cont a {
  color: #007CEE;
}/*# sourceMappingURL=style.css.map */