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

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

.section-card {
  padding: 3.2rem;
  background-color: var(--color-grey-5);
  border-radius: 3.5rem;
  cursor: pointer;
  transition: all 0.3s;
  animation-name: sectioncard;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
}
.section-card:hover {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.section-card:active {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
}
.section-card.completed {
  background-color: #F2FCF2;
}
.section-card.completed .checked {
  display: block;
}
.section-card.active {
  background-color: var(--color-prim-4);
}
.section-card.locked .lock {
  display: block;
}
.section-card .header {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-card .header h2 {
  color: var(--color-grey-2);
}
.section-card .header svg {
  width: 3.2rem;
  height: 3.2rem;
  display: none;
}
.section-card p {
  font-size: 1.6rem;
  color: var(--color-grey-3);
}
.section-card p span {
  font-size: 2rem;
  color: var(--color-grey-1);
  font-weight: 700;
  margin-left: 4px;
}
.section-card .status-message {
  text-align: right;
}
.section-card .status-bar {
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background-color: var(--color-grey-5);
  overflow: hidden;
  display: flex;
  gap: 2px;
}
.section-card .status-bar > * {
  width: 100%;
  height: 100%;
  background-color: var(--color-grey-4);
}
.section-card .status-bar .done {
  background-color: var(--color-prim-2);
}

@keyframes sectioncard {
  from {
    transform: translateY(10rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.sec-side-nav {
  background-color: #fff;
  padding: 2.4rem;
  border-radius: 0 0 3.2rem 0;
  transition: all 0.3s;
}
@media only screen and (max-width: 56.25em) {
  .sec-side-nav {
    position: fixed;
    width: 30rem;
    height: 100vh;
    transform: translateX(-100%);
    z-index: 49;
  }
}
.sec-side-nav .heading-primary {
  margin-bottom: 2.4rem;
}
.sec-side-nav .font {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-grey-4);
}
.sec-side-nav .font span {
  color: var(--color-grey-1);
}
.sec-side-nav .keys {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-grey-4);
}
.sec-side-nav .keys span {
  color: var(--color-grey-1);
  font-weight: 700;
  font-size: 1.8rem;
}
.sec-side-nav .chapter-cont {
  height: max-content;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sec-side-nav .chapter-cont .chapter {
  width: 100%;
  background-color: var(--color-grey-5);
  padding: 2.5rem;
  border-radius: 2.5rem;
  cursor: pointer;
  color: var(--color-grey-1);
  transition: all 0.2s;
  position: relative;
}
.sec-side-nav .chapter-cont .chapter:hover {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.sec-side-nav .chapter-cont .chapter h3 {
  font-size: 2rem;
  margin: 0;
}
.sec-side-nav .chapter-cont .chapter svg {
  display: none;
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.sec-side-nav .chapter-cont .chapter.completed {
  background-color: var(--green-light);
}
.sec-side-nav .chapter-cont .chapter.completed .tick {
  display: block;
}
.sec-side-nav .chapter-cont .chapter.active {
  background-color: var(--color-prim-4);
}
.sec-side-nav .chapter-cont .chapter.locked .lock {
  display: block;
}
.sec-side-nav .toggle-btn {
  background-color: #fff;
  position: absolute;
  top: 1%;
  left: 100%;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
  box-shadow: 0.4rem 0px 0.4rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .sec-side-nav .toggle-btn {
    display: block;
  }
}
.sec-side-nav .toggle-btn svg {
  width: 3.2rem;
  height: 3.2rem;
  transition: all 0.3s;
}
.sec-side-nav .toggle-btn svg path {
  fill: var(--color-grey-4);
}
@media only screen and (max-width: 56.25em) {
  .sec-side-nav.active {
    transform: translateX(0%);
  }
}
@media only screen and (max-width: 56.25em) {
  .sec-side-nav.active .toggle-btn svg {
    transform: rotate(180deg);
  }
}

.spinner.active:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 10rem;
  left: 50%;
  height: 6rem;
  width: 6rem;
  margin-top: -3rem;
  margin-left: -3rem;
  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);
  }
}
.sec-container {
  width: 100%;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 30rem 1fr;
}
@media only screen and (max-width: 56.25em) {
  .sec-container {
    grid-template-columns: 1fr;
    padding-top: 8rem;
  }
}
.sec-container .sec-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.2rem 1rem;
  position: relative;
}
.sec-container .sec-main.invisible .section-keybasic {
  display: block;
}
.sec-container .sec-main.invisible .learning-screen, .sec-container .sec-main.invisible .section-keybaord, .sec-container .sec-main.invisible .section-hands, .sec-container .sec-main.invisible .spinner, .sec-container .sec-main.invisible .section-result {
  display: none;
}
.sec-container .sec-main.loading .spinner {
  display: block;
}
.sec-container .sec-main.loading .learning-screen, .sec-container .sec-main.loading .section-keybaord, .sec-container .sec-main.loading .section-hands, .sec-container .sec-main.loading .section-keybasic {
  display: none;
}
.sec-container .sec-main.result .section-result {
  display: block;
}
.sec-container .sec-main.result .learning-screen, .sec-container .sec-main.result .section-keybaord, .sec-container .sec-main.result .section-hands, .sec-container .sec-main.result .spinner, .sec-container .sec-main.result .section-keybasic {
  display: none;
}
.sec-container .sec-main .section-result {
  display: none;
}
.sec-container .sec-main .spinner {
  display: none;
}
.sec-container .sec-main .learning-screen {
  width: 80rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .sec-container .sec-main .learning-screen {
    width: 40rem;
  }
}
.sec-container .sec-main .learning-screen .header {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec-container .sec-main .learning-screen .header .timer {
  font-size: 4rem;
  margin: 0;
}
.sec-container .sec-main .section-hands {
  width: 80rem;
  display: flex;
  justify-content: center;
  gap: 8rem;
}
@media only screen and (max-width: 37.5em) {
  .sec-container .sec-main .section-hands {
    width: 100%;
  }
}
.sec-container .sec-main .section-hands > * svg {
  height: 14rem;
}
.sec-container .sec-main .section-hands > * svg path {
  fill: var(--color-grey-2);
}

.test-charblock {
  width: 100%;
  margin: 1rem auto;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.test-charblock > * {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.test-charblock__char, .test-charblock__space {
  background: #fff;
  color: var(--color-grey-2);
  border-radius: 6px;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.test-charblock__char {
  width: 6rem;
  height: 6rem;
  box-shadow: 0 1px 1rem rgba(0, 0, 0, 0.1);
}
.test-charblock__space {
  width: 20rem;
  height: 6rem;
  box-shadow: 0 1px 1rem rgba(0, 0, 0, 0.1);
  font-family: sans-serif !important;
}
@media only screen and (max-width: 37.5em) {
  .test-charblock__space {
    display: none;
  }
}

.learn-charblock {
  width: 100%;
  margin: 1rem auto 2rem auto;
  justify-content: space-around;
  display: flex;
}
@media only screen and (max-width: 37.5em) {
  .learn-charblock {
    flex-direction: column;
    gap: 2rem;
  }
}
.learn-charblock > * {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, auto);
  grid-gap: 1.2rem;
}
@media only screen and (max-width: 37.5em) {
  .learn-charblock > * {
    justify-content: space-around;
  }
}
.learn-charblock__char, .learn-charblock__space {
  background: #fff;
  color: var(--color-grey-2);
  border-radius: 6px;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.learn-charblock__char {
  width: 6rem;
  height: 6rem;
  box-shadow: 0 1px 1rem rgba(0, 0, 0, 0.1);
}
.learn-charblock__space {
  width: 20rem;
  height: 6rem;
  box-shadow: 0 1px 1rem rgba(0, 0, 0, 0.1);
  font-family: sans-serif !important;
}
@media only screen and (max-width: 56.25em) {
  .sidenav-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 40;
  }
}
.sidenav-overlay.active {
  display: block;
}

.section-keybasic {
  max-width: 80rem;
  background-color: #fff;
  padding: 3.2rem;
  color: var(--color-grey-1);
  border-radius: 3.2rem;
  display: none;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
}
.section-keybasic h1 {
  margin-bottom: 3rem;
  font-size: 4rem;
}
.section-keybasic .heading-primary {
  font-size: 2.8rem;
}
.section-keybasic .heading-primary::after {
  background: var(--color-grey-1);
}
.section-keybasic h2 {
  margin: 2.5rem 0;
}
.section-keybasic p {
  font-size: 1.6rem;
  margin: 0 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-grey-2);
}
.section-keybasic img {
  width: 80%;
  margin: 1rem;
  padding: 1.6rem;
  border-radius: 3.2rem;
  background-color: var(--color-grey-2);
}
.section-keybasic img.sign {
  background-color: transparent;
}

.section-result {
  width: max-content;
  background-color: #fff;
  border-radius: 3.2rem;
  padding: 3.2rem;
  text-align: center;
  font-family: "Open Sans";
  max-width: 80rem;
}
@media only screen and (max-width: 37.5em) {
  .section-result {
    width: 100%;
  }
}
.section-result h1 {
  font-size: 3.2rem;
  color: var(--color-grey-2);
  font-weight: 800;
}
.section-result .p-1 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-grey-4);
}
.section-result .main-score {
  color: var(--color-grey-3);
  margin: 1rem 0 3rem 0;
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
}
.section-result .main-score span {
  font-size: 8.2rem;
  font-weight: 800;
  color: var(--color-grey-1);
}
.section-result .scores {
  width: 40rem;
  display: flex;
  justify-content: space-around;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .section-result .scores {
    width: 100%;
  }
}
.section-result .scores .score {
  font-size: 1.6rem;
  color: var(--color-grey-2);
  display: flex;
  flex-direction: column;
}
.section-result .scores .score p {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-grey-3);
}
.section-result .scores .score p span {
  margin: 0.5rem;
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--color-grey-2);
}
.section-result a {
  margin: 0 auto;
}

.container-sections {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 56.25em) {
  .container-sections {
    margin-top: 8rem;
  }
}

.section-sections {
  width: max-content;
  padding: 3.2rem;
  background-color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  margin: 5rem 0;
  border-radius: 3.5rem;
}
@media only screen and (max-width: 37.5em) {
  .section-sections {
    width: 100%;
  }
}
.section-sections h1 {
  color: var(--color-grey-2);
  margin-bottom: 4rem;
}
.section-sections h1 span {
  color: var(--color-grey-3);
}
.section-sections .cont {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(32rem, 35rem));
  justify-content: space-between;
  row-gap: 2rem;
  column-gap: 2rem;
}
.section-sections .cont > * {
  text-decoration: none;
}
@media only screen and (max-width: 56.25em) {
  .section-sections .cont {
    grid-template-columns: repeat(2, minmax(32rem, 35rem));
  }
}
@media only screen and (max-width: 37.5em) {
  .section-sections .cont {
    grid-template-columns: 1fr;
    justify-content: space-around;
  }
}/*# sourceMappingURL=learn.css.map */