@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;700&display=swap");

:root {
  --color-blue: #00a859;
  --color-red: #FC5789;
  --color-yellow: #FFF173;
  --color-gray: #222;
  --font-content: 'Quicksand', sans-serif;
  --font-text: 'Quicksand', sans-serif;
  --font-custom: 'Quicksand', sans-serif;
  --background-rgba: linear-gradient(90.07deg, #F68121 -0.48%, #F86E54 100.22%);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
header-quiz,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  font-size: 14px;
  font-family: var(--font-text);
}

a {
  text-decoration: none !important;
}

img,
a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

p {
  font-size: 14px;
  line-height: 20px;
}

button, img, input, select {
  outline: none !important;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.logo-keep {
  width: 30%;
}
.clear {
  clear: both;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.5)), to(transparent));
  background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

@media screen and (device-aspect-ratio: 2 / 3) {

  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="url"] {
    font-size: 16px;
  }
}

/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40 / 71) {

  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="url"] {
    font-size: 16px;
  }
}

/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375 / 667) {

  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="tel"], input[type="url"] {
    font-size: 16px;
  }
}

/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9 / 16) {

  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="tel"], input[type="url"] {
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px !important;
  }
}

@media screen and (min-width: 1400px) {
  .container-fluid {
    padding: 0px 150px !important;
  }
}

.header {
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
}

.header .logo {
  padding: 20px 0px;
  position: relative;
}

.header .logo .js-menu-mb {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: none;
}

@media screen and (max-width: 991px) {
  .header .logo .js-menu-mb {
    display: block;
  }
}

.header .logo .js-menu-mb svg {
  width: 30px;
  fill: #000;
}

.header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  column-gap: 50px;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .menu ul li {
  padding: 0px 35px;
}

.header .menu ul li a {
  font-size: 24px;
  color: #666666;
  font-weight: 600;
  display: block;
  text-transform: capitalize;
}

.header .menu ul li a:hover {
  color: #e0445a;
}

.header .menu .login {
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .menu .login a {
  display: block;
  min-width: 150px;
  height: 40px;
  text-align: center;
  line-height: 38px;
  font-size: 24px;
  color: #666;
  font-weight: 600;
  border: 1px solid var(--color-red);
  border-radius: 10px;
  margin-left: 20px;
}

.header .menu .login a:last-child {
  border-color: #e0445a;
  background: #e0445a;
  color: #fff;
}

.site-banner {
  padding: 30px 0;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.site-banner .img1 img{
  min-width: 386px;height: auto;
}

.site-banner .img2 {
  position: absolute;
  top: 23%;
  right: 20px;
}

.site-banner h3 {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
}

.site-banner h3 span {
  position: relative;
  z-index: 5;
}

.site-banner h3:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--color-yellow);
}

.site-banner h2 {
  font-size: 35px;
  color: #e0445a;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
}


.site-banner ul li {
  font-size: 25px;
  color: #000;
  font-weight: bold;
  /* background: var(--color-yellow); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  padding: 5px;
}

.site-banner ul li:first-child {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 30px;
}

.site-banner ul li:last-child {
  margin-bottom: 0;
}

.site-banner ul li span {
  display: block;
  min-width: 55px;
  min-height: 55px;
  border-radius: 50%;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-red);
}
.open-popup-level-test{color: #fff;background: #e0445a;font-size: 48px;border: 1px solid #e0445a;padding: 35px 70px;border-radius: 20px;margin-left: 30px;margin-top: 15px;}
.site-works {
  padding: 190px 0px 160px 0px;
}

.site-works .title-main {
  text-align: center;
  margin-bottom: 80px;
}

.site-works .title-main .heading {
  font-size: 48px;
  font-weight: bold;
  color: #e0445a;
  margin-bottom: 30px;
}

.site-works .title-main p {
  font-size: 24px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

.site-works .items {
  text-align: center;
  margin-bottom: 30px;
}

.site-works .items img {
  max-width: 100%;
}

.site-works .items h3 {
  margin-top: 20px;
  font-size: 24px;
  color: #666;
  font-weight: 600;
}

.site-about {
  position: relative;
  padding: 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-about .img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
}

.site-about .content h2 {
  font-size: 35px;
  font-weight: bold;margin-bottom: 50px;
}

.site-about .content h3 {
  margin: 20px 0px;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0px 2px 3px #333;
}

.site-about .content p {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.5;font-weight: bold;
}

.site-about .items {
  text-align: center;
}

.site-about .items img {
  max-width: 100%;display: block;margin: 0 auto 20px;
  height: 260px;
}

.site-about .items h3 {
  font-size: 35px;
  font-weight: bold;position: relative;display: inline-block;margin-bottom: 20px;
}
.site-about .items h3 span{z-index: 6;}
.site-about .items h3:before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;z-index: 4;
    height: 10px;
    background: var(--color-yellow);
}
.site-about .items p{font-weight: bold;font-size: 16px;}
.site-free{padding-bottom: 100px;}
.site-free a{
  font-size: 42px;
  background: #e0445a;
  font-weight: bold;
  border-radius: 20px;
  padding: 30px 70px;
  max-width: 340px;
}

.site-free .text:hover h3 {
  color: #F9EB70;
}

.site-free img {
  position: absolute;
  top: 53%;
  left: 68%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 25%;
}

.footer {
  background: #e0445a;
  padding: 5px 0px;
}

.footer h3 {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}
.footer img{display: none;}
html, body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html main, body main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.site-video {
  padding: 20px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.site-video .title-video {
  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;
  margin-bottom: 20px;
}

.site-video .title-video select {
  font-size: 24px;
  font-weight: bold;
  color: #E38B05;
  border: 1px solid #e0445a;
  background: #fff;
  border-radius: 10px;
  padding: 5px 15px;
}

.site-video .title-video option {
  font-weight: normal;
}
.wordList-v2{height: 140px;overflow-y: scroll;}
.site-video .title-video .quiz, .wordList-v2 .quiz, #auto-play {
  display: block;
  width: 100%;
  padding: 0 10px;
  font-size: 20px;
  font-weight: bold;
  background: #fca700;
  color: #fff;
  border-radius: 10px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  height: 43px;
  border: 2px solid #fca700;
}

#auto-play{
  background: #801367;
  border: 2px solid #801367;
}

.btn.btn-select-level{
  background: #f16179;
  border-color: #f16179;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 20px;
  max-width: 320px;
}
.btn.btn-select-level.active{
  background: #fca700;
  border-color: #fca700;
  color: #fff;
}

.site-video .video video {
  display: block;
  width: 100%;
}

.site-video .sidebar {
  text-align: center;
}

.site-video .sidebar h3 {
  font-size: 24px;
  font-weight: bold;
  color: #E38B05;
  margin-bottom: 20px;
}
.site-video .sidebar ul{
  width: 100%;
  height: 480px;
  overflow-y: scroll;
  min-width: 200px;
  margin-left: 10px;
}
.site-video .sidebar ul li {
  margin-bottom: 20px;
}

.site-video .sidebar ul li:last-child {
  margin-bottom: 0;
}

.site-video .sidebar ul li a, .wordList-v2 .word_div {
  cursor: pointer;
  display: block;
  text-align: center;
  border: 1px solid #E38B05;
  padding: 10px;
  font-size: 20px;
  height: 43px;
  color: #666;
  background: #fff;
  border-radius: 10px;
}

.site-video .sidebar ul li a:hover, .wordList-v2 .word_div:hover {
  background: #e0445a;
  border-color: #e0445a;
  color: #fff;
}

.site-content {
  padding: 100px 0px;
}

.site-content .hd {
  text-align: center;
  font-size: 30px;
  color: #000;
  margin-bottom: 100px;
  font-weight: 800;
}

.site-content .items {
  margin-bottom: 30px;
  text-align: center;
}

.site-content .items h3 {
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.site-content .items p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.site-content .btn-custom {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 20px 20px;
  border: 2px solid var(--color-yellow);
  background: #e0445a;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.site-content .btn-custom:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #e0445a;
  z-index: 99999999999999999999;
  display: none;
  cursor: pointer;
}

.menu-mobile .menu {
  padding-top: 30px;
  position: relative;
}

.menu-mobile .menu ul {
  display: block;
}

.menu-mobile .menu ul li {
  padding: 0;
  line-height: 1;
}

.menu-mobile .menu ul li a {
  padding: 15px;
  border-bottom: 1px solid #ccc;
}

.menu-mobile .menu {
  position: relative;
}

.menu-mobile .menu .js-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}

@media screen and (max-width: 991px) {
  .menu-mobile .menu .js-close {
    display: block;
  }
}

.menu-mobile .menu .js-close svg {
  width: 20px;
  fill: #fff;
}

.menu-mobile .menu .js-close svg path {
  fill: #fff;
}

.menu-mobile .menu ul {
  display: block;
}

.menu-mobile .menu ul li {
  padding: 10 20px;
  position: relative;
}

.menu-mobile .menu ul li:hover .sub-menu {
  display: block;
}

.menu-mobile .menu ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  max-width: 250px;
  background: var(--color-blue);
  z-index: 999;
  display: none;
}

.menu-mobile .menu ul li .sub-menu li {
  padding: 0;
  line-height: 1;
}

.menu-mobile .menu ul li .sub-menu li a {
  padding: 15px 15px;
  color: #fff;
  border-bottom: 1px solid #fbfbfb;
}

.menu-mobile .menu ul li .sub-menu li:last-child a {
  border-bottom: 0;
}

.menu-mobile .menu ul li a {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

.menu-mobile .menu ul li a:hover {
  color: #e0445a;
}

.menu-mobile .menu ul .current-menu-item a {
  color: #e0445a;
}

.pp-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.pp-video .js-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 2, 0.7);
}

.pp-video .content {
  max-width: 700px;
  background: url(../images/hi.png);
  width: 100%;
  background-size: cover;
  position: relative;
  z-index: 2;
  background-repeat: no-repeat;
}

.pp-video .js-close-video {
  background: #e0445a;
  padding: 15px 20px;
}

.pp-video .js-close-video .question-n-score,
.pp-video .js-close-video .title {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  color: white;
}

.pp-video .js-close-video .question-n-score p {
  font-size: 20px;
  font-weight: 800;
}

.pp-video .js-close-video .title p {
  font-style: italic;
  font-size: 30px;
  font-weight: 800;
}

.pp-video .text-flex {
  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;
}
.popup-level-test-button{background: #e0445a;width: 300px;height: 300px;font-size: 33px;line-height: 1.2;margin-right: 20px;}
.pp-video .text {
  padding: 20px;
}

.pp-video .text h3 {
  font-size: 24px;
  font-weight: bold;
  color: #e0445a;
  margin-bottom: 30px;
}

.pp-video .items {
  margin-bottom: 30px;
}

.pp-video .btn-custom {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding: 10px 20px;
  border: 0;
  outline: none;
  background: #e0445a;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.pp-video .btn-custom:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.pp-video .text button {
  background-color: #e0445a;
  border-radius: 5px;
}

.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* The container */
.items-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.items-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.items-radio:hover input~.checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.items-radio input:checked~.checkmark {
  background-color: #e0445a;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.items-radio input:checked~.checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.items-radio .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*# sourceMappingURL=style.css.map */