@charset "UTF-8";
@import url(../fonts/subset-mulish/stylesheet.css);
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.3;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
}

input, textarea {
  outline: 0;
  border: 0;
  background: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

button {
  border: 0;
  outline: 0;
  background: 0;
  cursor: pointer;
}

*:focus, *:active {
  outline: 0;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
@media screen and (max-width: 1170px) {
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
}

@keyframes jelly {
  0%, 100% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes pagination {
  0% {
    width: 0;
  }
  100% {
    width: 60px;
  }
}
@keyframes circle {
  0% {
    transform: rotate(0deg) translate(-192px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-192px) rotate(-360deg);
  }
}
html {
  overflow-x: hidden;
}

body {
  position: relative;
  overflow-x: hidden;
}

body, a, button, textarea {
  font-family: "Mulish", sans-serif;
}

.di-hidden {
  display: none;
}

.vi-hidden {
  visibility: hidden;
  opacity: 0;
}

.ovf-hidden {
  overflow: hidden !important;
}

.page-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: black;
  top: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
}
.page-overlay.visible {
  opacity: 0.6;
  visibility: visible;
}
.page-overlay.under-pop {
  z-index: 102;
}
.page-overlay.under-header {
  z-index: 100;
}

@media screen and (max-width: 1400px) {
  .social-fixed {
    width: 60px !important;
  }
}
@media screen and (max-width: 1300px) {
  .social-fixed {
    display: none !important;
  }
}

.pop-vid {
  width: 60vw !important;
}
@media screen and (max-width: 576px) {
  .pop-vid {
    height: 60vh !important;
  }
}

select {
  background-color: white !important;
}

body {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: black;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 102;
  top: 0;
  transition: 0.2s;
}

.onscroll {
  top: -40px !important;
}

.header-line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #F23276;
  bottom: 0;
  animation: 1.5s line;
  left: 0;
}
.header-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #F89E1B;
  bottom: 0;
  animation: 1.5s line;
  right: 0;
}

@media screen and (max-width: 1024px) {
  .overlay {
    position: absolute;
    z-index: 50;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
    transition: 0.5s;
    top: 0;
  }
}
.topbar {
  height: 40px;
  background: #20272F;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.topbar-item-wrapper {
  display: flex;
  gap: 7%;
  width: 100%;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.topbar-item p {
  color: white;
  transition: 0.1s;
  margin-left: 12px;
}
.topbar-item:hover p {
  color: #F23276;
}
.topbar-lang {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .topbar-lang {
    margin-right: 0;
  }
}
.topbar-lang a {
  color: white;
  opacity: 0.3;
  transition: 0.1s;
}
.topbar-lang a.active {
  opacity: 1;
}
.topbar-lang a:hover {
  color: #F23276;
  opacity: 1;
}
.topbar-lang img {
  margin-right: 9px;
}
.topbar-lang .seperate {
  width: 1.5px;
  height: 15px;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  background: white;
  opacity: 30%;
  margin: 0 12px;
}
.topbar-item.user {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .topbar-item.user:hover .user-menu {
    visibility: visible;
    opacity: 1;
  }
}
.topbar-item.user .user-menu {
  position: absolute;
  background: #F23276;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
  top: 40px;
  padding: 15px;
  border-radius: 7px;
  visibility: hidden;
  opacity: 0;
  left: -27%;
  transition: 0.2s;
  z-index: 10;
}
.topbar-item.user .user-menu.visible {
  visibility: visible;
  opacity: 1;
}
.topbar-item.user .user-menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 2px;
  padding: 12px;
  border-radius: 7px;
  transition: 0.15s;
}
.topbar-item.user .user-menu-item:last-child {
  margin-bottom: 0;
}
.topbar-item.user .user-menu-item:hover {
  background: #F89E1B;
}
.topbar-item.user .user-menu svg {
  width: 20px;
  height: 20px;
}
.topbar-item.user .user-menu svg * {
  fill: white;
}
.topbar-item.user .user-menu p {
  color: white;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.6;
}
.topbar-item.user .user-menu::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #F23276 transparent;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.topbar-item.user .user-menu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  background: transparent;
  top: -20px;
  left: 0;
}

.navbar {
  height: 100px;
  background-color: white;
}
.navbar .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu-main-menu {
  display: flex;
}
#menu-main-menu .menu-item {
  display: inline-flex;
  margin-right: 35px;
}
#menu-main-menu .menu-item:last-child {
  margin: 0;
}
#menu-main-menu .menu-item a {
  color: #20272F;
  transition: 0.1s;
  font-weight: 600;
  width: fit-content;
}
#menu-main-menu .menu-item a:hover {
  color: #F23276;
}
#menu-main-menu .menu-item a:hover svg {
  fill: #F23276;
}
#menu-main-menu .menu-item.dropdown {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
#menu-main-menu .menu-item.dropdown svg {
  vertical-align: middle;
  margin-left: 5px;
  transition: 0.2s;
}
#menu-main-menu .menu-item.dropdown:hover .submenu {
  visibility: visible;
  opacity: 1;
}
#menu-main-menu .menu-item.dropdown a.active.pink {
  color: #F23276;
}
#menu-main-menu .menu-item.dropdown .drop.pink {
  fill: #F23276;
}
#menu-main-menu .submenu {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #F23276;
  border-radius: 7px;
  width: 100%;
  padding: 12px;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
}
#menu-main-menu .submenu::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #F23276 transparent;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
#menu-main-menu .submenu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  background: transparent;
  top: -10px;
  left: 0;
}
#menu-main-menu .submenu .menu-item {
  display: block;
  margin-bottom: 8px;
  width: 100%;
}
#menu-main-menu .submenu .menu-item:last-child {
  margin-bottom: 0;
}
#menu-main-menu .submenu .menu-item a {
  color: white;
  background: #F23276;
  border-radius: 7px;
  padding: 8px 0;
  width: 100%;
  display: block;
  transition: 0.1s;
  text-align: center;
}
#menu-main-menu .submenu .menu-item a:hover {
  background: #f89e1b;
  color: white;
}
@media screen and (max-width: 1024px) {
  #menu-main-menu {
    position: absolute;
    top: 140px;
    right: 0;
    flex-direction: column;
    background-color: white;
    width: 30%;
    transition: 0.5s;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
  }
  #menu-main-menu .menu-item {
    margin-right: 0;
    padding-left: 20px !important;
    border-top: 1px solid rgba(242, 50, 118, 0.1);
    padding: 20px 0;
  }
  #menu-main-menu .menu-item.dropdown .submenu {
    position: unset;
    background: white;
    box-shadow: none;
    transform: unset;
    padding: 0;
    margin-top: 20px;
    width: 100%;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    overflow-y: scroll;
    height: 200px;
  }
  #menu-main-menu .menu-item.dropdown .submenu .menu-item {
    padding: 20px !important;
    margin-bottom: 0 !important;
    border-top: 0;
    position: relative;
  }
  #menu-main-menu .menu-item.dropdown .submenu .menu-item:last-child {
    padding-bottom: 0 !important;
  }
  #menu-main-menu .menu-item.dropdown .submenu .menu-item::before {
    content: "";
    position: absolute;
    background-color: #F23276;
    opacity: 0.1;
    width: 120%;
    height: 1px;
    left: -20px;
    top: 0;
  }
  #menu-main-menu .menu-item.dropdown .submenu .menu-item a {
    background-color: white;
    color: #20272F;
    margin-bottom: 0;
    text-align: left;
    padding: 0;
  }
  #menu-main-menu .menu-item.dropdown .submenu::before {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  #menu-main-menu {
    width: 70%;
    top: 94px;
  }
}

@media screen and (max-width: 1024px) {
  .collapse {
    transform: translateX(100%);
  }
}

.navbar-tools * {
  vertical-align: middle;
}
.navbar-tools .tools-cart {
  position: relative;
}
.navbar-tools .tools-cart::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: transparent;
  bottom: -10px;
  left: -8px;
  border-radius: 50%;
  transition: 0.1s;
}
.navbar-tools .tools-cart svg {
  vertical-align: middle;
  position: relative;
}
.navbar-tools .tools-cart svg * {
  transition: 0.1s;
}
.navbar-tools .tools-cart .cart-menu {
  position: absolute;
  background-color: #F89E1B;
  width: 200px;
  left: -82px;
  padding: 20px 0;
  border-radius: 7px;
  top: 50px;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .navbar-tools .tools-cart .cart-menu {
    left: -63px;
    width: 160px;
  }
}
.navbar-tools .tools-cart .cart-menu a {
  font-size: 14px;
  display: block;
  width: 100%;
  color: white;
  border-radius: 7px;
  transition: 0.1s;
  font-weight: bold;
}
.navbar-tools .tools-cart .cart-menu a:hover {
  color: #F23276;
}
.navbar-tools .tools-cart .cart-menu a:nth-child(2) {
  margin: 20px 0;
}
.navbar-tools .tools-cart .cart-menu::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #F89E1B transparent;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.navbar-tools .tools-cart .cart-menu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  background: transparent;
  top: -20px;
  left: 0;
}
.navbar-tools .tools-cart:hover::before {
  background: #F89E1B;
}
.navbar-tools .tools-cart:hover svg * {
  fill: white;
}
.navbar-tools .tools-cart:hover .cart-menu {
  transition: 0.2s;
  visibility: visible;
  opacity: 1;
}
.navbar-tools .tools-teacher {
  width: 150px;
  height: 55px;
  background: #F23276;
  border-radius: 7px;
  color: white;
  transition: 0.2s;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
  vertical-align: middle;
  margin-left: 30px;
}
.navbar-tools .tools-teacher span {
  font-weight: 800;
  display: block;
}
.navbar-tools .tools-teacher span:last-child {
  margin-top: 7px;
}
.navbar-tools .tools-teacher:hover {
  cursor: pointer;
  animation: jelly 0.5s;
  transition: 0.2s;
  background-color: #F89E1B;
  box-shadow: 0px 8px 16px 0px rgba(248, 158, 27, 0.3);
}

.burger {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: transparent;
  cursor: pointer;
  margin-left: 30px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger {
    display: inline-block;
  }
}
@media screen and (max-width: 576px) {
  .burger {
    margin-left: 20px;
  }
}
.burger .line {
  width: 100%;
  height: 4px;
  background-color: #F23276;
  border-radius: 7px;
  position: absolute;
}
.burger .line:nth-child(1) {
  top: 12%;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
}
.burger .line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
.burger .line:nth-child(3) {
  bottom: 12%;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
}
.burger::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #F23276;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 7px;
}

.--close .line:nth-child(1) {
  display: none;
}
.--close .line:nth-child(2) {
  transform: rotate(-45deg);
}
.--close .line:nth-child(3) {
  display: none;
}
.--close::before {
  opacity: 1;
  visibility: visible;
  transform: rotate(45deg);
}

@media screen and (max-width: 1200px) {
  .topbar-item.user .user-menu {
    width: 100%;
    left: 0;
  }
  .topbar-item.user .user-menu-item {
    flex-direction: column;
    text-align: center;
    padding: 5px;
  }
  .topbar-item.user .user-menu-item p {
    white-space: unset;
    width: 100%;
    margin-left: 0;
  }
  .topbar-item.user .user-menu-item svg {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .topbar-item.phone, .topbar-item.email {
    display: none;
  }
  .navbar {
    height: fit-content;
    padding: 10px 0;
  }
  .navbar-tools .tools-teacher {
    display: none;
  }
  .navbar-logo {
    width: 150px;
  }
  .navbar-logo img {
    width: 100%;
  }
}
.menu-item.dropdown {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .menu-item.dropdown .drop {
    display: none;
  }
}
.menu-item.dropdown .btn-drop {
  width: 20px;
  height: 20px;
  background-color: #F23276;
  border-radius: 5px;
  position: absolute;
  top: 18px;
  left: 60%;
  display: none;
  transition: 0.2s;
}
.menu-item.dropdown .btn-drop.up {
  transition: 0.2s;
  transform: rotate(-180deg);
}
.menu-item.dropdown .btn-drop svg {
  width: 10px;
  height: 10px;
  position: relative;
  top: 1px;
  left: -0.2px;
}
.menu-item.dropdown .btn-drop svg * {
  fill: white;
}
@media screen and (max-width: 576px) {
  .menu-item.dropdown .btn-drop {
    display: block;
  }
}

.footer {
  background-color: #20272F;
}
.footer a {
  transition: 0.1s;
}
.footer a:hover {
  color: #F23276 !important;
}
.footer .register-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 70px;
}
.footer .register-email .heading {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  color: white;
}
.footer .register-email .heading * {
  font-size: 30px;
  font-weight: bold;
  display: block;
}
.footer .register-email #form-email {
  width: 468px;
  height: 60px;
  display: flex;
  font-size: 14px;
}
.footer .register-email #form-email .form-input {
  width: 100%;
  height: 100%;
  background-color: black;
  padding-left: 20px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  color: white;
  padding-right: 20px;
}
.footer .register-email #form-email .form-input::placeholder {
  color: white;
  opacity: 0.6;
}
.footer .register-email #form-email .form-input:focus {
  border: 1px solid rgba(248, 158, 27, 0.7);
}
.footer .register-email #form-email .form-submit {
  width: 36%;
  height: 100%;
  background-color: #F89E1B;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  color: white;
  font-weight: 800;
  box-sizing: border-box;
  transition: 0.1s ease-in;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .footer .register-email #form-email .form-submit {
    font-size: 12px;
  }
}
.footer .register-email #form-email .form-submit::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 100%;
  left: 100%;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #3cefff;
  transform-origin: center;
  transform: translate3d(-50%, 50%, 0) scale3d(0, 0, 0);
  transition: transform 0.45s ease-in-out;
}
.footer .register-email #form-email .form-submit:hover {
  background-color: #F23276;
}
.footer .register-email #form-email .form-submit:hover::before {
  transform: translate3d(-50%, 50%, 0) scale3d(15, 15, 15);
}
@media screen and (max-width: 1024px) {
  .footer .register-email {
    flex-direction: column;
    padding-bottom: 50px;
  }
  .footer .register-email .heading {
    margin-bottom: 25px;
  }
  .footer .register-email .heading span {
    display: inline-block;
  }
}
@media screen and (max-width: 576px) {
  .footer .register-email {
    padding-top: 60px;
    text-align: center;
  }
  .footer .register-email .heading {
    margin-bottom: 20px;
  }
  .footer .register-email #form-email {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .footer .register-email .heading {
    font-size: 25px;
  }
  .footer .register-email .heading span {
    font-size: 25px;
  }
}

.footer-menu-wrapper {
  display: flex;
  justify-content: space-between;
}
.footer-menu-wrapper .footer-menu-list .heading {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
  line-height: 1.5;
}
.footer-menu-wrapper .footer-menu-list #menu-footer-menu .menu-item {
  margin-bottom: 20px;
}
.footer-menu-wrapper .footer-menu-list #menu-footer-menu .menu-item a {
  color: white;
}
.footer-menu-wrapper .app-download * {
  display: block;
}
.footer-menu-wrapper .app-download img:nth-child(1) {
  margin-bottom: 16px;
}
.footer-menu-wrapper .contact {
  margin-bottom: 20px;
}
.footer-menu-wrapper .contact .heading {
  font-size: 20px;
  font-weight: bold;
  color: white;
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-menu-wrapper .contact p, .footer-menu-wrapper .contact a {
  font-weight: 600;
  color: white;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .footer-menu-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-menu-wrapper .col-m {
    width: 41.66%;
  }
  .footer-menu-wrapper .footer-menu-list:nth-child(1) {
    order: 3;
  }
  .footer-menu-wrapper .app-download {
    order: 4;
    margin-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .footer-menu-wrapper .footer-menu-list:nth-child(1) {
    order: 2;
  }
  .footer-menu-wrapper .app-download {
    order: 4;
    margin-bottom: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-menu-wrapper .app-download img {
    width: 250px;
  }
  .footer-menu-wrapper .contact {
    width: 100%;
    order: 3;
    margin-top: 10px;
    text-align: center;
  }
  .footer-menu-wrapper a {
    line-height: 1.4;
  }
}

.footer .bottom-bar {
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer .bottom-bar {
    flex-direction: column;
    height: 200px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 576px) {
  .footer .bottom-bar {
    flex-direction: column;
    height: 300px;
    padding-bottom: 25px;
  }
}
.footer .bottom-bar .links {
  text-align: center;
  color: white;
  padding-right: 10%;
}
@media screen and (max-width: 1024px) {
  .footer .bottom-bar .links {
    padding-right: 0;
  }
}
@media screen and (max-width: 576px) {
  .footer .bottom-bar .links {
    display: flex;
    flex-direction: column;
    order: 3;
  }
  .footer .bottom-bar .links a {
    display: block;
  }
}
.footer .bottom-bar .links a {
  color: white;
  line-height: 1.4;
}
.footer .bottom-bar .links a:nth-child(1) {
  margin-right: 0px;
}
.footer .bottom-bar .links .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
  display: inline-block;
  margin: 0 7px;
  margin-left: 15px;
}
.footer .bottom-bar .links .mona-media {
  margin-top: 5px;
}
@media screen and (max-width: 576px) {
  .footer .bottom-bar .links .mona-media {
    line-height: 2;
  }
  .footer .bottom-bar .links .mona-media span {
    display: block;
  }
}
.footer .bottom-bar .social {
  position: relative;
}
.footer .bottom-bar .social a {
  margin-left: 8px;
  position: relative;
}
.footer .bottom-bar .social a img {
  position: relative;
  bottom: 0;
  transition: 0.2s;
}
.footer .bottom-bar .social a:hover img {
  bottom: 10px;
}
.footer .bottom-bar .social::before {
  content: "";
  width: 1px;
  height: 80%;
  background: white;
  position: absolute;
  left: -20px;
  opacity: 0.3;
  top: 50%;
  transform: translateY(-50%);
}

.icon-mess {
  cursor: pointer;
  position: fixed;
  bottom: 15vh;
  right: 22px;
  z-index: 101;
}
@media screen and (max-width: 1024px) {
  .icon-mess {
    display: none;
  }
}

.banner-head {
  margin-top: 140px;
  height: 271px;
  position: relative;
  background-color: #EFF3FF;
}
@media screen and (max-width: 576px) {
  .banner-head {
    margin-top: 95px;
    height: 150px;
  }
}
.banner-head .page-heading {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.banner-head .page-heading h1 {
  font-size: 50px;
  font-weight: bold;
  color: #F23276;
  line-height: 1.2;
}
@media screen and (max-width: 576px) {
  .banner-head .page-heading h1 {
    text-align: center;
    font-size: 35px;
  }
}
.banner-head .circle-pink {
  width: 91px;
  height: 91px;
  background-color: #F23276;
  border-radius: 50%;
  right: 37.5%;
  top: 45px;
  position: absolute;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}
@media screen and (max-width: 1024px) {
  .banner-head .circle-pink {
    top: 50px;
    right: 20%;
  }
}
@media screen and (max-width: 576px) {
  .banner-head .circle-pink {
    display: none;
  }
}
.banner-head .circle-gold {
  width: 41.66px;
  height: 41.66px;
  background-color: #F89E1B;
  border-radius: 50%;
  right: 47.5%;
  top: 160px;
  position: absolute;
  animation: float 4s ease-in-out infinite;
  animation-delay: 0s;
}
@media screen and (max-width: 1024px) {
  .banner-head .circle-gold {
    top: 180px;
    right: 32%;
  }
}
@media screen and (max-width: 576px) {
  .banner-head .circle-gold {
    display: none;
  }
}

.banner-gold {
  background: url(../../images/img-banner-gold.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 262px;
  border-radius: 7px;
  padding-left: 60px;
  padding-inline-end: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .banner-gold {
    height: 100%;
    padding-top: 25px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .banner-gold {
    padding-left: 50px;
    padding-right: 50px;
    flex-direction: column;
  }
  .banner-gold .left-content {
    width: 100% !important;
    margin-bottom: 25px;
    text-align: center;
  }
  .banner-gold .heading {
    line-height: 1.5;
    font-size: 30px !important;
  }
}
@media screen and (max-width: 376px) {
  .banner-gold {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 320px) {
  .banner-gold .btn-study {
    width: 250px !important;
  }
  .banner-gold .btn-study a {
    line-height: 1.6;
  }
}
.banner-gold .left-content {
  width: 50%;
}
.banner-gold .heading {
  font-size: 40px;
  font-weight: bold;
  color: white;
  padding-bottom: 26px;
}
.banner-gold .heading span {
  display: block;
  font-weight: bold;
  color: white;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .banner-gold .heading {
    font-size: 27px !important;
  }
}
.banner-gold p {
  color: white;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .banner-gold p {
    font-size: 14px;
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
}
.banner-gold .btn-study {
  background-color: #20272F;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  justify-content: space-between;
  width: 298px;
  border-radius: 7px;
  transition: 0.15s ease-in;
}
.banner-gold .btn-study:hover {
  background-color: #F23276;
  animation: jelly 0.5s;
}
.banner-gold .btn-study a {
  color: white;
  font-size: 20px;
  font-weight: 800;
}
@media screen and (max-width: 576px) {
  .banner-gold .btn-study a {
    font-size: 18px;
  }
}
@media screen and (max-width: 320px) {
  .banner-gold .btn-study a {
    font-size: 16px;
  }
}

main {
  position: relative;
}

.bg-circle {
  position: absolute;
  top: 729px;
  left: -111px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .bg-circle {
    display: none;
  }
}

main {
  position: relative;
}

.bg-triangle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
}
@media screen and (max-width: 1024px) {
  .bg-triangle {
    display: none;
  }
}

.blog {
  padding-top: 100px;
}
.blog .tools-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
}
@media screen and (max-width: 576px) {
  .blog .tools-bar {
    flex-direction: column;
  }
  .blog .tools-bar .search-wrapper {
    margin-bottom: 25px;
    width: 100%;
  }
}
.blog .search-wrapper {
  border-radius: 7px;
  width: 270px;
  height: 53px;
}
.blog .search-wrapper .search {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
.blog .search-wrapper .search input {
  width: 100%;
  background: white;
  height: 100%;
  border-radius: 7px;
  padding-left: 25px;
  padding-right: 48px;
  border: 1px solid rgba(112, 112, 112, 0.3);
}
.blog .search-wrapper .search input::placeholder {
  opacity: 0.3;
}
.blog .search-wrapper .search input:focus {
  border: 1px solid #F89E1B;
}
.blog .search-wrapper .search img {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 25px;
}
.blog .sort {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.2s;
  position: relative;
}
.blog .sort select {
  outline: 0;
  border: 0;
  color: #F23276;
  transition: 0.2s;
  position: relative;
  text-align: right;
}
.blog .sort:hover select {
  transition: 0.2s;
  text-decoration: underline;
  cursor: pointer;
}
.blog .blog-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: flex-start;
}
.blog .blog-list .blog-card {
  width: 22.4358974359%;
  position: relative;
  transition: 0.2s;
  background: white;
  margin-bottom: 30px;
  border-radius: 7px;
  bottom: 0;
  transition: 0.2s;
  z-index: 3;
  margin-right: 40px;
}
.blog .blog-list .blog-card:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .blog .blog-list .blog-card {
    margin-right: 30px;
  }
}
@media screen and (max-width: 900px) {
  .blog .blog-list .blog-card {
    margin-right: 10px;
  }
  .blog .blog-list .blog-card:nth-child(4n) {
    margin-right: 10px;
  }
  .blog .blog-list .blog-card:nth-child(3n) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 575px) {
  .blog .blog-list .blog-card {
    margin-right: 0;
  }
}
.blog .blog-list .blog-card * {
  transition: inherit;
}
.blog .blog-list .blog-card:hover {
  cursor: pointer;
  bottom: 10px;
  box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.2);
}
.blog .blog-list .blog-card:hover .title {
  color: #F23276;
}
.blog .blog-list .blog-card:hover::before {
  background-image: linear-gradient(to left bottom, #F23276, transparent 35%) !important;
  opacity: 1 !important;
  transition: 0.2s;
}
.blog .blog-list .blog-card:hover::after {
  background-image: linear-gradient(to right top, #F23276, transparent 35%) !important;
  opacity: 1 !important;
  transition: 0.2s;
}
.blog .blog-list .blog-card::before {
  content: "";
  position: absolute;
  width: calc(120% + 4px);
  height: calc(50% + 4px);
  top: -4px;
  right: -4px;
  z-index: -1;
  border-radius: 7px;
  background-image: linear-gradient(to left bottom, #F23276, transparent 35%);
  opacity: 0;
  transition: 0.3s;
}
.blog .blog-list .blog-card::after {
  content: "";
  position: absolute;
  width: calc(120% + 4px);
  height: calc(50% + 4px);
  bottom: -4px;
  left: -4px;
  z-index: -1;
  border-radius: 7px;
  background-image: linear-gradient(to right top, #F23276, transparent 35%);
  opacity: 0;
  transition: 0.3s;
}
.blog .blog-list .blog-card .content {
  border: 1px solid rgba(242, 50, 118, 0.2);
  border-top: 0;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  background: white;
}
.blog .blog-list .blog-card .img-blog {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  width: 100%;
  display: flex;
}
.blog .blog-list .blog-card .content {
  padding: 20px;
}
.blog .blog-list .blog-card .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
}
.blog .blog-list .blog-card .description {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
  height: 95px;
}
@media screen and (max-width: 576px) {
  .blog .blog-list .blog-card .description {
    height: 70px;
  }
}
.blog .blog-list .blog-card .more {
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  text-decoration: underline;
  color: #F23276;
  transition: 0.2s;
}
.blog .blog-list .blog-card .more:hover {
  transition: 0.2s;
  color: #F89E1B;
}
.blog .blog-list .blog-card .info {
  display: flex;
  padding-top: 15px;
  margin-top: 15px;
  position: relative;
}
.blog .blog-list .blog-card .info::after {
  content: "";
  width: 119%;
  height: 1px;
  background-color: rgba(112, 112, 112, 0.2);
  position: absolute;
  top: 0;
  left: -9.5%;
}
.blog .blog-list .blog-card .info .item {
  display: flex;
  align-items: center;
}
.blog .blog-list .blog-card .info .item:first-child {
  margin-right: 30px;
}
@media screen and (max-width: 900px) {
  .blog .blog-list .blog-card .info .item:first-child {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .blog .blog-list .blog-card .info .item:first-child {
    margin-right: 50px;
    margin-bottom: 0;
  }
}
.blog .blog-list .blog-card .info .item p {
  font-size: 10px;
  color: #A0A0A0;
  font-weight: 800;
  line-height: 1.5;
  margin-left: 8px;
}
.blog .blog-list::before {
  content: url(../../images/bg-square-right.png);
  position: absolute;
  left: -133px;
  top: 26.7%;
}
@media screen and (max-width: 1200px) {
  .blog .blog-list::before {
    display: none;
  }
}
.blog .blog-list::after {
  content: url(../../images/bg-square-right.png);
  position: absolute;
  right: -80px;
  bottom: 20.5%;
}
@media screen and (max-width: 1200px) {
  .blog .blog-list::after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .blog {
    padding-top: 45px !important;
  }
  .blog .blog-list {
    justify-content: space-between !important;
  }
  .blog .blog-card {
    width: 31% !important;
  }
  .blog .blog-card .info {
    flex-direction: column;
  }
  .blog .blog-pagination {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .blog {
    padding-top: 60px;
  }
  .blog .blog-list {
    justify-content: space-between !important;
  }
  .blog .blog-card {
    width: 100% !important;
  }
  .blog .blog-card .info {
    flex-direction: row;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
  margin-top: 20px;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}

.pagination a.active {
  background-color: #F23276;
  color: white;
  border-radius: 7px;
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
  border-radius: 7px;
}

.bg-triangle {
  top: 1700px;
  right: -200px;
}

.main-blog-detail .blog-single {
  padding-top: 100px;
}
.main-blog-detail .blog-single .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .main-blog-detail .blog-single .container {
    flex-direction: column;
  }
  .main-blog-detail .blog-single .blog-post {
    width: 100%;
  }
  .main-blog-detail .blog-single .right-side {
    align-self: center;
    width: 100%;
    margin-bottom: 50px;
  }
  .main-blog-detail .blog-single .right-side .post-item {
    display: inline-flex !important;
    margin-right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .main-blog-detail .blog-single {
    padding-top: 30px;
  }
  .main-blog-detail .blog-single .banner-gold-wrapper {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-single .blog-post .post-time {
    flex-direction: column;
  }
  .main-blog-detail .blog-single .blog-post .post-time .calendar {
    margin-bottom: 20px;
  }
  .main-blog-detail .blog-single .right-side {
    text-align: center;
  }
  .main-blog-detail .blog-single .right-side .tag-wrapper {
    justify-content: center;
    padding-top: 5px;
  }
}
.main-blog-detail .blog-post {
  width: 65.9829059829%;
}
.main-blog-detail .blog-post .post-img {
  margin-bottom: 34px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .post-img {
    margin-bottom: 10px;
  }
}
.main-blog-detail .blog-post .blog-title {
  font-size: 30px;
  color: #20272F;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .blog-title {
    font-size: 25px;
  }
}
.main-blog-detail .blog-post .post-time {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .post-time {
    margin-bottom: 25px;
  }
}
.main-blog-detail .blog-post .post-time .calendar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-blog-detail .blog-post .post-time .calendar p {
  line-height: 1.5;
  opacity: 0.7;
}
.main-blog-detail .blog-post .post-time .post-info .item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.main-blog-detail .blog-post .post-time .post-info .item p {
  color: #A0A0A0;
  font-weight: 800;
  font-size: 10px;
}
.main-blog-detail .blog-post .post-time .post-info .item:last-child {
  margin-left: 30px;
}
.main-blog-detail .blog-post .blog-content {
  padding-bottom: 45px;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .blog-content {
    padding-bottom: 20px;
  }
}
.main-blog-detail .blog-post .blog-content p {
  line-height: 1.5;
  margin-bottom: 50px;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .blog-content p {
    margin-bottom: 30px;
  }
}
.main-blog-detail .blog-post .blog-content .quote {
  display: flex;
  gap: 15px;
  padding: 30px;
  background: #F5F5F5;
  border-radius: 7px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.main-blog-detail .blog-post .blog-content .quote p {
  margin-bottom: 0;
  font-style: italic;
}
.main-blog-detail .blog-post .blog-content .img-group {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main-blog-detail .blog-post .blog-content .img-group {
    gap: 0;
    justify-content: space-between;
  }
  .main-blog-detail .blog-post .blog-content .img-group img {
    width: 48% !important;
  }
}
.main-blog-detail .blog-post .blog-content .img-group img {
  width: 50%;
  object-fit: contain;
}
.main-blog-detail .blog-post .social-blog {
  display: flex;
  align-items: center;
  margin-bottom: 68px;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .social-blog {
    margin-bottom: 30px;
  }
}
.main-blog-detail .blog-post .social-blog .line {
  width: 100%;
  height: 1px;
  background: #707070;
  opacity: 0.3;
}
.main-blog-detail .blog-post .social-blog .social-group {
  display: flex;
  gap: 25px;
  margin-left: 20px;
}
.main-blog-detail .blog-post .social-blog .social-group .icon img {
  position: relative;
  bottom: 0;
  transition: 0.1s;
}
.main-blog-detail .blog-post .social-blog .social-group .icon:hover img {
  bottom: 10px;
}
.main-blog-detail .blog-post .blog-comment {
  padding-bottom: 60px;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .blog-comment {
    padding-bottom: 0;
  }
}
.main-blog-detail .blog-post .blog-comment-heading {
  font-size: 30px;
  margin-bottom: 35px;
}
.main-blog-detail .blog-post .blog-comment .cmt {
  display: flex;
  gap: 15px;
  margin-bottom: 45px;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .blog-comment .cmt {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.main-blog-detail .blog-post .blog-comment .cmt.reply {
  padding-left: 8.547008547%;
}
.main-blog-detail .blog-post .blog-comment .cmt:last-child p {
  border-bottom: 0 !important;
}
.main-blog-detail .blog-post .blog-comment .cmt .user-ava {
  width: 70px;
  height: 70px;
}
.main-blog-detail .blog-post .blog-comment .cmt .cmt-content .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.main-blog-detail .blog-post .blog-comment .cmt .cmt-content .info .user .user-name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2px;
}
.main-blog-detail .blog-post .blog-comment .cmt .cmt-content .info .user .date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-blog-detail .blog-post .blog-comment .cmt .cmt-content .info .user .date img {
  width: 14px;
  height: 14px;
}
.main-blog-detail .blog-post .blog-comment .cmt .cmt-content .info .user .date p {
  padding-bottom: 0;
  line-height: 1.5;
}
.main-blog-detail .blog-post .blog-comment .cmt .cmt-content .info .btn-rep {
  width: 98px;
  height: 38px;
  background: #F23276;
  color: white;
  border-radius: 7px;
  font-weight: bold;
}
.main-blog-detail .blog-post .blog-comment .cmt .cmt-content .info .btn-rep:hover {
  animation: 0.5s jelly;
  background: #F89E1B;
}
.main-blog-detail .blog-post .blog-comment .cmt .cmt-content .cmt-text {
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .blog-comment .cmt .cmt-content .cmt-text {
    padding-bottom: 30px;
  }
}
.main-blog-detail .blog-post .form-cmt {
  width: 100%;
  padding: 30px;
  border-radius: 7px;
  box-shadow: 10px 11px 40px -12px rgba(242, 50, 118, 0.3);
  -webkit-box-shadow: 10px 11px 40px -12px rgba(242, 50, 118, 0.3);
  -moz-box-shadow: 10px 11px 40px -12px rgba(242, 50, 118, 0.3);
  margin-bottom: 100px;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .form-cmt {
    text-align: center;
    margin-bottom: 60px;
  }
}
.main-blog-detail .blog-post .form-cmt .heading {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.main-blog-detail .blog-post .form-cmt form .form-group-input {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.main-blog-detail .blog-post .form-cmt form .form-group {
  width: 100%;
  margin-bottom: 25px;
}
.main-blog-detail .blog-post .form-cmt form .form-group.block {
  display: block;
}
.main-blog-detail .blog-post .form-cmt form .form-group label {
  font-size: 18px;
  font-weight: 800;
  display: block;
  line-height: 1.5;
  margin-bottom: 5px;
  text-align: left;
}
.main-blog-detail .blog-post .form-cmt form .form-group input {
  height: 50px;
  width: 100%;
}
.main-blog-detail .blog-post .form-cmt form .form-group input, .main-blog-detail .blog-post .form-cmt form .form-group textarea {
  border: 1px solid rgba(112, 112, 112, 0.3);
  border-radius: 7px;
  font-size: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.main-blog-detail .blog-post .form-cmt form .form-group input:focus, .main-blog-detail .blog-post .form-cmt form .form-group textarea:focus {
  border: 1px solid rgba(248, 158, 27, 0.7);
}
.main-blog-detail .blog-post .form-cmt form .form-group textarea {
  width: 100%;
  padding-top: 20px;
}
.main-blog-detail .blog-post .form-cmt form .btn-submit {
  display: block;
  margin-top: 20px;
  width: 223px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #F23276;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 7px;
  transition: 0.2s;
}
.main-blog-detail .blog-post .form-cmt form .btn-submit:hover {
  background: #F89E1B;
  animation: 0.5s jelly;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .blog-post .form-cmt form .btn-submit {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.main-blog-detail .banner-gold-wrapper {
  margin-bottom: 100px;
}
@media screen and (max-width: 576px) {
  .main-blog-detail .banner-gold-wrapper {
    margin-bottom: 60px;
  }
}
.main-blog-detail .right-side {
  width: 31.6239316239%;
}
.main-blog-detail .right-side .search-wrapper {
  padding: 30px;
  background: #EFF3FF;
  border-radius: 7px;
  margin-bottom: 48px;
}
.main-blog-detail .right-side .search-wrapper .search {
  height: 53px;
  display: flex;
  align-items: center;
  position: relative;
}
.main-blog-detail .right-side .search-wrapper .search input {
  width: 100%;
  background: white;
  height: 100%;
  border-radius: 7px;
  padding-left: 30px;
  padding-right: 50px;
}
.main-blog-detail .right-side .search-wrapper .search input::placeholder {
  opacity: 0.3;
}
.main-blog-detail .right-side .search-wrapper .search input:focus {
  border: 1px solid rgba(248, 158, 27, 0.7);
}
.main-blog-detail .right-side .search-wrapper .search img {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 30px;
}
.main-blog-detail .right-side .recent-post {
  margin-bottom: 5px;
}
.main-blog-detail .right-side .recent-post .heading {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 35px;
}
.main-blog-detail .right-side .recent-post .post-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}
.main-blog-detail .right-side .recent-post .post-item .img-post {
  width: 70px;
  height: 70px;
}
.main-blog-detail .right-side .recent-post .post-item .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
  display: block;
  transition: 0.2s;
}
.main-blog-detail .right-side .recent-post .post-item .info {
  display: flex;
  gap: 30px;
}
.main-blog-detail .right-side .recent-post .post-item .info .item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-blog-detail .right-side .recent-post .post-item .info .item p {
  font-size: 10px;
  color: #A0A0A0;
  font-weight: 800;
}
.main-blog-detail .right-side .recent-post .post-item:hover {
  cursor: pointer;
}
.main-blog-detail .right-side .recent-post .post-item:hover .title {
  transition: 0.2s;
  color: #F23276;
}
.main-blog-detail .right-side .tag-box {
  padding: 30px;
  background: #F4F3F3;
  border-radius: 7px;
}
.main-blog-detail .right-side .tag-box .heading {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  display: block;
}
.main-blog-detail .right-side .tag-box .tag-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.main-blog-detail .right-side .tag-box .tag {
  padding: 10px;
  background: white;
  border-radius: 7px;
  transition: 0.15s;
}
.main-blog-detail .right-side .tag-box .tag:hover {
  background: #F23276;
  color: white;
}
.main-blog-detail .bg-triangle {
  top: 1750px;
  right: -40px;
}

.thanks {
  padding-top: 100px;
  margin-bottom: 95px;
}
@media screen and (max-width: 768px) {
  .thanks {
    padding-top: 60px;
    margin-bottom: 55px;
  }
}
.thanks h2.heading {
  line-height: 1.5;
  margin-bottom: 35px;
  font-size: 24px;
}
@media screen and (max-width: 576px) {
  .thanks h2.heading {
    margin-bottom: 25px;
  }
}
.thanks .shopping-code {
  font-size: 14px;
  width: 194px;
  height: 40px;
  background: #F89E1B;
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  margin-bottom: 12px;
}
.thanks p {
  line-height: 1.5;
  width: 57.264957265%;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .thanks p {
    width: 100%;
  }
}
.thanks .covid {
  color: #F23276;
}
.thanks .delivery {
  margin-bottom: 12px;
}
.thanks .delivery img {
  vertical-align: middle;
}
.thanks .delivery-info {
  margin-left: 7px;
  display: inline;
}
.thanks .delivery-info * {
  display: inline;
}
.thanks h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.thanks .img-qr {
  margin-bottom: 17px;
}
.thanks .common-questions a {
  line-height: 1.5;
  display: block;
  color: #356E68;
}

.main-chinese-kid .section-banner {
  margin-top: 140px;
  padding-top: 100px;
  background-color: #EFF3FF;
  position: relative;
  padding-bottom: 22px;
}
.main-chinese-kid .section-banner .container {
  display: flex;
  align-items: flex-start;
  height: fit-content;
  padding-bottom: 40px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .section-banner .container {
    gap: 100px;
  }
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .container {
    gap: 50px;
    padding-bottom: 70px;
  }
}
.main-chinese-kid .section-banner .circle-gold, .main-chinese-kid .section-banner .circle-blue, .main-chinese-kid .section-banner .circle-pink, .main-chinese-kid .section-banner .circle-round {
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .section-banner {
    padding-top: 100px;
  }
  .main-chinese-kid .section-banner .container {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner {
    margin-top: 95px;
    padding-top: 90px;
  }
  .main-chinese-kid .section-banner .container {
    flex-direction: column;
  }
}
.main-chinese-kid .section-banner .content {
  height: fit-content;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .section-banner .content {
    width: 100%;
  }
  .main-chinese-kid .section-banner .content .heading {
    white-space: unset !important;
  }
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .content {
    width: 100%;
  }
  .main-chinese-kid .section-banner .content .sub-heading {
    margin-bottom: 10px;
  }
}
.main-chinese-kid .section-banner .content .sub-heading {
  font-size: 20px;
  color: #F23276;
  padding-left: 3px;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .content .sub-heading {
    font-size: 16px;
  }
}
.main-chinese-kid .section-banner .content .heading {
  font-size: 50px;
  font-weight: bold;
  color: #F23276;
  line-height: 1.5;
  margin-bottom: 26px;
  white-space: nowrap;
}
.main-chinese-kid .section-banner .content .heading em {
  color: #20272F;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .content .heading {
    white-space: unset;
    font-size: 35px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
}
.main-chinese-kid .section-banner .content .heading span {
  display: block;
  font-weight: bold;
  color: #20272F;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .content .heading span {
    display: inline;
    line-height: 1.2;
  }
}
.main-chinese-kid .section-banner .content .description {
  line-height: 1.5;
  margin-bottom: 40px;
  padding-right: 220px;
  font-size: 20px;
  opacity: 0.7;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .content .description {
    padding-right: 0;
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.main-chinese-kid .section-banner .content .tools {
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .content .tools {
    flex-direction: column;
    gap: 20px;
  }
}
.main-chinese-kid .section-banner .content .btn-join {
  width: 223px;
  height: 60px;
  background-color: #F23276;
  color: white;
  font-size: 18px;
  border-radius: 7px;
  transition: 0.2s;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .content .btn-join {
    font-size: 16px;
  }
}
.main-chinese-kid .section-banner .content .btn-join:hover {
  transition: 0.2s;
  background-color: #F89E1B;
  box-shadow: 0px 8px 16px 0px rgba(248, 158, 27, 0.3);
}
.main-chinese-kid .section-banner .content .btn-watch .icon-watch {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.07);
  transition: 0.2s;
}
.main-chinese-kid .section-banner .content .btn-watch p {
  display: inline-block;
  margin-left: 20px;
  transition: 0.15s ease;
}
.main-chinese-kid .section-banner .content .btn-watch:hover {
  cursor: pointer;
}
.main-chinese-kid .section-banner .content .btn-watch:hover .icon-watch {
  background: #F23276;
}
.main-chinese-kid .section-banner .content .btn-watch:hover p {
  color: #F23276;
}
.main-chinese-kid .section-banner .content .circle-gold {
  right: 10%;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.8s;
  z-index: -1;
  visibility: hidden;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .section-banner .content .circle-gold {
    top: -50px;
    right: 5%;
    visibility: visible;
  }
}
.main-chinese-kid .section-banner .content .circle-blue {
  top: 10%;
  right: 30%;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.3s;
  z-index: -1;
  visibility: hidden;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .section-banner .content .circle-blue {
    right: 15%;
    visibility: visible;
  }
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .content .circle-blue {
    display: none;
  }
}
.main-chinese-kid .section-banner .content .circle-pink {
  top: 25%;
  right: 50px;
  animation: float 3s ease-in-out infinite;
  z-index: -1;
  visibility: hidden;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .section-banner .content .circle-pink {
    top: -150px;
    right: unset;
    left: 55px;
    visibility: visible;
  }
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .content .circle-pink {
    left: 35px;
  }
}
.main-chinese-kid .section-banner .banner-human {
  position: relative;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .banner-human {
    width: 100%;
  }
}
.main-chinese-kid .section-banner .banner-human .img-kid {
  position: relative;
  top: -8px;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .banner-human .img-kid {
    top: 0;
  }
}
.main-chinese-kid .section-banner .banner-human .img-kid img {
  z-index: 5;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .banner-human .img-kid img {
    width: 100%;
  }
}
.main-chinese-kid .section-banner .banner-human .img-kid::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #F89E1B;
  top: 9px;
  left: 20px;
  border-bottom-right-radius: 70px;
  z-index: -2;
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .banner-human .img-kid::before {
    display: none;
  }
}
.main-chinese-kid .section-banner .banner-human .img-kid .circle-pink {
  top: -46px;
  left: -42px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.8s;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .banner-human .img-kid .circle-pink {
    width: 100px;
    top: -40px;
    left: unset;
    right: -60px;
    z-index: 6;
  }
}
.main-chinese-kid .section-banner .banner-human .img-kid .circle-gold {
  top: 98px;
  left: -170px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .section-banner .banner-human .img-kid .circle-gold {
    top: 60%;
    left: unset;
    right: -30%;
  }
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .banner-human .img-kid .circle-gold {
    display: none;
  }
}
.main-chinese-kid .section-banner .banner-human .img-kid .circle-blue {
  top: 45%;
  left: -118px;
  animation: float 3s ease-in-out infinite;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .section-banner .banner-human .img-kid .circle-blue {
    top: 40%;
  }
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .banner-human .img-kid .circle-blue {
    top: unset;
    bottom: -60px;
    width: 40px;
    left: 7%;
  }
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .section-banner .banner-human {
    bottom: 0;
  }
}
.main-chinese-kid .section-banner .banner-human .flag-box {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 131px;
  width: 138px;
  padding: 8px 0;
  position: absolute;
  backdrop-filter: blur(7px);
  z-index: 5;
  bottom: 37px;
  left: -84px;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .banner-human .flag-box {
    left: 50%;
    transform: translateX(-50%);
    bottom: -55px;
  }
}
.main-chinese-kid .section-banner .banner-human .flag-box p {
  line-height: 1.5;
}
.main-chinese-kid .section-banner .banner-human .flag-box span {
  display: block;
  line-height: 1.5;
}
.main-chinese-kid .section-banner .banner-human .flag-box .btn-subs {
  width: 83px;
  height: 22px;
  border-radius: 5px;
  background-color: #F23276;
  transition: 0.2s;
}
.main-chinese-kid .section-banner .banner-human .flag-box .btn-subs:hover {
  transition: 0.2s;
  background-color: #F89E1B;
}
.main-chinese-kid .section-banner .banner-human .flag-box .btn-subs a {
  color: white;
  font-size: 10px;
  font-weight: bold;
  display: block;
}
.main-chinese-kid .section-banner .banner-human .flag-box img {
  width: 32px;
}
.main-chinese-kid .section-banner .program-wrapper {
  width: 100%;
  position: absolute;
  bottom: -100px;
  background-color: white;
  box-shadow: -1px 27px 44px -33px rgba(242, 50, 118, 0.3);
  border-radius: 7px;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .section-banner .program-wrapper {
    align-self: center;
    position: relative;
  }
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .program-wrapper {
    position: relative;
    height: 220px;
    left: 50%;
    transform: translateX(-50%);
    order: 3;
    bottom: -80px;
  }
  .main-chinese-kid .section-banner .program-wrapper .swiper {
    border-radius: 7px;
  }
  .main-chinese-kid .section-banner .program-wrapper .program-card {
    height: 220px;
  }
}
.main-chinese-kid .section-banner .program-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 7px;
}
.main-chinese-kid .section-banner .program-wrapper .border-bottom-left {
  position: absolute;
  left: -4px;
  bottom: -4px;
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .program-wrapper .border-bottom-left {
    width: 100%;
    bottom: -4px;
    left: -4px;
  }
}
.main-chinese-kid .section-banner .program-wrapper .border-top-right {
  position: absolute;
  top: -4px;
  right: -4px;
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .program-wrapper .border-top-right {
    width: 100%;
    right: -5px;
    top: -4px;
  }
}
.main-chinese-kid .section-banner .program-wrapper .bg-dots {
  position: absolute;
  z-index: 0;
  right: -30px;
  bottom: -30px;
}
.main-chinese-kid .section-banner .program-wrapper .swiper-slide:last-child .program-card::before {
  display: none;
}
.main-chinese-kid .section-banner .program-wrapper .program-card {
  background-color: white;
  padding-top: 24px;
  padding-bottom: 18px;
  padding-right: 10px;
  padding-left: 18px;
  border-radius: 7px;
  position: relative;
  height: 100%;
}
.main-chinese-kid .section-banner .program-wrapper .program-card::before {
  content: "";
  position: absolute;
  height: 168px;
  width: 0.8px;
  background-color: #707070;
  opacity: 0.2;
  left: -1%;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .program-wrapper .program-card::before {
    display: none;
  }
}
.main-chinese-kid .section-banner .program-wrapper .program-card.first {
  padding-left: 25px;
}
.main-chinese-kid .section-banner .program-wrapper .program-card.first::before {
  display: none;
}
.main-chinese-kid .section-banner .program-wrapper .program-card .title {
  font-size: 20px;
  font-weight: 600;
  padding-top: 18px;
  padding-bottom: 16px;
}
.main-chinese-kid .section-banner .program-wrapper .program-card .description {
  font-size: 12px;
  line-height: 1.5;
}
.main-chinese-kid .section-banner .program-wrapper .btn-prev-program {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F23276;
  position: absolute;
  z-index: 3;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  cursor: pointer;
}
.main-chinese-kid .section-banner .program-wrapper .btn-prev-program svg {
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .program-wrapper .btn-prev-program {
    top: unset;
    bottom: -20px;
    transform: translateY(0);
    left: 43%;
    transform: translateX(-50%);
  }
}
.main-chinese-kid .section-banner .program-wrapper .btn-next-program {
  width: 40px;
  height: 40px;
  background-color: #F23276;
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  line-height: 42px;
  cursor: pointer;
}
.main-chinese-kid .section-banner .program-wrapper .btn-next-program svg {
  position: relative;
  transform: rotate(180deg);
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .section-banner .program-wrapper .btn-next-program {
    top: unset;
    bottom: -20px;
    transform: translateY(0);
    right: 43%;
    transform: translateX(50%);
  }
}
.main-chinese-kid .section-banner .program-wrapper .btn-program-disable {
  background-color: white;
  border: 0.5px solid rgba(112, 112, 112, 0.3);
}
.main-chinese-kid .section-banner .program-wrapper .btn-program-disable svg * {
  fill: #20272F;
}
.main-chinese-kid .courses-pagination {
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 0 !important;
  z-index: 10;
  width: fit-content !important;
}
.main-chinese-kid .courses-pagination .swiper-pagination-bullet {
  background: #D8D8D8;
  width: 10px;
  height: 10px;
  opacity: 1;
  transition: 0.3s;
}
.main-chinese-kid .courses-pagination .swiper-pagination-bullet:focus, .main-chinese-kid .courses-pagination .swiper-pagination-bullet:active {
  outline: 0;
}
.main-chinese-kid .courses-pagination .swiper-pagination-bullet-active {
  width: 60px;
  background: #F23276;
  border-radius: 7px;
  animation: 0.5s pagination;
}
.main-chinese-kid .blog-slider-wrapper {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
}
.main-chinese-kid .blog-slider-wrapper .container {
  position: relative;
  max-width: 1195px;
}
.main-chinese-kid .blog-slider-wrapper .container .swiper {
  padding: 0 15px;
}
.main-chinese-kid .blog-slider-wrapper .icon-bg {
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .blog-slider-wrapper .icon-bg {
    display: none;
  }
}
.main-chinese-kid .blog-slider-wrapper .bg-dots {
  bottom: -50px;
  left: -88px;
}
.main-chinese-kid .blog-slider-wrapper .bg-dots.right {
  left: unset;
  right: -50px;
  top: -45px;
  bottom: unset;
}
.main-chinese-kid .blog-slider-wrapper .dash-left {
  bottom: 16px;
  left: -319px;
}
.main-chinese-kid .blog-slider-wrapper .dash-right {
  bottom: 16px;
  right: -252px;
}
.main-chinese-kid .blog-slider-wrapper .round {
  left: -126px;
}
@media screen and (max-width: 768px) {
  .main-chinese-kid .blog-slider-wrapper {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
.main-chinese-kid .blog-slider-wrapper .heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.main-chinese-kid .blog-slider-wrapper .sub-heading {
  font-size: 18px;
  opacity: 0.7;
  text-align: center;
  width: 40%;
  margin: 0 auto;
  margin-bottom: 25px;
  line-height: 1.5;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .blog-slider-wrapper .sub-heading {
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .blog-slider-wrapper .sub-heading {
    width: 100%;
  }
}
.main-chinese-kid .blog-slider-wrapper .swiper-slide {
  padding-top: 14px;
}
.main-chinese-kid .blog-slider-wrapper .blog-card {
  width: 100%;
  position: relative;
  transition: 0.2s;
  background: white;
  margin-bottom: 55px;
  border-radius: 7px;
  transition: 0.2s;
  bottom: 0;
}
.main-chinese-kid .blog-slider-wrapper .blog-card:hover {
  transition: 0.2s;
}
.main-chinese-kid .blog-slider-wrapper .blog-card:hover .title {
  color: #F23276;
}
.main-chinese-kid .blog-slider-wrapper .blog-card::before {
  content: url(../../images/border-bottom-left.png);
  position: absolute;
  z-index: -1;
  bottom: -7px;
  left: -4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
  width: 100%;
}
.main-chinese-kid .blog-slider-wrapper .blog-card::after {
  content: url(../../images/border-top-right.png);
  position: absolute;
  z-index: -1;
  top: -4px;
  right: -4px;
  opacity: 0;
  transition: 0.2s ease-in-out;
  visibility: hidden;
}
@media screen and (min-width: 1200px) {
  .main-chinese-kid .blog-slider-wrapper .blog-card::after {
    right: -49px;
    width: 100%;
  }
}
.main-chinese-kid .blog-slider-wrapper .blog-card .content {
  border: 0.5px solid rgba(242, 50, 118, 0.2);
  border-top: 0;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  background: white;
  transition: 0.15s ease;
}
.main-chinese-kid .blog-slider-wrapper .blog-card:hover {
  box-shadow: 0px 7px 15px 1px rgba(242, 50, 118, 0.2);
  bottom: 10px;
}
.main-chinese-kid .blog-slider-wrapper .blog-card:hover::before {
  opacity: 1;
  visibility: visible;
}
.main-chinese-kid .blog-slider-wrapper .blog-card:hover::after {
  opacity: 1;
  visibility: visible;
}
.main-chinese-kid .blog-slider-wrapper .blog-card .img-blog {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  width: 100%;
  display: flex;
}
.main-chinese-kid .blog-slider-wrapper .blog-card .content {
  padding: 20px;
}
.main-chinese-kid .blog-slider-wrapper .blog-card .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
  transition: 0.15s ease;
}
.main-chinese-kid .blog-slider-wrapper .blog-card .description {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
  height: 95px;
}
.main-chinese-kid .blog-slider-wrapper .blog-card .more {
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  text-decoration: underline;
  color: #F23276;
  transition: 0.2s;
}
.main-chinese-kid .blog-slider-wrapper .blog-card .more:hover {
  color: #F89E1B;
  transition: 0.2s;
}
.main-chinese-kid .blog-slider-wrapper .blog-card .info {
  display: flex;
  gap: 30px;
  padding-top: 15px;
  margin-top: 15px;
  position: relative;
}
.main-chinese-kid .blog-slider-wrapper .blog-card .info::before {
  content: "";
  width: calc(100% + 40px);
  height: 0.9px;
  background-color: rgba(112, 112, 112, 0.2);
  position: absolute;
  left: -20px;
  top: 0;
}
.main-chinese-kid .blog-slider-wrapper .blog-card .info .item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-chinese-kid .blog-slider-wrapper .blog-card .info .item p {
  font-size: 10px;
  color: #A0A0A0;
  font-weight: bold;
}
.main-chinese-kid .main-content {
  position: relative;
}
.main-chinese-kid .main-content .diamond {
  position: absolute;
  z-index: -1;
  top: 52%;
}
.main-chinese-kid .main-content .dash {
  position: absolute;
  z-index: -1;
  bottom: 5%;
  left: -190px;
}
.main-chinese-kid .main-content .dash.second {
  left: unset;
  right: -309px;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .main-content .dash {
    display: none;
  }
}
.main-chinese-kid .main-content .square {
  position: absolute;
  z-index: -1;
  bottom: 26.5%;
  right: -247px;
}
@media screen and (max-width: 1200px) {
  .main-chinese-kid .main-content .square {
    display: none;
  }
}
.main-chinese-kid .main-content .container {
  display: flex;
}
@media screen and (max-width: 900px) {
  .main-chinese-kid .main-content .container {
    flex-direction: column;
  }
  .main-chinese-kid .main-content .container .left-side {
    width: 100% !important;
    padding-right: 0 !important;
  }
}
.main-chinese-kid .main-content .left-side {
  width: 68.3760683761%;
  padding-right: 36px;
}
.main-chinese-kid .main-content .heading {
  font-size: 40px;
  color: #20272F;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .main-content .heading {
    font-size: 25px;
  }
}
.main-chinese-kid .main-content p {
  line-height: 1.5;
  margin-bottom: 25px;
  opacity: 0.7;
}
.main-chinese-kid .main-content .h3-heading {
  margin-bottom: 27px;
  font-size: 18px;
  font-weight: bold;
  color: #F23276;
}
.main-chinese-kid .main-content .book-slider {
  padding-top: 8px;
  margin-bottom: 40px;
}
.main-chinese-kid .main-content .book-slider .title {
  font-size: 20px;
  margin-bottom: 35px;
  text-align: center;
  line-height: 1.2;
}
.main-chinese-kid .main-content .book-slider .book-swiper {
  padding-bottom: 45px;
}
.main-chinese-kid .main-content .book-slider .swiper-slide {
  text-align: center;
}
.main-chinese-kid .main-content .book-card {
  display: flex;
  border-radius: 7px;
  position: relative;
  background-color: white;
  margin-bottom: 85px;
}
.main-chinese-kid .main-content .book-card:last-child::after {
  display: none;
}
.main-chinese-kid .main-content .book-card::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #707070;
  opacity: 0.3;
  position: absolute;
  bottom: -42.5px;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .main-content .book-card {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 320px) {
  .main-chinese-kid .main-content .book-card {
    flex-direction: column;
  }
}
.main-chinese-kid .main-content .book-card .img-book {
  flex-shrink: 0;
  width: 146px;
  object-fit: contain;
  margin-right: 24px;
}
@media screen and (max-width: 320px) {
  .main-chinese-kid .main-content .book-card .img-book {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.main-chinese-kid .main-content .book-card .content .title {
  line-height: 1.5;
  font-size: 14px;
}
.main-chinese-kid .main-content .book-card .content .line {
  width: 100%;
  height: 1px;
  background-color: #F23276;
  margin: 10px 0;
}
.main-chinese-kid .main-content .book-card .content .description {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}
.main-chinese-kid .main-content .book-card .content .price {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
@media screen and (min-width: 576px) and (max-width: 1023px) {
  .main-chinese-kid .main-content .book-card .content .price img {
    display: none;
  }
}
.main-chinese-kid .main-content .book-card .content .btn-read {
  width: 97px;
  height: 35px;
  border: 1px solid #F23276;
  border-radius: 7px;
  transition: 0.15s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-chinese-kid .main-content .book-card .content .btn-read a {
  font-size: 12px;
  transition: 0.15s;
}
.main-chinese-kid .main-content .book-card .content .btn-read:hover {
  background-color: #F23276;
}
.main-chinese-kid .main-content .book-card .content .btn-read:hover a {
  color: white;
}
.main-chinese-kid .banner-gold-wrapper {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .main-chinese-kid .banner-gold-wrapper {
    padding-bottom: 60px;
  }
}
.main-chinese-kid .box-join-wrapper {
  position: relative;
}
.main-chinese-kid .box-join-wrapper .dots {
  position: absolute;
  z-index: -1;
  right: 0;
}
.main-chinese-kid .box-join {
  padding: 30px;
  background-color: white;
  width: fit-content;
  height: fit-content;
  border-radius: 7px;
  box-shadow: 0px 4px 15px -4px rgba(242, 50, 118, 0.5);
  margin-bottom: 100px;
  margin-top: 70px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .main-chinese-kid .box-join {
    margin-top: 0px;
    margin-bottom: 60px;
  }
  .main-chinese-kid .box-join .heading {
    font-size: 20px !important;
  }
  .main-chinese-kid .box-join .line {
    width: 100% !important;
  }
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .box-join .book {
    display: none;
  }
}
.main-chinese-kid .box-join .heading {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.main-chinese-kid .box-join .line {
  width: 210px;
  height: 1px;
  background-color: #707070;
  opacity: 0.2;
  margin-bottom: 20px;
}
.main-chinese-kid .box-join form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.main-chinese-kid .box-join .form-group {
  margin-bottom: 25px;
  display: block;
  width: 100%;
  position: relative;
}
.main-chinese-kid .box-join .form-group label {
  color: #20272F;
  font-weight: bold;
  display: block;
  margin-bottom: 7px;
}
.main-chinese-kid .box-join .form-group input, .main-chinese-kid .box-join .form-group select {
  height: 50px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 7px;
  padding-left: 15px;
  width: 100%;
  position: relative;
  padding-right: 15px;
}
.main-chinese-kid .box-join .form-group input::placeholder, .main-chinese-kid .box-join .form-group select::placeholder {
  font-size: 14px;
  font-style: italic;
  color: #707070;
}
.main-chinese-kid .box-join .form-group input option, .main-chinese-kid .box-join .form-group select option {
  color: black;
  font-style: normal;
}
.main-chinese-kid .box-join .form-group input option:disabled, .main-chinese-kid .box-join .form-group select option:disabled {
  color: rgba(112, 112, 112, 0.8);
}
.main-chinese-kid .box-join .form-group input:focus, .main-chinese-kid .box-join .form-group input:active, .main-chinese-kid .box-join .form-group select:focus, .main-chinese-kid .box-join .form-group select:active {
  border: 1px solid rgba(248, 158, 27, 0.8);
  outline: 0;
}
.main-chinese-kid .box-join .form-group input::placeholder, .main-chinese-kid .box-join .form-group select::placeholder {
  font-size: 14px;
  font-style: italic;
  opacity: 0.3;
}
.main-chinese-kid .box-join .form-group select {
  padding-right: 15px;
  font-size: 14px;
  font-style: italic;
  color: #d6d6d6;
}
.main-chinese-kid .box-join .form-group:nth-child(3), .main-chinese-kid .box-join .form-group:nth-child(4) {
  width: calc(50% - 5px);
}
.main-chinese-kid .box-join .form-group .drop-select {
  width: 22px;
  height: 15px;
  background-color: white;
  position: absolute;
  top: 53%;
  right: 2px;
}
.main-chinese-kid .box-join .form-group:nth-child(3), .main-chinese-kid .box-join .form-group:nth-child(4) {
  width: calc(50% - 5px);
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .box-join .form-group:nth-child(3), .main-chinese-kid .box-join .form-group:nth-child(4) {
    width: 100%;
  }
}
.main-chinese-kid .box-join .form-submit {
  width: 281px;
  height: 60px;
  background-color: #F23276;
  border-radius: 7px;
  transition: 0.2s;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
}
.main-chinese-kid .box-join .form-submit a {
  color: white;
  font-size: 18px;
}
@media screen and (max-width: 576px) {
  .main-chinese-kid .box-join .form-submit a {
    font-size: 16px;
  }
}
.main-chinese-kid .box-join .form-submit:hover {
  transition: 0.2s;
  background-color: #F89E1B;
  box-shadow: 0px 8px 16px 0px rgba(248, 158, 27, 0.3);
}
.main-chinese-kid .box-join .flex-gr {
  display: flex;
  align-items: flex-start;
  gap: 45px;
}
.main-chinese-kid .box-join .btn-close {
  width: 20px;
  height: 20px;
  background-color: #F23276;
  border-radius: 50%;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.15s ease-in-out;
}
.main-chinese-kid .box-join .btn-close span {
  position: relative;
  bottom: 2px;
}
.main-chinese-kid .box-join .btn-close:hover {
  background-color: #20272F;
}

.popup-join-book {
  position: fixed;
  padding: 30px;
  background-color: white;
  z-index: 103;
  max-width: 1170px;
  width: 100%;
  height: 73.7037037037vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 7px;
  visibility: hidden;
  opacity: 0;
  display: flex;
  gap: 7.6923076923%;
}
@media screen and (max-width: 1200px) {
  .popup-join-book {
    height: fit-content;
  }
}
@media screen and (max-width: 576px) {
  .popup-join-book {
    width: calc(100% - 40px);
    height: 75vh;
    overflow: hidden;
    overflow-y: scroll;
    padding: 20px;
  }
  .popup-join-book .thumb-gallery {
    display: none !important;
  }
}
.popup-join-book.visible {
  visibility: visible;
  opacity: 1;
}
.popup-join-book .thumb-gallery {
  width: 36.0683760684%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-join-book .thumb-gallery * {
  border-radius: 7px;
}
.popup-join-book .thumb-gallery .pop-slider {
  width: 100%;
}
.popup-join-book .thumb-gallery .pop-slider-thumb {
  width: 100%;
}
.popup-join-book .thumb-gallery .pop-slider-thumb .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}
.popup-join-book .thumb-gallery .pop-slider-thumb .swiper-wrapper img {
  width: 100%;
  object-fit: contain;
}
.popup-join-book .thumb-gallery .pop-slider-thumb .swiper-slide {
  cursor: pointer;
}
.popup-join-book .btn-close {
  width: 20px;
  height: 20px;
  background-color: #F23276;
  border-radius: 50%;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.15s ease-in-out;
}
@media screen and (max-width: 576px) {
  .popup-join-book .btn-close {
    top: 10px;
    right: 10px;
  }
}
.popup-join-book .btn-close span {
  position: relative;
  bottom: 2px;
}
.popup-join-book .btn-close:hover {
  background-color: #20272F;
}
.popup-join-book .heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 27px;
  position: relative;
  margin-bottom: 28px;
}
.popup-join-book .heading::before {
  content: "";
  position: absolute;
  width: calc(80% + 30px);
  left: 0;
  bottom: 0;
  height: 1.2px;
  background-color: #F23276;
}
@media screen and (max-width: 576px) {
  .popup-join-book .heading {
    margin-bottom: 15px;
    padding-bottom: 20px;
    font-size: 28px;
  }
}
.popup-join-book .price {
  font-size: 30px;
  display: inline;
  vertical-align: middle;
  margin-right: 42px;
}
@media screen and (max-width: 576px) {
  .popup-join-book .price {
    font-size: 25px;
  }
}
.popup-join-book .gift {
  width: 144px;
  height: 40px;
  background-color: #F23276;
  border-radius: 7px;
  display: inline;
  vertical-align: middle;
  transition: 0.15s;
}
@media screen and (max-width: 576px) {
  .popup-join-book .gift {
    margin-top: 10px;
  }
}
.popup-join-book .gift:hover {
  background-color: #F89E1B;
}
.popup-join-book .gift img {
  vertical-align: middle;
}
.popup-join-book .gift a {
  color: white;
  font-size: 12px;
}
.popup-join-book p {
  margin-bottom: 25px;
  opacity: 0.7;
  line-height: 1.5;
}
.popup-join-book p.first {
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  .popup-join-book p.first {
    margin-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .popup-join-book p {
    margin-bottom: 20px;
  }
}
.popup-join-book .btn-cart {
  width: 238px;
  height: 59px;
  background-color: #F23276;
  border-radius: 7px;
  transition: 0.2s;
  margin-top: 30px;
  margin-bottom: 25px;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
}
@media screen and (max-width: 576px) {
  .popup-join-book .btn-cart {
    margin-top: 5px;
  }
}
.popup-join-book .btn-cart:hover {
  transition: 0.2s;
  background-color: #F89E1B;
  box-shadow: 0px 8px 16px 0px rgba(248, 158, 27, 0.3);
}
.popup-join-book .btn-cart a {
  color: white;
  font-size: 18px;
}

.privacy {
  padding-bottom: 98px;
}
@media screen and (max-width: 768px) {
  .privacy {
    padding-bottom: 50px;
  }
  .privacy h2.heading {
    padding-top: 50px !important;
    font-size: 22px !important;
    text-align: center;
    padding-bottom: 20px !important;
  }
  .privacy p {
    text-align: center;
    font-size: 14px;
  }
}
.privacy h2.heading {
  padding-top: 100px;
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
}
.privacy .h3-wrapper {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
}
.privacy .h3-wrapper.active .inner {
  background: #F23276 !important;
}
.privacy .h3-wrapper.active svg {
  transform: rotate(-360deg) !important;
}
.privacy .h3-wrapper .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #57D2FF;
  width: 100%;
  height: 70px;
  border-radius: 7px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 0 30px;
  transition: 0.1s ease;
}
.privacy .h3-wrapper .inner h3 {
  font-size: 18px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}
.privacy .h3-wrapper .inner:hover {
  cursor: pointer;
  background-color: #F23276;
}
.privacy svg {
  transition: 0.2s;
  transform: rotate(-180deg);
}
.privacy p {
  line-height: 1.5;
  opacity: 0.7;
}
.privacy .p-slide {
  padding: 30px;
  box-shadow: 10px 11px 28px -8px rgba(242, 50, 118, 0.4);
  -webkit-box-shadow: 10px 11px 28px -8px rgba(242, 50, 118, 0.4);
  -moz-box-shadow: 10px 11px 28px -8px rgba(242, 50, 118, 0.4);
}

@media screen and (max-width: 768px) {
  .policy {
    padding-bottom: 0;
  }
  .policy h2.heading {
    padding-top: 45px !important;
  }
}
@media screen and (max-width: 576px) {
  .policy p:first-of-type {
    text-align: center;
  }
  .policy p {
    margin-bottom: 15px !important;
  }
}
.policy h2.heading {
  padding-top: 100px;
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 576px) {
  .policy h2.heading {
    font-size: 22px !important;
    text-align: center;
    line-height: 1.4;
    padding-bottom: 15px;
  }
}
.policy h3 {
  font-size: 18px;
  font-weight: 800;
  color: #F23276;
  padding: 28px 0;
  line-height: 1.4;
}
@media screen and (max-width: 576px) {
  .policy h3 {
    padding-bottom: 18px;
  }
}
.policy p {
  line-height: 1.5;
  opacity: 0.7;
  margin-bottom: 20px;
}

.main-policy .footer {
  margin-top: 98px;
}
@media screen and (max-width: 768px) {
  .main-policy .footer {
    margin-top: 45px;
  }
}

.main-password .content {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .main-password .content {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
.main-password .content .container {
  display: flex;
  gap: 111px;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  .main-password .content .container {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .main-password .content .tools {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .main-password .content .user-menu {
    background-color: #F23276;
    padding: 20px;
    border-radius: 7px;
  }
}
.main-password .content .user-menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  margin-top: 2px;
  border-radius: 7px;
}
@media screen and (max-width: 576px) {
  .main-password .content .user-menu-item {
    flex-direction: column;
  }
  .main-password .content .user-menu-item p {
    font-size: 16px !important;
    color: white !important;
    font-weight: 600 !important;
  }
  .main-password .content .user-menu-item svg {
    margin-bottom: 12px;
  }
  .main-password .content .user-menu-item svg * {
    fill: white !important;
  }
}
.main-password .content .user-menu-item.active p {
  color: #F23276;
}
.main-password .content .user-menu-item.active svg * {
  fill: #F23276;
}
.main-password .content .user-menu-item:last-child {
  margin-bottom: 0;
}
.main-password .content .user-menu-item:hover p {
  color: #F23276;
}
.main-password .content .user-menu-item:hover svg * {
  fill: #F23276;
}
.main-password .content .user-menu svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
@media screen and (max-width: 576px) {
  .main-password .content .user-menu svg {
    margin-right: 0;
  }
}
.main-password .content .user-menu svg * {
  fill: #20272F;
  transition: 0.15s ease;
}
.main-password .content .user-menu p {
  color: #20272F;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.5;
  transition: 0.15s ease;
}
.main-password .content .settings {
  padding-left: 30px;
}
@media screen and (max-width: 576px) {
  .main-password .content .settings {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.main-password .content .settings .heading {
  font-size: 30px;
  line-height: 1;
  position: relative;
  margin-bottom: 25px;
}
@media screen and (max-width: 576px) {
  .main-password .content .settings .heading {
    line-height: 1.5;
  }
  .main-password .content .settings .heading::before {
    display: none;
  }
}
.main-password .content .settings .heading::before {
  content: "";
  height: 120%;
  width: 1.5px;
  background-color: #F23276;
  position: absolute;
  left: -30px;
}
.main-password .content form .form-group label {
  display: inline-block;
  width: 170px;
}
@media screen and (max-width: 900px) {
  .main-password .content form .form-group label {
    display: block;
  }
}
.main-password .content form .form-group input {
  width: 320px;
  height: 50px;
  border: 1px solid #D8D8D8;
  padding-left: 17px;
  border-radius: 7px;
  margin-left: 20px;
  margin-bottom: 22px;
}
@media screen and (max-width: 900px) {
  .main-password .content form .form-group input {
    margin-left: 0;
    margin-top: 15px;
  }
}
@media screen and (max-width: 576px) {
  .main-password .content form .form-group input {
    width: 100%;
  }
}
.main-password .content form .form-group input:focus {
  border: 1px solid #F89E1B;
}
@media screen and (max-width: 1200px) {
  .main-password .content form .form-group input.last-input {
    margin-left: 195px;
  }
}
@media screen and (max-width: 900px) {
  .main-password .content form .form-group input.last-input {
    margin-left: 25px;
  }
}
@media screen and (max-width: 576px) {
  .main-password .content form .form-group input.last-input {
    margin-left: 0;
    margin-top: 0;
  }
}
.main-password .content .btn-update {
  display: block;
  margin-left: 195px;
  margin-top: 15px;
}
@media screen and (max-width: 900px) {
  .main-password .content .btn-update {
    margin-left: 0;
  }
}
.main-password .content .btn-update button {
  width: 149px;
  height: 44px;
  font-size: 14px;
  color: white;
  border-radius: 7px;
  background-color: #57D2FF;
  transition: 0.2s ease;
}
.main-password .content .btn-update button:hover {
  background-color: #F89E1B;
}

.main-cart .cart-wrapper {
  padding-top: 100px;
  padding-bottom: 97px;
}
.main-cart .cart-wrapper .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .main-cart .cart-wrapper .container {
    flex-direction: column;
  }
  .main-cart .cart-wrapper .container .cart-products, .main-cart .cart-wrapper .container .checkout-sidebar {
    width: 100%;
  }
  .main-cart .cart-wrapper .container .cart-products {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 992px) and (max-width: 576px) {
  .main-cart .cart-wrapper .container .cart-products .cart-item {
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .main-cart .cart-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.main-cart .cart-products {
  padding: 30px;
  box-shadow: 10px 11px 40px -12px rgba(242, 50, 118, 0.3);
  -webkit-box-shadow: 10px 11px 40px -12px rgba(242, 50, 118, 0.3);
  -moz-box-shadow: 10px 11px 40px -12px rgba(242, 50, 118, 0.3);
  width: 65.811965812%;
}
.main-cart .cart-products .cart-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.3);
  margin-bottom: 46px;
  position: relative;
}
.main-cart .cart-products .cart-item:last-child {
  padding-bottom: 0;
  border-bottom: unset;
  margin-bottom: 0;
}
.main-cart .cart-products .cart-item .info .title {
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.2s;
}
.main-cart .cart-products .cart-item .info .title:hover {
  color: #F23276;
  cursor: pointer;
}
.main-cart .cart-products .cart-item .info .info-line {
  width: 200px;
  height: 1.5px;
  background: #F23276;
  margin-bottom: 15px;
}
.main-cart .cart-products .cart-item .info p {
  line-height: 1.5;
  margin-bottom: 35px;
  font-size: 14px;
}
.main-cart .cart-products .cart-item .info .price * {
  display: inline-block;
  vertical-align: middle;
}
.main-cart .cart-products .cart-item .info .price p {
  margin-bottom: 0;
  font-size: 18px;
}
.main-cart .cart-products .cart-item .btn-remove {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.main-cart .cart-products .cart-item .btn-remove svg * {
  transition: 0.1s;
}
.main-cart .cart-products .cart-item .info .title:hover + .btn-remove svg * {
  fill: #F23276;
}
.main-cart .cart-products .cart-item .btn-remove:hover svg * {
  fill: #F23276;
}
.main-cart .checkout-sidebar {
  width: 31.6239316239%;
}
.main-cart .checkout-sidebar .promotion-wrapper {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 10px 11px 28px -12px rgba(242, 50, 118, 0.3);
  -webkit-box-shadow: 10px 11px 28px -12px rgba(242, 50, 118, 0.3);
  -moz-box-shadow: 10px 11px 28px -12px rgba(242, 50, 118, 0.3);
}
.main-cart .checkout-sidebar .promotion-wrapper .heading {
  font-size: 18px;
  color: #20272F;
  line-height: 1.5;
  margin-bottom: 10px;
}
.main-cart .checkout-sidebar .promotion-wrapper .description {
  margin-bottom: 18px;
}
.main-cart .checkout-sidebar .promotion-wrapper .description p {
  line-height: 1.5;
  margin-left: 10px;
  font-size: 14px;
  color: #F23276;
}
.main-cart .checkout-sidebar .promotion-wrapper .description * {
  display: inline-block;
  vertical-align: middle;
}
.main-cart .checkout-sidebar .promotion-wrapper input {
  border: 1px solid rgba(112, 112, 112, 0.3);
  height: 50px;
  border-radius: 7px;
  width: 100%;
  padding-left: 20px;
  margin-bottom: 35px;
}
.main-cart .checkout-sidebar .promotion-wrapper input:focus {
  border: 1px solid rgba(242, 50, 118, 0.7);
}
.main-cart .checkout-sidebar .promotion-wrapper .btn-apply {
  display: block;
  background: #20272F;
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  height: 60px;
  line-height: 60px;
  transition: 0.2s;
  border-radius: 7px;
}
.main-cart .checkout-sidebar .promotion-wrapper .btn-apply:hover {
  background: #F23276;
}
.main-cart .checkout-sidebar .pay-wrapper {
  width: 100%;
  padding: 30px;
  box-shadow: 10px 11px 28px -12px rgba(242, 50, 118, 0.3);
  -webkit-box-shadow: 10px 11px 28px -12px rgba(242, 50, 118, 0.3);
  -moz-box-shadow: 10px 11px 28px -12px rgba(242, 50, 118, 0.3);
}
.main-cart .checkout-sidebar .pay-wrapper .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.main-cart .checkout-sidebar .pay-wrapper .item * {
  line-height: 1.5;
}
.main-cart .checkout-sidebar .pay-wrapper .checkout-line {
  width: 100%;
  height: 1px;
  background: #707070;
  opacity: 0.3;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 22px;
}
.main-cart .checkout-sidebar .pay-wrapper .total-price {
  font-size: 18px;
  color: #20272F;
  margin-bottom: 27px;
}
.main-cart .checkout-sidebar .pay-wrapper .total-price * {
  font-weight: bold;
}
.main-cart .checkout-sidebar .pay-wrapper .btn-pay {
  display: block;
  width: 100%;
  height: 60px;
  background: #F23276;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: white;
  font-weight: bold;
  border-radius: 7px;
  transition: 0.2s;
}
.main-cart .checkout-sidebar .pay-wrapper .btn-pay:hover {
  background: #F89E1B;
}
.main-cart .banner-gold-wrapper {
  margin-bottom: 100px;
}
.main-cart .bg-triangle {
  top: 1450px;
  right: -250px;
}

.faq {
  padding-bottom: 98px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 45px;
  }
  .faq h2.heading {
    padding-top: 45px !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .faq {
    text-align: center;
  }
}
.faq h2.heading {
  padding-top: 100px;
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 576px) {
  .faq h2.heading {
    font-size: 25px;
  }
}
.faq h3 {
  font-size: 18px;
  font-weight: bold;
  color: #F23276;
  padding: 28px 0;
  line-height: 1.3;
}
@media screen and (max-width: 576px) {
  .faq h3 {
    padding-bottom: 20px;
    padding-top: 35px;
  }
}
.faq p {
  line-height: 1.5;
  opacity: 0.7;
}

.main-home .section-banner {
  margin-top: 140px;
  padding-top: 170px;
  background-color: #EFF3FF;
  position: relative;
}
.main-home .section-banner .container {
  display: flex;
  align-items: flex-start;
  height: fit-content;
  padding-bottom: 40px;
  position: relative;
  z-index: 5;
}
.main-home .section-banner .circle-gold,
.main-home .section-banner .circle-blue,
.main-home .section-banner .circle-pink,
.main-home .section-banner .circle-round {
  position: absolute;
}
.main-home .section-banner .circle-gold {
  top: 23px;
  left: -34px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}
@media screen and (max-width: 1200px) {
  .main-home .section-banner .circle-gold {
    top: 60%;
  }
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .circle-gold {
    top: -70px;
    left: 25px;
  }
}
.main-home .section-banner .circle-blue {
  top: 367px;
  left: 46.875%;
  animation: float 3s ease-in-out infinite;
}
@media screen and (max-width: 1200px) {
  .main-home .section-banner .circle-blue {
    top: 40%;
  }
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .circle-blue {
    top: 50px;
    left: unset;
    right: 0;
  }
}
.main-home .section-banner .circle-pink {
  top: 74px;
  right: -32px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.8s;
}
@media screen and (max-width: 1200px) {
  .main-home .section-banner .circle-pink {
    top: 50%;
  }
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .circle-pink {
    top: 600px;
    right: -50px;
  }
}
@media screen and (max-width: 1200px) {
  .main-home .section-banner {
    padding-top: 100px;
  }
  .main-home .section-banner .container {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 576px) {
  .main-home .section-banner {
    margin-top: 95px;
    padding-top: 90px;
  }
  .main-home .section-banner .container {
    flex-direction: column;
  }
}
.main-home .section-banner .content {
  height: fit-content;
}
@media screen and (max-width: 1200px) {
  .main-home .section-banner .content {
    width: 100%;
  }
  .main-home .section-banner .content .heading {
    white-space: unset !important;
  }
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .content {
    width: 100%;
  }
}
.main-home .section-banner .content .heading {
  font-size: 50px;
  font-weight: bold;
  color: #20272F;
  line-height: 1.5;
  margin-bottom: 26px;
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .content .heading {
    white-space: unset;
    font-size: 35px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
}
.main-home .section-banner .content .heading span {
  display: block;
  font-weight: bold;
  color: #20272F;
  line-height: 1.2;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .content .heading span {
    display: inline;
  }
}
.main-home .section-banner .content .description {
  line-height: 1.5;
  margin-bottom: 40px;
  padding-right: 220px;
  font-size: 20px;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .content .description {
    padding-right: 0;
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.main-home .section-banner .content .tools {
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .content .tools {
    flex-direction: column;
    gap: 20px;
  }
}
.main-home .section-banner .content .btn-join {
  width: 223px;
  height: 60px;
  background-color: #F23276;
  color: white;
  font-size: 18px;
  border-radius: 7px;
  transition: 0.2s;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .content .btn-join {
    font-size: 16px;
  }
}
.main-home .section-banner .content .btn-join:hover {
  transition: 0.2s;
  background-color: #F89E1B;
  box-shadow: 0px 8px 16px 0px rgba(248, 158, 27, 0.3);
}
.main-home .section-banner .content .btn-watch .icon-watch {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.07);
  transition: 0.2s;
}
.main-home .section-banner .content .btn-watch p {
  display: inline-block;
  margin-left: 20px;
  transition: 0.15s ease;
}
.main-home .section-banner .content .btn-watch:hover {
  cursor: pointer;
}
.main-home .section-banner .content .btn-watch:hover .icon-watch {
  background: #F23276;
}
.main-home .section-banner .content .btn-watch:hover p {
  color: #F23276;
}
.main-home .section-banner .banner-human {
  position: relative;
  bottom: 159px;
}
@media screen and (max-width: 1200px) {
  .main-home .section-banner .banner-human {
    bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .banner-human {
    position: unset;
  }
  .main-home .section-banner .banner-human img {
    width: 100%;
  }
}
.main-home .section-banner .banner-human .round {
  position: absolute;
  bottom: 0;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  left: 37px;
}
.main-home .section-banner .banner-human .round .icon-hat-sq,
.main-home .section-banner .banner-human .round .icon-stat {
  position: absolute;
}
.main-home .section-banner .banner-human .round .icon-stat {
  bottom: 45%;
  left: 45%;
  animation: circle 14s linear infinite;
  width: 40px;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .banner-human .round .icon-stat {
    width: 32px;
    animation: unset;
    left: 0px;
    bottom: 375px;
  }
}
@media screen and (max-width: 320px) {
  .main-home .section-banner .banner-human .round .icon-stat {
    bottom: 365px;
  }
}
.main-home .section-banner .banner-human .round .icon-hat-sq {
  right: -16px;
  bottom: 225px;
  animation: float 4s ease-in-out infinite;
  width: 40px;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .banner-human .round .icon-hat-sq {
    display: none;
  }
}
.main-home .section-banner .banner-human .circle-round {
  bottom: 110px;
  right: -90px;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .banner-human .circle-round {
    display: none;
  }
}
.main-home .section-banner .banner-human .flag-box {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 7px;
  display: inline-block;
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  backdrop-filter: blur(7px);
  z-index: 5;
  top: 0;
}
.main-home .section-banner .banner-human .flag-box img {
  width: 32px;
}
.main-home .section-banner .banner-human .flag-box.language {
  width: 158px;
  height: 50px;
  font-size: 12px;
  padding-left: 10px;
  top: 233px;
  right: 70.0854700855%;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .banner-human .flag-box.language {
    left: 0;
    top: unset;
    bottom: 450px;
  }
}
@media screen and (max-width: 320px) {
  .main-home .section-banner .banner-human .flag-box.language {
    bottom: 400px;
  }
}
.main-home .section-banner .banner-human .flag-box.advance {
  width: 158px;
  height: 50px;
  font-size: 12px;
  padding-left: 10px;
  top: 347px;
  right: -52px;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .banner-human .flag-box.advance {
    right: 0;
    top: unset;
    bottom: 380px;
  }
}
@media screen and (max-width: 320px) {
  .main-home .section-banner .banner-human .flag-box.advance {
    bottom: 350px;
  }
}
.main-home .section-banner .banner-human .flag-box.new {
  width: 182px;
  height: 86px;
  align-items: flex-start;
  font-size: 12px;
  padding-top: 14px;
  padding-left: 14px;
  left: -30px;
  top: 425px;
}
.main-home .section-banner .banner-human .flag-box.new p {
  font-weight: 800;
}
.main-home .section-banner .banner-human .flag-box.new .time {
  font-size: 10px;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 10px;
}
.main-home .section-banner .banner-human .flag-box.new button {
  width: 110px;
  height: 22px;
  background-color: #F23276;
  border-radius: 5px;
  transition: 0.2s;
}
.main-home .section-banner .banner-human .flag-box.new button:hover {
  background-color: #F89E1B;
}
.main-home .section-banner .banner-human .flag-box.new a {
  font-weight: bold;
  font-size: 10px;
  color: white;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .banner-human .flag-box.new {
    left: 30px;
    top: unset;
    bottom: 240px;
  }
}
.main-home .section-banner .program-wrapper {
  width: 100%;
  position: absolute;
  bottom: -100px;
  background-color: white;
  box-shadow: -1px 27px 44px -33px rgba(242, 50, 118, 0.3);
  border-radius: 7px;
}
@media screen and (max-width: 1200px) {
  .main-home .section-banner .program-wrapper {
    align-self: center;
    position: relative;
  }
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .program-wrapper {
    position: relative;
    height: 220px;
    left: 50%;
    transform: translateX(-50%);
    order: 3;
    bottom: -80px;
  }
  .main-home .section-banner .program-wrapper .swiper {
    border-radius: 7px;
  }
  .main-home .section-banner .program-wrapper .program-card {
    height: 220px;
  }
}
.main-home .section-banner .program-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 7px;
}
.main-home .section-banner .program-wrapper .border-bottom-left {
  position: absolute;
  left: -4px;
  bottom: -4px;
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .program-wrapper .border-bottom-left {
    width: 100%;
    bottom: -4px;
    left: -4px;
  }
}
.main-home .section-banner .program-wrapper .border-top-right {
  position: absolute;
  top: -4px;
  right: -4px;
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .program-wrapper .border-top-right {
    width: 100%;
    right: -5px;
    top: -4px;
  }
}
.main-home .section-banner .program-wrapper .bg-dots {
  position: absolute;
  z-index: 0;
  right: -30px;
  bottom: -30px;
}
.main-home .section-banner .program-wrapper .swiper-slide:last-child .program-card::before {
  display: none;
}
.main-home .section-banner .program-wrapper .program-card {
  background-color: white;
  padding-top: 24px;
  padding-bottom: 18px;
  padding-right: 10px;
  padding-left: 18px;
  border-radius: 7px;
  position: relative;
  height: 100%;
}
.main-home .section-banner .program-wrapper .program-card::before {
  content: "";
  position: absolute;
  height: 168px;
  width: 0.8px;
  background-color: #707070;
  opacity: 0.2;
  left: -1%;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .program-wrapper .program-card::before {
    display: none;
  }
}
.main-home .section-banner .program-wrapper .program-card.first {
  padding-left: 25px;
}
.main-home .section-banner .program-wrapper .program-card.first::before {
  display: none;
}
.main-home .section-banner .program-wrapper .program-card .title {
  font-size: 20px;
  font-weight: 600;
  padding-top: 18px;
  padding-bottom: 16px;
}
.main-home .section-banner .program-wrapper .program-card .description {
  font-size: 12px;
  line-height: 1.5;
}
.main-home .section-banner .program-wrapper .btn-prev-program {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F23276;
  position: absolute;
  z-index: 3;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  cursor: pointer;
  transition: 0.2s;
}
.main-home .section-banner .program-wrapper .btn-prev-program:focus, .main-home .section-banner .program-wrapper .btn-prev-program:active {
  outline: 0;
}
.main-home .section-banner .program-wrapper .btn-prev-program:hover {
  background-color: #F23276;
  transition: 0.2s;
}
.main-home .section-banner .program-wrapper .btn-prev-program:hover svg * {
  fill: white;
  transition: 0.2s;
}
.main-home .section-banner .program-wrapper .btn-prev-program svg {
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
.main-home .section-banner .program-wrapper .btn-prev-program svg * {
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .program-wrapper .btn-prev-program {
    top: unset;
    bottom: -20px;
    transform: translateY(0);
    left: 43%;
    transform: translateX(-50%);
  }
}
.main-home .section-banner .program-wrapper .btn-next-program {
  width: 40px;
  height: 40px;
  background-color: #F23276;
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  line-height: 42px;
  cursor: pointer;
  transition: 0.2s;
}
.main-home .section-banner .program-wrapper .btn-next-program:focus, .main-home .section-banner .program-wrapper .btn-next-program:active {
  outline: 0;
}
.main-home .section-banner .program-wrapper .btn-next-program:hover {
  background-color: white;
  border: 0.5px solid rgba(112, 112, 112, 0.3);
  transition: 0.2s;
}
.main-home .section-banner .program-wrapper .btn-next-program:hover svg * {
  fill: #F23276;
  transition: 0.2s;
}
.main-home .section-banner .program-wrapper .btn-next-program svg {
  transition: 0.2s;
  position: relative;
  transform: rotate(180deg);
}
@media screen and (max-width: 576px) {
  .main-home .section-banner .program-wrapper .btn-next-program {
    top: unset;
    bottom: -20px;
    transform: translateY(0);
    right: 43%;
    transform: translateX(50%);
  }
}
.main-home .section-banner .program-wrapper .btn-program-disable {
  background-color: white;
  border: 0.5px solid rgba(112, 112, 112, 0.3);
}
.main-home .section-banner .program-wrapper .btn-program-disable svg * {
  fill: #20272F;
}
.main-home .icon-group {
  margin-top: 211px;
  padding: 30px 0;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-left: 0;
  border-right: 0;
  margin-bottom: 80px;
}
.main-home .icon-group.container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .main-home .icon-group.container {
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .main-home .icon-group.container {
    flex-direction: column;
    align-items: center;
    padding: 0;
    padding-top: 30px;
    padding-bottom: 5px;
    margin-top: 100px;
    margin-bottom: 40px;
    gap: 10px;
  }
  .main-home .icon-group.container .item {
    width: 100% !important;
    margin-bottom: 25px;
    padding-left: 20px;
  }
}
.main-home .icon-group .item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 29.7435897436%;
}
.main-home .icon-group .item p {
  line-height: 1.5;
}
.main-home .courses-type {
  padding-bottom: 50px;
}
.main-home .courses-pagination {
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 0 !important;
  z-index: 10;
  width: fit-content !important;
}
.main-home .courses-pagination .swiper-pagination-bullet {
  background: #D8D8D8;
  width: 10px;
  height: 10px;
  opacity: 1;
  transition: 0.3s;
}
.main-home .courses-pagination .swiper-pagination-bullet-active {
  width: 60px;
  background: #F23276;
  border-radius: 7px;
  animation: 0.5s pagination;
}
.main-home .top-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 900px) {
  .main-home .top-row {
    flex-direction: column;
    gap: 20px;
  }
}
.main-home .top-row .heading {
  width: fit-content;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .main-home .top-row .heading {
    white-space: normal;
    line-height: 1.2;
    margin-bottom: 0 !important;
  }
}
.main-home .top-row .all-course {
  text-decoration: underline;
  color: #F23276;
  width: fit-content;
  white-space: nowrap;
  transition: 0.15s ease-in-out;
}
@media screen and (max-width: 900px) {
  .main-home .top-row .all-course {
    margin-top: 10px;
    margin-bottom: 25px;
    position: relative;
    left: 4px;
  }
}
.main-home .top-row .all-course:hover {
  color: #F89E1B;
}
.main-home .courses-type-pagination {
  display: inline-flex;
  gap: 23px;
  width: fit-content !important;
}
.main-home .courses-type-pagination .custom-bullet {
  width: fit-content;
  background-color: transparent;
  opacity: 1;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  transition: 0.2s;
}
.main-home .courses-type-pagination .custom-bullet::after {
  content: "";
  width: 1px;
  height: 27px;
  background: #707070;
  opacity: 0.2;
  position: absolute;
  top: -3px;
  right: -15.5px;
}
.main-home .courses-type-pagination .custom-bullet:last-child::after {
  display: none;
}
.main-home .courses-type-pagination .custom-bullet:hover {
  transition: 0.2s;
  color: #F89E1B;
}
.main-home .courses-type-pagination .swiper-pagination-bullet-active {
  color: #F23276;
}
.main-home .course-outer {
  position: relative;
}
.main-home .course-outer .dots-gold {
  position: absolute;
  left: -115px;
  top: -100px;
}
@media screen and (max-width: 1300px) {
  .main-home .course-outer .dots-gold {
    display: none;
  }
}
.main-home .course-outer .round-blue {
  position: absolute;
  z-index: -1;
  top: 120px;
  left: -70px;
}
@media screen and (max-width: 1024px) {
  .main-home .course-outer .round-blue {
    display: none;
  }
}
.main-home .course-outer .dash {
  position: absolute;
  z-index: -1;
  right: -172px;
  top: -117px;
}
@media screen and (max-width: 1300px) {
  .main-home .course-outer .dash {
    display: none;
  }
}
.main-home .course-outer .round-gold {
  position: absolute;
  z-index: -1;
  right: -65px;
  bottom: 285px;
}
@media screen and (max-width: 576px) {
  .main-home .course-outer .round-gold {
    display: none;
  }
}
.main-home .courses-wrapper {
  width: 100%;
  padding-bottom: 24px;
  position: relative;
}
.main-home .courses-wrapper .heading {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 27px;
}
@media screen and (max-width: 576px) {
  .main-home .courses-wrapper .heading {
    font-size: 25px;
  }
}
.main-home .courses-wrapper .swiper {
  padding-bottom: 57px;
  width: 100%;
}
.main-home .courses-wrapper .swiper-wrapper {
  width: 100%;
}
.main-home .courses-wrapper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .main-home .courses-wrapper .swiper-slide {
    align-items: flex-end;
  }
}
.main-home .courses-wrapper .course-card {
  width: 22.4358974359% !important;
  position: relative;
  margin-left: 6px;
  margin-top: 6px;
  background-color: white;
  border-radius: 7px;
  border: 1px solid rgba(242, 50, 118, 0.2);
  bottom: 0;
  transition: 0.2s ease-in-out !important;
  height: fit-content;
}
@media screen and (max-width: 1200px) {
  .main-home .courses-wrapper .course-card {
    width: 22% !important;
  }
}
@media screen and (max-width: 900px) {
  .main-home .courses-wrapper .course-card {
    width: 29.5% !important;
  }
}
@media screen and (max-width: 576px) {
  .main-home .courses-wrapper .course-card {
    margin-left: 0;
  }
}
.main-home .courses-wrapper .course-card::before {
  content: url(../../images/border-bottom-left.png);
  position: absolute;
  z-index: -1;
  bottom: -6px;
  left: -4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}
.main-home .courses-wrapper .course-card::after {
  content: url(../../images/border-top-right.png);
  position: absolute;
  z-index: -1;
  top: -4px;
  right: -4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 576px) {
  .main-home .courses-wrapper .course-card {
    width: 100% !important;
    border: 2px solid rgba(242, 50, 118, 0.3);
  }
}
.main-home .courses-wrapper .course-card .img-course {
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  margin-bottom: 14px;
  padding: 10px;
  padding-bottom: 0;
}
.main-home .courses-wrapper .course-card:hover {
  box-shadow: 15px 13px 30px 1px rgba(242, 50, 118, 0.2);
  color: #F23276;
}
.main-home .courses-wrapper .course-card:hover::before {
  opacity: 1;
  visibility: visible;
}
.main-home .courses-wrapper .course-card:hover::after {
  opacity: 1;
  visibility: visible;
}
.main-home .courses-wrapper .course-card .content {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  background: white;
}
.main-home .courses-wrapper .course-card .sub-heading {
  font-size: 12px;
  color: #F23276;
  font-weight: 800;
  margin-bottom: 18px;
  padding-left: 10px;
}
.main-home .courses-wrapper .course-card .title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  padding-left: 10px;
  height: 63px;
}
@media screen and (max-width: 576px) {
  .main-home .courses-wrapper .course-card .title {
    height: 40px;
  }
}
.main-home .courses-wrapper .course-card .info {
  display: flex;
  gap: 30px;
  margin-top: 15px;
  align-items: center;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 12px;
  padding-right: 10px;
  justify-content: space-between;
}
.main-home .courses-wrapper .course-card .info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(112, 112, 112, 0.2);
  top: 0;
  left: 0;
}
.main-home .courses-wrapper .course-card .info img {
  height: 15.17px;
}
.main-home .courses-wrapper .course-card .info .price {
  font-size: 14px;
}
.main-home .book-slider-wrapper {
  background-color: #20272F;
  padding-top: 77px;
  padding-bottom: 80px;
  position: relative;
}
.main-home .book-slider-wrapper .container {
  position: relative;
}
.main-home .book-slider-wrapper .books-heading {
  font-size: 40px;
  color: white;
  font-weight: 800;
  margin-bottom: 40px;
  z-index: 3;
}
@media screen and (max-width: 576px) {
  .main-home .book-slider-wrapper .books-heading {
    font-size: 25px;
  }
}
.main-home .book-slider-wrapper .bg-dots-rotate {
  position: absolute;
  top: 17px;
  left: -113px;
}
@media screen and (max-width: 1367px) {
  .main-home .book-slider-wrapper .bg-dots-rotate {
    display: none;
  }
}
.main-home .book-slider-wrapper .circle {
  position: absolute;
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
}
.main-home .book-navi-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F23276;
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-home .book-navi-prev:focus, .main-home .book-navi-prev:active {
  outline: 0;
}
.main-home .book-navi-prev:hover {
  transition: 0.2s;
  background-color: #F23276;
}
.main-home .book-navi-prev:hover svg * {
  fill: white !important;
  transition: 0.2s;
}
.main-home .book-navi-prev svg {
  transition: 0.2s;
}
@media screen and (max-width: 1200px) {
  .main-home .book-navi-prev {
    transform: translateY(0);
    top: unset;
    bottom: -55px;
    left: 45%;
  }
}
@media screen and (max-width: 900px) {
  .main-home .book-navi-prev {
    left: 44%;
  }
}
@media screen and (max-width: 576px) {
  .main-home .book-navi-prev {
    left: 37%;
  }
}
.main-home .book-navi-next {
  width: 40px;
  height: 40px;
  background-color: #F23276;
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-home .book-navi-next:focus, .main-home .book-navi-next:active {
  outline: 0;
}
.main-home .book-navi-next:hover {
  transition: 0.2s;
  background-color: white;
  border: 0.5px solid rgba(112, 112, 112, 0.3);
}
.main-home .book-navi-next:hover svg * {
  fill: #F23276 !important;
  transition: 0.2s;
}
.main-home .book-navi-next svg {
  transition: 0.2s;
}
.main-home .book-navi-next svg {
  position: relative;
  transform: rotate(180deg);
}
@media screen and (max-width: 1200px) {
  .main-home .book-navi-next {
    transform: translateY(0);
    top: unset;
    bottom: -55px;
    right: 45%;
  }
}
@media screen and (max-width: 900px) {
  .main-home .book-navi-next {
    right: 44%;
  }
}
@media screen and (max-width: 576px) {
  .main-home .book-navi-next {
    right: 37%;
  }
}
.main-home .book-navi-disable {
  background-color: white;
  border: 0.5px solid rgba(112, 112, 112, 0.3);
}
.main-home .book-navi-disable svg * {
  fill: #20272F;
}
.main-home .book-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  position: relative;
  background-color: white;
}
.main-home .book-card * {
  transition: 0.05s;
}
.main-home .book-card:hover {
  cursor: pointer;
  color: #F23276;
}
@media screen and (max-width: 576px) {
  .main-home .book-card {
    left: 50%;
    transform: translateX(-50%);
  }
}
.main-home .book-card .img-book {
  flex-shrink: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
.main-home .book-card .content {
  text-align: center;
}
.main-home .book-card .content .heading {
  height: 80px;
}
.main-home .book-card .content .title {
  line-height: 1.5;
  font-size: 14px;
  width: 85%;
  margin: 0 auto;
}
.main-home .book-card .content .description {
  font-size: 14px;
  line-height: 1.5;
  padding: 0 14px;
}
.main-home .book-card .content .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}
@media screen and (min-width: 576px) and (max-width: 1023px) {
  .main-home .book-card .content .info {
    padding: 15px 12px;
  }
}
.main-home .book-card .content .info .price {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 576px) and (max-width: 1023px) {
  .main-home .book-card .content .info .price img {
    display: none;
  }
}
.main-home .book-card .content .info img {
  flex-shrink: 0 !important;
  object-fit: contain;
}
.main-home .learning-path {
  padding-top: 67px;
}
.main-home .learning-path .heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5;
  color: #20272F;
  margin-bottom: 103px;
}
@media screen and (max-width: 576px) {
  .main-home .learning-path .heading {
    font-size: 25px;
  }
}
.main-home .learning-path .learning-wrapper {
  display: flex;
  position: relative;
}
@media screen and (min-width: 767px) and (max-width: 1200px) {
  .main-home .learning-path .learning-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 576px) {
  .main-home .learning-path .learning-wrapper {
    flex-direction: column;
  }
  .main-home .learning-path .learning-wrapper .learning {
    margin-bottom: 100px;
  }
}
.main-home .learning-path .learning-wrapper .learning {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 9px 10px 15px -5px rgba(0, 0, 0, 0.3);
  position: relative;
}
.main-home .learning-path .learning-wrapper .learning::after {
  content: "";
  width: calc(100% - 55px);
  height: 1px;
  position: absolute;
  top: -45px;
  left: calc(50% + 28px);
  z-index: 10;
  background-image: url(../../images/dash-line.png);
}
@media screen and (max-width: 1200px) {
  .main-home .learning-path .learning-wrapper .learning::after {
    display: none;
  }
}
.main-home .learning-path .learning-wrapper .learning:nth-child(4)::after, .main-home .learning-path .learning-wrapper .learning:nth-child(5)::after, .main-home .learning-path .learning-wrapper .learning:nth-child(6)::after {
  display: none;
}
@media screen and (min-width: 767px) and (max-width: 1200px) {
  .main-home .learning-path .learning-wrapper .learning {
    margin-bottom: 100px;
  }
}
.main-home .learning-path .learning-wrapper .learning img {
  margin-bottom: 18px;
  padding-top: 43px;
}
.main-home .learning-path .learning-wrapper .learning .title {
  margin-bottom: 22px;
  font-size: 20px;
  color: white;
  font-weight: 600;
}
.main-home .learning-path .learning-wrapper .learning .content {
  margin-bottom: 32px;
  width: 80%;
  color: white;
}
.main-home .learning-path .learning-wrapper .learning p {
  line-height: 1.5;
  margin-bottom: 5px;
  padding-left: 16px;
  position: relative;
}
.main-home .learning-path .learning-wrapper .learning p span {
  font-weight: 800;
}
.main-home .learning-path .learning-wrapper .learning p::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.main-home .learning-path .learning-wrapper .learning p.time {
  padding-left: 0;
}
.main-home .learning-path .learning-wrapper .learning p.time::before {
  display: none;
}
.main-home .learning-path .learning-wrapper .learning .more {
  color: white;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 800;
  transition: 0.15s ease;
  padding-bottom: 54px;
}
.main-home .learning-path .learning-wrapper .learning .more:hover {
  color: #20272F;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(1) {
  background-image: linear-gradient(to right bottom, #F6A72B, #F4D636);
  z-index: 6;
  position: relative;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(1) .title,
.main-home .learning-path .learning-wrapper .learning:nth-child(1) p {
  color: #20272F;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(1) p::before {
  background-color: #20272F;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(1) .content {
  margin-bottom: 23px;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(1) .more {
  color: #F23276;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(1) .subscribe {
  background-color: #F6A72B;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #F4C933;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(2) {
  background-image: linear-gradient(to left top, #FC0713, #FB711F);
  z-index: 5;
  position: relative;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(2) .subscribe {
  background-color: #FC0713;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #FC2416;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(3) {
  background-image: linear-gradient(to left top, #E00A8A, #E60A8B);
  z-index: 4;
  position: relative;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(3) .subscribe {
  background-color: #E00A8A;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #E20A8A;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(4) {
  background-image: linear-gradient(to left top, #6E43C2, #7245C5);
  z-index: 3;
  position: relative;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(4) .subscribe {
  background-color: #6E43C2;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(4)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent rgb(111, 67, 194);
}
@media screen and (max-width: 576px) {
  .main-home .learning-path .learning-wrapper .learning:nth-child(4) {
    margin-bottom: 0;
  }
}
.main-home .learning-path .learning-wrapper .learning:nth-child(5) {
  background-image: linear-gradient(to left top, #EC7C3B, #EC7C3B);
  z-index: 2;
  position: relative;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(5) .subscribe {
  background-color: #EC7C3B;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(5)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #EC7C3B;
}
@media screen and (max-width: 576px) {
  .main-home .learning-path .learning-wrapper .learning:nth-child(5) {
    margin-bottom: 0;
  }
}
.main-home .learning-path .learning-wrapper .learning:nth-child(6) {
  background-image: linear-gradient(to left top, #6CB321, #A7CE05);
  z-index: 1;
}
.main-home .learning-path .learning-wrapper .learning:nth-child(6) .subscribe {
  background-color: #6CB321;
}
@media screen and (max-width: 576px) {
  .main-home .learning-path .learning-wrapper .learning:nth-child(6) {
    margin-bottom: 0;
  }
}
.main-home .learning-path .learning-wrapper .learning:hover .subscribe {
  bottom: -46px;
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 576px) {
  .main-home .learning-path .learning-wrapper .learning:hover .subscribe {
    bottom: -20px;
  }
}
.main-home .learning-path .learning-wrapper .learning .number {
  position: absolute;
  top: -120px;
}
.main-home .learning-path .learning-wrapper .learning .subscribe {
  width: 100%;
  height: 46px;
  text-align: center;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  line-height: 46px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 9px 0px 11px -5px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease;
}
@media screen and (max-width: 576px) {
  .main-home .learning-path .learning-wrapper .learning .subscribe {
    visibility: visible;
    opacity: 1;
    bottom: -20px;
  }
}
.main-home .learning-path .learning-wrapper .learning .subscribe:hover {
  background-color: #20272F;
}
.main-home .learning-path .learning-wrapper .learning .subscribe::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 46px;
  background-color: black;
  top: 0;
  left: 0;
  opacity: 0.02;
}
.main-home .swiper-thumb {
  position: relative;
}
@media screen and (max-width: 1899px) {
  .main-home .swiper-thumb {
    display: flex;
    flex-direction: column-reverse;
  }
}
.main-home .swiper-thumb #thumbs-big {
  margin: 0 -20px;
  padding: 0 20px;
}
.main-home .swiper-thumb #thumbs-big > .swiper-wrapper > .swiper-slide {
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.main-home .swiper-thumb #thumbs-big > .swiper-wrapper > .swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
}
.main-home .swiper-thumb #thumbs-big > .swiper-wrapper > .swiper-slide-active .teacher-box {
  animation: slide-in-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@media screen and (max-width: 767px) {
  .main-home .swiper-thumb #thumbs-big > .swiper-wrapper > .swiper-slide-active .teacher-box {
    animation: none;
  }
}
.main-home .swiper-thumb #thumbs-big > .swiper-wrapper > .swiper-slide-active .courses-slide-wrapper {
  animation: slide-in-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@media screen and (max-width: 767px) {
  .main-home .swiper-thumb #thumbs-big > .swiper-wrapper > .swiper-slide-active .courses-slide-wrapper {
    animation: none;
  }
}
.main-home .swiper-thumb .swiper-thumb-sm {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1899px) {
  .main-home .swiper-thumb .swiper-thumb-sm {
    right: 15px;
  }
}
@media screen and (max-width: 1500px) {
  .main-home .swiper-thumb .swiper-thumb-sm {
    position: static;
    transform: translateY(0);
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .main-home .swiper-thumb .swiper-thumb-sm {
    padding: 0 20px;
  }
}
.main-home .swiper-thumb .swiper-thumb-sm .swiper-slide {
  transition: all 0.3s ease;
  border-radius: 10px;
}
.main-home .swiper-thumb .swiper-thumb-sm .swiper-slide-thumb-active {
  background-color: #F23276;
  color: white;
}
.main-home .swiper-thumb .swiper-thumb-sm .swiper-slide-thumb-active .position {
  color: black;
}
.main-home .swiper-thumb .swiper-thumb-sm .teacher-single {
  padding: 10px;
}
.main-home .swiper-thumb .swiper-thumb-sm .swiper-button-next,
.main-home .swiper-thumb .swiper-thumb-sm .swiper-button-prev {
  top: auto;
  margin: 0;
  left: auto;
  right: auto;
  width: 100%;
  height: 40px;
  color: #F23276;
}
@media screen and (max-width: 1500px) {
  .main-home .swiper-thumb .swiper-thumb-sm .swiper-button-next,
.main-home .swiper-thumb .swiper-thumb-sm .swiper-button-prev {
    width: 40px;
    height: 100%;
    top: 0;
    color: #F89E1B;
  }
}
@media screen and (max-width: 1200px) {
  .main-home .swiper-thumb .swiper-thumb-sm .swiper-button-next,
.main-home .swiper-thumb .swiper-thumb-sm .swiper-button-prev {
    width: 20px;
  }
}
.main-home .swiper-thumb .swiper-thumb-sm .swiper-button-next::after,
.main-home .swiper-thumb .swiper-thumb-sm .swiper-button-prev::after {
  font-size: 20px;
}
.main-home .swiper-thumb .swiper-thumb-sm .swiper-button-prev {
  top: 0;
  transform: translate(0%, -100%);
}
@media screen and (max-width: 1500px) {
  .main-home .swiper-thumb .swiper-thumb-sm .swiper-button-prev {
    left: 0;
    transform: none;
  }
}
.main-home .swiper-thumb .swiper-thumb-sm .swiper-button-prev::after {
  transform: rotate(90deg);
}
@media screen and (max-width: 1500px) {
  .main-home .swiper-thumb .swiper-thumb-sm .swiper-button-prev::after {
    transform: none;
  }
}
.main-home .swiper-thumb .swiper-thumb-sm .swiper-button-next {
  bottom: 0;
  transform: translate(0%, 100%);
}
@media screen and (max-width: 1500px) {
  .main-home .swiper-thumb .swiper-thumb-sm .swiper-button-next {
    right: 0;
    transform: none;
  }
}
.main-home .swiper-thumb .swiper-thumb-sm .swiper-button-next::after {
  transform: rotate(90deg);
}
@media screen and (max-width: 1500px) {
  .main-home .swiper-thumb .swiper-thumb-sm .swiper-button-next::after {
    transform: none;
  }
}
.main-home .swiper-thumb .swiper-thumb-sm .swiper {
  max-height: 450px;
  max-height: 510px;
}
.main-home .teachers {
  padding: 85px 0;
  position: relative;
  background-color: #EFF3FF;
}
@media screen and (max-width: 1199px) {
  .main-home .teachers {
    padding: 60px 0;
  }
}
@media screen and (max-width: 991px) {
  .main-home .teachers {
    padding: 40px 0;
  }
}
.main-home .teachers .content-teacher {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .main-home .teachers .content-teacher {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .main-home .teachers .content-teacher {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.main-home .teachers .teacher-box {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .main-home .teachers .teacher-box {
    width: 100%;
  }
}
.main-home .teachers .teacher-ig {
  width: 40%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main-home .teachers .teacher-ig {
    width: 50%;
    margin: 0 auto 20px;
  }
}
.main-home .teachers .teacher-ig img {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .main-home .teachers .teacher-ig img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .main-home .teachers .teacher-ig img {
    position: static;
  }
}
.main-home .teachers .circle {
  position: absolute;
  z-index: 2;
  left: -142px;
  top: 44px;
}
@media screen and (max-width: 1500px) {
  .main-home .teachers .circle {
    display: none;
  }
}
.main-home .teachers .triangle-top {
  position: absolute;
  top: 0;
  left: 0;
}
.main-home .teachers .triangle-bot {
  position: absolute;
  right: 0;
  bottom: 0;
}
.main-home .teachers .lines {
  position: absolute;
  right: 11.09375%;
  top: 0;
}
.main-home .teachers .content {
  z-index: 10;
}
.main-home .teachers .heading-wrapper {
  position: relative;
  width: fit-content;
}
.main-home .teachers .heading-wrapper .round {
  position: absolute;
  right: -36px;
  top: 37px;
}
@media screen and (max-width: 1200px) {
  .main-home .teachers .heading-wrapper .round {
    display: none;
  }
}
.main-home .teachers .heading-wrapper .square {
  position: absolute;
  top: 29px;
  left: 15px;
}
@media screen and (max-width: 1200px) {
  .main-home .teachers .heading-wrapper .square {
    display: none;
  }
}
.main-home .teachers .heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 35px;
}
@media screen and (max-width: 1199px) {
  .main-home .teachers .heading {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .main-home .teachers .heading {
    margin-bottom: 15px;
    font-size: 30px;
  }
}
.main-home .teachers .teacher-name {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 19px;
}
@media screen and (max-width: 1199px) {
  .main-home .teachers .teacher-name {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 576px) {
  .main-home .teachers .teacher-name {
    font-size: 20px;
  }
}
.main-home .teachers .teacher-position {
  font-size: 14px;
  font-weight: 800;
  color: #F23276;
  line-height: 1.5;
  margin-bottom: 27px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .main-home .teachers .teacher-position {
    margin-bottom: 20px;
  }
}
.main-home .teachers .teacher-position .icons {
  position: absolute;
  left: -82px;
  top: -20px;
}
@media screen and (max-width: 1200px) {
  .main-home .teachers .teacher-position .icons {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .main-home .teachers .teacher-position {
    margin-bottom: 17px;
  }
}
.main-home .teachers p.describe {
  margin-bottom: 27px;
  opacity: 0.7;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .main-home .teachers p.describe {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .main-home .teachers p.describe {
    margin-bottom: 10px;
  }
}
.main-home .teachers p.describe.mb-0 {
  margin-bottom: 0;
}
.main-home .courses-slide-wrapper {
  width: 100%;
  height: fit-content;
  margin: 0 auto;
  position: relative;
  bottom: 0;
}
.main-home .courses-slide-swiper {
  width: 100%;
  height: fit-content;
}
.main-home .courses-slide-swiper .course-card {
  display: block;
  border: 1px solid rgba(242, 50, 118, 0.3);
  height: 100%;
  transition: 0.15s ease;
  position: relative;
  bottom: 0;
  border-radius: 7px;
  background-color: white;
}
@media screen and (max-width: 1200px) {
  .main-home .courses-slide-swiper .course-card .price {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 576px) {
  .main-home .courses-slide-swiper .course-card {
    height: 100%;
  }
}
.main-home .courses-slide-swiper .course-card:hover {
  bottom: -10px;
  color: #F23276;
}
.main-home .courses-slide-swiper .course-card .img-course {
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  margin-bottom: 14px;
  padding: 10px;
  padding-bottom: 0;
}
.main-home .courses-slide-swiper .course-card .content {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  background: white;
}
.main-home .courses-slide-swiper .course-card .sub-heading {
  font-size: 12px;
  color: #F23276;
  font-weight: 800;
  margin-bottom: 18px;
  padding-left: 10px;
}
.main-home .courses-slide-swiper .course-card .title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  height: 63px;
  padding-left: 10px;
}
@media screen and (max-width: 576px) {
  .main-home .courses-slide-swiper .course-card .title {
    height: 50px !important;
  }
}
.main-home .courses-slide-swiper .course-card .info {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  align-items: center;
  position: relative;
  padding-top: 17px;
  padding-bottom: 10px;
  padding-left: 15px;
  justify-content: space-between;
  padding-right: 15px;
}
.main-home .courses-slide-swiper .course-card .info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(112, 112, 112, 0.2);
  top: 0;
  left: 0;
}
.main-home .courses-slide-swiper .course-card .info img {
  height: 15.17px;
}
.main-home .courses-navi-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F23276;
  position: absolute;
  z-index: 3;
  text-align: center;
  top: 50%;
  transform: translateY(-100%);
  left: -20px;
  cursor: pointer;
}
.main-home .courses-navi-prev:focus, .main-home .courses-navi-prev:active {
  outline: 0;
}
.main-home .courses-navi-prev svg {
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .main-home .courses-navi-prev {
    left: -10px;
  }
}
.main-home .courses-navi-next {
  width: 40px;
  height: 40px;
  background-color: #F23276;
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  text-align: center;
  top: 50%;
  transform: translateY(-100%);
  right: -20px;
  line-height: 42px;
  cursor: pointer;
}
.main-home .courses-navi-next:focus, .main-home .courses-navi-next:active {
  outline: 0;
}
.main-home .courses-navi-next svg {
  position: relative;
  transform: rotate(180deg);
}
@media screen and (max-width: 1200px) {
  .main-home .courses-navi-next {
    right: -10px;
  }
}
.main-home .courses-navi-disable {
  background-color: white;
  border: 0.5px solid rgba(112, 112, 112, 0.3);
}
.main-home .courses-navi-disable svg * {
  fill: #20272F;
}
.main-home .teacher-single-slider-wrapper {
  padding-top: 117px;
  padding-bottom: 80px;
  text-align: center;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .main-home .teacher-single-slider-wrapper {
    padding-top: 170px;
  }
}
@media screen and (max-width: 576px) {
  .main-home .teacher-single-slider-wrapper {
    padding-top: 230px;
  }
}
.main-home .teacher-single-slider-wrapper .courses-pagination {
  width: fit-content;
  transform: translateX(-50%) !important;
}
.main-home .teacher-single-slider-wrapper .courses-pagination * {
  font-size: 18px;
}
.main-home .teacher-single {
  padding-bottom: 45px;
  padding: 0;
  text-align: center;
}
.main-home .teacher-single img {
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .main-home .teacher-single img {
    margin-bottom: 5px;
  }
}
.main-home .teacher-single .name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 5px;
}
.main-home .teacher-single .position {
  font-size: 10px;
  font-weight: 600;
  color: #F23276;
}
.main-home .students-feedback {
  display: flex;
  position: relative;
  height: 628px;
}
@media screen and (max-width: 576px) {
  .main-home .students-feedback {
    flex-direction: column;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #EFF3FF;
  }
  .main-home .students-feedback .left-side {
    width: 100% !important;
    border: 1px solid red;
    display: none;
  }
}
.main-home .students-feedback .content {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 74%;
}
@media screen and (max-width: 768px) {
  .main-home .students-feedback .content {
    height: 85%;
  }
}
@media screen and (max-width: 576px) {
  .main-home .students-feedback .content {
    position: unset;
    height: 100%;
    transform: unset;
    background-color: #EFF3FF;
  }
}
.main-home .students-feedback .content .heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  padding-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .main-home .students-feedback .content .heading {
    width: 40%;
  }
}
@media screen and (max-width: 576px) {
  .main-home .students-feedback .content .heading {
    display: none;
  }
}
.main-home .students-feedback .content img {
  margin-bottom: 32px;
}
@media screen and (max-width: 576px) {
  .main-home .students-feedback .content img {
    display: none;
  }
}
.main-home .students-feedback .content p {
  line-height: 1.5;
  margin-bottom: 22px;
  opacity: 0.7;
  font-style: italic;
  width: 25%;
}
@media screen and (max-width: 1200px) {
  .main-home .students-feedback .content p {
    width: 35%;
  }
}
@media screen and (max-width: 576px) {
  .main-home .students-feedback .content p {
    width: 100%;
  }
}
.main-home .students-feedback .content .more {
  font-weight: bold;
  color: #F23276;
  text-decoration: underline;
  transition: 0.15s ease;
}
.main-home .students-feedback .content .more:hover {
  color: #F89E1B;
}
.main-home .students-feedback .left-side {
  flex: 1;
  background-color: #EFF3FF;
  height: 100%;
  width: 50%;
  position: relative;
}
.main-home .students-feedback .left-side img {
  position: absolute;
}
.main-home .students-feedback .left-side .img-circle-gold {
  left: -51px;
  top: 78px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.7s;
}
@media screen and (max-width: 1300px) {
  .main-home .students-feedback .left-side .img-circle-gold {
    display: none;
  }
}
.main-home .students-feedback .left-side .img-dots {
  bottom: 46px;
  left: -42px;
}
@media screen and (max-width: 1300px) {
  .main-home .students-feedback .left-side .img-dots {
    display: none;
  }
}
.main-home .students-feedback .left-side .img-circle-half {
  left: 6.7708333333%;
  bottom: 207px;
}
@media screen and (max-width: 1367px) {
  .main-home .students-feedback .left-side .img-circle-half {
    display: none;
  }
}
.main-home .students-feedback .left-side .circle-pink {
  top: 17px;
  right: 40px;
  animation: float 4s ease-in-out infinite;
}
.main-home .students-feedback .left-side .circle-gold-small {
  top: 135px;
  right: 20px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}
.main-home .students-feedback .left-side .circle-blue {
  bottom: 95px;
  right: 10.4166666667%;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1.2s;
}
@media screen and (max-width: 1024px) {
  .main-home .students-feedback .left-side .img-circle-gold,
.main-home .students-feedback .left-side .img-circle-half,
.main-home .students-feedback .left-side .img-dots {
    display: none;
  }
}
.main-home .students-feedback .right-side {
  flex: 1;
  height: 100%;
  position: relative;
}
.main-home .students-feedback .right-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-home .students-feedback .right-side::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #20272F;
  opacity: 0.7;
  top: 0;
}
@media screen and (max-width: 576px) {
  .main-home .students-feedback .right-side {
    display: none;
  }
}
.main-home .students-feedback .students-slider-wrapper {
  position: absolute;
  top: 172px;
  left: calc(50% - 264px);
  border-radius: 7px;
  z-index: 5;
  width: 1200px;
}
@media screen and (max-width: 1200px) {
  .main-home .students-feedback .students-slider-wrapper {
    left: calc(50% - 100px);
    width: 500px;
  }
}
.main-home .students-feedback .students-slider-wrapper .heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  padding-bottom: 40px;
  display: none;
}
@media screen and (max-width: 576px) {
  .main-home .students-feedback .students-slider-wrapper .heading {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    font-size: 30px;
  }
}
.main-home .students-feedback .students-slider-wrapper .swiper {
  padding-bottom: 56px;
  padding-top: 4px;
  padding-left: 4px;
}
@media screen and (max-width: 576px) {
  .main-home .students-feedback .students-slider-wrapper .swiper {
    padding-bottom: 50px;
  }
}
.main-home .students-feedback .students-slider-wrapper .swiper-slide {
  width: 230px !important;
  transition: 0.2s;
}
.main-home .students-feedback .students-slider-wrapper .swiper-slide:hover {
  cursor: pointer;
  box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.2);
}
.main-home .students-feedback .students-slider-wrapper .swiper-slide:hover .title {
  color: #F23276;
}
.main-home .students-feedback .students-slider-wrapper .swiper-slide:hover::before {
  background-image: linear-gradient(to left bottom, #F23276, transparent 35%) !important;
  opacity: 1 !important;
  transition: 0.2s;
}
.main-home .students-feedback .students-slider-wrapper .swiper-slide:hover::after {
  background-image: linear-gradient(to right top, #F23276, transparent 35%) !important;
  opacity: 1 !important;
  transition: 0.2s;
}
.main-home .students-feedback .students-slider-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  width: calc(120% + 4px);
  height: calc(50% + 4px);
  top: -4px;
  right: -4px;
  z-index: -1;
  border-radius: 7px;
  background-image: linear-gradient(to left bottom, #F23276, transparent 35%);
  opacity: 0;
  transition: 0.3s;
}
.main-home .students-feedback .students-slider-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  width: calc(120% + 4px);
  height: calc(50% + 4px);
  bottom: -4px;
  left: -4px;
  z-index: -1;
  border-radius: 7px;
  background-image: linear-gradient(to right top, #F23276, transparent 35%);
  opacity: 0;
  transition: 0.3s;
}
.main-home .students-feedback .students-slider-wrapper .swiper-slide-active {
  height: 100%;
}
.main-home .students-feedback .students-slider-wrapper .swiper-slide-active img {
  filter: unset !important;
}
.main-home .students-feedback .students-slider-wrapper .courses-pagination {
  left: 0;
  width: fit-content;
}
.main-home .students-feedback .students-slider-wrapper .student-card {
  text-align: center;
  background-color: white;
  border-radius: 7px;
}
.main-home .students-feedback .students-slider-wrapper .student-card .img-student {
  position: relative;
}
.main-home .students-feedback .students-slider-wrapper .student-card .img-student img {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  filter: grayscale(100%);
  transition: 0.2s ease;
}
.main-home .students-feedback .students-slider-wrapper .student-card .name {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 9px;
  padding-top: 9px;
  transition: 0.2s;
}
.main-home .students-feedback .students-slider-wrapper .student-card .class {
  font-size: 12px;
  color: #F23276;
  padding-bottom: 20px;
}
.main-home .students-feedback .students-slider-wrapper .student-card:hover img {
  filter: unset;
}
.main-home .students-feedback .students-slider-wrapper .student-card:hover .name {
  transition: 0.2s;
  color: #F23276;
}
@media screen and (max-width: 576px) {
  .main-home .students-feedback .students-slider-wrapper {
    position: unset !important;
    width: 100% !important;
    background-color: #EFF3FF;
    padding-bottom: 30px;
  }
  .main-home .students-feedback .students-slider-wrapper .swiper-slide {
    width: 100% !important;
    padding: 0 20px;
  }
  .main-home .students-feedback .students-slider-wrapper .swiper-slide::before, .main-home .students-feedback .students-slider-wrapper .swiper-slide::after {
    display: none;
  }
  .main-home .students-feedback .students-slider-wrapper .student-card {
    border-radius: 10px;
  }
  .main-home .students-feedback .students-slider-wrapper .student-card img {
    width: 100%;
  }
  .main-home .students-feedback .students-slider-wrapper .student-card .name {
    font-size: 24px;
  }
  .main-home .students-feedback .students-slider-wrapper .student-card .class {
    font-size: 16px;
  }
  .main-home .students-feedback .students-slider-wrapper .courses-pagination {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
.main-home .blog-slider-wrapper {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
}
.main-home .blog-slider-wrapper .dots {
  position: absolute;
  left: -109px;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .main-home .blog-slider-wrapper .dots {
    display: none;
  }
}
.main-home .blog-slider-wrapper .dash {
  position: absolute;
  left: -250px;
  top: 578px;
}
@media screen and (max-width: 1300px) {
  .main-home .blog-slider-wrapper .dash {
    display: none;
  }
}
.main-home .blog-slider-wrapper .container {
  position: relative;
  max-width: 1195px;
}
.main-home .blog-slider-wrapper .container .swiper {
  padding: 0 15px;
}
.main-home .blog-slider-wrapper .icon-bg {
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .main-home .blog-slider-wrapper .icon-bg {
    display: none;
  }
}
.main-home .blog-slider-wrapper .bg-dots {
  bottom: -50px;
  left: -88px;
}
.main-home .blog-slider-wrapper .bg-dots.right {
  left: unset;
  right: -50px;
  top: 90px;
  bottom: unset;
}
.main-home .blog-slider-wrapper .dash-left {
  bottom: 16px;
  left: -319px;
}
.main-home .blog-slider-wrapper .dash-right {
  bottom: 16px;
  right: -252px;
}
.main-home .blog-slider-wrapper .round {
  left: -126px;
}
@media screen and (max-width: 768px) {
  .main-home .blog-slider-wrapper {
    padding-bottom: 45px;
    padding-top: 45px;
  }
}
.main-home .blog-slider-wrapper .heading {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .main-home .blog-slider-wrapper .heading {
    font-size: 30px;
  }
}
.main-home .blog-slider-wrapper .sub-heading {
  font-size: 18px;
  opacity: 0.7;
  text-align: center;
  width: 40%;
  margin: 0 auto;
  margin-bottom: 25px;
  line-height: 1.5;
}
@media screen and (max-width: 1200px) {
  .main-home .blog-slider-wrapper .sub-heading {
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .main-home .blog-slider-wrapper .sub-heading {
    width: 100%;
    font-size: 16px;
  }
}
.main-home .blog-slider-wrapper .swiper {
  padding-bottom: 27px;
}
.main-home .blog-slider-wrapper .blog-card {
  width: 100%;
  position: relative;
  transition: 0.2s;
  background: white;
  margin-bottom: 55px;
  border-radius: 7px;
  transition: 0.15s ease;
  bottom: 0;
}
.main-home .blog-slider-wrapper .blog-card:hover .title {
  color: #F23276;
}
.main-home .blog-slider-wrapper .blog-card::before {
  content: url(../../images/border-bottom-left.png);
  position: absolute;
  z-index: -1;
  bottom: -7px;
  left: -4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
  width: 100%;
}
.main-home .blog-slider-wrapper .blog-card::after {
  content: url(../../images/border-top-right.png);
  position: absolute;
  z-index: -1;
  top: -4px;
  right: -4px;
  opacity: 0;
  transition: 0.2s ease-in-out;
  visibility: hidden;
}
@media screen and (min-width: 1200px) {
  .main-home .blog-slider-wrapper .blog-card::after {
    right: -49px;
    width: 100%;
  }
}
.main-home .blog-slider-wrapper .blog-card .content {
  border: 0.5px solid rgba(242, 50, 118, 0.2);
  border-top: 0;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  background: white;
  transition: 0.15s ease;
}
.main-home .blog-slider-wrapper .blog-card:hover {
  box-shadow: 0px 7px 15px 1px rgba(242, 50, 118, 0.2);
  bottom: -12px;
}
.main-home .blog-slider-wrapper .blog-card:hover::before {
  opacity: 1;
  visibility: visible;
}
.main-home .blog-slider-wrapper .blog-card:hover::after {
  opacity: 1;
  visibility: visible;
}
.main-home .blog-slider-wrapper .blog-card .img-blog {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  width: 100%;
  display: flex;
}
.main-home .blog-slider-wrapper .blog-card .content {
  padding: 20px;
}
.main-home .blog-slider-wrapper .blog-card .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
  transition: 0.15s ease;
}
.main-home .blog-slider-wrapper .blog-card .description {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
  height: 95px;
}
@media screen and (max-width: 576px) {
  .main-home .blog-slider-wrapper .blog-card .description {
    height: 65px;
  }
}
.main-home .blog-slider-wrapper .blog-card .more {
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  text-decoration: underline;
  color: #F23276;
  transition: 0.1s;
}
.main-home .blog-slider-wrapper .blog-card .more:hover {
  color: #F89E1B;
}
.main-home .blog-slider-wrapper .blog-card .info {
  display: flex;
  gap: 30px;
  padding-top: 15px;
  margin-top: 15px;
  position: relative;
}
.main-home .blog-slider-wrapper .blog-card .info::before {
  content: "";
  width: calc(100% + 40px);
  height: 0.9px;
  background-color: rgba(112, 112, 112, 0.2);
  position: absolute;
  left: -20px;
  top: 0;
}
.main-home .blog-slider-wrapper .blog-card .info .item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-home .blog-slider-wrapper .blog-card .info .item p {
  font-size: 10px;
  color: #A0A0A0;
  font-weight: 800;
}
.main-home .banner-gold-wrapper {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .main-home .banner-gold-wrapper {
    padding-bottom: 60px;
  }
}

.social-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 10;
  width: 70px;
  height: 220px;
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  box-shadow: 10px 2px 10px -10px rgba(242, 50, 118, 0.3);
  transition: 0.5s;
}
.social-fixed.hidden {
  transition: 0.5s;
  left: -70px;
}
@media screen and (max-width: 1200px) {
  .social-fixed {
    display: none;
  }
}
.social-fixed a {
  transition: 0.15s ease-in-out;
}
.social-fixed a:hover {
  transform: rotate(360deg);
}

.popup-join {
  position: fixed;
  padding: 30px;
  background-color: white;
  z-index: 103;
  width: fit-content;
  height: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 7px;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 576px) {
  .popup-join {
    width: 90%;
  }
}
.popup-join.visible {
  visibility: visible;
  opacity: 1;
}
.popup-join .heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.popup-join .line {
  width: 210px;
  height: 1px;
  background-color: #707070;
  opacity: 0.2;
  margin-bottom: 20px;
}
.popup-join form {
  display: flex;
  flex-wrap: wrap;
  width: 465px;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .popup-join form {
    width: 100%;
  }
}
.popup-join .form-group {
  margin-bottom: 25px;
  display: block;
  width: 100%;
  position: relative;
}
.popup-join .form-group label {
  color: #20272F;
  font-weight: 800;
  display: block;
  margin-bottom: 7px;
}
.popup-join .form-group input,
.popup-join .form-group select,
.popup-join .form-group #select-pop {
  height: 50px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 7px;
  padding-left: 15px;
  width: 100%;
  position: relative;
  padding-right: 15px;
}
.popup-join .form-group input::placeholder,
.popup-join .form-group select::placeholder,
.popup-join .form-group #select-pop::placeholder {
  font-size: 14px;
  font-style: italic;
  color: #707070;
}
.popup-join .form-group input option,
.popup-join .form-group select option,
.popup-join .form-group #select-pop option {
  color: black;
  font-style: normal;
}
.popup-join .form-group input option:disabled,
.popup-join .form-group select option:disabled,
.popup-join .form-group #select-pop option:disabled {
  color: rgba(112, 112, 112, 0.8);
}
.popup-join .form-group input:focus, .popup-join .form-group input:active,
.popup-join .form-group select:focus,
.popup-join .form-group select:active,
.popup-join .form-group #select-pop:focus,
.popup-join .form-group #select-pop:active {
  border: 1px solid rgba(248, 158, 27, 0.8);
  outline: 0;
}
.popup-join .form-group input::placeholder,
.popup-join .form-group select::placeholder,
.popup-join .form-group #select-pop::placeholder {
  font-size: 14px;
  font-style: italic;
  opacity: 0.3;
}
.popup-join .form-group select {
  padding-right: 15px;
  font-size: 14px;
  font-style: italic;
  color: #d6d6d6;
}
.popup-join .form-group select.bg {
  background-color: red;
}
.popup-join .form-group .select2.select2-container .select2-selection {
  height: 50px;
}
.popup-join .form-group .select2.select2-container .select2-selection .select2-selection__rendered {
  color: red;
}
.popup-join .form-group:nth-child(3), .popup-join .form-group:nth-child(4) {
  width: calc(50% - 5px);
}
.popup-join .form-group .drop-select {
  width: 22px;
  height: 15px;
  background-color: white;
  position: absolute;
  top: 53%;
  right: 2px;
}
.popup-join .form-group:nth-child(3), .popup-join .form-group:nth-child(4) {
  width: calc(50% - 5px);
}
@media screen and (max-width: 576px) {
  .popup-join .form-group:nth-child(3), .popup-join .form-group:nth-child(4) {
    width: 100%;
  }
}
.popup-join .form-submit {
  width: 281px;
  height: 60px;
  background-color: #F23276;
  border-radius: 7px;
  transition: 0.2s;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
}
.popup-join .form-submit a {
  color: white;
  font-size: 18px;
}
.popup-join .form-submit:hover {
  transition: 0.2s;
  background-color: #F89E1B;
  box-shadow: 0px 8px 16px 0px rgba(248, 158, 27, 0.3);
}
.popup-join .flex-gr {
  display: flex;
  align-items: flex-start;
  gap: 45px;
}
.popup-join .btn-close {
  width: 20px;
  height: 20px;
  background-color: #F23276;
  border-radius: 50%;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.15s ease-in-out;
}
@media screen and (max-width: 576px) {
  .popup-join .btn-close {
    top: 10px;
    right: 10px;
  }
}
.popup-join .btn-close span {
  position: relative;
  bottom: 2px;
}
.popup-join .btn-close:hover {
  background-color: #20272F;
}
@media screen and (max-width: 576px) {
  .popup-join .book {
    display: none;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.main-my-course .content {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .main-my-course .content {
    padding-top: 45px;
  }
}
.main-my-course .content .container {
  display: flex;
  gap: 111px;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  .main-my-course .content .container {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .main-my-course .content .tools {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .main-my-course .content .user-menu {
    background-color: #F23276;
    padding: 20px;
    border-radius: 7px;
  }
}
.main-my-course .content .user-menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  margin-top: 2px;
  border-radius: 7px;
}
@media screen and (max-width: 576px) {
  .main-my-course .content .user-menu-item {
    flex-direction: column;
  }
  .main-my-course .content .user-menu-item p {
    font-size: 16px !important;
    color: white !important;
    font-weight: 600 !important;
  }
  .main-my-course .content .user-menu-item svg {
    margin-bottom: 12px;
  }
  .main-my-course .content .user-menu-item svg * {
    fill: white !important;
  }
}
.main-my-course .content .user-menu-item.active p {
  color: #F23276;
}
.main-my-course .content .user-menu-item.active svg * {
  fill: #F23276;
}
.main-my-course .content .user-menu-item:last-child {
  margin-bottom: 0;
}
.main-my-course .content .user-menu-item:hover p {
  color: #F23276;
}
.main-my-course .content .user-menu-item:hover svg * {
  fill: #F23276;
}
.main-my-course .content .user-menu svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
@media screen and (max-width: 576px) {
  .main-my-course .content .user-menu svg {
    margin-right: 0;
  }
}
.main-my-course .content .user-menu svg * {
  fill: #20272F;
  transition: 0.15s ease;
}
.main-my-course .content .user-menu p {
  color: #20272F;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.5;
  transition: 0.15s ease;
}
.main-my-course .content .my-courses {
  padding-left: 30px;
}
@media screen and (max-width: 900px) {
  .main-my-course .content .my-courses {
    padding-left: 0;
  }
}
.main-my-course .content .my-courses .heading {
  font-size: 30px;
  line-height: 1;
  position: relative;
  margin-bottom: 25px;
}
@media screen and (max-width: 576px) {
  .main-my-course .content .my-courses .heading {
    line-height: 1.5;
  }
}
.main-my-course .content .my-courses .heading::before {
  content: "";
  height: 120%;
  width: 1.5px;
  background-color: #F23276;
  position: absolute;
  left: -30px;
}
.main-my-course .content .btn-update {
  display: block;
  margin-top: 15px;
}
.main-my-course .content .btn-update button {
  width: 149px;
  height: 44px;
  font-size: 14px;
  color: white;
  border-radius: 7px;
  background-color: #57D2FF;
  transition: 0.2s ease;
}
.main-my-course .content .btn-update button:hover {
  background-color: #F89E1B;
}
.main-my-course .courses-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 900px) {
  .main-my-course .courses-wrapper {
    gap: 20px;
  }
}
.main-my-course .courses-wrapper .my-course-card {
  width: 270px;
  position: relative;
  transition: 0.2s;
  background: white;
  margin-bottom: 20px;
  border-radius: 7px;
  height: 100%;
  box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.2);
  -webkit-box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.2);
  -moz-box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.2);
}
.main-my-course .courses-wrapper .my-course-card:hover {
  color: #F23276;
}
@media screen and (max-width: 900px) {
  .main-my-course .courses-wrapper .my-course-card {
    width: 31%;
  }
}
@media screen and (max-width: 576px) {
  .main-my-course .courses-wrapper .my-course-card {
    width: 100%;
  }
}
.main-my-course .courses-wrapper .my-course-card::before {
  content: url(../../images/border-bottom-left.png);
  position: absolute;
  z-index: -1;
  bottom: -7px;
  left: -4px;
}
.main-my-course .courses-wrapper .my-course-card::after {
  content: url(../../images/border-top-right.png);
  position: absolute;
  z-index: -1;
  top: -3px;
  right: -3px;
}
.main-my-course .courses-wrapper .my-course-card .content {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  background: white;
}
.main-my-course .courses-wrapper .my-course-card .img-course {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  width: 100%;
  display: flex;
  padding: 10px;
  padding-bottom: 0;
  margin-bottom: 14px;
}
.main-my-course .courses-wrapper .my-course-card .content {
  padding: 0;
}
.main-my-course .courses-wrapper .my-course-card .sub-heading {
  font-size: 12px;
  color: #F23276;
  font-weight: 800;
  margin-bottom: 10px;
  padding-left: 15px;
}
.main-my-course .courses-wrapper .my-course-card .title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 5px;
  padding: 0 15px;
}
.main-my-course .courses-wrapper .my-course-card .info {
  border-top: 1px solid rgba(112, 112, 112, 0.2);
  display: flex;
  gap: 30px;
  margin-top: 15px;
  padding: 25px 15px;
  align-items: center;
}
.main-my-course .courses-wrapper .my-course-card .info img {
  height: 15.17px;
}
.main-my-course .courses-wrapper .my-course-card .info .time {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
}
.main-my-course .my-course-pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .main-my-course .my-course-pagination {
    margin-bottom: 45px;
  }
}
.main-my-course .my-course-pagination .bullet {
  width: 10px;
  height: 10px;
  background: #D8D8D8;
  border-radius: 50%;
  display: inline-flex;
  transition: 0.2s;
}
.main-my-course .my-course-pagination .bullet:hover {
  cursor: pointer;
  background: #F23276;
}
.main-my-course .my-course-pagination .bullet.bullet {
  margin-right: 8px;
}
.main-my-course .my-course-pagination .bullet.active {
  width: 60px;
  border-radius: 7px;
  background: #F23276;
}

.main-course-activate .activate {
  padding-top: 100px;
}
.main-course-activate .activate .heading {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 35px;
}
.main-course-activate .activate .noti {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}
.main-course-activate .activate .noti:last-child {
  margin-bottom: 40px;
}
.main-course-activate .activate .noti p {
  margin-left: 20px;
  line-height: 1.5;
}
.main-course-activate .activate .activate-code-wrapper .heading {
  line-height: 1.5;
  font-weight: 800;
  color: #20272F;
  font-size: 18px;
}
.main-course-activate .activate .activate-code-wrapper .input-wrapper {
  position: relative;
  margin-bottom: 48px;
}
.main-course-activate .activate .activate-code-wrapper input {
  border: 1px solid rgba(112, 112, 112, 0.4);
  border-radius: 7px;
  height: 50px;
  padding-left: 20px;
  width: 100%;
  padding-right: 95px;
}
.main-course-activate .activate .activate-code-wrapper input:focus {
  border: 1px solid rgba(248, 158, 27, 0.7);
}
.main-course-activate .activate .activate-code-wrapper input::placeholder {
  opacity: 0.5;
  color: #20272F;
}
.main-course-activate .activate .activate-code-wrapper .icon-check {
  position: absolute;
  width: 89px;
  height: 50px;
  background: #F23276;
  border-radius: 7px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  right: 0;
  transition: 0.2s;
}
.main-course-activate .activate .activate-code-wrapper .icon-check:hover {
  background: #F89E1B;
}
.main-course-activate .activate .ytb-vd {
  height: 700px;
}
@media screen and (max-width: 576px) {
  .main-course-activate .activate .ytb-vd {
    height: 350px;
  }
}
.main-course-activate .banner-gold-wrapper {
  margin-top: 95px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .main-course-activate .activate {
    padding-top: 60px;
  }
  .main-course-activate .banner-gold-wrapper {
    margin-bottom: 60px;
    margin-top: 50px;
  }
}

.page-content {
  padding-top: 112px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page-content {
    padding: 45px 0;
  }
}

.contact {
  margin-bottom: 100px;
}
@media screen and (max-width: 576px) {
  .contact {
    margin-bottom: 45px;
  }
}
.contact .location-wrapper {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .contact .location-wrapper {
    gap: 80px;
    flex-direction: column;
  }
}
.contact .location-wrapper .location {
  text-align: center;
}
.contact .location-wrapper .location .content.first {
  position: relative;
}
.contact .location-wrapper .location .content.first::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 200px;
  background-color: #707070;
  opacity: 0.3;
  right: -6.6666666667px;
  bottom: 50px;
}
@media screen and (max-width: 992px) {
  .contact .location-wrapper .location .content.first::before {
    display: none;
  }
}
.contact .location-wrapper .location h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}
.contact .location-wrapper .location .info {
  height: 180px;
  padding: 0 85px;
}
@media screen and (max-width: 992px) {
  .contact .location-wrapper .location .info {
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .contact .location-wrapper .location .info {
    height: 100%;
    margin-bottom: 25px;
    padding: 0;
  }
}
.contact .location-wrapper .location .info p {
  line-height: 1.7;
  margin-bottom: 2px;
}
.contact .location-wrapper .location .info p a {
  font-weight: bold;
  color: #F23276;
  transition: 0.1s ease-in;
}
.contact .location-wrapper .location .info p a:hover {
  color: #F89E1B;
}
.contact .location-wrapper .location .info p.phone a {
  position: relative;
}
.contact .location-wrapper .location .info p.phone a:hover .contact .location-wrapper .location .info p.phone a::before {
  background-color: #F89E1B;
}
.contact .location-wrapper .location .info p.phone a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F23276;
  position: absolute;
  bottom: 1.1px;
  transition: 0.1s ease-in;
}

.echinese-about .heading {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 22px;
}
.echinese-about .heading p {
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .echinese-about .heading {
    font-size: 25px;
    line-height: 1.4;
  }
  .echinese-about .heading p {
    line-height: 1.4;
  }
}
.echinese-about .main-description {
  text-align: center;
  margin-bottom: 35px;
}
.echinese-about .main-description * {
  line-height: 1.5;
}
.echinese-about .main-description em {
  font-style: normal;
  color: #F23276;
}
.echinese-about .main-description span {
  display: block;
}
@media screen and (max-width: 576px) {
  .echinese-about .main-description {
    line-height: 1.6;
  }
  .echinese-about .main-description span {
    display: inline;
  }
}

.box-wrapper {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 576px) {
  .box-wrapper {
    flex-direction: column;
    gap: 60px;
  }
}
.box-wrapper .box-item {
  padding: 82px 0;
  text-align: center;
  position: relative;
  border-radius: 11px;
  background: white;
  box-shadow: 0px 7px 14px 0px rgba(242, 50, 118, 0.3);
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .box-wrapper .box-item {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
.box-wrapper .box-item * {
  transition: 0.2s;
}
.box-wrapper .box-item .background {
  content: "";
  background: unset;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 11px;
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
  background-image: linear-gradient(to bottom right, transparent, transparent);
}
.box-wrapper .box-item .count {
  margin-bottom: 10px;
  margin-top: 20px;
}
.box-wrapper .box-item .count * {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .box-wrapper .box-item .count * {
    font-size: 20px;
  }
}
.box-wrapper .box-item .description {
  line-height: 1.5;
  padding: 0 20px;
}
@media screen and (max-width: 576px) {
  .box-wrapper .box-item .description {
    font-size: 14px;
  }
}
.box-wrapper .box-item .btn-arrow {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}
.box-wrapper .box-item .btn-arrow button {
  width: 56px;
  height: 56px;
  background: #F23276;
  border-radius: 50%;
}
.box-wrapper .box-item:hover {
  cursor: pointer;
}
.box-wrapper .box-item:hover .background {
  background: linear-gradient(to bottom right, #FFD5E4, #F23276);
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.box-wrapper .box-item:hover * {
  color: white;
  fill: white;
}
.box-wrapper .box-item:hover .btn-arrow button {
  background: #57D2FF;
}
.box-wrapper .box-item.active {
  background: linear-gradient(to bottom right, #FFD5E4, #F23276);
  cursor: pointer;
}
.box-wrapper .box-item.active * {
  color: white;
  fill: white;
}
.box-wrapper .box-item.active .btn-arrow button {
  background: #57D2FF;
}

.main-teacher .section-banner {
  margin-top: 140px;
  padding-top: 170px;
  background-color: #EFF3FF;
  position: relative;
}
.main-teacher .section-banner .container {
  display: flex;
  align-items: flex-start;
  height: fit-content;
  padding-bottom: 17px;
  position: relative;
  z-index: 5;
}
.main-teacher .section-banner .circle-gold, .main-teacher .section-banner .circle-blue, .main-teacher .section-banner .circle-pink, .main-teacher .section-banner .circle-round {
  position: absolute;
}
.main-teacher .section-banner .circle-gold {
  top: 23px;
  left: -34px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}
@media screen and (max-width: 1200px) {
  .main-teacher .section-banner .circle-gold {
    top: 60%;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .circle-gold {
    top: -70px;
    left: 25px;
  }
}
.main-teacher .section-banner .circle-blue {
  top: 460px;
  left: 46.875%;
  animation: float 3s ease-in-out infinite;
}
@media screen and (max-width: 1200px) {
  .main-teacher .section-banner .circle-blue {
    top: 40%;
    left: 60%;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .circle-blue {
    top: 50px;
    left: unset;
    right: 0;
  }
}
.main-teacher .section-banner .circle-pink {
  top: 74px;
  right: -32px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.8s;
}
@media screen and (max-width: 1200px) {
  .main-teacher .section-banner .circle-pink {
    top: 50%;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .circle-pink {
    top: 600px;
    right: -50px;
  }
}
@media screen and (max-width: 1200px) {
  .main-teacher .section-banner {
    padding-top: 100px;
  }
  .main-teacher .section-banner .container {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner {
    margin-top: 95px;
    padding-top: 90px;
  }
  .main-teacher .section-banner .container {
    flex-direction: column;
  }
}
.main-teacher .section-banner .content {
  height: fit-content;
  position: relative;
  top: 56px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .section-banner .content {
    width: 100%;
    top: 0;
    margin-bottom: 75px;
  }
  .main-teacher .section-banner .content .heading {
    white-space: unset !important;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .content {
    width: 100%;
  }
}
.main-teacher .section-banner .content .heading {
  font-size: 50px;
  font-weight: bold;
  color: #20272F;
  line-height: 1.5;
  margin-bottom: 26px;
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .content .heading {
    white-space: unset;
    font-size: 35px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
}
.main-teacher .section-banner .content .heading span {
  display: block;
  font-weight: bold;
  color: #20272F;
  line-height: 1.2;
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .content .heading span {
    display: inline;
  }
}
.main-teacher .section-banner .content .description {
  line-height: 1.5;
  margin-bottom: 40px;
  padding-right: 220px;
  font-size: 20px;
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .content .description {
    padding-right: 0;
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.main-teacher .section-banner .content .tools {
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .content .tools {
    flex-direction: column;
    gap: 20px;
  }
}
.main-teacher .section-banner .content .btn-join {
  width: 223px;
  height: 60px;
  background-color: #F23276;
  color: white;
  font-size: 18px;
  border-radius: 7px;
  transition: 0.2s;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
}
.main-teacher .section-banner .content .btn-join:hover {
  transition: 0.2s;
  background-color: #F89E1B;
  box-shadow: 0px 8px 16px 0px rgba(248, 158, 27, 0.3);
}
.main-teacher .section-banner .content .btn-watch .icon-watch {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.07);
  transition: 0.2s;
}
.main-teacher .section-banner .content .btn-watch p {
  display: inline-block;
  margin-left: 20px;
  transition: 0.15s ease;
}
.main-teacher .section-banner .content .btn-watch:hover {
  cursor: pointer;
}
.main-teacher .section-banner .content .btn-watch:hover .icon-watch {
  background: #F23276;
}
.main-teacher .section-banner .content .btn-watch:hover p {
  color: #F23276;
}
.main-teacher .section-banner .banner-human {
  position: relative;
  bottom: 63px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .section-banner .banner-human {
    bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .banner-human {
    position: unset;
  }
  .main-teacher .section-banner .banner-human img {
    width: 100%;
  }
}
.main-teacher .section-banner .banner-human .round {
  position: absolute;
  bottom: 0;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  left: 37px;
}
.main-teacher .section-banner .banner-human .round .icon-hat-sq, .main-teacher .section-banner .banner-human .round .icon-stat {
  position: absolute;
}
.main-teacher .section-banner .banner-human .round .icon-stat {
  bottom: 45%;
  left: 45%;
  animation: circle 14s linear infinite;
  width: 40px;
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .banner-human .round .icon-stat {
    width: 40px;
    animation: unset;
    left: -10px;
  }
}
@media screen and (max-width: 320px) {
  .main-teacher .section-banner .banner-human .round .icon-stat {
    width: 32px;
  }
}
.main-teacher .section-banner .banner-human .round .icon-hat-sq {
  right: -16px;
  bottom: 225px;
  animation: float 4s ease-in-out infinite;
  width: 40px;
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .banner-human .round .icon-hat-sq {
    display: none;
  }
}
.main-teacher .section-banner .banner-human .circle-round {
  bottom: 110px;
  right: -90px;
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .banner-human .circle-round {
    display: none;
  }
}
.main-teacher .section-banner .banner-human .flag-box {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 7px;
  display: inline-block;
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  backdrop-filter: blur(7px);
  z-index: 5;
  top: 0;
}
.main-teacher .section-banner .banner-human .flag-box img {
  width: 32px;
}
.main-teacher .section-banner .banner-human .flag-box.language {
  width: 158px;
  height: 50px;
  font-size: 12px;
  padding-left: 10px;
  top: 233px;
  right: 70.0854700855%;
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .banner-human .flag-box.language {
    left: 0;
    top: unset;
    bottom: 260px;
  }
}
.main-teacher .section-banner .banner-human .flag-box.advance {
  width: 158px;
  height: 50px;
  font-size: 12px;
  padding-left: 10px;
  top: 347px;
  right: -52px;
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .banner-human .flag-box.advance {
    right: 0;
    top: unset;
    bottom: 180px;
  }
}
.main-teacher .section-banner .banner-human .flag-box.new {
  width: 182px;
  height: 86px;
  align-items: flex-start;
  font-size: 12px;
  padding-top: 14px;
  padding-left: 14px;
  left: -30px;
  top: 425px;
}
.main-teacher .section-banner .banner-human .flag-box.new p {
  font-weight: bold;
}
.main-teacher .section-banner .banner-human .flag-box.new .time {
  font-size: 10px;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 10px;
}
.main-teacher .section-banner .banner-human .flag-box.new button {
  width: 110px;
  height: 22px;
  background-color: #F23276;
  border-radius: 5px;
  transition: 0.2s;
}
.main-teacher .section-banner .banner-human .flag-box.new button:hover {
  background-color: #F89E1B;
}
.main-teacher .section-banner .banner-human .flag-box.new a {
  font-weight: bold;
  font-size: 10px;
  color: white;
}
@media screen and (max-width: 576px) {
  .main-teacher .section-banner .banner-human .flag-box.new {
    left: 30px;
    top: unset;
    bottom: 30px;
  }
}
.main-teacher .icon-group {
  padding: 30px 0;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-left: 0;
  border-right: 0;
  margin-bottom: 80px;
  margin-top: 95px;
}
.main-teacher .icon-group.container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .main-teacher .icon-group.container {
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .icon-group.container {
    flex-direction: column;
    align-items: center;
    padding: 0;
    padding-top: 30px;
    padding-bottom: 5px;
    margin-top: 60px;
    margin-bottom: 40px;
    gap: 10px;
  }
  .main-teacher .icon-group.container .item {
    width: 100% !important;
    margin-bottom: 25px;
    padding-left: 20px;
  }
}
.main-teacher .icon-group .item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 29.7435897436%;
}
.main-teacher .icon-group .item p {
  line-height: 1.5;
}
.main-teacher .echinese-about {
  padding-bottom: 111px;
}
.main-teacher .courses-pagination {
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 0 !important;
  z-index: 10;
  width: fit-content !important;
}
.main-teacher .courses-pagination .swiper-pagination-bullet {
  background: #D8D8D8;
  width: 10px;
  height: 10px;
  opacity: 1;
  transition: 0.3s;
}
.main-teacher .courses-pagination .swiper-pagination-bullet-active {
  width: 60px;
  background: #F23276;
  border-radius: 7px;
  animation: 0.5s pagination;
}
.main-teacher .level-wrapper {
  background-color: #20272F;
  padding: 90px 0;
  position: relative;
}
@media screen and (max-width: 576px) {
  .main-teacher .level-wrapper {
    padding: 45px 0;
  }
}
.main-teacher .level-wrapper * {
  color: white;
}
.main-teacher .level-wrapper .container {
  position: relative;
}
.main-teacher .level-wrapper .level {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 42px;
}
.main-teacher .level-wrapper .level.active .level-shortcut .icon {
  background-color: #F23276;
}
.main-teacher .level-wrapper .level.active .level-shortcut .icon svg * {
  fill: white;
}
.main-teacher .level-wrapper .level.active .level-content {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .main-teacher .level-wrapper .level.active .level-content {
    position: unset;
    transform: unset;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .level-wrapper .level {
    flex-direction: column;
    margin-bottom: 35px;
  }
}
.main-teacher .level-wrapper .level-shortcut {
  display: flex;
  align-items: center;
  width: 50%;
  padding-left: 60px;
}
@media screen and (max-width: 576px) {
  .main-teacher .level-wrapper .level-shortcut {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
  }
  .main-teacher .level-wrapper .level-shortcut .icon {
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
  .main-teacher .level-wrapper .level-shortcut .sub-heading {
    font-size: 30px !important;
  }
}
.main-teacher .level-wrapper .level-shortcut .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  transition: 0.1s linear;
  cursor: pointer;
  margin-right: 28px;
  flex-shrink: 0;
}
.main-teacher .level-wrapper .level-shortcut .icon svg {
  width: 32px;
  height: 32px;
}
.main-teacher .level-wrapper .level-shortcut .icon svg * {
  transition: 0.1s linear;
}
.main-teacher .level-wrapper .level-shortcut .icon:hover {
  background-color: #F23276;
}
.main-teacher .level-wrapper .level-shortcut .icon:hover svg * {
  fill: white;
}
.main-teacher .level-wrapper .level-shortcut .sub-heading {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media screen and (max-width: 576px) {
  .main-teacher .level-wrapper .level-shortcut .sub-heading {
    font-size: 25px !important;
  }
}
.main-teacher .level-wrapper .level-shortcut p {
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .main-teacher .level-wrapper .level-shortcut p {
    display: none;
  }
}
.main-teacher .level-wrapper .level-content {
  width: 50%;
  display: none;
}
.main-teacher .level-wrapper .level-content .heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 38px;
  line-height: 1.2;
}
.main-teacher .level-wrapper .level-content p {
  line-height: 1.5;
  margin-bottom: 25px;
  padding-right: 20px;
}
@media screen and (max-width: 576px) {
  .main-teacher .level-wrapper .level-content {
    margin-top: 10px;
    text-align: center;
    display: block;
    width: 100%;
  }
  .main-teacher .level-wrapper .level-content .heading {
    display: none;
  }
  .main-teacher .level-wrapper .level-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    padding-right: 0;
    font-size: 14px;
  }
}
.main-teacher .level-wrapper .bg-dots-rotate {
  position: absolute;
  top: 17px;
  left: -113px;
}
@media screen and (max-width: 576px) {
  .main-teacher .level-wrapper .bg-dots-rotate {
    display: none;
  }
}
.main-teacher .level-wrapper .circle {
  position: absolute;
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .main-teacher .level-wrapper .circle {
    display: none;
  }
}
.main-teacher .teachers {
  padding-top: 85px;
  position: relative;
  background-color: #EFF3FF;
  padding-bottom: 100px;
}
@media screen and (max-width: 576px) {
  .main-teacher .teachers {
    padding-bottom: 25px;
  }
}
.main-teacher .teachers .circle {
  position: absolute;
  z-index: 2;
  left: -142px;
  top: 44px;
}
@media screen and (max-width: 576px) {
  .main-teacher .teachers .circle {
    display: none;
  }
}
.main-teacher .teachers .triangle-top {
  position: absolute;
  top: 0;
  left: 0;
}
.main-teacher .teachers .triangle-bot {
  position: absolute;
  right: 0;
  bottom: 0;
}
.main-teacher .teachers .lines {
  position: absolute;
  right: 11.09375%;
  top: 0;
}
.main-teacher .teachers .container {
  position: relative;
}
.main-teacher .teachers .content {
  z-index: 10;
}
.main-teacher .teachers .heading-wrapper {
  position: relative;
  width: fit-content;
}
.main-teacher .teachers .heading-wrapper .round {
  position: absolute;
  right: -36px;
  top: 37px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .teachers .heading-wrapper .round {
    display: none;
  }
}
.main-teacher .teachers .heading-wrapper .square {
  position: absolute;
  top: 29px;
  left: 15px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .teachers .heading-wrapper .square {
    display: none;
  }
}
.main-teacher .teachers .heading {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 35px;
}
@media screen and (max-width: 576px) {
  .main-teacher .teachers .heading {
    margin-bottom: 15px;
    font-size: 30px;
  }
}
.main-teacher .teachers .teacher-name {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 19px;
}
@media screen and (max-width: 576px) {
  .main-teacher .teachers .teacher-name {
    font-size: 20px;
  }
}
.main-teacher .teachers .teacher-position {
  font-size: 14px;
  font-weight: bold;
  color: #F23276;
  line-height: 1.5;
  margin-bottom: 27px;
  position: relative;
}
.main-teacher .teachers .teacher-position .icons {
  position: absolute;
  left: -82px;
  top: -20px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .teachers .teacher-position .icons {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .teachers .teacher-position {
    margin-bottom: 17px;
  }
}
.main-teacher .teachers p.describe {
  margin-bottom: 27px;
  opacity: 0.7;
  width: 60%;
  line-height: 1.5;
}
@media screen and (min-width: 767px) and (max-width: 1025px) {
  .main-teacher .teachers p.describe {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .teachers p.describe {
    width: 100%;
  }
}
.main-teacher .teacher-single-slider-wrapper {
  padding-top: 117px;
  padding-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .main-teacher .teacher-single-slider-wrapper {
    padding-top: 170px;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .teacher-single-slider-wrapper {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.main-teacher .teacher-single-slider-wrapper .courses-pagination {
  width: fit-content;
  transform: translateX(-50%) !important;
}
.main-teacher .teacher-single {
  padding-bottom: 45px;
}
.main-teacher .teacher-single img {
  margin-bottom: 12px;
}
.main-teacher .teacher-single .name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 5px;
}
.main-teacher .teacher-single .position {
  font-size: 10px;
  font-weight: 600;
  color: #F23276;
}
.main-teacher .teacher-big {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 576px) {
  .main-teacher .teacher-big {
    display: none;
  }
}
.main-teacher .progress .circle-progress {
  width: 170px;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}
.main-teacher .progress .circle-progress-value {
  stroke-width: 3px;
  stroke: #F23276;
}
.main-teacher .progress .circle-progress-circle {
  stroke-width: 3px;
  stroke: #F0F0F0;
}
.main-teacher .progress .circle-progress-text {
  display: none;
}
.main-teacher .progress .icons {
  position: absolute;
  top: 83px;
  right: -8px;
}
.main-teacher .progress .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .main-teacher .progress .container {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1200px) {
  .main-teacher .progress .container .bar-progress-wrapper {
    width: 100% !important;
  }
  .main-teacher .progress .container .round-progress {
    width: 100% !important;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .progress .container .round-progress {
    flex-direction: column;
  }
}
.main-teacher .progress .bar-progress-wrapper {
  display: flex;
  gap: 65px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .progress .bar-progress-wrapper {
    flex-direction: column;
    width: 70%;
    gap: unset;
  }
  .main-teacher .progress .bar-progress-wrapper .bar-progress.-second {
    margin-top: 65px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 576px) {
  .main-teacher .progress .bar-progress-wrapper .bar-progress.-second {
    margin-top: 45px;
  }
}
.main-teacher .progress .round-wrapper {
  width: 170px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .progress .round-wrapper {
    margin-right: 50px;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .progress .round-wrapper {
    margin-right: 0;
  }
}
.main-teacher .progress .round-wrapper.after {
  margin-top: 44px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .progress .round-wrapper.after {
    margin-top: 0;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .progress .round-wrapper.after {
    margin-top: 44px;
  }
}
.main-teacher .progress .round-wrapper .title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #20272F;
}
.main-teacher .progress .round {
  background-color: white;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-teacher .progress .info {
  text-align: center;
  background-color: white;
  width: 160px;
  height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
}
.main-teacher .progress .info .number-wrapper {
  font-size: 40px;
  color: #F23276;
  margin-bottom: 12px;
}
.main-teacher .progress .info .number-wrapper span {
  position: relative;
  width: 30px;
}
.main-teacher .progress .info .number-wrapper span:first-of-type {
  left: 3.5px;
}
.main-teacher .progress .info .number-wrapper span:last-child {
  right: 3.5px;
}
.main-teacher .progress .info p {
  font-size: 12px;
  width: 80%;
  line-height: 1.5;
}
.main-teacher .progress .bar-progress .heading {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 38px;
}
@media screen and (max-width: 576px) {
  .main-teacher .progress .bar-progress .heading {
    margin-bottom: 25px;
  }
}
.main-teacher .progress .bar-wrapper {
  margin-bottom: 28px;
}
.main-teacher .progress .bar-wrapper .title {
  line-height: 1.5;
  margin-bottom: 5px;
}
.main-teacher .progress .bar-wrapper .fill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-teacher .progress .bar-wrapper .number-bar {
  width: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 2s;
}
.main-teacher .progress .bar-wrapper .number-bar span {
  color: white;
  font-weight: bold;
}
.main-teacher .progress .bar-wrapper .number-bar span:first-of-type {
  position: relative;
  left: 2px;
}
.main-teacher .progress .bar-wrapper .number-bar span:last-child {
  position: relative;
  right: 2px;
}
.main-teacher .progress .bar {
  width: 430px;
  height: 30px;
  border-radius: 34px;
  background-image: linear-gradient(#D2D2D2, #F0F0F0);
}
@media screen and (max-width: 1200px) {
  .main-teacher .progress .bar {
    width: 95%;
  }
}
.main-teacher .progress .bar .fill {
  width: 0%;
  height: 100%;
  background-color: #F23276;
  border-radius: 34px;
}
.main-teacher .progress .bar .fill.ani .number-bar {
  opacity: 1;
  visibility: visible;
  margin-right: 37px;
}
.main-teacher .progress .bar .fill.--90.ani {
  animation: 2s bar90 forwards;
}
.main-teacher .progress .bar .fill.--70.ani {
  animation: 2s bar70 forwards;
}
.main-teacher .progress .bar .fill.--50.ani {
  animation: 2s bar50 forwards;
}
@keyframes bar90 {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
@keyframes bar70 {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}
@keyframes bar50 {
  0% {
    width: 0%;
  }
  100% {
    width: 50%;
  }
}
.main-teacher .students-feedback {
  display: flex;
  position: relative;
  height: 628px;
}
@media screen and (max-width: 576px) {
  .main-teacher .students-feedback {
    flex-direction: column;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #EFF3FF;
  }
  .main-teacher .students-feedback .left-side {
    width: 100% !important;
    display: none;
  }
}
.main-teacher .students-feedback .content {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 74%;
}
@media screen and (max-width: 768px) {
  .main-teacher .students-feedback .content {
    height: 85%;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .students-feedback .content {
    position: unset;
    height: 100%;
    transform: unset;
    background-color: #EFF3FF;
  }
}
.main-teacher .students-feedback .content .heading {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .main-teacher .students-feedback .content .heading {
    width: 40%;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .students-feedback .content .heading {
    display: none;
  }
}
.main-teacher .students-feedback .content img {
  margin-bottom: 32px;
}
@media screen and (max-width: 576px) {
  .main-teacher .students-feedback .content img {
    display: none;
  }
}
.main-teacher .students-feedback .content p {
  line-height: 1.5;
  margin-bottom: 22px;
  opacity: 0.7;
  font-style: italic;
  width: 25%;
}
@media screen and (max-width: 992px) {
  .main-teacher .students-feedback .content p {
    width: 35%;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .students-feedback .content p {
    width: 100%;
  }
}
.main-teacher .students-feedback .content .more {
  font-weight: bold;
  color: #F23276;
  text-decoration: underline;
  transition: 0.15s ease;
}
.main-teacher .students-feedback .content .more:hover {
  color: #F89E1B;
}
.main-teacher .students-feedback .left-side {
  flex: 1;
  background-color: #EFF3FF;
  height: 100%;
  width: 50%;
  position: relative;
}
.main-teacher .students-feedback .left-side img {
  position: absolute;
}
.main-teacher .students-feedback .left-side .img-circle-gold {
  left: -51px;
  top: 78px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.7s;
}
.main-teacher .students-feedback .left-side .img-dots {
  bottom: 46px;
  left: -42px;
}
.main-teacher .students-feedback .left-side .img-circle-half {
  left: 6.7708333333%;
  bottom: 207px;
}
.main-teacher .students-feedback .left-side .circle-pink {
  top: 17px;
  right: 40px;
  animation: float 4s ease-in-out infinite;
}
.main-teacher .students-feedback .left-side .circle-gold-small {
  top: 135px;
  right: 20px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}
.main-teacher .students-feedback .left-side .circle-blue {
  bottom: 95px;
  right: 10.4166666667%;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1.2s;
}
@media screen and (max-width: 1024px) {
  .main-teacher .students-feedback .left-side .img-circle-gold, .main-teacher .students-feedback .left-side .img-circle-half, .main-teacher .students-feedback .left-side .img-dots {
    display: none;
  }
}
.main-teacher .students-feedback .right-side {
  flex: 1;
  height: 100%;
  position: relative;
}
.main-teacher .students-feedback .right-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-teacher .students-feedback .right-side::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #20272F;
  opacity: 0.7;
  top: 0;
}
@media screen and (max-width: 576px) {
  .main-teacher .students-feedback .right-side {
    display: none;
  }
}
.main-teacher .students-feedback .students-slider-wrapper {
  position: absolute;
  top: 172px;
  left: calc(50% - 264px);
  border-radius: 7px;
  z-index: 5;
  width: 1200px;
}
.main-teacher .students-feedback .students-slider-wrapper .heading {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 40px;
  display: none;
}
@media screen and (max-width: 576px) {
  .main-teacher .students-feedback .students-slider-wrapper .heading {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }
}
.main-teacher .students-feedback .students-slider-wrapper .swiper {
  padding-bottom: 56px;
  padding-top: 4px;
  padding-left: 4px;
}
@media screen and (max-width: 576px) {
  .main-teacher .students-feedback .students-slider-wrapper .swiper {
    padding-bottom: 50px;
  }
}
.main-teacher .students-feedback .students-slider-wrapper .swiper-slide {
  width: 230px !important;
  transition: 0.2s;
}
.main-teacher .students-feedback .students-slider-wrapper .swiper-slide:hover {
  cursor: pointer;
  box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.2);
}
.main-teacher .students-feedback .students-slider-wrapper .swiper-slide:hover .title {
  color: #F23276;
}
.main-teacher .students-feedback .students-slider-wrapper .swiper-slide:hover::before {
  background-image: linear-gradient(to left bottom, #F23276, transparent 35%) !important;
  opacity: 1 !important;
  transition: 0.2s;
}
.main-teacher .students-feedback .students-slider-wrapper .swiper-slide:hover::after {
  background-image: linear-gradient(to right top, #F23276, transparent 35%) !important;
  opacity: 1 !important;
  transition: 0.2s;
}
.main-teacher .students-feedback .students-slider-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  width: calc(120% + 4px);
  height: calc(50% + 4px);
  top: -4px;
  right: -4px;
  z-index: -1;
  border-radius: 7px;
  background-image: linear-gradient(to left bottom, #F23276, transparent 35%);
  opacity: 0;
  transition: 0.3s;
}
.main-teacher .students-feedback .students-slider-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  width: calc(120% + 4px);
  height: calc(50% + 4px);
  bottom: -4px;
  left: -4px;
  z-index: -1;
  border-radius: 7px;
  background-image: linear-gradient(to right top, #F23276, transparent 35%);
  opacity: 0;
  transition: 0.3s;
}
.main-teacher .students-feedback .students-slider-wrapper .swiper-slide-active {
  height: 100%;
}
.main-teacher .students-feedback .students-slider-wrapper .swiper-slide-active img {
  filter: unset !important;
}
.main-teacher .students-feedback .students-slider-wrapper .courses-pagination {
  left: 0;
  width: fit-content;
}
.main-teacher .students-feedback .students-slider-wrapper .student-card {
  text-align: center;
  background-color: white;
  border-radius: 7px;
}
.main-teacher .students-feedback .students-slider-wrapper .student-card .img-student {
  position: relative;
}
.main-teacher .students-feedback .students-slider-wrapper .student-card .img-student img {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  filter: grayscale(100%);
  transition: 0.2s ease;
}
.main-teacher .students-feedback .students-slider-wrapper .student-card .name {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 9px;
  padding-top: 9px;
  transition: 0.2s;
}
.main-teacher .students-feedback .students-slider-wrapper .student-card .class {
  font-size: 12px;
  color: #F23276;
  padding-bottom: 20px;
}
.main-teacher .students-feedback .students-slider-wrapper .student-card:hover img {
  filter: unset;
}
.main-teacher .students-feedback .students-slider-wrapper .student-card:hover .name {
  transition: 0.2s;
  color: #F23276;
}
@media screen and (max-width: 576px) {
  .main-teacher .students-feedback .students-slider-wrapper {
    position: unset !important;
    width: 100% !important;
    background-color: #EFF3FF;
    padding-bottom: 30px;
  }
  .main-teacher .students-feedback .students-slider-wrapper .swiper-slide {
    width: 100% !important;
    padding: 0 20px;
  }
  .main-teacher .students-feedback .students-slider-wrapper .swiper-slide::before, .main-teacher .students-feedback .students-slider-wrapper .swiper-slide::after {
    display: none;
  }
  .main-teacher .students-feedback .students-slider-wrapper .student-card {
    border-radius: 10px;
  }
  .main-teacher .students-feedback .students-slider-wrapper .student-card img {
    width: 100%;
  }
  .main-teacher .students-feedback .students-slider-wrapper .student-card .name {
    font-size: 24px;
  }
  .main-teacher .students-feedback .students-slider-wrapper .student-card .class {
    font-size: 16px;
  }
  .main-teacher .students-feedback .students-slider-wrapper .courses-pagination {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
.main-teacher .banner-promotion-wrapper {
  border-radius: 7px;
  width: 100%;
  height: 100%;
  border-radius: 7px;
}
@media screen and (max-width: 992px) {
  .main-teacher .banner-promotion-wrapper {
    position: relative;
    bottom: 30px;
  }
}
.main-teacher .banner-promotion-wrapper .container {
  border-radius: 7px;
  position: relative;
}
.main-teacher .banner-promotion-wrapper .banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .main-teacher .banner-promotion-wrapper .banner {
    object-fit: cover;
  }
}
.main-teacher .banner-promotion {
  position: relative;
  width: 100%;
  border-radius: 7px;
  padding-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .main-teacher .banner-promotion {
    padding-left: 0;
    padding-bottom: 100px;
  }
}
.main-teacher .banner-promotion .content {
  width: fit-content;
  text-align: center;
  color: white;
  position: relative;
  padding-bottom: 60px;
  border-radius: 7px;
  padding-left: 86px;
}
@media screen and (max-width: 992px) {
  .main-teacher .banner-promotion .content {
    padding-left: 0;
    width: 100%;
    padding: 0 20px;
  }
}
.main-teacher .banner-promotion .sub-heading {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 8px;
  padding-top: 139px;
}
@media screen and (max-width: 992px) {
  .main-teacher .banner-promotion .sub-heading {
    padding-top: 180px;
  }
}
.main-teacher .banner-promotion .heading {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}
.main-teacher .banner-promotion .btn-action {
  position: absolute;
  right: -323px;
  top: 170px;
  width: 223px;
  height: 50px;
  background-color: #20272F;
  border-radius: 7px;
  transition: 0.15s linear;
}
@media screen and (max-width: 992px) {
  .main-teacher .banner-promotion .btn-action {
    position: unset;
    margin-top: 50px;
  }
}
.main-teacher .banner-promotion .btn-action a {
  color: white;
  font-size: 18px;
}
.main-teacher .banner-promotion .btn-action:hover {
  animation: jelly 0.5s;
  background-color: #F23276;
}
.main-teacher .banner-promotion .time {
  width: 450px;
  height: 68px;
  background-color: #F89E1B;
  position: relative;
}
@media screen and (max-width: 992px) {
  .main-teacher .banner-promotion .time {
    width: 55%;
    border-radius: 7px;
    margin: 0 auto;
  }
  .main-teacher .banner-promotion .time span {
    font-size: 30px !important;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .banner-promotion .time {
    width: 100%;
  }
  .main-teacher .banner-promotion .time span {
    font-size: 28px !important;
  }
}
.main-teacher .banner-promotion .time.none span {
  display: none;
}
.main-teacher .banner-promotion .time span {
  font-size: 40px;
  position: relative;
  bottom: -17px;
}
@media screen and (max-width: 576px) {
  .main-teacher .banner-promotion .time span {
    bottom: -20px;
    font-size: 25px !important;
  }
}
.main-teacher .banner-promotion .time span::after {
  position: absolute;
  bottom: -33px;
  font-weight: bold;
  font-size: 16px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 992px) {
  .main-teacher .banner-promotion .time span::after {
    bottom: -45px;
  }
}
.main-teacher .banner-promotion .time span.day::after {
  content: "Ngày";
}
.main-teacher .banner-promotion .time span.hour::after {
  content: "Giờ";
}
.main-teacher .banner-promotion .time span.minute::after {
  content: "Phút";
}
.main-teacher .banner-promotion .time span.second::after {
  content: "Giây";
}
.main-teacher .banner-promotion .time span.seperate {
  margin: 0 20px;
  font-weight: 700;
  position: relative;
  bottom: -10px;
}
.main-teacher .banner-promotion .time span.seperate::after {
  display: none;
}
.main-teacher .banner-promotion .time span.seperate:last-child {
  margin-right: 0;
}
@media screen and (max-width: 576px) {
  .main-teacher .banner-promotion .time span.seperate {
    bottom: -15px;
    margin: 0 10px;
  }
}
.main-teacher .banner-promotion .over {
  width: 100%;
  height: 100%;
  background-color: #F23276;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  display: none;
}
.main-teacher .banner-promotion .over.visible {
  display: flex;
}
.main-teacher .box-join-wrapper {
  position: relative;
}
.main-teacher .box-join-wrapper .dots {
  position: absolute;
  z-index: -1;
  right: -90px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .box-join-wrapper .dots {
    display: none;
  }
}
.main-teacher .select2-selection__rendered {
  color: black;
}
.main-teacher .box-join {
  padding: 30px;
  background-color: white;
  width: fit-content;
  height: fit-content;
  border-radius: 7px;
  box-shadow: 0px 4px 15px -4px rgba(242, 50, 118, 0.5);
  margin-bottom: 100px;
  margin-top: 70px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .main-teacher .box-join {
    margin-top: 0px;
    margin-bottom: 60px;
  }
  .main-teacher .box-join .heading {
    font-size: 30px !important;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .box-join .book {
    display: none;
  }
}
.main-teacher .box-join .heading {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media screen and (max-width: 576px) {
  .main-teacher .box-join .heading {
    font-size: 20px !important;
    text-align: center;
  }
}
.main-teacher .box-join .line {
  width: 210px;
  height: 1px;
  background-color: #707070;
  opacity: 0.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .main-teacher .box-join .line {
    width: 100%;
  }
}
.main-teacher .box-join form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.main-teacher .box-join .form-group {
  margin-bottom: 25px;
  display: block;
  width: 100%;
  position: relative;
}
.main-teacher .box-join .form-group label {
  color: #20272F;
  font-weight: bold;
  display: block;
  margin-bottom: 7px;
}
.main-teacher .box-join .form-group input, .main-teacher .box-join .form-group select {
  height: 50px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 7px;
  padding-left: 15px;
  width: 100%;
  position: relative;
  padding-right: 15px;
}
.main-teacher .box-join .form-group input::placeholder, .main-teacher .box-join .form-group select::placeholder {
  font-size: 14px;
  font-style: italic;
  color: #707070;
}
.main-teacher .box-join .form-group input option, .main-teacher .box-join .form-group select option {
  color: black;
  font-style: normal;
}
.main-teacher .box-join .form-group input option:disabled, .main-teacher .box-join .form-group select option:disabled {
  color: rgba(112, 112, 112, 0.8);
}
.main-teacher .box-join .form-group input:focus, .main-teacher .box-join .form-group input:active, .main-teacher .box-join .form-group select:focus, .main-teacher .box-join .form-group select:active {
  border: 1px solid rgba(248, 158, 27, 0.8);
  outline: 0;
}
.main-teacher .box-join .form-group input::placeholder, .main-teacher .box-join .form-group select::placeholder {
  font-size: 14px;
  font-style: italic;
  opacity: 0.3;
}
.main-teacher .box-join .form-group select {
  padding-right: 15px;
  font-size: 14px;
  font-style: italic;
  color: #d6d6d6;
}
.main-teacher .box-join .form-group:nth-child(3), .main-teacher .box-join .form-group:nth-child(4) {
  width: calc(50% - 5px);
}
.main-teacher .box-join .form-group .drop-select {
  width: 22px;
  height: 15px;
  background-color: white;
  position: absolute;
  top: 53%;
  right: 2px;
}
.main-teacher .box-join .form-group:nth-child(3), .main-teacher .box-join .form-group:nth-child(4) {
  width: calc(50% - 5px);
}
@media screen and (max-width: 576px) {
  .main-teacher .box-join .form-group:nth-child(3), .main-teacher .box-join .form-group:nth-child(4) {
    width: 100%;
  }
}
.main-teacher .box-join .form-submit {
  width: 281px;
  height: 60px;
  background-color: #F23276;
  border-radius: 7px;
  transition: 0.15s ease-in-out;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
}
.main-teacher .box-join .form-submit a {
  color: white;
  font-size: 18px;
}
.main-teacher .box-join .form-submit:hover {
  background-color: #F89E1B;
  box-shadow: 0px 8px 16px 0px rgba(248, 158, 27, 0.3);
}
.main-teacher .box-join .flex-gr {
  display: flex;
  align-items: flex-start;
  gap: 45px;
}
.main-teacher .box-join .btn-close {
  width: 20px;
  height: 20px;
  background-color: #F23276;
  border-radius: 50%;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.15s ease-in-out;
}
.main-teacher .box-join .btn-close span {
  position: relative;
  bottom: 2px;
}
.main-teacher .box-join .btn-close:hover {
  background-color: #20272F;
}
.main-teacher .about-group {
  display: flex;
  align-items: center;
  gap: 65px;
}
@media screen and (max-width: 576px) {
  .main-teacher .about-group {
    flex-direction: column;
  }
}
.main-teacher .about-group .title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 576px) {
  .main-teacher .about-group .title {
    margin-bottom: 20px;
  }
}
.main-teacher .about-group .description {
  line-height: 1.5;
  margin-bottom: 25px;
  opacity: 0.7;
}
.main-teacher .about-group .tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-teacher .about-group .tools .btn-watch .icon-watch {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.2);
  -webkit-box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.2);
  -moz-box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.2);
  transition: 0.2s;
}
.main-teacher .about-group .tools .btn-watch p {
  display: inline-block;
  margin-left: 20px;
}
.main-teacher .about-group .tools .btn-watch:hover {
  cursor: pointer;
}
.main-teacher .about-group .tools .btn-watch:hover .icon-watch {
  background: #F23276;
}
.main-teacher .about-group .tools .about-social {
  display: flex;
  gap: 10px;
}
.main-teacher .about-group .tools .about-social img {
  position: relative;
  bottom: 0;
  transition: 0.2s;
}
.main-teacher .about-group .tools .about-social a:hover img {
  bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .about-group .about-slider-swiper .swiper-slide img {
    border-radius: 7px;
    width: 100%;
  }
  .main-teacher .about-group .about-img img {
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 576px) {
  .main-teacher .about-group {
    flex-direction: column !important;
  }
  .main-teacher .about-group .about-img {
    width: 100%;
  }
}
.main-teacher .about-img {
  position: relative;
  width: 49.0598290598%;
}
.main-teacher .about-img .about-slider-swiper {
  width: 100%;
  padding-bottom: 50px;
}
.main-teacher .about-img img {
  object-fit: cover;
}
.main-teacher .about-img .swiper-pagination-custom {
  position: absolute;
  left: 50%;
  transform: translateX(-60px);
  bottom: 0;
}
.main-teacher .about-img .swiper-pagination-custom .swiper-pagination-bullet {
  background: #D8D8D8;
  width: 10px;
  height: 10px;
  opacity: 1;
}
.main-teacher .about-img .swiper-pagination-custom .swiper-pagination-bullet-active {
  width: 60px;
  background: #F23276;
  border-radius: 7px;
  animation: 0.5s pagination;
}
.main-teacher .about-img .bg-square-right {
  position: absolute;
  z-index: -1;
  top: -55px;
  left: -80px;
}
@media screen and (max-width: 1200px) {
  .main-teacher .about-img .bg-square-right {
    display: none;
  }
}
.main-teacher .about-img .bg-square-left {
  position: absolute;
  z-index: -1;
  top: -33px;
  display: none;
  left: -90px;
}
.main-teacher .about-group-partner {
  margin-bottom: 88px;
}
@media screen and (max-width: 576px) {
  .main-teacher .about-group-partner {
    margin-bottom: 50px;
  }
}
.main-teacher .about-group-partner .about-group {
  flex-direction: row-reverse;
}
.main-teacher .banner-gold-wrapper {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .main-teacher .banner-gold-wrapper {
    padding-bottom: 60px;
  }
}
.main-teacher .popup-join {
  position: fixed;
  padding: 30px;
  background-color: white;
  z-index: 103;
  width: fit-content;
  height: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 7px;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 576px) {
  .main-teacher .popup-join {
    width: 90%;
  }
}
.main-teacher .popup-join.visible {
  visibility: visible;
  opacity: 1;
}
.main-teacher .popup-join .heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.main-teacher .popup-join .line {
  width: 210px;
  height: 1px;
  background-color: #707070;
  opacity: 0.2;
  margin-bottom: 20px;
}
.main-teacher .popup-join form {
  display: flex;
  flex-wrap: wrap;
  width: 465px;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .main-teacher .popup-join form {
    width: 100%;
  }
}
.main-teacher .popup-join .form-group {
  margin-bottom: 25px;
  display: block;
  width: 100%;
  position: relative;
}
.main-teacher .popup-join .form-group label {
  color: #20272F;
  font-weight: bold;
  display: block;
  margin-bottom: 7px;
}
.main-teacher .popup-join .form-group input, .main-teacher .popup-join .form-group select {
  height: 50px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 7px;
  padding-left: 15px;
  width: 100%;
  font-size: 14px;
  font-style: italic;
  color: rgba(214, 214, 214, 0.8);
  position: relative;
}
.main-teacher .popup-join .form-group input option, .main-teacher .popup-join .form-group select option {
  color: black;
  font-style: normal;
}
.main-teacher .popup-join .form-group input option:disabled, .main-teacher .popup-join .form-group select option:disabled {
  color: rgba(214, 214, 214, 0.8);
}
.main-teacher .popup-join .form-group input:focus, .main-teacher .popup-join .form-group input:active, .main-teacher .popup-join .form-group select:focus, .main-teacher .popup-join .form-group select:active {
  border: 1px solid rgba(248, 158, 27, 0.8);
  outline: 0;
}
.main-teacher .popup-join .form-group input::placeholder, .main-teacher .popup-join .form-group select::placeholder {
  font-size: 14px;
  font-style: italic;
  opacity: 0.3;
}
.main-teacher .popup-join .form-group select {
  padding-right: 15px;
}
.main-teacher .popup-join .form-group:nth-child(3), .main-teacher .popup-join .form-group:nth-child(4) {
  width: calc(50% - 5px);
}
.main-teacher .popup-join .form-group .drop-select {
  width: 22px;
  height: 15px;
  background-color: white;
  position: absolute;
  top: 53%;
  right: 2px;
}
.main-teacher .popup-join .form-submit {
  width: 281px;
  height: 60px;
  background-color: #F23276;
  border-radius: 7px;
  transition: 0.15s ease-in-out;
  box-shadow: 0px 8px 16px 0px rgba(242, 50, 118, 0.3);
}
.main-teacher .popup-join .form-submit a {
  color: white;
  font-size: 18px;
}
.main-teacher .popup-join .form-submit:hover {
  transition: 0.2s;
  background-color: #F89E1B;
  box-shadow: 0px 8px 16px 0px rgba(248, 158, 27, 0.3);
}
.main-teacher .popup-join .flex-gr {
  display: flex;
  align-items: flex-start;
  gap: 45px;
}
.main-teacher .popup-join .btn-close {
  width: 20px;
  height: 20px;
  background-color: #F23276;
  border-radius: 50%;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.15s ease-in-out;
}
@media screen and (max-width: 576px) {
  .main-teacher .popup-join .btn-close {
    top: 10px;
    right: 10px;
  }
}
.main-teacher .popup-join .btn-close span {
  position: relative;
  bottom: 2px;
}
.main-teacher .popup-join .btn-close:hover {
  background-color: #20272F;
}
@media screen and (max-width: 576px) {
  .main-teacher .popup-join .book {
    display: none;
  }
}
.main-teacher .pop-vid {
  width: 50vw;
  height: 65vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 103;
  opacity: 0;
  visibility: hidden;
}
.main-teacher .pop-vid.visible {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  .main-teacher .pop-vid {
    width: 85vw;
    height: 45vh;
  }
}
.main-teacher .pop-vid .btn-close {
  width: 30px;
  height: 30px;
  background-color: #F23276;
  border-radius: 50%;
  color: white;
  position: absolute;
  top: -10px;
  right: -10px;
  transition: 0.15s ease-in-out;
}
.main-teacher .pop-vid .btn-close span {
  position: relative;
  bottom: 2px;
  font-size: 20px;
}
.main-teacher .pop-vid .btn-close:hover {
  background-color: #20272F;
}

.select2-selection__rendered {
  color: black !important;
  line-height: 48px !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid rgba(112, 112, 112, 0.2);
  height: 100%;
  padding-left: 10px;
}

.select2-selection__arrow b {
  display: none;
}

.main-pay .main-content {
  padding-top: 98px;
}
@media screen and (max-width: 768px) {
  .main-pay .main-content {
    padding-top: 45px;
  }
}
.main-pay .main-content .heading {
  font-size: 24px;
  font-weight: bold;
  color: #20272F;
  line-height: 1.2;
  margin-bottom: 38px;
}
@media screen and (max-width: 576px) {
  .main-pay .main-content .heading {
    margin-bottom: 25px;
  }
}
.main-pay .main-content .flex-gr {
  display: flex;
}
@media screen and (max-width: 768px) {
  .main-pay .main-content .flex-gr {
    width: 100%;
    flex-direction: column;
  }
}
.main-pay .main-content form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 65.811965812%;
}
@media screen and (max-width: 768px) {
  .main-pay .main-content form {
    width: 100%;
  }
}
.main-pay .main-content form .form-group {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.main-pay .main-content form .form-group.half {
  width: calc(50% - 15px);
}
.main-pay .main-content form .form-group.third {
  width: calc(33.3333333333% - 15px);
}
@media screen and (max-width: 900px) {
  .main-pay .main-content form .form-group.third {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .main-pay .main-content form .form-group.last {
    margin-bottom: 25px;
  }
}
.main-pay .main-content form .form-group label {
  font-size: 18px;
  font-weight: bold;
  opacity: 0.7;
  line-height: 1.2;
}
.main-pay .main-content form .form-group input, .main-pay .main-content form .form-group select, .main-pay .main-content form .form-group textarea {
  width: 100%;
  height: 50px;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  padding: 15px;
  margin-top: 7px;
}
.main-pay .main-content form .form-group input:focus, .main-pay .main-content form .form-group select:focus, .main-pay .main-content form .form-group textarea:focus {
  border: 1px solid #F89E1B;
  outline: 0;
}
.main-pay .main-content form .form-group input option, .main-pay .main-content form .form-group select option, .main-pay .main-content form .form-group textarea option {
  color: black;
  font-style: normal;
}
.main-pay .main-content form .form-group input option:disabled, .main-pay .main-content form .form-group select option:disabled, .main-pay .main-content form .form-group textarea option:disabled {
  color: rgba(214, 214, 214, 0.1);
}
.main-pay .main-content form .form-group textarea {
  height: 150px;
  font-size: 16px;
}
.main-pay .main-content form .form-group .drop-pink {
  position: absolute;
  right: 5px;
  top: 50px;
  width: 10px;
  height: 10px;
  background-color: white;
}
.main-pay .main-content form .form-group svg {
  width: 20px;
  position: absolute;
  right: 0;
}
.main-pay .main-content form .form-radio {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
}
.main-pay .main-content form .form-radio:last-child {
  margin-bottom: 30px;
}
.main-pay .main-content form .form-radio label {
  font-size: 14px;
}
.main-pay .main-content form .form-radio * {
  transition: 0.15s;
}
.main-pay .main-content form .form-radio input {
  position: absolute;
  opacity: 0;
}
.main-pay .main-content form .form-radio input:checked ~ .checkmark::after {
  display: block !important;
}
.main-pay .main-content form .form-radio .checkmark {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  border: 1px solid #EBEBEB;
  margin-right: 10px;
  position: relative;
}
.main-pay .main-content form .form-radio .checkmark::after {
  content: url(../../images/svg/checkmark.svg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.main-pay .main-content form .form-radio:hover {
  color: #F23276;
  cursor: pointer;
}
.main-pay .main-content form .form-radio:hover * {
  cursor: pointer;
}
.main-pay .main-content form .bank-payment {
  width: 100%;
  box-shadow: 0px 5px 12px 2px rgba(242, 50, 118, 0.3);
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .main-pay .main-content form .bank-payment {
    margin-bottom: 60px;
  }
}
.main-pay .main-content form .bank-payment .title {
  height: 39px;
  background-color: #F23276;
  padding: 15px;
  padding-top: 13px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  color: white;
  font-size: 14px;
}
.main-pay .main-content form .bank-payment .bank-item-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .main-pay .main-content form .bank-payment .bank-item-wrapper {
    gap: 30px;
    justify-content: center;
  }
}
.main-pay .main-content form .bank-payment .bank-item-wrapper .item {
  width: 120px;
  margin: 30px;
}
@media screen and (max-width: 576px) {
  .main-pay .main-content form .bank-payment .bank-item-wrapper .item {
    margin: 20px;
  }
}
.main-pay .main-content form .bank-payment .bank-item-wrapper .item img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.main-pay .main-content form .bank-payment .bank-item-wrapper .item:last-child {
  margin-right: 0;
}
.main-pay .main-content .cart-info {
  width: 31.6239316239%;
  margin-left: 30px;
  padding: 30px;
  box-shadow: 0px 5px 12px 2px rgba(242, 50, 118, 0.3);
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .main-pay .main-content .cart-info {
    width: 100%;
  }
}
.main-pay .main-content .cart-info p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.main-pay .main-content .cart-info p.last {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.3);
  margin-bottom: 30px;
}
.main-pay .main-content .cart-info p span {
  line-height: 1.5;
}
.main-pay .main-content .cart-info .total {
  display: flex;
  justify-content: space-between;
}
.main-pay .main-content .cart-info .total span {
  font-weight: bold;
  color: #20272F;
}
.main-pay .main-content .cart-info .btn-pay {
  width: 100%;
  height: 60px;
  border-radius: 7px;
  background-color: #F23276;
  transition: 0.15s linear;
  margin-top: 45px;
}
.main-pay .main-content .cart-info .btn-pay:hover {
  background-color: #F89E1B;
  animation: jelly 0.5s;
}
.main-pay .main-content .cart-info .btn-pay a {
  font-size: 18px;
  color: white;
}
@media screen and (max-width: 768px) {
  .main-pay .main-content .cart-info {
    width: 100%;
    margin-left: 0;
    margin-bottom: 60px;
  }
}
.main-pay .bg-triangle {
  top: 1450px;
  right: -250px;
}

.main-account .content {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .main-account .content {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
.main-account .content .container {
  display: flex;
  gap: 111px;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  .main-account .content .container {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .main-account .content .tools {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .main-account .content .user-menu {
    background-color: #F23276;
    padding: 20px;
    border-radius: 7px;
  }
}
.main-account .content .user-menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  margin-top: 2px;
  border-radius: 7px;
}
@media screen and (max-width: 576px) {
  .main-account .content .user-menu-item {
    flex-direction: column;
  }
  .main-account .content .user-menu-item p {
    font-size: 16px !important;
    color: white !important;
    font-weight: 600 !important;
  }
  .main-account .content .user-menu-item svg {
    margin-bottom: 12px;
  }
  .main-account .content .user-menu-item svg * {
    fill: white !important;
  }
}
.main-account .content .user-menu-item.active p {
  color: #F23276;
}
.main-account .content .user-menu-item.active svg * {
  fill: #F23276;
}
.main-account .content .user-menu-item:last-child {
  margin-bottom: 0;
}
.main-account .content .user-menu-item:hover p {
  color: #F23276;
}
.main-account .content .user-menu-item:hover svg * {
  fill: #F23276;
}
.main-account .content .user-menu svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
@media screen and (max-width: 576px) {
  .main-account .content .user-menu svg {
    margin-right: 0;
  }
}
.main-account .content .user-menu svg * {
  fill: #20272F;
  transition: 0.15s ease;
}
.main-account .content .user-menu p {
  color: #20272F;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.5;
  transition: 0.15s ease;
}
.main-account .content .account {
  display: flex;
  padding-left: 30px;
}
.main-account .content .account .user-info {
  margin-right: 30px;
}
@media screen and (max-width: 900px) {
  .main-account .content .account {
    padding-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .main-account .content .account {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .main-account .content .account .user-info .upload {
    margin-bottom: 20px !important;
  }
}
.main-account .content .account .user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 576px) {
  .main-account .content .account .user-info {
    margin-bottom: 50px;
    justify-content: center;
    margin-right: 0;
    height: 300px;
  }
}
.main-account .content .account .user-info::before {
  content: "";
  width: 1.5px;
  height: 40px;
  position: absolute;
  top: 0;
  left: -60px;
  background-color: #F23276;
}
.main-account .content .account .user-info .user-ava {
  margin-bottom: 17px;
}
.main-account .content .account .user-info .user-name {
  line-height: 1.5;
  font-size: 20px;
  margin-bottom: 5px;
}
.main-account .content .account .user-info .upload {
  text-align: center;
  margin-bottom: 122px;
  cursor: pointer;
  position: relative;
  bottom: 18px;
}
.main-account .content .account .user-info .upload label {
  display: inline-block;
  margin-right: 5px;
  color: #57D2FF;
}
.main-account .content .account .user-info .upload * {
  transition: 0.15s ease;
}
.main-account .content .account .user-info .upload:hover * {
  color: #F23276;
  stroke: #F23276;
}
.main-account .content .account .user-info .btn-logout {
  position: absolute;
  bottom: 0;
}
.main-account .content .account .user-info .btn-logout button {
  width: 170px;
  height: 44px;
  border-radius: 7px;
  background-color: #F23276;
  color: white;
  font-size: 12px;
  transition: 0.2s ease;
}
.main-account .content .account .user-info .btn-logout button:hover {
  background-color: #F89E1B;
}
.main-account .content .account form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.main-account .content .account form .form-group.half {
  width: calc(50% - 15px);
}
@media screen and (max-width: 576px) {
  .main-account .content .account form .form-group.half {
    width: 100%;
  }
}
.main-account .content .account form .form-group label {
  margin-bottom: 8px;
  display: block;
}
.main-account .content .account form .form-group input {
  width: 100%;
  height: 50px;
  padding-left: 16px;
  border: 1px solid #D8D8D8;
  border-radius: 7px;
}
.main-account .content .account form .form-group input:focus {
  border: 1px solid rgba(248, 158, 27, 0.7);
}
.main-account .content .account form .form-group.address {
  width: 100%;
}
.main-account .content .account form .form-group.address input {
  width: 100%;
}
.main-account .content .account form .form-group.select {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.main-account .content .account form .form-group.select label {
  width: 100%;
}
.main-account .content .account form .form-group.select .select-wrapper {
  position: relative;
}
.main-account .content .account form .form-group.select .select-wrapper.three {
  width: calc(33.3333333333% - 15px);
}
.main-account .content .account form .form-group.select .select-wrapper select {
  background-color: white;
}
.main-account .content .account form .form-group.select .select-wrapper .svg-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  right: 4px;
  background-color: white;
  width: 25px;
  height: 12px;
  display: flex;
  justify-content: left;
  align-items: center;
  right: 2px;
}
.main-account .content .account form .form-group.select select {
  width: 100%;
  height: 50px;
  border: 1px solid #D8D8D8;
  border-radius: 7px;
  color: rgba(0, 0, 0, 0.6);
  padding-left: 12px;
  cursor: pointer;
}
.main-account .content .account form .form-group.select select:focus {
  border: 1px solid #F89E1B !important;
}
.main-account .content .account form .form-group.select select option {
  color: black;
}
.main-account .content .account form .form-group.radio {
  display: flex;
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
  /* Style the indicator (dot/circle) */
}
.main-account .content .account form .form-group.radio .radio-wrapper {
  display: inline-flex;
  position: relative;
  width: 96px;
  height: 25px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.main-account .content .account form .form-group.radio .radio-wrapper:last-child {
  width: fit-content;
}
.main-account .content .account form .form-group.radio .gender {
  margin-left: 40px;
  font-size: 16px;
  position: relative;
  top: 5px;
}
.main-account .content .account form .form-group.radio .radio-wrapper input {
  opacity: 0;
  cursor: pointer;
  visibility: hidden;
}
.main-account .content .account form .form-group.radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #F8F8F8;
  border-radius: 50%;
}
.main-account .content .account form .form-group.radio .radio-wrapper:hover input ~ .checkmark {
  background-color: #eee;
}
.main-account .content .account form .form-group.radio .radio-wrapper input:checked ~ .checkmark {
  background-color: #F8F8F8;
}
.main-account .content .account form .form-group.radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.main-account .content .account form .form-group.radio .radio-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.main-account .content .account form .form-group.radio .radio-wrapper .checkmark:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #F23276;
}
.main-account .content .account form .btn-update {
  position: relative;
  width: 100%;
}
.main-account .content .account form .btn-update button {
  font-size: 14px;
  color: white;
  width: 149px;
  height: 44px;
  border-radius: 7px;
  transition: 0.2s ease;
  background-color: #57D2FF;
}
.main-account .content .account form .btn-update button:hover {
  background-color: #F89E1B;
}
@media screen and (max-width: 1200px) {
  .main-account .content .account form .form-group.half {
    width: 100%;
  }
  .main-account .content .account form .form-group.half input {
    width: 100%;
  }
  .main-account .content .account form .row {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-account .content .account form .row .form-group.select select {
    width: 100px;
  }
  .main-account .content .account form .form-group.radio {
    margin-top: 25px;
  }
  .main-account .content .account form .btn-update {
    position: unset;
    transform: unset;
  }
}
@media screen and (max-width: 576px) {
  .main-account .content .account form .btn-update {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.main-about .about {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .main-about .about {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
.main-about .about-group {
  display: flex;
  align-items: center;
  gap: 65px;
}
.main-about .about-group .title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 35px;
}
@media screen and (max-width: 576px) {
  .main-about .about-group .title {
    margin-bottom: 20px;
    font-size: 25px;
    text-align: center;
  }
}
.main-about .about-group .description {
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 576px) {
  .main-about .about-group .description {
    opacity: 1;
    text-align: center;
  }
}
.main-about .about-group .tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-about .about-group .tools .btn-watch .icon-watch {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 13px 30px 1px rgba(242, 50, 118, 0.1);
  transition: 0.2s;
}
.main-about .about-group .tools .btn-watch p {
  display: inline-block;
  margin-left: 20px;
}
.main-about .about-group .tools .btn-watch:hover {
  cursor: pointer;
}
.main-about .about-group .tools .btn-watch:hover .icon-watch {
  background: #F23276;
}
.main-about .about-group .tools .about-social {
  display: flex;
  gap: 10px;
}
.main-about .about-group .tools .about-social img {
  position: relative;
  bottom: 0;
  transition: 0.2s;
}
.main-about .about-group .tools .about-social a:hover img {
  bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .main-about .about-group .about-slider-swiper .swiper-slide img {
    border-radius: 7px;
    width: 100%;
  }
  .main-about .about-group .about-img img {
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 576px) {
  .main-about .about-group .about-img {
    width: 100%;
  }
}
.main-about .about-group.center {
  flex-direction: row-reverse;
  margin-top: 170px;
}
@media screen and (max-width: 1200px) {
  .main-about .about-group.center .content {
    width: 100%;
  }
  .main-about .about-group.center .about-img {
    width: fit-content !important;
  }
}
.main-about .about-img {
  position: relative;
  width: 49.0598290598%;
}
.main-about .about-img .about-slider-swiper {
  width: 100%;
  padding-bottom: 50px;
}
.main-about .about-img img {
  object-fit: cover;
}
.main-about .about-img .swiper-pagination-custom {
  position: absolute;
  left: 50%;
  transform: translateX(-60px);
  bottom: 0;
}
.main-about .about-img .swiper-pagination-custom .swiper-pagination-bullet {
  background: #D8D8D8;
  width: 10px;
  height: 10px;
  opacity: 1;
  transition: 0.2s;
}
.main-about .about-img .swiper-pagination-custom .swiper-pagination-bullet-active {
  width: 60px;
  background: #F23276;
  border-radius: 7px;
  animation: 0.5s pagination;
}
.main-about .about-img .bg-square-right {
  position: absolute;
  z-index: -1;
  top: -33px;
  right: -90px;
}
@media screen and (max-width: 576px) {
  .main-about .about-img .bg-square-right {
    display: none;
  }
}
.main-about .about-img .bg-square-left {
  position: absolute;
  z-index: -1;
  top: -33px;
  left: -90px;
}
@media screen and (max-width: 576px) {
  .main-about .about-img .bg-square-left {
    display: none;
  }
}
.main-about .echinese-about {
  margin-bottom: 140px;
}
@media screen and (max-width: 576px) {
  .main-about .echinese-about {
    margin-bottom: 80px;
  }
}
.main-about .about-group-partner .about-group {
  flex-direction: row;
}
.main-about .about-group-commitment {
  margin-bottom: 70px;
}
.main-about .about-group-commitment .bg-square-left {
  left: -140px;
}
.main-about .about-group-commitment .ceo {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
}
.main-about .about-group-commitment .ceo .ceo-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-about .about-group-commitment .ceo .ceo-info .name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 3px;
}
.main-about .about-group-commitment .ceo .ceo-info p {
  font-size: 14px;
}
.main-about .banner-gold-wrapper {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .main-about .banner-gold-wrapper {
    margin-bottom: 60px;
  }
}
.main-about .bg-triangle.first {
  left: -435px;
  top: 1650px;
}
.main-about .bg-triangle.second {
  right: -105px;
  top: 1650px;
}
.main-about .bg-triangle.rotate {
  top: unset;
  bottom: 605px;
  right: unset;
  left: -220px;
  transform: rotate(180deg);
}
.main-about .bg-circle-dash {
  position: absolute;
  bottom: -176px;
  left: -220px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .main-about .bg-circle-dash {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .main-about .about-group {
    flex-direction: column !important;
    gap: 30px;
  }
  .main-about .about-group:last-child {
    margin-top: 30px;
  }
  .main-about .ceo {
    flex-direction: column;
    align-items: center;
  }
  .main-about .ceo .signature {
    width: 70%;
  }
}

.pop-vid {
  width: 50vw;
  height: 65vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 103;
  opacity: 0;
  visibility: hidden;
}
.pop-vid.visible {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  .pop-vid {
    width: 85vw;
    height: 45vh;
  }
}
.pop-vid .btn-close {
  width: 30px;
  height: 30px;
  background-color: #F23276;
  border-radius: 50%;
  color: white;
  position: absolute;
  top: -10px;
  right: -10px;
  transition: 0.15s ease-in-out;
}
.pop-vid .btn-close span {
  position: relative;
  bottom: 2px;
  font-size: 20px;
}
.pop-vid .btn-close:hover {
  background-color: #20272F;
}/*# sourceMappingURL=main.css.map */