@font-face {
  font-family: "Montserrat";
  src: url("../fonts/fatz-fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/fatz-fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/fatz-fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/fatz-fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/fatz-fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/fatz-fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Gotham";
  src: url("../fonts/fatz-fonts/SVN-GothamRoundedMedium.woff2") format("woff2"), url("../fonts/fatz-fonts/SVN-GothamRoundedMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Gotham";
  src: url("../fonts/fatz-fonts/SVN-GothamRoundedBold.woff2") format("woff2"), url("../fonts/fatz-fonts/SVN-GothamRoundedBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.ff-title {
  font-family: "SVN-Gotham", sans-serif;
}

.cl-white {
  color: #ffffff;
}

.cl-pink {
  color: #FF8271;
}

.cl-orange {
  color: #FF821D;
}

.cl-blue {
  color: #0166DC;
}

.fw-medium {
  font-weight: 500;
}

.fs-40 {
  font-size: 40px;
  line-height: 40px;
}

.fs-34 {
  font-size: 34px;
}

.fs-30 {
  font-size: 30px;
}

.fs-24 {
  font-size: 24px;
}

.fs-20 {
  font-size: 20px;
}

.fs-18 {
  font-size: 18px;
}

.fs-17 {
  font-size: 17px;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

@media (max-width: 991px) {
  .fs-40 {
    font-size: 27px;
    line-height: 27px;
  }
  .fs-34 {
    font-size: 26px;
  }
  .fs-30 {
    font-size: 20px;
  }
  .fs-24 {
    font-size: 24px;
  }
  .fs-20 {
    font-size: 20px;
  }
  .fs-18 {
    font-size: 18px;
  }
  .fs-17 {
    font-size: 17px;
  }
  .fs-14 {
    font-size: 14px;
  }
}
.jprogress {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1032;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #C9F5FF;
  color: #0166DC;
  text-align: center;
}
.jprogress .imgloading img {
  height: 100px;
  width: auto;
}
.jprogress .jprogress__text {
  font-family: "SVN-Gotham", sans-serif;
  font-size: 32px;
}

@keyframes runline {
  0% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: -12px;
  }
  100% {
    stroke-dashoffset: -24px;
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes rotateElement {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(9px, 18px);
    -webkit-transform: translate(9px, 18px);
    -moz-transform: translate(9px, 18px);
    -ms-transform: translate(9px, 18px);
    -o-transform: translate(9px, 18px);
  }
  25% {
    transform: translate(0px, -6px);
    -webkit-transform: translate(0px, -6px);
    -moz-transform: translate(0px, -6px);
    -ms-transform: translate(0px, -6px);
    -o-transform: translate(0px, -6px);
  }
  50% {
    transform: translate(-9px, 0px);
    -webkit-transform: translate(-9px, 0px);
    -moz-transform: translate(-9px, 0px);
    -ms-transform: translate(-9px, 0px);
    -o-transform: translate(-9px, 0px);
  }
  75% {
    transform: translate(0px, -12px);
    -webkit-transform: translate(0px, -12px);
    -moz-transform: translate(0px, -12px);
    -ms-transform: translate(0px, -12px);
    -o-transform: translate(0px, -12px);
  }
}

body {
  font-family: "Montserrat", sans-serif;
  text-rendering: geometricPrecision;
  font-size: 14px;
  color: #333333;
}
body a {
  text-decoration: none;
  outline: none;
  transition: all 0.5s ease;
  color: #ffffff;
}
body a:hover, body a:focus {
  text-decoration: none;
  outline: none;
}
body .btn {
  border: 0;
}
body .btn--orange {
  transition: all 0.5s ease;
  background: #FF821D;
  background-image: linear-gradient(to right, #FFB969, #FF821D, #FFB969, #FF6E26);
  font-size: 14px;
  line-height: 27px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 7px 48px 7px 30px;
  color: #ffffff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: relative;
  background-size: 300% 100%;
}
body .btn--orange::before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../images/btn-arrow.svg) no-repeat center center/contain;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
body .btn--orange:hover {
  color: #ffffff;
  background-position: 100% 0;
}
/* body .btn--orange:hover::before {
  transform: translateY(-50%) rotateX(180deg);
} */
body .btn--blue {
  transition: all 0.5s ease;
  background: #03BEFF;
  background: linear-gradient(144deg, #B0E6FF 0%, #03BEFF 100%);
  font-size: 14px;
  line-height: 27px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 7px 30px 7px 48px;
  color: #ffffff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: relative;
  background-size: 300% 100%;
}
body .btn--blue::before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../images/btn-arrow.svg) no-repeat center center/contain;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotateY(180deg);
  transition: all 0.5s ease;
}
body .btn--blue:hover {
  color: #ffffff;
  background-position: 100% 0;
}
/* body .btn--blue:hover::before {
  transform: translateY(-50%) rotateY(0deg);
} */

.parallax-item {
  pointer-events: none;
}
.parallax-item .img {
  transition: all 0.5s ease;
}

#menu_site {
  position: fixed;
  background: #FFF1E1;
  width: 600px;
  height: 100vh;
  z-index: 1031;
  padding: 2rem;
  color: #FF6E26;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s ease;
  right: 0;
  overflow-y: auto;
}
#menu_site .navigation-bg {
  backface-visibility: hidden;
  background-color: #B0E6FF;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
  transform: translate3d(0px, 0px, 0px) scale(0, 1);
  -webkit-transform: translate3d(0px, 0px, 0px) scale(0, 1);
  -moz-transform: translate3d(0px, 0px, 0px) scale(0, 1);
  -ms-transform: translate3d(0px, 0px, 0px) scale(0, 1);
  -o-transform: translate3d(0px, 0px, 0px) scale(0, 1);
  transform-origin: top right;
  -webkit-backface-visibility: hidden;
  left: 0;
  top: 0;
}
#menu_site .close__menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #333333;
}
#menu_site .close__menu img {
  margin-right: 1rem;
}
#menu_site .jmenu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
#menu_site .jmenu_sitemap {
  text-transform: uppercase;
  margin-bottom: 30px;
}
#menu_site .menu_lang {
  list-style: none;
  margin-bottom: 60px;
  padding-left: 0;
}
#menu_site .menu_lang li {
  position: relative;
}
#menu_site .menu_lang li ul {
  margin-top: 0.75rem;
  list-style: none;
  padding-left: 0;
}
#menu_site .menu_lang li ul li:not(:last-child) {
  margin-bottom: 0.75rem;
}
#menu_site .menu_lang li a {
  color: #0166DC;
  font-family: "SVN-Gotham", sans-serif;
  font-weight: bold;
}
#menu_site .menu_lang li a img {
  height: 29px;
  width: 29px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0 0 2px rgba(51, 51, 51, 0.2);
}
#menu_site .menu_lang li a:hover {
  opacity: 1;
}
#menu_site .menu_lang li.current-lang a {
  opacity: 1;
}
#menu_site .jprimary__menu {
  list-style: none;
  padding-left: 0;
}
#menu_site .jprimary__menu li {
  margin-bottom: 24px;
}
#menu_site .jprimary__menu li a {
  display: block;
  padding: 10px 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #ffffff;
  font-weight: bold;
  color: #0166DC;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
}
#menu_site .jprimary__menu li.current-menu-item > a {
  color: #0166DC;
}
#menu_site .game_btn {
  margin-top: 15px;
}
#menu_site .game_btn a {
  display: block;
  padding: 6px 30px 6px 6px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #FF8271;
  background-image: linear-gradient(to right, #FFBDB7, #FF8271, #FFBDB7, #FF786C);
  background-size: 300% 100%;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.5s ease;
}
#menu_site .game_btn a img {
  height: 29px;
  width: 29px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#menu_site .game_btn a:hover {
  background-position: 100% 0;
}
#menu_site .jmenu__guide {
  margin-top: 48px;
  text-transform: uppercase;
  margin-bottom: 34px;
}
#menu_site .logo_site {
  max-height: 90px;
}
#menu_site .jmenu__contact {
  text-transform: uppercase;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  #menu_site {
    width: 80%;
  }
}

.overlay_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1031;
  background: #000000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.overlay_menu.menuShow {
  opacity: 0.5;
  visibility: visible;
}

#header_site {
  padding: 5px 0;
  transition: all 0.5s ease;
}
#header_site .menu_left {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 15px;
}
#header_site .menu_left li:not(:last-child) {
  margin-right: 30px;
}
#header_site .menu_left li a {
  display: block;
  padding: 10px 40px;
  min-width: 150px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #ffffff;
  font-weight: bold;
  color: #0166DC;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
}
#header_site .menu_left li a:hover {
  background: #FFB969;
}
#header_site .logo_site {
  display: block;
  position: relative;
}
#header_site .logo_site img {
  height: 100px;
  width: auto;
  transition: all 0.5s ease;
}
#header_site .menu_lang {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 15px;
}
#header_site .menu_lang > li {
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
  align-items: center;
  padding: 6px 30px 6px 6px;
  min-width: 150px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #ffffff;
  font-weight: bold;
  color: #0166DC;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
  position: relative;
  cursor: pointer;
}
#header_site .menu_lang > li img {
  height: 29px;
  width: 29px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0 0 2px rgba(51, 51, 51, 0.2);
}
#header_site .menu_lang > li ul {
  padding-top: 41px;
  position: absolute;
  list-style: none;
  left: 0;
  top: 100%;
  padding-left: 0;
  min-width: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.5s ease;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
  z-index: -1;
}
#header_site .menu_lang > li ul li {
  margin: 0;
}
#header_site .menu_lang > li ul li a {
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
  align-items: center;
  padding: 8px 6px 0 6px;
  background: #ffffff;
  color: #FF786C;
  white-space: nowrap;
  font-size: 11px;
}
#header_site .menu_lang > li ul li a:hover {
  color: #333333;
}
#header_site .menu_lang > li ul li:last-child a {
  padding-bottom: 8px;
}
#header_site .menu_lang > li:hover ul {
  visibility: visible;
  opacity: 1;
  top: 0;
}
#header_site .game_btn {
  margin-top: 15px;
}
#header_site .game_btn a {
  margin-left: 10px;
  display: block;
  padding: 6px 30px 6px 6px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #FF8271;
  background-image: linear-gradient(to right, #FFBDB7, #FF8271, #FFBDB7, #FF786C);
  background-size: 300% 100%;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.5s ease;
  min-width: 150px;
}
#header_site .game_btn a img {
  height: 29px;
  width: 29px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#header_site .game_btn a:hover {
  background-position: 100% 0;
}
#header_site .menu_bullet {
  background: #ffffff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
  display: flex;
  align-items: center;
  padding: 5px 20px 5px 5px;
}
#header_site .menu_bullet img {
  width: 30px;
  margin-right: 10px;
}
#header_site.scrolled {
  background: #ffffff;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
}
#header_site.scrolled .logo_site img {
  height: 71px;
}
@media (max-width: 991px) {
  #header_site .logo_site img {
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #header_site.scrolled .logo_site img {
    height: 40px;
  }
  #header_site .game_btn {
    margin-top: 0;
    margin-left: 0;
  }
  #header_site .game_btn a {
    padding: 6px;
    font-size: 12px;
    min-width: unset;
  }
}

.jbanner {
  position: relative;
  overflow: hidden;
  padding-bottom: 12px;
}
.jbanner__star {
  position: absolute;
  width: 3%;
  top: 20%;
  left: 10%;
}
.jbanner__star .img {
  position: relative;
  animation: float 5s linear infinite;
  -webkit-animation: float 5s linear infinite;
}
.jbanner__ball {
  position: absolute;
  width: 10%;
  top: 10%;
  right: 0;
  transform: translate(50%, -10%);
}
.jbanner__ball .img {
  position: relative;
  animation: float 10s linear infinite;
  -webkit-animation: float 10s linear infinite;
}
.jbanner__ptstruct {
  position: absolute;
  width: 8%;
  bottom: 30%;
  left: 0;
  transform: translateX(-15%);
}
.jbanner__ptstruct .img {
  position: relative;
  animation: float 7s linear infinite;
  -webkit-animation: float 7s linear infinite;
}
.jbanner__gridstruct {
  position: absolute;
  width: 25%;
  right: 0;
  bottom: 20%;
  transform: translate(25%, 0);
}
.jbanner__gridstruct .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jbanner__wrapper {
  position: relative;
  z-index: 1;
}
.jbanner__wrapper .jbanner__img {
  position: relative;
}
.jbanner__wrapper .jbanner__img .meta_info {
  position: absolute;
  width: 100%;
  bottom: 50%;
  color: #ffffff;
  transform: translateY(50%);
}
.jbanner__wrapper .jbanner__img .meta_info .j_title {
  line-height: 50px;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.jbanner__wrapper .jbanner__img .meta_info .j_title:before {
  content: attr(title);
  position: absolute;
  -webkit-text-stroke: 6px #0166DC;
  left: 0;
  top: 0;
  z-index: -1;
}
.jbanner__wrapper .jbanner__time {
  position: relative;
  transform: translateY(-50%);
}
.jbanner__wrapper .jbanner__time .j_title {
  position: absolute;
  bottom: calc(100% + 30px);
}
.jbanner__wrapper .jbanner__time .countdown {
  background: #ffffff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 17px 15px;
}
.jbanner__wrapper .jbanner__time .countdown span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background: #B0E6FF;
  color: #0094E8;
  font-weight: bold;
  font-family: "SVN-Gotham", sans-serif;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding-bottom: 5px;
}
.jbanner__wrapper .jbanner__time .countdown strong {
  text-transform: uppercase;
}
.jbanner__wrapper .jbanner__time .countdown--hours span {
  background: rgba(255, 172, 149, 0.4);
  color: #FF786C;
}
.jbanner__wrapper .jbanner__time .countdown--minute span {
  background: #C9FFCE;
  color: #36E266;
}
.jbanner__wrapper .jbanner__time .countdown--second span {
  background: #FFE3B8;
  color: #FF6E26;
}
.jbanner__foot .scroll_down a {
  display: flex;
  align-items: flex-end;
  color: #FF6E26;
}
.jbanner__foot .scroll_down a span {
  writing-mode: tb-rl;
  -webkit-writing-mode: tb-rl;
  -ms-writing-mode: tb-rl;
  transform: rotate(180deg);
}
.jbanner__foot .scroll_down a img {
  animation: scrollDown 1.5s linear forwards infinite;
  -webkit-animation: scrollDown 1.5s linear forwards infinite;
}
@media (max-width: 991px) {
  .jbanner__wrapper{
    padding-top: 30px;
  }
  .jbanner__wrapper .jbanner__img .meta_info {
    padding: 0.75rem;
    bottom: 0;
    transform: translateY(0);
  }
  .jbanner__wrapper .jbanner__time {
    transform: translateY(0);
  }
  .jbanner__wrapper .jbanner__time .j_title {
    position: static;
    bottom: 0;
  }
  .jbanner__wrapper .jbanner__time .countdown {
    margin-bottom: 0.5rem;
  }
}

.jrank {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgb(255, 255, 255) 40%);
}
.jrank::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100px;
  bottom: 0;
  left: 0;
  background: url(../images/bg-top.png) no-repeat bottom left/100% 100%;
  pointer-events: none;
  z-index: 3;
}
.jrank__ball {
  position: absolute;
  width: 15%;
  top: 20%;
  left: 0;
  transform: translate(-30%, -10%) rotate(90deg);
}
.jrank__ball .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jrank__circle {
  position: absolute;
  width: 20%;
  bottom: 0;
  right: 0;
  z-index: -1;
  transform: translate(25%, 30%);
}
.jrank__circle .img {
  position: relative;
  animation: float 7s linear infinite;
  -webkit-animation: float 7s linear infinite;
}
.jrank .j_title {
  margin-bottom: 1rem;
}
.jrank .j_title span {
  position: relative;
}
.jrank .j_title span::before {
  position: absolute;
  height: 20px;
  background: #FFF1E1;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.jrank__img {
  position: relative;
  z-index: 1;
}
.jrank__highlight {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.jrank__highlight__item {
  background: linear-gradient(238deg, #FFBDB7 0%, #FF8271 34%, #FF786C 100%);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border: 1px solid #f2f2f2;
  color: #ffffff;
  overflow: hidden;
  transition: all 0.5s ease;
}
.jrank__highlight__item:hover {
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
}
.jrank__highlight__item .jhead {
  padding: 25px 18px 8px;
  position: relative;
}
.jrank__highlight__item .jhead .jphone {
  margin-bottom: 10px;
}
.jrank__highlight__item .jhead .jfacebook a {
  color: #ffffff;
  display: inline-flex;
  height: 24px;
  padding-left: 34px;
  position: relative;
}
.jrank__highlight__item .jhead .jfacebook a::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/fb-pink.svg) no-repeat center center/contain;
  top: 0;
  left: 0;
}
.jrank__highlight__item .jhead .jnumber {
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: 0;
  right: 16px;
  background: url(../images/awardshape.svg) no-repeat center center/contain;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(50%);
}
.jrank__highlight__item .jresult {
  padding: 25px 18px;
  background: #ffffff;
  color: #333333;
}
.jrank__highlight__item .jresult img {
  max-height: 30px;
  max-width: 30px;
  height: auto;
  width: auto;
  margin-right: 5px;
}
.jrank__highlight__item--second {
  background: linear-gradient(303deg, #B0E6FF 0%, #03BEFF 100%);
}
.jrank__highlight__item--second .jhead .jfacebook a::before {
  background-image: url(../images/fb-blue.svg);
}
.jrank__highlight__item--second .jhead .jnumber {
  background-image: url(../images/awardshapeblue.svg);
}
.jrank__highlight__item--third {
  background: linear-gradient(221deg, #FFB969 0%, #FF821D 61%, #FF6E26 100%);
}
.jrank__highlight__item--third .jhead .jfacebook a::before {
  background-image: url(../images/fb-orange.svg);
}
.jrank__highlight__item--third .jhead .jnumber {
  background-image: url(../images/awardshapeorange.svg);
}
.jrank__list {
  padding: 30px 22px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border: 1px solid #f2f2f2;
  background: #ffffff;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.jrank__list table {
  margin: 0;
}
.jrank__list table thead tr th {
  color: #BDBDBD;
  font-size: 14px;
  font-weight: 500;
  padding: 0 8px 18px;
}
.jrank__list table thead tr th:not(:first-child) {
  text-align: center;
}
.jrank__list table thead tr th:nth-child(2){
  text-align: left;
}
.jrank__list table thead tr th:last-child {
  text-align: right;
}
.jrank__list table tbody tr th {
  padding: 8px;
  font-size: 24px;
  color: #FF786C;
  font-weight: 500;
  vertical-align: middle;
}
.jrank__list table tbody tr td {
  padding: 8px;
  vertical-align: middle;
}
.jrank__list table tbody tr td a {
  color: #0094E8;
  background: #C9F5FF;
  display: block;
  padding: 3px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.jrank__list table tbody tr td:not(:first-child) {
  text-align: center;
}
.jrank__list table tbody tr td:last-child {
  text-align: right;
}
.jrank__list table tbody tr td:nth-child(2){
  text-align: left;
}
.jrank__space {
  height: 100px;
}
@media (max-width: 991px) {
  .jrank {
    padding-top: 50px;
  }
  .jrank::before {
    height: 30px;
  }
  .jrank__img {
    text-align: center;
    height: 150px;
    position: relative;
    overflow: hidden;
  }
  .jrank__img img {
    width: 140px;
  }
  .jrank__highlight {
    margin-bottom: 30px;
  }
  .jrank__highlight__item {
    margin-bottom: 0.75rem;
  }
  .jrank__highlight__item .jhead {
    display: flex;
    flex-wrap: wrap;
  }
  .jrank__highlight__item .jhead .jname {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 0.75rem;
  }
  .jrank__highlight__item .jhead .jphone {
    flex: 0 0 50%;
    width: 50%;
  }
  .jrank__highlight__item .jhead .jfacebook {
    flex: 0 0 50%;
    width: 50%;
  }
  .jrank__list table thead tr th {
    white-space: nowrap;
  }
  .jrank__list table tbody tr th {
    font-size: 20px;
  }
  .jrank__list table tbody tr td {
    white-space: nowrap;
  }
}

.jvideo {
  position: relative;
  padding: 100px 0 200px;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 40%);
  overflow: hidden;
}
.jvideo::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100px;
  bottom: 0;
  left: 0;
  background: url(../images/bg-top.png) no-repeat bottom left/100% 100%;
  pointer-events: none;
}
.jvideo__ball {
  position: absolute;
  width: 16%;
  top: 8%;
  left: 50%;
  transform: translate(-30%, -10%) rotate(90deg);
}
.jvideo__ball .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jvideo__electron {
  position: absolute;
  width: 10%;
  bottom: 5%;
  right: 0;
  transform: translate(10%, 0);
  z-index: -1;
}
.jvideo__electron .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jvideo__gridstruct {
  position: absolute;
  width: 17%;
  top: 10%;
  left: 0;
  transform: translate(-30%, -10%);
}
.jvideo__gridstruct .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jvideo__wrapper {
  background: #ffffff;
  box-shadow: 5px 12px 40px 0px rgba(20, 34, 87, 0.12);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  position: relative;
  z-index: 1;
}
.jvideo__iframe {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
}
.jvideo__iframe .video_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #B0E6FF;
  z-index: 1;
  pointer-events: none;
}
.jvideo__iframe iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.jvideo__content {
  padding: 45px;
}
.jvideo__content .jlogo {
  margin-bottom: 15px;
}
.jvideo__content .jlogo img {
  height: 100px;
}
.jvideo__content .j__title {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .jvideo {
    padding: 50px 0 100px;
  }
  .jvideo::before {
    height: 30px;
  }
  .jvideo__content {
    padding: 30px 20px;
  }
}

.jproduct {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}
.jproduct .j_title {
  margin-bottom: 60px;
}
.jproduct .j_title span {
  position: relative;
}
.jproduct .j_title span::before {
  position: absolute;
  height: 20px;
  background: #FFF1E1;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.jproduct__first {
  padding: 0 0 200px;
  position: relative;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 40%);
}
.jproduct__first::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100px;
  bottom: 0;
  left: 0;
  background: url(../images/bg-top.png) no-repeat bottom left/100% 100%;
  pointer-events: none;
}
.jproduct__first .jproduct__electron {
  position: absolute;
  top: 5%;
  left: 0;
  width: 12%;
  transform: translate(-30%, 0);
}
.jproduct__first .jproduct__electron .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jproduct__first .jproduct__gridstruct {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25%;
  transform: translate(-50%, 0);
}
.jproduct__first .jproduct__gridstruct .img {
  position: relative;
  animation: float 3s linear infinite;
  -webkit-animation: float 3s linear infinite;
}
.jproduct__first .product__info h4 {
  margin-bottom: 40px;
}
.jproduct__first .product__info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.jproduct__first .product__info ul li {
  position: relative;
  padding-left: 40px;
  font-weight: 500;
}
.jproduct__first .product__info ul li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/list.svg) no-repeat center center/contain;
  left: 0;
  top: -5px;
}
.jproduct__first .product__info ul li:not(:last-child) {
  margin-bottom: 17px;
}
.jproduct__first .product__info .btn__wrapper {
  position: relative;
  display: inline-block;
}
.jproduct__first .product__info .btn__wrapper .jarrow {
  position: absolute;
  bottom: 70%;
  left: 110%;
  width: 50%;
}
.jproduct__first .jproduct__img {
  position: relative;
  z-index: 2;
}
.jproduct__first .jproduct__img__review {
  width: 80%;
  margin-left: auto;
  z-index: 2;
  position: relative;
}
.jproduct__first .jproduct__img__single {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 40%;
}
.jproduct__first .jproduct__img .line {
  position: absolute;
  top: 100%;
  width: 30%;
  left: 20%;
  z-index: 1;
}
.jproduct__first .jproduct__img .line svg {
  max-width: 100%;
  height: auto;
}
.jproduct__first .jproduct__img .line svg .cls-1 {
  fill: none;
  stroke: #88d8ff;
  stroke-miterlimit: 10;
  stroke-width: 4px;
  stroke-dasharray: 11.96 11.96;
  opacity: 0.7;
  isolation: isolate;
}
.jproduct__first .jproduct__img .line svg path {
  animation: runline 0.25s linear forwards infinite;
  -webkit-animation: runline 0.25s linear forwards infinite;
}
.jproduct__second {
  padding: 0 0 200px;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 40%);
  position: relative;
}
.jproduct__second::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100px;
  bottom: 0;
  left: 0;
  background: url(../images/bg-top.png) no-repeat bottom left/100% 100%;
  pointer-events: none;
}
.jproduct__second .jproduct__electron {
  position: absolute;
  left: 45%;
  top: 5%;
  width: 5%;
}
.jproduct__second .jproduct__electron .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jproduct__second .jproduct__electron2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10%;
  transform: translate(10%, 0);
}
.jproduct__second .jproduct__electron2 .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jproduct__second .jproduct__structline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 15%;
  transform: translate(-20%, 10%);
}
.jproduct__second .jproduct__structline .img {
  position: relative;
  animation: float 3s linear infinite;
  -webkit-animation: float 3s linear infinite;
}
.jproduct__second .product__info h4 {
  margin-bottom: 40px;
}
.jproduct__second .product__info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.jproduct__second .product__info ul li {
  position: relative;
  padding-left: 40px;
  font-weight: 500;
}
.jproduct__second .product__info ul li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/list.svg) no-repeat center center/contain;
  left: 0;
  top: -5px;
}
.jproduct__second .product__info ul li:not(:last-child) {
  margin-bottom: 17px;
}
.jproduct__second .product__info .btn__wrapper {
  position: relative;
  display: inline-block;
}
.jproduct__second .product__info .btn__wrapper .jarrow {
  position: absolute;
  bottom: 70%;
  left: 110%;
  width: 50%;
}
.jproduct__second .jproduct__img {
  position: relative;
  z-index: 2;
}
.jproduct__second .jproduct__img__review {
  width: 80%;
  margin-right: auto;
  z-index: 2;
  position: relative;
}
.jproduct__second .jproduct__img__single {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 15%;
  width: 35%;
}
.jproduct__second .jproduct__img .line {
  position: absolute;
  top: 95%;
  width: 50%;
  left: 50%;
  z-index: 1;
}
.jproduct__second .jproduct__img .line svg {
  max-width: 100%;
  height: auto;
}
.jproduct__second .jproduct__img .line svg .cls-1 {
  fill: none;
  stroke: #88d8ff;
  stroke-miterlimit: 10;
  stroke-width: 4px;
  stroke-dasharray: 11.96 11.96;
  opacity: 0.7;
  isolation: isolate;
}
.jproduct__second .jproduct__img .line svg path {
  animation: runline 0.25s linear forwards infinite;
  -webkit-animation: runline 0.25s linear forwards infinite;
}
.jproduct__third {
  padding: 0 0 200px;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 40%);
  position: relative;
}
.jproduct__third::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100px;
  bottom: 0;
  left: 0;
  background: url(../images/bg-top.png) no-repeat bottom left/100% 100%;
  pointer-events: none;
}
.jproduct__third .jproduct__circle {
  position: absolute;
  left: 10%;
  bottom: 18px;
  width: 20%;
  z-index: -1;
}
.jproduct__third .jproduct__circle .img {
  position: relative;
  animation: float 3s linear infinite;
  -webkit-animation: float 3s linear infinite;
}
.jproduct__third .jproduct__electron {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 8%;
  transform: translate(15%, 50%);
}
.jproduct__third .jproduct__electron .img {
  position: relative;
  animation: float 5s linear infinite;
  -webkit-animation: float 5s linear infinite;
}
.jproduct__third .product__info h4 {
  margin-bottom: 40px;
}
.jproduct__third .product__info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.jproduct__third .product__info ul li {
  position: relative;
  padding-left: 40px;
  font-weight: 500;
}
.jproduct__third .product__info ul li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/list.svg) no-repeat center center/contain;
  left: 0;
  top: -5px;
}
.jproduct__third .product__info ul li:not(:last-child) {
  margin-bottom: 17px;
}
.jproduct__third .product__info .btn__wrapper {
  position: relative;
  display: inline-block;
}
.jproduct__third .product__info .btn__wrapper .jarrow {
  position: absolute;
  bottom: 70%;
  left: 110%;
  width: 50%;
}
.jproduct__third .jproduct__img {
  position: relative;
  z-index: 2;
}
.jproduct__third .jproduct__img__review {
  width: 80%;
  margin-left: auto;
  z-index: 2;
  position: relative;
}
.jproduct__third .jproduct__img__single {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 50%;
  width: 45%;
  transform: translateY(50%);
}
.jproduct__third .jproduct__img .line {
  position: absolute;
  top: 90%;
  width: 40%;
  right: 65%;
  z-index: 1;
}
.jproduct__third .jproduct__img .line svg {
  max-width: 100%;
  height: auto;
}
.jproduct__third .jproduct__img .line svg .cls-1 {
  fill: none;
  stroke: #88d8ff;
  stroke-miterlimit: 10;
  stroke-width: 4px;
  stroke-dasharray: 11.96 11.96;
  opacity: 0.7;
  isolation: isolate;
}
.jproduct__third .jproduct__img .line svg path {
  animation: runline 0.25s linear forwards infinite;
  -webkit-animation: runline 0.25s linear forwards infinite;
}
.jproduct__fourth {
  padding: 0 0 200px;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 40%);
  position: relative;
}
.jproduct__fourth::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100px;
  bottom: 0;
  left: 0;
  background: url(../images/bg-top.png) no-repeat bottom left/100% 100%;
  pointer-events: none;
}
.jproduct__fourth .jproduct__structline {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15%;
  transform: translate(15%, 10%);
}
.jproduct__fourth .jproduct__structline .img {
  position: relative;
  animation: float 4s linear infinite;
  -webkit-animation: float 4s linear infinite;
}
.jproduct__fourth .jproduct__shortstruct {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 6%;
  transform: translate(-10%, 0);
}
.jproduct__fourth .jproduct__shortstruct .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jproduct__fourth .product__info h4 {
  margin-bottom: 40px;
}
.jproduct__fourth .product__info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.jproduct__fourth .product__info ul li {
  position: relative;
  padding-left: 40px;
  font-weight: 500;
}
.jproduct__fourth .product__info ul li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/list.svg) no-repeat center center/contain;
  left: 0;
  top: -5px;
}
.jproduct__fourth .product__info ul li:not(:last-child) {
  margin-bottom: 17px;
}
.jproduct__fourth .product__info .btn__wrapper {
  position: relative;
  display: inline-block;
}
.jproduct__fourth .product__info .btn__wrapper .jarrow {
  position: absolute;
  bottom: 70%;
  left: 110%;
  width: 50%;
}
.jproduct__fourth .jproduct__img {
  position: relative;
}
.jproduct__fourth .jproduct__img__review {
  width: 80%;
  margin-right: auto;
  z-index: 2;
  position: relative;
}
.jproduct__fourth .jproduct__img__single {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 35%;
}
.jproduct__fourth .jproduct__img .line {
  position: absolute;
  top: 80%;
  width: 55%;
  left: 55%;
  z-index: 1;
}
.jproduct__fourth .jproduct__img .line svg {
  max-width: 100%;
  height: auto;
}
.jproduct__fourth .jproduct__img .line svg .cls-1 {
  fill: none;
  stroke: #88d8ff;
  stroke-miterlimit: 10;
  stroke-width: 4px;
  stroke-dasharray: 11.96 11.96;
  opacity: 0.7;
  isolation: isolate;
}
.jproduct__fourth .jproduct__img .line svg path {
  animation: runline 0.25s linear forwards infinite;
  -webkit-animation: runline 0.25s linear forwards infinite;
}
.jproduct__fifth {
  padding: 0 0 200px;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 40%);
  position: relative;
}
.jproduct__fifth::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100px;
  bottom: 0;
  left: 0;
  background: url(../images/bg-top.png) no-repeat bottom left/100% 100%;
  pointer-events: none;
}
.jproduct__fifth .jproduct__ball {
  position: absolute;
  left: 0;
  top: 0;
  width: 15%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.jproduct__fifth .jproduct__ball .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jproduct__fifth .jproduct__circle {
  position: absolute;
  left: 35%;
  top: 5%;
  width: 8%;
}
.jproduct__fifth .jproduct__circle .img {
  position: relative;
  animation: rotateElement 20s linear infinite;
  -webkit-animation: rotateElement 20s linear infinite;
}
.jproduct__fifth .product__info h4 {
  margin-bottom: 40px;
}
.jproduct__fifth .product__info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.jproduct__fifth .product__info ul li {
  position: relative;
  padding-left: 40px;
  font-weight: 500;
}
.jproduct__fifth .product__info ul li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/list.svg) no-repeat center center/contain;
  left: 0;
  top: -5px;
}
.jproduct__fifth .product__info ul li:not(:last-child) {
  margin-bottom: 17px;
}
.jproduct__fifth .product__info .btn__wrapper {
  position: relative;
  display: inline-block;
}
.jproduct__fifth .product__info .btn__wrapper .jarrow {
  position: absolute;
  bottom: 70%;
  left: 110%;
  width: 60%;
}
.jproduct__fifth .jproduct__img {
  position: relative;
  z-index: 2;
}
.jproduct__fifth .jproduct__img__review {
  width: 80%;
  margin-left: auto;
  z-index: 2;
  position: relative;
}
.jproduct__fifth .jproduct__img__single {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 26%;
}
.jproduct__fifth .jproduct__img .line {
  position: absolute;
  top: 90%;
  width: 55%;
  right: 50%;
  z-index: 1;
}
.jproduct__fifth .jproduct__img .line svg {
  max-width: 100%;
  height: auto;
}
.jproduct__fifth .jproduct__img .line svg .cls-1 {
  fill: none;
  stroke: #88d8ff;
  stroke-miterlimit: 10;
  stroke-width: 4px;
  stroke-dasharray: 11.96 11.96;
  opacity: 0.7;
  isolation: isolate;
}
.jproduct__fifth .jproduct__img .line svg path {
  animation: runline 0.25s linear forwards infinite;
  -webkit-animation: runline 0.25s linear forwards infinite;
}
.jproduct__sixth {
  padding: 0 0 500px;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 50%);
  position: relative;
}
.jproduct__sixth .jproduct__structline {
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
  transform: translate(0, -50%) rotate(10deg);
}
.jproduct__sixth .jproduct__structline .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jproduct__sixth .jproduct__structline2 {
  position: absolute;
  left: 60%;
  bottom: 20%;
  width: 12%;
  transform: rotate(165deg);
}
.jproduct__sixth .jproduct__structline2 .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jproduct__sixth .jproduct__structline3 {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 12%;
  transform: translate(-20%, 0);
}
.jproduct__sixth .jproduct__structline3 .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jproduct__sixth .product__info h4 {
  margin-bottom: 40px;
}
.jproduct__sixth .product__info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.jproduct__sixth .product__info ul li {
  position: relative;
  padding-left: 40px;
  font-weight: 500;
}
.jproduct__sixth .product__info ul li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/list.svg) no-repeat center center/contain;
  left: 0;
  top: -5px;
}
.jproduct__sixth .product__info ul li:not(:last-child) {
  margin-bottom: 17px;
}
.jproduct__sixth .product__info .btn__wrapper {
  position: relative;
  display: inline-block;
}
.jproduct__sixth .product__info .btn__wrapper .jarrow {
  position: absolute;
  bottom: 70%;
  left: 110%;
  width: 50%;
}
.jproduct__sixth .jproduct__img {
  position: relative;
  z-index: 2;
}
.jproduct__sixth .jproduct__img__review {
  width: 80%;
  margin-right: auto;
  z-index: 2;
  position: relative;
}
.jproduct__sixth .jproduct__img__single {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  z-index: 3;
}
.jproduct__sixth .jproduct__img .line {
  position: absolute;
  top: 80%;
  width: 55%;
  left: 55%;
  z-index: 1;
}
.jproduct__sixth .jproduct__img .line svg {
  max-width: 100%;
  height: auto;
}
.jproduct__sixth .jproduct__img .line svg .cls-1 {
  fill: none;
  stroke: #88d8ff;
  stroke-miterlimit: 10;
  stroke-width: 4px;
  stroke-dasharray: 11.96 11.96;
  opacity: 0.7;
  isolation: isolate;
}
.jproduct__sixth .jproduct__img .line svg path {
  animation: runline 0.25s linear forwards infinite;
  -webkit-animation: runline 0.25s linear forwards infinite;
}
@media (max-width: 991px) {
  .jproduct {
    padding-top: 0px;
  }
  .jproduct__first {
    padding: 50px 0 100px;
  }
  .jproduct__first::before {
    height: 30px;
  }
  .jproduct__first .j_title {
    margin-bottom: 30px;
  }
  .jproduct__first .product__info h4 {
    margin-bottom: 20px;
  }
  .jproduct__first .jproduct__img {
    margin-bottom: 30px;
  }
  .jproduct__first .jproduct__img .line {
    display: none;
  }
  .jproduct__second {
    padding: 50px 0 100px;
  }
  .jproduct__second::before {
    height: 30px;
  }
  .jproduct__second .j_title {
    margin-bottom: 30px;
  }
  .jproduct__second .product__info h4 {
    margin-bottom: 20px;
  }
  .jproduct__second .jproduct__img {
    margin-bottom: 30px;
  }
  .jproduct__second .jproduct__img .line {
    display: none;
  }
  .jproduct__third {
    padding: 50px 0 100px;
  }
  .jproduct__third::before {
    height: 30px;
  }
  .jproduct__third .j_title {
    margin-bottom: 30px;
  }
  .jproduct__third .product__info h4 {
    margin-bottom: 20px;
  }
  .jproduct__third .jproduct__img {
    margin-bottom: 30px;
  }
  .jproduct__third .jproduct__img .line {
    display: none;
  }
  .jproduct__fourth {
    padding: 50px 0 100px;
  }
  .jproduct__fourth::before {
    height: 30px;
  }
  .jproduct__fourth .j_title {
    margin-bottom: 30px;
  }
  .jproduct__fourth .product__info h4 {
    margin-bottom: 20px;
  }
  .jproduct__fourth .jproduct__img {
    margin-bottom: 30px;
  }
  .jproduct__fourth .jproduct__img .line {
    display: none;
  }
  .jproduct__fifth {
    padding: 50px 0 100px;
  }
  .jproduct__fifth::before {
    height: 30px;
  }
  .jproduct__fifth .j_title {
    margin-bottom: 30px;
  }
  .jproduct__fifth .product__info h4 {
    margin-bottom: 20px;
  }
  .jproduct__fifth .jproduct__img {
    margin-bottom: 30px;
  }
  .jproduct__fifth .jproduct__img .line {
    display: none;
  }
  .jproduct__sixth {
    padding: 50px 0 100px;
  }
  .jproduct__sixth::before {
    height: 30px;
  }
  .jproduct__sixth .j_title {
    margin-bottom: 30px;
  }
  .jproduct__sixth .product__info h4 {
    margin-bottom: 20px;
  }
  .jproduct__sixth .jproduct__img {
    margin-bottom: 30px;
  }
  .jproduct__sixth .jproduct__img .line {
    display: none;
  }
}

.jrule {
  position: relative;
  padding: 80px 0 500px;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 90%);
}
.jrule__ball {
  position: absolute;
  width: 10%;
  left: 10%;
  top: 0;
}
.jrule__ball .img {
  position: relative;
  animation: float 11s linear infinite;
  -webkit-animation: float 11s linear infinite;
}
.jrule__ptstruct {
  position: absolute;
  width: 20%;
  right: 18px;
  top: 0;
}
.jrule__ptstruct .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jrule__electron {
  position: absolute;
  width: 10%;
  left: 0;
  top: 50%;
  transform: translateX(-30%);
}
.jrule__electron .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jrule__circle {
  position: absolute;
  width: 10%;
  right: 18px;
  bottom: 10%;
}
.jrule__circle .img {
  position: relative;
  animation: rotateElement 20s linear infinite;
  -webkit-animation: rotateElement 20s linear infinite;
}
.jrule__circle2 {
  position: absolute;
  width: 7%;
  right: 5%;
  top: 20%;
}
.jrule__circle2 .img {
  position: relative;
  animation: rotateElement 20s linear infinite;
  -webkit-animation: rotateElement 20s linear infinite;
}
.jrule__shortstruct {
  position: absolute;
  width: 7%;
  left: 0;
  top: 25%;
}
.jrule__shortstruct .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jrule__structline {
  position: absolute;
  width: 10%;
  right: 18px;
  top: 55%;
}
.jrule__structline .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jrule .j_title {
  margin-bottom: 70px;
}
.jrule .j_title span {
  position: relative;
}
.jrule .j_title span::before {
  position: absolute;
  height: 20px;
  background: #FFF1E1;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.jrule__nav {
  position: sticky;
  top: 82px;
  transition: all 0.5s ease;
}
.jrule__nav ul {
  list-style: none;
  padding-left: 0;
}
.jrule__nav ul li:not(:last-child) {
  margin-bottom: 20px;
}
.jrule__nav ul li a {
  border: 1px solid var(--gray-6, #F2F2F2);
  background: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  align-items: center;
  position: relative;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
}
.jrule__nav ul li a .nav-icon {
  flex: 0 0 65px;
  width: 65px;
  margin-right: 15px;
}
.jrule__nav ul li a .nav-icon figure {
  margin: 0;
  width: 65px;
  height: 65px;
  padding: 8px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.jrule__nav ul li a .nav-icon figure img {
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
  filter: drop-shadow(5px 5px 5px rgba(20, 34, 87, 0.1));
}
.jrule__nav ul li.active a {
  background: linear-gradient(221deg, #FFB969 0%, #FF821D 61%, #FF6E26 100%);
  filter: drop-shadow(5px 4px 20px rgba(20, 34, 87, 0.12));
  color: #ffffff;
}
.jrule__nav ul li.active a::after {
  opacity: 1;
}
.jrule__content {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: #ffffff;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
  padding: 50px 35px;
  position: relative;
}
.jrule__content #giai-thuong {
  margin-bottom: 80px;
}
.jrule__content #luu-y {
  margin-top: 70px;
}
.jrule__content #luu-y .img_noted {
  position: relative;
}
.jrule__content #luu-y .img_noted .img_abs {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 80%;
}
.jrule__content #luu-y .img_noted .img_abs img {
  max-height: 140px;
}
.jrule__content .item__top--1 {
  display: flex;
  align-items: center;
  background: url(../images/bgtop1.svg) no-repeat right center/85% auto;
}
.jrule__content .item__top--1 .img_top {
  flex: 0 0 50%;
  width: 50%;
}
.jrule__content .item__top--1 .content_top {
  text-align: center;
  padding: 0 30px 0 15px;
  position: relative;
}
.jrule__content .item__top--1 .content_top .amount {
  font-size: 45px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  background: url(../images/pop1.png) no-repeat bottom right/contain;
  padding: 30px 20px 3px 55px;
  bottom: 100%;
  right: 100%;
  transform: translateX(50%);
}
.jrule__content .item__top--1 .content_top .ff-title {
  font-size: 30px;
  color: #FF786C;
  margin-bottom: 18px;
}
.jrule__content .item__top--1 .content_top .award {
  font-size: 20px;
}
.jrule__content .item__top--2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: url(../images/bgtop2.svg) no-repeat bottom center/100% auto;
  margin-bottom: 60px;
}
.jrule__content .item__top--2 .img_top {
  flex: 0 0 40%;
  width: 40%;
}
.jrule__content .item__top--2 .content_top {
  flex: 0 0 50%;
  text-align: center;
  padding: 0 15px;
  position: relative;
}
.jrule__content .item__top--2 .content_top .amount {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  background: url(../images/pop2.png) no-repeat bottom right/contain;
  padding: 25px 20px 7px 45px;
  bottom: 100%;
  left: 10%;
}
.jrule__content .item__top--2 .content_top .ff-title {
  font-size: 20px;
  color: #0166DC;
  margin-bottom: 10px;
}
.jrule__content .item__top--3 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: url(../images/bgtop3.svg) no-repeat bottom right/90% auto;
  margin-bottom: 60px;
}
.jrule__content .item__top--3 .img_top {
  flex: 0 0 60%;
  width: 60%;
  padding-bottom: 60px;
}
.jrule__content .item__top--3 .content_top {
  flex: 0 0 40%;
  text-align: center;
  padding: 0 15px;
  position: relative;
}
.jrule__content .item__top--3 .content_top .amount {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  background: url(../images/pop3.png) no-repeat bottom right/contain;
  padding: 25px 20px 7px 45px;
  bottom: 100%;
  left: 0;
}
.jrule__content .item__top--3 .content_top .ff-title {
  font-size: 20px;
  color: #FF786C;
  margin-bottom: 10px;
}
.jrule__content .item__top--4 {
  background: url(../images/bgtop4.svg) no-repeat bottom center/100% auto;
}
.jrule__content .item__top--4 .img_top {
  width: 50%;
}
.jrule__content .item__top--4 .img_top img {
  max-height: 170px;
  width: auto;
}
.jrule__content .item__top--4 .content_top {
  text-align: center;
  padding: 15px;
  position: relative;
}
.jrule__content .item__top--4 .content_top .amount {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  background: url(../images/pop4.png) no-repeat bottom right/contain;
  padding: 25px 20px 7px 45px;
  bottom: 100%;
  left: 50%;
}
.jrule__content .item__top--4 .content_top .ff-title {
  color: #36E266;
  margin-bottom: 10px;
}
.jrule__content .item__top--5 {
  background: url(../images/bgtop5.svg) no-repeat bottom center/100% auto;
}
.jrule__content .item__top--5 .img_top {
  width: 50%;
}
.jrule__content .item__top--5 .img_top img {
  max-height: 170px;
  width: auto;
}
.jrule__content .item__top--5 .content_top {
  text-align: center;
  padding: 15px;
  position: relative;
}
.jrule__content .item__top--5 .content_top .amount {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  background: url(../images/pop5.png) no-repeat bottom right/contain;
  padding: 25px 20px 7px 45px;
  bottom: 100%;
  left: 50%;
}
.jrule__content .item__top--5 .content_top .ff-title {
  color: #FF821D;
  margin-bottom: 10px;
}
.jrule__content .item__top--6 {
  background: url(../images/bgtop6.svg) no-repeat bottom center/100% auto;
}
.jrule__content .item__top--6 .img_top {
  width: 50%;
}
.jrule__content .item__top--6 .img_top img {
  max-height: 170px;
  width: auto;
}
.jrule__content .item__top--6 .content_top {
  text-align: center;
  padding: 15px;
  position: relative;
}
.jrule__content .item__top--6 .content_top .amount {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  background: url(../images/pop6.png) no-repeat bottom right/contain;
  padding: 25px 20px 7px 45px;
  bottom: 100%;
  left: 50%;
}
.jrule__content .item__top--6 .content_top .ff-title {
  color: #0166DC;
  margin-bottom: 10px;
}
.jrule__content .item__top--7 {
  background: url(../images/bgaward.png) no-repeat bottom center/100% 65%;
}
.jrule__content .item__top--7 .img_top {
  width: 50%;
  text-align: center;
}
.jrule__content .item__top--7 .img_top img {
  max-height: 170px;
  width: auto;
}
.jrule__content .item__top--7 .content_top {
  text-align: center;
  padding: 15px;
  position: relative;
}
.jrule__content .item__top--7 .content_top .amount {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  background: url(../images/pop6.png) no-repeat bottom right/contain;
  padding: 25px 20px 7px 45px;
  bottom: 100%;
  left: 50%;
}
.jrule__content .item__top--7 .content_top .ff-title {
  color: #0166DC;
  margin-bottom: 10px;
}

.jrule__content .item__top--4 .content_top .award,
.jrule__content .item__top--5 .content_top .award,
.jrule__content .item__top--6 .content_top .award{
  min-height: 42px;
}
.jrule__content .item__top .content_top .award p{
  margin-bottom: 0;
}
.jrule__content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.jrule__content ul li {
  font-weight: 500;
  padding-left: 38px;
  position: relative;
}
.jrule__content ul li::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/bullet.svg) no-repeat center center/contain;
  left: 0;
  top: 0px;
}
.jrule__content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.jrule__content .box_content {
  background: #FFF1E1;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 70px 38px 0;
}
.jrule .btn_submit {
  transition: all 0.5s ease;
  background: #FF821D;
  background-image: linear-gradient(to right, #FFB969, #FF821D, #FFB969, #FF6E26);
  background-size: 300% 100%;
  font-weight: bold;
  display: inline-block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: relative;
}
.jrule .btn_submit::before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../images/btn-arrow.svg) no-repeat center center/contain;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.jrule .btn_submit .btn {
  padding: 7px 48px 7px 30px;
  color: #ffffff;
  font-size: 14px;
  line-height: 27px;
  text-transform: uppercase;
  font-weight: bold;
}
.jrule .btn_submit:hover {
  background-position: 100% 0;
}
/* .jrule .btn_submit:hover::before {
  transform: translateY(-50%) rotateX(180deg);
} */
@media (max-width: 991px) {
  .jrule {
    padding: 40px 0 100px;
  }
  .jrule .j_title {
    margin-bottom: 40px;
  }
  .jrule__nav {
    position: fixed;
    top: unset;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 11;
    padding: 0 0.75rem;
  }
  .jrule__nav ul {
    margin-bottom: 0;
    display: flex;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
  .jrule__nav ul li {
    flex: 1 0 0%;
  }
  .jrule__nav ul li:not(:last-child) {
    margin-bottom: 0;
  }
  .jrule__nav ul li a {
    display: block;
    font-size: 10px;
    text-align: center;
    height: 100%;
    padding: 5px;
  }
  .jrule__nav ul li a .nav-icon {
    margin-right: 0;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .jrule__nav ul li a .nav-icon figure {
    margin: 0 auto;
    width: 40px;
    height: 40px;
  }
  .jrule__nav ul li a .nav-icon figure img {
    max-width: 32px;
    max-height: 32px;
  }
  .jrule__content {
    padding: 2rem 0.75rem;
  }
  .jrule__content #giai-thuong {
    margin-bottom: 2rem;
  }
  .jrule__content .item__top--1 {
    display: block;
    padding-bottom: 30px;
    margin-bottom: 20px;
    background: url(../images/bgtop1.svg) no-repeat bottom center/100% auto;
  }
  .jrule__content .item__top--1 .img_top {
    width: 50%;
  }
  .jrule__content .item__top--1 .img_top img {
    max-height: 170px;
    width: auto;
  }
  .jrule__content .item__top--1 .content_top {
    text-align: center;
    padding: 15px;
    position: relative;
  }
  .jrule__content .item__top--1 .content_top .amount {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    padding: 25px 20px 7px 45px;
    bottom: 100%;
    left: 50%;
    right: unset;
    background: url(../images/pop1.png) no-repeat bottom right/contain;
    transform: translateX(0);
  }
  .jrule__content .item__top--1 .content_top .ff-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .jrule__content .item__top--1 .content_top .award {
    font-size: 14px;
  }
  .jrule__content .item__top--2 {
    display: block;
    margin-bottom: 30px;
    background: url(../images/bgtop2.svg) no-repeat bottom center/100% auto;
  }
  .jrule__content .item__top--2 .img_top {
    width: 50%;
  }
  .jrule__content .item__top--2 .img_top img {
    max-height: 170px;
    width: auto;
  }
  .jrule__content .item__top--2 .content_top {
    text-align: center;
    padding: 15px;
    position: relative;
  }
  .jrule__content .item__top--2 .content_top .amount {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    padding: 25px 20px 7px 45px;
    bottom: 100%;
    left: 50%;
    background: url(../images/pop2.png) no-repeat bottom right/contain;
    transform: translateX(0);
  }
  .jrule__content .item__top--2 .content_top .ff-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .jrule__content .item__top--2 .content_top .award {
    font-size: 14px;
  }
  .jrule__content .item__top--3 {
    display: block;
    margin-bottom: 30px;
    background: url(../images/bgtop3.svg) no-repeat bottom center/100% auto;
  }
  .jrule__content .item__top--3 .img_top {
    width: 50%;
    padding-bottom: 0;
  }
  .jrule__content .item__top--3 .img_top img {
    max-height: 170px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .jrule__content .item__top--3 .content_top {
    text-align: center;
    padding: 15px;
    position: relative;
  }
  .jrule__content .item__top--3 .content_top .amount {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    padding: 25px 20px 7px 45px;
    bottom: 100%;
    left: 50%;
    background: url(../images/pop3.png) no-repeat bottom right/contain;
    transform: translateX(0);
  }
  .jrule__content .item__top--3 .content_top .ff-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .jrule__content .item__top--3 .content_top .award {
    font-size: 14px;
  }
  .jrule__content .item__top--4 {
    margin-bottom: 30px;
  }
  .jrule__content .item__top--4 .img_top {
    width: 50%;
  }
  .jrule__content .item__top--5 {
    margin-bottom: 30px;
  }
  .jrule__content .item__top--5 .img_top {
    width: 50%;
  }
  .jrule__content .item__top--6 {
    margin-bottom: 30px;
  }
  .jrule__content .item__top--6 .img_top {
    width: 50%;
  }
  .jrule__content .item__top--7 {
    background: url(../images/bgtop4.svg) no-repeat bottom center/100% auto;
    margin-bottom: 30px;
  }
  .jrule__content .item__top--7 .img_top {
    width: 50%;
    text-align: left;
  }
  .jrule__content .img_noted,
  .jrule__content .img_rule {
    margin-bottom: 1rem;
    text-align: center;
  }
  .jrule__content .img_noted img,
  .jrule__content .img_rule img {
    max-width: 50%;
    margin: 0 auto;
  }
  .jrule__content .box_content {
    padding: 70px 30px 30px;
  }
}

.jregister {
  position: relative;
  padding: 80px 0 500px;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 90%);
}
.jregister__ball {
  position: absolute;
  width: 10%;
  left: 10%;
  top: 0;
}
.jregister__ball .img {
  position: relative;
  animation: float 11s linear infinite;
  -webkit-animation: float 11s linear infinite;
}
.jregister__ptstruct {
  position: absolute;
  width: 20%;
  right: 18px;
  top: 0;
}
.jregister__ptstruct .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jregister__electron {
  position: absolute;
  width: 10%;
  left: 0;
  top: 50%;
  transform: translateX(-30%);
}
.jregister__electron .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jregister__circle {
  position: absolute;
  width: 10%;
  right: 18px;
  bottom: 10%;
}
.jregister__circle .img {
  position: relative;
  animation: rotateElement 20s linear infinite;
  -webkit-animation: rotateElement 20s linear infinite;
}
.jregister__circle2 {
  position: absolute;
  width: 7%;
  right: 5%;
  top: 20%;
}
.jregister__circle2 .img {
  position: relative;
  animation: rotateElement 20s linear infinite;
  -webkit-animation: rotateElement 20s linear infinite;
}
.jregister__shortstruct {
  position: absolute;
  width: 7%;
  left: 0;
  top: 25%;
}
.jregister__shortstruct .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jregister__structline {
  position: absolute;
  width: 10%;
  right: 18px;
  top: 55%;
}
.jregister__structline .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jregister .j_title {
  margin-bottom: 70px;
}
.jregister .j_title span {
  position: relative;
}
.jregister .j_title span::before {
  position: absolute;
  height: 20px;
  background: #FFF1E1;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.jregister__form {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: #ffffff;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
  padding: 50px 35px;
  position: relative;
}
.jregister__form label {
  font-weight: bold;
  margin-bottom: 5px;
}
.jregister__form .form-control {
  background: #FFF1E1;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  box-shadow: none;
  border: 0;
  padding: 7px 20px;
  resize: none;
  font-size: 14px;
}
.jregister__form input[type=radio] {
  display: none;
}
.jregister__form input[type=radio] + label {
  padding-left: 38px;
  position: relative;
  cursor: pointer;
}
.jregister__form input[type=radio] + label::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background: url(../images/radio.png) no-repeat top center/20px auto;
  left: 0;
  transition: all 0.5s ease;
}
.jregister__form input[type=radio]:checked + label::before {
  background-position: bottom center;
}
.jregister__form .btn_submit {
  transition: all 0.5s ease;
  background: #FF821D;
  background-image: linear-gradient(to right, #FFB969, #FF821D, #FFB969, #FF6E26);
  background-size: 300% 100%;
  font-weight: bold;
  display: inline-block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: relative;
}
.jregister__form .btn_submit::before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../images/btn-arrow.svg) no-repeat center center/contain;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.jregister__form .btn_submit .btn {
  padding: 7px 48px 7px 30px;
  color: #ffffff;
  font-size: 14px;
  line-height: 27px;
  text-transform: uppercase;
  font-weight: bold;
}
.jregister__form .btn_submit:hover {
  background-position: 100% 0;
}
/* .jregister__form .btn_submit:hover::before {
  transform: translateY(-50%) rotateX(180deg);
} */
.jregister__img {
  position: relative;
}
.jregister__img .form_text {
  position: absolute;
  width: 150px;
  height: 120px;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background: url(../images/bgtext.png) no-repeat center center/contain;
  padding: 30px 15px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .jregister {
    padding: 40px 0 100px;
  }
  .jregister .j_title {
    margin-bottom: 40px;
  }
  .jregister__form {
    padding: 30px 20px;
  }
  .jregister__img {
    display: none;
  }
}

.jselectfaq {
  position: relative;
  padding: 80px 0 500px;
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 90%);
}
.jselectfaq__ball {
  position: absolute;
  width: 10%;
  left: 10%;
  top: 0;
}
.jselectfaq__ball .img {
  position: relative;
  animation: float 11s linear infinite;
  -webkit-animation: float 11s linear infinite;
}
.jselectfaq__ptstruct {
  position: absolute;
  width: 20%;
  right: 18px;
  top: 0;
}
.jselectfaq__ptstruct .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jselectfaq__electron {
  position: absolute;
  width: 10%;
  left: 0;
  top: 50%;
  transform: translateX(-30%);
}
.jselectfaq__electron .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jselectfaq__circle {
  position: absolute;
  width: 10%;
  right: 18px;
  bottom: 10%;
}
.jselectfaq__circle .img {
  position: relative;
  animation: rotateElement 20s linear infinite;
  -webkit-animation: rotateElement 20s linear infinite;
}
.jselectfaq__circle2 {
  position: absolute;
  width: 7%;
  right: 5%;
  top: 20%;
}
.jselectfaq__circle2 .img {
  position: relative;
  animation: rotateElement 20s linear infinite;
  -webkit-animation: rotateElement 20s linear infinite;
}
.jselectfaq__shortstruct {
  position: absolute;
  width: 7%;
  left: 0;
  top: 25%;
}
.jselectfaq__shortstruct .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jselectfaq__structline {
  position: absolute;
  width: 10%;
  right: 18px;
  top: 55%;
}
.jselectfaq__structline .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jselectfaq__structline2 {
  position: absolute;
  width: 17%;
  right: 20%;
  top: 17%;
}
.jselectfaq__structline2 .img {
  position: relative;
  animation: float 4s linear infinite;
  -webkit-animation: float 4s linear infinite;
}
.jselectfaq__hello {
  width: 300px;
  position: relative;
  pointer-events: none;
}
.jselectfaq__hello .hand {
  position: absolute;
  width: 40%;
  z-index: 11;
  bottom: -37%;
  right: 65%;
}
.jselectfaq__quote {
  width: 200px;
  height: 155px;
  display: flex;
  flex-direction: column;
  background: url(../images/bgquote.png) no-repeat left bottom/contain;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding: 15px;
  position: relative;
  z-index: 1;
}
.jselectfaq__quote .fs-20 {
  line-height: normal;
}
.jselectfaq .j_title {
  margin-bottom: 50px;
}
.jselectfaq .j_title span {
  position: relative;
}
.jselectfaq .j_title span::before {
  position: absolute;
  height: 20px;
  background: #FFF1E1;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.jselectfaq__list {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: #ffffff;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
  padding: 50px 35px;
  position: relative;
}
.jselectfaq__list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.jselectfaq__list ul li:not(:last-child) {
  margin-bottom: 20px;
}
.jselectfaq__list ul li input {
  display: none;
}
.jselectfaq__list ul li input + label {
  margin: 0;
  position: relative;
  width: 180px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  padding: 15px 34px 15px 74px;
  background: linear-gradient(303deg, #B0E6FF 0%, #03BEFF 100%);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  cursor: pointer;
}
.jselectfaq__list ul li input + label::before {
  position: absolute;
  content: "";
  height: 25px;
  width: 25px;
  background: url(../images/checked.png) no-repeat bottom center/25px auto;
  left: 34px;
  top: 15px;
  transition: all 0.5s ease;
}
.jselectfaq__list ul li input:checked + label {
  background: linear-gradient(221deg, #FFB969 0%, #FF821D 61%, #FF6E26 100%);
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
}
.jselectfaq__list ul li input:checked + label::before {
  background-position: top center;
}
.jselectfaq__list ul li input:disabled + label {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  cursor: not-allowed;
}
.jselectfaq__list .btn_submit {
  transition: all 0.5s ease;
  background: #FF821D;
  background-image: linear-gradient(to right, #FFB969, #FF821D, #FFB969, #FF6E26);
  background-size: 300% 100%;
  font-weight: bold;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: relative;
  display: inline-block;
}
.jselectfaq__list .btn_submit::before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../images/btn-arrow.svg) no-repeat center center/contain;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.jselectfaq__list .btn_submit .btn {
  padding: 7px 48px 7px 30px;
  color: #ffffff;
  font-size: 14px;
  line-height: 27px;
  text-transform: uppercase;
}
.jselectfaq__list .btn_submit:hover {
  background-position: 100% 0;
}
/* .jselectfaq__list .btn_submit:hover::before {
  transform: translateY(-50%) rotateX(180deg);
} */
.jselectfaq__img {
  position: relative;
}
.jselectfaq__img::before {
  position: absolute;
  content: "";
  width: calc(100% + 70px);
  height: 100%;
  left: -35px;
  top: 0;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: #B0E6FF;
  opacity: 0.3;
}
.jselectfaq__img img {
  position: relative;
}
@media (max-width: 991px) {
  .jselectfaq {
    padding: 40px 0 100px;
  }
  .jselectfaq .j_title {
    margin-bottom: 40px;
  }
  .jselectfaq__guide {
    position: relative;
    height: 160px;
    overflow: hidden;
  }
  .jselectfaq__quote {
    margin-left: auto;
    width: 160px;
    height: 125px;
  }
  .jselectfaq__quote .fs-16 {
    font-size: 14px;
    line-height: initial;
  }
  .jselectfaq__quote .fs-12 {
    font-size: 10px;
    line-height: initial;
  }
  .jselectfaq__img {
    margin-bottom: 30px;
  }
  .jselectfaq__img::before {
    width: 100%;
    left: 0;
  }
  .jselectfaq__list {
    padding: 0.75rem 0.75rem 2rem;
  }
  .jselectfaq__list ul li input + label {
    width: 100%;
    padding: 10px 15px 10px 40px;
  }
  .jselectfaq__list ul li input + label::before {
    left: 15px;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}

.jquestion {
  position: relative;
  min-height: calc(100vh - 110px);
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 70%);
  padding-bottom: 3rem;
}
.jquestion::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 100%;
  background: url(../images/drfaq.png) no-repeat right center/contain;
  bottom: 0;
  right: 0;
}
.jquestion::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/bgfaq.png) no-repeat bottom center/100% auto;
  bottom: 0;
  left: 0;
}
.jquestion__ball {
  position: absolute;
  width: 10%;
  left: 15%;
  top: 0;
}
.jquestion__ball .img {
  position: relative;
  animation: float 11s linear infinite;
  -webkit-animation: float 11s linear infinite;
}
.jquestion__ptstruct {
  position: absolute;
  width: 15%;
  right: 18px;
  bottom: 5%;
  z-index: 1;
}
.jquestion__ptstruct .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jquestion__electron {
  position: absolute;
  width: 12%;
  left: 0;
  top: 35%;
  transform: translateX(-30%);
}
.jquestion__electron .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jquestion__item {
  display: none;
  position: relative;
  z-index: 3;
}
.jquestion__item .jquestion__ask .countdown,
.jquestion__item .jquestion__ask .countdown-circle {
  opacity: 0;
}
.jquestion__item .jquestion__answer {
  cursor: not-allowed;
}
.jquestion__item .jquestion__answer label {
  pointer-events: none;
  opacity: 0.7;
}
.jquestion__item.active .jquestion__ask .countdown,
.jquestion__item.active .jquestion__ask .countdown-circle {
  opacity: 1;
}
.jquestion__item.active .jquestion__answer {
  cursor: initial;
}
.jquestion__item.active .jquestion__answer label {
  pointer-events: visible;
  opacity: 1;
}
.jquestion__ask {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: #ffffff;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
  padding: 50px 35px;
  position: relative;
  margin-top: 50px;
}
.jquestion:not(.jquestion__item--img):not(.jquestion__item--video) .jquestion__ask{padding-top: 80px}
.jquestion__ask .countdown-circle {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 25px;
  right: 45px;
  z-index: 2;
  transition: all 0.5s ease;
}
.jquestion__ask .countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 15px;
  right: 35px;
  font-size: 20px;
  font-weight: bold;
  color: #FF6E26;
  background: #FFF1E1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease;
}
.jquestion__ask .countdown::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #FFCD94;
  z-index: 1;
}
.jquestion__ask .quiz_img img {
  cursor: zoom-in;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.jquestion__ask .quiz_img .img_guide {
  font-size: 12px;
  font-style: italic;
  margin-top: 0.25rem;
  text-align: center;
}
.jquestion__ask .quiz_video {
  position: relative;
}
.jquestion__ask .quiz_video iframe,
.jquestion__ask .quiz_video video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: block;
  pointer-events: none;
  background: #333333;
  aspect-ratio: 1.77778;
}
.jquestion__ask .quiz_video .playvideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.4);
  filter: drop-shadow(0px 4px 20px rgba(0, 15, 95, 0.4));
  -webkit-backdrop-filter: blur(6.5571908951px);
          backdrop-filter: blur(6.5571908951px);
  -webkit-filter: drop-shadow(0px 4px 20px rgba(0, 15, 95, 0.4));
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jquestion__ask .quiz_video + .video_desc {
  font-size: 12px;
  font-style: italic;
  margin-top: 0.25rem;
  text-align: center;
}
.jquestion__ask .quiz_video + .video_desc strong{
  color: #FF821D
}
.jquestion__ask .question__tag {
  position: absolute;
  background: linear-gradient(305deg, #FF982F 0%, #FFD69D 100%);
  color: #ffffff;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 30px;
  text-transform: uppercase;
  border-radius: 23px;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  -ms-border-radius: 23px;
  -o-border-radius: 23px;
}
.jquestion__ask .question__number {
  padding-left: 40px;
  position: relative;
  margin-bottom: 10px;
}
.jquestion__ask .question__number::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/faqicon.png) no-repeat center center/contain;
  left: 0;
  top: 0;
}
.jquestion__ask .quiz_center {
  margin-bottom: 10px;
}
.jquestion__ask .quiz_from {
  font-weight: 500;
}
.jquestion__answer {
  margin-top: 16px;
}
.jquestion__answer input {
  display: none;
}
.jquestion__answer input + label {
  background: #ffffff;
  display: flex;
  position: relative;
  padding: 20px 20px 20px 60px;
  min-height: 90px;
  border: 1px solid #F2F2F2;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: 20px;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: #4F4F4F;
}
.jquestion__answer input + label span {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f2f2f2;
  font-size: 14px;
  font-weight: bold;
  color: #828282;
}
.jquestion__answer input:checked + label {
  background: linear-gradient(221deg, #FFB969 0%, #FF821D 61%, #FF6E26 100%);
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
  color: #ffffff;
}
.jquestion__answer input:checked + label span {
  color: #ffffff;
  background: #FFB969;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  text-shadow: 2px 2px 10px 0px #DC4900;
}
@media (max-width: 991px) {
  .jquestion {
    min-height: calc(100vh - 60px);
  }
  .jquestion::before {
    display: none;
  }
  .jquestion__ask {
    margin-top: 40px;
    padding: 65px 0.75rem 0.75rem;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  }
  .jquestion__ask .quiz_video + .video_desc,
  .jquestion__ask .quiz_img {
    margin-bottom: 0.75rem;
  }
  .jquestion__ask .question__tag {
    white-space: nowrap;
    font-size: 10px;
    padding: 8px 10px;
    transform: translate(-50%, 0);
    top: 0.75rem;
  }
  .jquestion__ask .question__number {
    font-size: 16px;
    line-height: initial;
    padding-left: 30px;
  }
  .jquestion__ask .question__number::before {
    width: 20px;
    height: 20px;
  }
  .jquestion__ask .quiz_center {
    font-size: 16px;
    line-height: initial;
  }
  .jquestion__ask .quiz_from {
    font-size: 12px;
  }
  .jquestion__ask .countdown {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    font-size: 12px;
  }
  .jquestion__ask .countdown::before {
    width: 40px;
    height: 40px;
    left: 5px;
    top: 5px;
  }
  .jquestion__ask .countdown-circle {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  .jquestion__item {
    padding-bottom: 30px;
  }
  .jquestion__item .jquestion__answer {
    margin-top: 10px;
  }
  .jquestion__item .jquestion__answer label {
    margin-bottom: 10px;
    padding: 0.75rem 0.75rem 0.75rem 60px;
    min-height: 62px;
    font-size: 12px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  }
}

.jcompleted {
  padding-top: 25px;
  min-height: calc(100vh - 110px);
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 70%);
  position: relative;
}
.jcompleted__ball {
  position: absolute;
  width: 10%;
  left: 30%;
  top: 50%;
}
.jcompleted__ball .img {
  position: relative;
  animation: float 11s linear infinite;
  -webkit-animation: float 11s linear infinite;
}
.jcompleted__ptstruct {
  position: absolute;
  width: 20%;
  right: 18px;
  top: 0;
}
.jcompleted__ptstruct .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jcompleted__electron {
  position: absolute;
  width: 12%;
  left: 0;
  top: 20%;
  transform: translateX(-30%);
}
.jcompleted__electron .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jcompleted__structline {
  position: absolute;
  width: 10%;
  right: 18px;
  top: 55%;
}
.jcompleted__structline .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jcompleted__structline2 {
  position: absolute;
  width: 17%;
  left: 0;
  bottom: 5%;
  transform: translateX(-30%);
}
.jcompleted__structline2 .img {
  position: relative;
  animation: float 4s linear infinite;
  -webkit-animation: float 4s linear infinite;
}
.jcompleted__img {
  position: relative;
  z-index: 1;
}
.jcompleted__form {
  background: #ffffff;
  box-shadow: 5px 4px 20px 0px rgba(20, 34, 87, 0.12);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  position: relative;
  z-index: 1;
}
.jcompleted__form .head_form {
  border-radius: 30px 30px 0px 0px;
  -webkit-border-radius: 30px 30px 0px 0px;
  -moz-border-radius: 30px 30px 0px 0px;
  -ms-border-radius: 30px 30px 0px 0px;
  -o-border-radius: 30px 30px 0px 0px;
  background: linear-gradient(303deg, #B0E6FF 0%, #03BEFF 100%);
  color: #ffffff;
  padding: 10px;
}
.jcompleted__form .body_form {
  padding: 25px 3rem;
}
.jcompleted__form .body_form .img_form {
  width: 80%;
  margin: 0 auto;
}
.jcompleted__form .body_form .result_form img {
  max-height: 30px;
  max-width: 30px;
  height: auto;
  width: auto;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .jcompleted {
    min-height: calc(100vh - 60px);
  }
  .jcompleted__form .body_form {
    padding: 25px 1.5rem;
    text-align: center;
  }
  .jcompleted__img {
    display: none;
    padding: 3rem 0;
  }
}

.jrankpage {
  padding-top: 60px;
  min-height: calc(100vh - 110px);
  background: linear-gradient(-9deg, rgb(188, 235, 255) 0%, rgba(255, 255, 255, 0) 70%);
  position: relative;
}
.jrankpage .j_title {
  margin-bottom: 1rem;
}
.jrankpage .j_title span {
  position: relative;
}
.jrankpage .j_title span::before {
  position: absolute;
  height: 20px;
  background: #FFF1E1;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.jrankpage__ball {
  position: absolute;
  width: 10%;
  left: 30%;
  top: 50%;
}
.jrankpage__ball .img {
  position: relative;
  animation: float 11s linear infinite;
  -webkit-animation: float 11s linear infinite;
}
.jrankpage__ptstruct {
  position: absolute;
  width: 20%;
  right: 18px;
  top: 0;
}
.jrankpage__ptstruct .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jrankpage__electron {
  position: absolute;
  width: 12%;
  left: 0;
  top: 20%;
  transform: translateX(-30%);
}
.jrankpage__electron .img {
  position: relative;
  animation: float 8s linear infinite;
  -webkit-animation: float 8s linear infinite;
}
.jrankpage__structline {
  position: absolute;
  width: 10%;
  right: 18px;
  top: 55%;
}
.jrankpage__structline .img {
  position: relative;
  animation: float 6s linear infinite;
  -webkit-animation: float 6s linear infinite;
}
.jrankpage__structline2 {
  position: absolute;
  width: 17%;
  left: 0;
  bottom: 5%;
  transform: translateX(-30%);
}
.jrankpage__structline2 .img {
  position: relative;
  animation: float 4s linear infinite;
  -webkit-animation: float 4s linear infinite;
}
@media (max-width: 991px) {
  .jrankpage {
    padding-top: 40px;
  }
  .jrankpage .jrank__img {
    display: none;
  }
  .jrankpage .j_title {
    text-align: center;
  }
}

.jsubcribe {
  transform: translateY(-250px);
  margin-bottom: -200px;
}
.jsubcribe .j_title {
  color: #FF786C;
  margin-bottom: 10px;
}
.jsubcribe .j_description {
  margin-bottom: 35px;
}
.jsubcribe__wrapper {
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.jsubcribe__wrapper .jsubcribe__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
}
.jsubcribe form {
  padding: 80px 0;
}
.jsubcribe .form-control{background: #FFF1E1;border: 0;
  font-size: 14px;
  color: #FF821D;
  padding: 7px 18px;
    border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.jsubcribe .form__wrapper {
  background: #FFF1E1;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.jsubcribe .form__wrapper .form-control {
  background: transparent;
  border: 0;
  font-size: 14px;
  color: #FF821D;
  padding: 7px 18px;
  height: 100%;
}
.jsubcribe .form-control::-moz-placeholder {
  color: #FF821D;
}
.jsubcribe .form-control::placeholder {
  color: #FF821D;
}
.jsubcribe .form-control:focus {
  box-shadow: none;
  outline: none;
}
.jsubcribe .form__wrapper .btn_submit {
  transition: all 0.5s ease;
  background: #FF821D;
  background-image: linear-gradient(to right, #FFB969, #FF821D, #FFB969, #FF6E26);
  background-size: 300% 100%;
  font-weight: bold;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: relative;
}
.jsubcribe .form__wrapper .btn_submit::before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../images/btn-arrow.svg) no-repeat center center/contain;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.jsubcribe .form__wrapper .btn_submit .btn {
  padding: 7px 48px 7px 30px;
  color: #ffffff;
  font-size: 14px;
  line-height: 27px;
  text-transform: uppercase;
}
.jsubcribe .form__wrapper .btn_submit:hover {
  background-position: 100% 0;
}
/* .jsubcribe .form__wrapper .btn_submit:hover::before {
  transform: translateY(-50%) rotateX(180deg);
} */
@media (max-width: 991px) {
  .jsubcribe {
    transform: translateY(0);
    margin-bottom: 30px;
  }
  .jsubcribe__wrapper .jsubcribe__img {
    position: static;
    width: 50%;
    text-align: center;
    margin: 0 auto;
  }
  .jsubcribe form {
    padding: 30px 0.75rem;
  }
}

#footer_site {
  position: relative;
  background: url(../images/bgfooter.jpg) no-repeat top left/100% 100%;
}
#footer_site::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100px;
  bottom: calc(100% - 1px);
  left: 0;
  background: url(../images/topfooter.png) no-repeat bottom left/100% 100%;
  pointer-events: none;
}
#footer_site a {
  color: #ffffff;
}
#footer_site .jfooter__structline {
  position: absolute;
  width: 6%;
  top: 0;
  left: 0;
}
#footer_site .jfooter__star {
  position: absolute;
  bottom: 50%;
  left: 7%;
  width: 2%;
}
#footer_site .jfooter__electron {
  position: absolute;
  top: 5%;
  left: 65%;
  width: 7%;
}
#footer_site .jfooter__structline2 {
  position: absolute;
  right: 0;
  top: 20%;
  width: 7%;
}
#footer_site .logo_ft img {
  height: 150px;
  width: auto;
}
#footer_site .jaddress {
  color: #ffffff;
}
#footer_site .jaddress h4 {
  margin-bottom: 10px;
}
#footer_site .jaddress ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#footer_site .jaddress ul li {
  position: relative;
  padding-left: 36px;
  font-weight: 500;
}
#footer_site .jaddress ul li img {
  position: absolute;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  left: 0;
  top: -2px;
}
#footer_site .jaddress ul li:not(:last-child) {
  margin-bottom: 10px;
}
#footer_site .jsitemap {
  color: #ffffff;
}
#footer_site .jsitemap h4 {
  margin-bottom: 10px;
}
#footer_site .jsitemap ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#footer_site .jsitemap ul li a {
  color: #ffffff;
  font-weight: 500;
}
#footer_site .copyright {
  color: #ffffff;
  font-weight: 500;
  background: #013EDC;
  padding: 8px 0;
}
@media (max-width: 991px) {
  #footer_site {
    padding-top: 30px;
  }
  #footer_site::before {
    background-size: 100% auto;
  }
  #footer_site .logo_ft img {
    height: 70px;
  }
  #footer_site .jaddress {
    margin-bottom: 30px;
  }
}

.back_to_top {
  position: fixed;
  bottom: 1rem;
  right: 0.75rem;
  z-index: 100;
}
.back_to_top a {
  display: flex;
  width: 40px;
  height: 40px;
  background: #FF6E26;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
}
@media (max-width: 991px) {
  .back_to_top {
    bottom: 6rem;
  }
}

.countdown-circle {
  width: 70px;
  height: 70px;
  position: relative;
}

.countdown-circle__path {
  fill: transparent;
  stroke: #FF6E26;
  stroke-width: 2;
  stroke-linecap: round;
}

@keyframes countdown-animation {
  0% {
    stroke-dasharray: 0 301.6;
  }
  100% {
    stroke-dasharray: 301.6 0;
  }
}
.modal-content {
  background: linear-gradient(1deg, #88CDFF 0%, #FFF 88.72%);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border: 0;
}
.modal-content .modal-body {
  padding: 30px 30px 0;
  position: relative;
}
.modal-content .modal-body .close_btn {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 22;
}
.modal-content .modal-body .close_btn img {
  width: 30px;
}
.modal-content .modal-body .img_popup {
  position: relative;
}
.modal-content .modal-body .img_popup .quote_popup {
  position: absolute;
  left: 80%;
  width: 200px;
  height: 152px;
  background: url(../images/popupquote.png) no-repeat bottom left/contain;
  bottom: 80%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  padding: .75rem;
}
#notificationModal .modal-content .modal-body .close_btn img{
  width: 15px;
}
#notificationModal .modal-content .modal-body .close_btn{
  top: 10px;
  right: 10px;
}
#notificationModal .modal-content .modal-body{
  padding: 15px;
}
#notificationModal .modal-content{
  background: #ffffff;
  color: #FF6E26;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
@media (max-width: 991px) {
  .modal-content .modal-body {
    padding: 30px;
  }
  .modal-content .modal-body .close_btn {
    right: 20px;
    top: 20px;
  }
  .modal-content .modal-body .close_btn img {
    width: 22px;
  }
  .modal-content .modal-body .img_popup {
    width: 50%;
    margin-bottom: 1rem;
  }
  .modal-content .modal-body .img_popup .quote_popup {
    left: 100%;
    top: 0;
    width: 175px;
    height: 135px;
  }
}/*# sourceMappingURL=main.css.map */

.wpcf7-spinner{
	position: absolute;
	right: 0;
	bottom: 20px;
	pointer-events: none;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	margin: 1rem 0 0 0;
	background: #ffb900;
	border: 0;
	padding: 5px 10px;
}
.wpcf7 form.sent .wpcf7-response-output{
	margin: 1rem 0 0 0;
	border: 0;
	background: #C9D1E9;
}
.wpcf7-not-valid-tip{
	position: absolute;
	right: 0;
	top: 10px;
	pointer-events: none;
}
#toast{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
.jcompleted .j_title{
    margin-bottom: 1rem;
}
.jcompleted .j_title span{
  position: relative;
}
.jcompleted .j_title span::before{
  position: absolute;
  height: 20px;
  background: #FFF1E1;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.jcompleted .jcompleted__form .your_result{
  padding: 3rem 2rem;
}
.jcompleted .jcompleted__form .your_result .custom_scroll{
  max-height: 600px;
  overflow-y: auto;
}
/* width */
.jcompleted .jcompleted__form .your_result .custom_scroll::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.jcompleted .jcompleted__form .your_result .custom_scroll::-webkit-scrollbar-track {
  background: #D6D6D6;
}

/* Handle */
.jcompleted .jcompleted__form .your_result .custom_scroll::-webkit-scrollbar-thumb {
  background: #FF821D;
}

/* Handle on hover */
.jcompleted .jcompleted__form .your_result .custom_scroll::-webkit-scrollbar-thumb:hover {
  background: #FF821D;
}
.jcompleted .jcompleted__form .your_result .question_item{
  padding: .5rem 1rem;
}
.jcompleted .jcompleted__form .your_result .question_item .ask{
  font-size: 16px;
  margin-bottom: .5rem;
}
.jcompleted .jcompleted__form .your_result .question_item.no_answer .ask{
  color: #FF821D;
  font-weight: bold;
}
.jcompleted .jcompleted__form .your_result .question_item .answer ul{
  list-style: none;
  padding-left: 1rem;
  margin-bottom: 0;
}

.jcompleted .jcompleted__form .your_result .question_item .answer ul li span{
  font-weight: bold;
}
.jcompleted .jcompleted__form .your_result .question_item .answer ul li.your_choose{
  font-weight: bold;
  color: #f10505;
}
.jcompleted .jcompleted__form .your_result .question_item .answer ul li.correct,
.jcompleted .jcompleted__form .your_result .question_item .answer ul li.correct.your_choose{
  color: #28ca02;
  font-weight: bold;
}
.jcompleted .jcompleted__form .your_result .question_item .answer ul li span::after{
  content: ".";
}
.jcompleted .jcompleted__form .your_result .j_noted{
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.jcompleted .jcompleted__form .your_result .j_noted ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 1rem;
  column-gap: 3rem;
  margin-bottom: 0;
}
.jcompleted .jcompleted__form .your_result .j_noted ul li{
  display: flex;
  column-gap: 5px;
  align-items: center;
}
.jcompleted .jcompleted__form .your_result .j_noted ul li span{
  display: block;
  width: 10px;
  height: 10px;
}
.jcompleted .jcompleted__form .your_result .j_noted ul li.correct span{
  background: #28ca02;
}
.jcompleted .jcompleted__form .your_result .j_noted ul li.wrong span{
  background: #f10505;
}
.jcompleted .jcompleted__form .your_result .j_noted ul li.no_answer span{
  background: #FF821D;
}
.jcompleted .result_info{
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border: 1px solid #f2f2f2;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.jcompleted .result_info table{
  margin-bottom: 0;
}
.jcompleted .result_info table thead tr{
  background: linear-gradient(238deg, #FFBDB7 0%, #FF8271 34%, #FF786C 100%);
  color: #ffffff;
}
.jcompleted .result_info table thead tr th{
  padding: 15px;
  text-align: center;
}
.jcompleted .result_info table tbody tr td{
  padding: 15px;
  text-align: center;
}
.jcompleted .result_info table tbody tr td a{
  color: #0094E8;
    background: #C9F5FF;
    display: block;
    padding: 3px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
@media (max-width: 991px) {
  .jcompleted .result_info table thead tr{
    background: #FF786C;
  }
  .jcompleted .result_info table thead tr th,
  .jcompleted .result_info table tbody tr td{
    white-space: nowrap;
  }
  .jcompleted .jcompleted__form .your_result .question_item{
    padding: 1rem 0;
  }
  .jcompleted .jcompleted__form .your_result{
    padding: 2rem 1rem;
  }
  .jcompleted .jcompleted__form .your_result .custom_scroll{
    max-height: 800px;
  }
  .jcompleted .jcompleted__form .your_result .j_noted{
    justify-content: flex-start;
    align-items: flex-start;
  }
  .jcompleted .jcompleted__form .your_result .j_noted ul{
    display: block;
  }
}