@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;
}

.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);
  }
}

.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;
  }
}

.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);
}

.select-box {
  display: flex;
  width: 100%;
  flex-direction: column;
  font-size: 1.6rem;
  position: relative;
  z-index: 49;
}
.select-box .options-container {
  background: var(--color-grey-6);
  border: 1px solid var(--color-grey-5);
  color: var(--color-grey-2);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05);
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;
  order: 1;
  position: absolute;
  top: 100%;
}
.select-box .options-container.active {
  max-height: 240px !important;
  opacity: 1 !important;
  overflow-y: scroll;
}
.select-box .options-container::-webkit-scrollbar {
  width: 8px;
  background: var(--color-grey-6);
  border-radius: 0 8px 8px 0;
}
.select-box .options-container::-webkit-scrollbar-thumb {
  background: var(--color-grey-3);
  border-radius: 0 8px 8px 0;
}
.select-box .selected {
  border-radius: 8px;
  margin-bottom: 8px;
  color: var(--color-grey-2);
  border: 1px solid var(--color-grey-3);
  position: relative;
  order: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.select-box .selected__arrow {
  transition: all 0.4;
  height: 2rem;
}
.select-box .selected__arrow.active {
  transform: rotate(180deg);
}
.select-box .selected {
  padding: 1.4rem 2.4rem;
  cursor: pointer;
}
.select-box .selected:hover {
  border: 1px solid var(--color-grey-2);
}
.select-box .option {
  padding: 1.2rem 2.4rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-grey-2);
}
.select-box .option:hover {
  background-color: var(--color-grey-5);
}
.select-box .option {
  display: block;
}
.select-box label {
  cursor: pointer;
}
.section-keybaord {
  width: max-content;
  background-color: #fff;
  padding: 2rem;
  border-radius: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .section-keybaord {
    width: max-content;
    padding: 1rem 0.5rem;
    gap: 0.5rem;
  }
}
.section-keybaord .keys-cont {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .section-keybaord .keys-cont {
    font-size: 1.4rem;
    padding: 0.5rem;
  }
}
.section-keybaord .keys-cont .key {
  width: 4.8rem;
  height: 5rem;
  background-color: var(--color-grey-5);
  border-radius: 0.5rem;
  outline: 2px solid transparent;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.section-keybaord .keys-cont .key--active {
  background-color: var(--color-grey-5);
  color: var(--color-grey-1);
  outline: 2px solid var(--color-grey-4);
}
.section-keybaord .keys-cont .key--active.right {
  background-color: #E4FFE4;
  outline: 2px solid #0EFF0E;
}
.section-keybaord .keys-cont .key--active.wrong {
  background-color: #F4CBCB;
  outline: 2px solid #FE1919;
}
.section-keybaord .keys-cont .key--inactive {
  background-color: #FBFBFB;
  color: var(--color-grey-4);
  outline: 2px solid #f3f3f3;
}
.section-keybaord .keys-cont .key--inactive.wrong {
  outline: 2px solid #FF8080;
}
.section-keybaord .keys-cont .key.right {
  background-color: #E4FFE4;
  outline: 2px solid #0EFF0E;
}
.section-keybaord .keys-cont .key.wrong {
  background-color: #F4CBCB;
  outline: 2px solid #FE1919;
}
@media only screen and (max-width: 37.5em) {
  .section-keybaord .keys-cont .key {
    width: max-content;
    height: max-content;
    font-size: 1.6rem;
    padding: 0.5rem;
    flex-direction: column;
  }
}
.section-keybaord .keys-cont .key.space {
  width: 25rem;
  height: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .section-keybaord .keys-cont .key.space {
    width: 10rem;
    height: 4rem;
  }
}
.section-keybaord .keys-cont .key-shift {
  width: 7rem;
  height: 100%;
  background-color: var(--color-grey-5);
  border-radius: 0.5rem;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  font-size: 1.6rem;
  padding: 1rem;
}
.section-keybaord .keys-cont .key-shift.right {
  background-color: #E4FFE4;
  outline: 2px solid #0EFF0E;
}

.spinner:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 3px solid var(--color-grey-4);
  border-top-color: var(--color-grey-1);
  animation: spinner 1s ease infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
body {
  background-color: #fff;
}

.section-typing {
  max-width: 100rem;
  height: max-content;
  margin: 0 auto;
  padding: 3.2rem 1rem;
}
@media only screen and (max-width: 56.25em) {
  .section-typing {
    padding: 8rem 1rem;
  }
}
.section-typing .filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6rem;
  gap: 1rem;
}
.section-typing .filters .wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.section-typing .filters .wrapper .label {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-grey-4);
}
.section-typing .filters .wrapper:nth-child(1) {
  width: 30rem;
}
.section-typing .filters .wrapper:nth-child(2) {
  align-items: end;
  width: 20rem !important;
}
.section-typing .screen-cont {
  width: 100%;
  height: max-content;
  background-color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.06);
  border-radius: 3.2rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 22rem 1fr;
}
@media only screen and (max-width: 37.5em) {
  .section-typing .screen-cont {
    max-width: auto;
    width: 100%;
    margin: 1rem;
    grid-template-columns: 1fr;
  }
}
.section-typing .screen-cont .left {
  background-color: var(--color-prim-5);
  border-radius: 2.4rem;
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .section-typing .screen-cont .left {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}
.section-typing .screen-cont .left > *:first-child {
  border-bottom: 1px solid var(--color-grey-4);
  padding-bottom: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .section-typing .screen-cont .left > *:first-child {
    border-bottom: none;
  }
}
.section-typing .screen-cont .left > *:last-child {
  padding-top: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .section-typing .screen-cont .left > *:last-child {
    padding-top: 0rem;
  }
}
.section-typing .screen-cont .left > * .header {
  font-size: 1.4rem;
  color: var(--color-grey-4);
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.section-typing .screen-cont .left > * .header svg {
  width: 2.8rem;
  height: 2.8rem;
}
.section-typing .screen-cont .left > * .main {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-grey-3);
  text-align: center;
}
.section-typing .screen-cont .left > * .main span {
  font-size: 4.2rem;
  font-weight: 300;
  color: var(--color-grey-1);
}
.section-typing .screen-cont .right {
  padding: 3.2rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-typing .screen-cont .right .paragraph-cont {
  position: relative;
}
.section-typing .screen-cont .right .word-bg {
  width: 0rem;
  height: 0rem;
  transition: all 0.1s;
  background-color: #e0e0e0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 2px;
}
.section-typing .screen-cont .right .paragraph {
  font-size: 1.8rem;
  color: var(--color-grey-3);
  font-weight: 300;
  position: relative;
  background: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.section-typing .screen-cont .right .paragraph .word {
  padding: 2px 5px;
  display: inline;
  background: none;
}
.section-typing .typing-el {
  display: grid;
  grid-template-columns: 10rem 1fr 10rem;
  grid-template-rows: max-content max-content;
  grid-template-areas: "hand1 input hand2" ". keyboard .";
}
@media only screen and (max-width: 56.25em) {
  .section-typing .typing-el {
    margin-top: 3.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.section-typing .typing-el svg {
  width: 10rem;
}
.section-typing .typing-el svg:nth-child(1) {
  grid-area: hand1;
}
.section-typing .typing-el svg:nth-child(2) {
  grid-area: hand2;
}
@media only screen and (max-width: 56.25em) {
  .section-typing .typing-el svg {
    display: none;
  }
}
.section-typing .typing-el input {
  padding: 2.4rem 1.2rem;
  align-self: center;
  justify-self: center;
  background-color: var(--color-grey-5);
  border-radius: 5px;
  border: none;
  text-align: center;
  font-size: 1.6rem;
  width: 90%;
  grid-area: input;
}
.section-typing .typing-el input::placeholder {
  font-family: sans-serif;
  font-size: 1.8rem;
}
.section-typing .typing-el input:-ms-input-placeholder {
  font-family: sans-serif;
  font-size: 1.8rem;
}
.section-typing .typing-el input::-ms-input-placeholder {
  font-family: sans-serif;
  font-size: 1.8rem;
}
.section-typing .typing-el .section-keybaord {
  grid-area: keyboard;
}
.section-typing.result .filters, .section-typing.result .screen-cont, .section-typing.result .typing-el {
  display: none;
}
.section-typing.result .section-result {
  display: flex !important;
}

.section-result {
  max-width: 48rem;
  margin: 0 auto;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  padding: 3.2rem;
  border-radius: 3.2rem;
  color: var(--color-grey-2);
  display: none;
  flex-direction: column;
  align-items: center;
}
.section-result__heading {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-result__score {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-result__score span {
  font-size: 8.6rem;
  font-weight: 800;
  line-height: 1;
}
.section-result__details {
  width: 100%;
  background-color: var(--color-prim-4);
  border-radius: 2rem;
  padding: 0.5rem 3.2rem 1.6rem 3.2rem;
  display: flex;
  justify-content: space-between;
}
.section-result__details--detail {
  font-size: 1.4rem;
}
.section-result__details--detail p span {
  font-size: 3.2rem;
  font-weight: 700;
}

.section-details {
  max-width: 100rem;
  margin: 0 auto;
  color: var(--color-grey-2);
  padding: 0 0 8rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-details {
    padding: 0 1rem 8rem 1rem;
  }
}
.section-details iframe {
  width: 60rem;
  height: 30rem;
  display: block;
  margin: 1.6rem auto;
}
.section-details h1 {
  font-size: 3.6rem;
}
.section-details h2 {
  font-size: 2.4rem;
  margin: 2rem 0 0.6rem 0;
}
.section-details p, .section-details li {
  font-size: 1.6rem;
  line-height: 1.7;
}
.section-details a {
  color: #007CEE;
}/*# sourceMappingURL=style_test.css.map */