@font-face {
  font-family: InterVariable;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/InterVariable.woff2?v=4.0') format('woff2');
}
.font-inter-var{
  font-family: 'InterVariable' !important;
  font-feature-settings: 'cv05' on, 'cv11' on;
}
.font-inter-var-feature-normal{
  font-feature-settings: normal !important;
}

html {
  scroll-behavior: auto;
}
body{
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}
.header {
  border-bottom: 1px solid #05031E;
  background-color: #05031E;
  padding: 29px 0 27px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
.hide-header .header{
  display: none;
}
@media (max-width: 767px) {
  .header {
    padding: 18px 0;
  }
}
@media (min-width: 768px) {
  .header {
    background-image: url("../images/bg-top-bar.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.header .logo {
  width: 223px;
  margin: 0 auto;
}
.header .logo a {
  display: block;
}
.header .logo a img {
  width: 100%;
}
@media (min-width: 992px) {
  .header .logo {
    margin: 0;
  }
}
.special-header-text{
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}
main.main{
  background-color: #F5F5FA;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /*margin-top: 96px;*/
  padding: calc(56px + 103px) 0 77px;
  background: url("../images/main-bg.png") no-repeat;
  background-position: top right;
  -o-object-fit: contain;
  object-fit: contain;
}
.hide-header main{
  padding: 60px 0 77px;
}

@media (max-width: 991px) {
  main {
    /*margin-top: 97px;*/
    padding: calc(50px + 97px) 0;
  }
  .hide-header main{
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  main {
    /*margin-top: 77px;*/
    padding: calc(26px + 82px) 0;
  }
  .hide-header main{
    padding: 30px 0;
  }
}

.attend_box {
  margin-bottom: 21px;
}

.attend_box .attend_txt h6 {
  font-size: 14px;
  color: #7b89b1;
  font-weight: 600;
  letter-spacing: 2.8px;
  margin-bottom: 16px;
}

.attend_box .attend_txt h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  color: #23262f;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .attend_box .attend_txt h1 {
    font-weight: bold;
    font-size: 2rem;
    line-height: 3rem;
  }
}
.attend_box .calender_button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.attend_box .calender_button .calender_btn {
  margin-right: 12px;
}
.attend_box .calender_button .calender_btn:last-child {
  margin-right: 0px;
}
.attend_box .calender_button .calender_btn a, .calender_btn a {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 13px 17px;
  border-radius: 12px;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  background-color: #5046E5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(#5046E5));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.2), #5046E5);
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0.2), #5046E5);
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), #5046E5);
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 479px) {
  .attend_box .calender_button .calender_btn a, .calender_btn a {
    font-size: 1rem;
  }
}
.attend_box .calender_button .calender_btn a img, .calender_btn a img {
  width: 22px;
  height: 22px;
}
.attend_box .calender_button .calender_btn a:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5046E5), to(rgba(255, 255, 255, 0.2)));
  background-image: -webkit-linear-gradient(#5046E5, rgba(255, 255, 255, 0.2));
  background-image: -o-linear-gradient(#5046E5, rgba(255, 255, 255, 0.2));
  background-image: linear-gradient(#5046E5, rgba(255, 255, 255, 0.2));
}

.attend_box .calender_button .calender_btn:first-child a img {
  margin-right: 12px;
}
.attend_box .calender_button .calender_btn:last-child a {
  padding: 13px 14px;
}
.attend_box .attend_cards {
  width: 440px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .attend_box .attend_cards {
    width: 340px;
  }
}
.attend_box .attend_cards .card {
  width: 220px;
  text-align: center;
  position: relative;
  z-index: 9;
  margin-left: -60px;
}
@media (max-width: 991px) {
  .attend_box .attend_cards .card {
    width: 200px;
  }
}
@media (max-width: 479px) {
  .attend_box .attend_cards .card {
    width: 160px;
  }
}
.attend_box .attend_cards .card .card-img {
  background-color: #ffffff;
  border-radius: 50%;
  padding: 10px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  margin-bottom: 12px;
}
.attend_box .attend_cards .card .card-img img {
  width: 100%;
  border-radius: 50%;
  display: block;
}
.attend_box .attend_cards .card .card-txt h6 {
  font-size: 0.875rem;
  color: #23262F;
  font-weight: 600;
  text-transform: capitalize;
}

.countdown_box {
  background-color: #ffffff;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 57px;
}
@media (max-width: 767px) {
  .countdown_box {
    margin-bottom: 32px;
  }
}
@media (max-width: 479px) {
  .countdown_box {
    padding: 16px 16px;
  }
}
.countdown_box .countdown_left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  /*width: calc(100% - 275px);*/
  padding-right: 10px;
}

@media (max-width: 767px) {
  .countdown_box .countdown_left {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0px;
    border-bottom: solid 1px #eaecf0;
    padding-bottom: 20px;
  }
  body.in-progress .countdown_box .countdown_left, body.is-ended .countdown_box .countdown_left {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0px;
    border-bottom: 0;
    padding-bottom: 0;
  }
  body.is-ended .countdown_box .countdown_left{
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .countdown_box .countdown_left {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #eaecf0;
    width: 100%;
  }
}
@media (min-width: 1439px) {
  .countdown_box .countdown_left {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    width: auto;
  }
}
.countdown_box .countdown_left .calender_icon {
  width: 24px;
}
.countdown_box .countdown_left .calender_icon img {
  width: 100%;
}

.calender_txt .media{
  margin-bottom: 8px;
}
.calender_txt .media img{
  position: relative;
  top: -2px;
}
.calender_txt .media .media-body{
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  text-align: left;
  color: #424c69;
}

.countdown_box .countdown_left .calender_txt .media {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.36;
  color: #424c69;
  margin-bottom: 7px;
}
.countdown_box .countdown_left .calender_txt h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #23262f;
}

@media (max-width: 767px) {
  .countdown_box .countdown_right {
    width: 100%;
    text-align: center;
  }
}

.learn_box {
  margin-bottom: 40px;
}
body.is-ended .learn_box{
  margin-bottom: 0;
}
.learn_box p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.9;
  color: #23262f;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .learn_box p {
    font-size: 18px;
    margin-bottom: 50px;
  }
}

.learn_box .video_box {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .learn_box .video_box {
    margin-bottom: 32px; !important;
  }
}
.learn_box .video_box video {
  width: 100%;
}

a.btn {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  padding: 21px 32px;
  background-color: #5046E5;
  border-radius: 50px;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(#5046E5));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.2), #5046E5);
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0.2), #5046E5);
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), #5046E5);
  margin-top: 31px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  a.btn {
    margin-top: 20px;
  }
}
@media (max-width: 479px) {
  a.btn {
    padding: 18px 22px;
  }
}
@media (max-width: 375px) {
  a.btn {
    padding: 18px 14px;
    font-size: 0.9375rem;
  }
}
a.btn:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5046E5), to(rgba(255, 255, 255, 0.2)));
  background-image: -webkit-linear-gradient(#5046E5, rgba(255, 255, 255, 0.2));
  background-image: -o-linear-gradient(#5046E5, rgba(255, 255, 255, 0.2));
  background-image: linear-gradient(#5046E5, rgba(255, 255, 255, 0.2));
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

#countdown ul{
  margin: 0;
  padding: 0;
}
#countdown ul li {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
  text-transform: capitalize;
  width: 59px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
  color: #424c69;
}
@media (max-width: 991px) {
  #countdown ul li {
    margin-right: 10px;
    width: auto;
  }
}
@media (max-width: 375px) {
  #countdown ul li {
    margin-right: 6px;
  }
}
@media (max-width: 500px) {
  #countdown ul li {
    width: 67px;
  }
}

#countdown ul li:last-child {
  margin-right: 0;
}

#countdown ul li span {
  background-color: #ffffff;
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #5046E5;
  margin-bottom: 4px;
  position: relative;
}
.countdown_box {
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08), 0px 1px 2px 0px rgba(0, 0, 0, 0.06), 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08), 0px 1px 2px 0px rgba(0, 0, 0, 0.06), 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
}

  .attend_box .calender_button .calender_btn a {
    color: #FFF;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .small-cards {
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
    margin-left: -25px;
  }
  .small-cards img {
    width: 100px;
    height: 100px;
  }
  .small-cards h6 {
    color: #23262F !important;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 200px !important;
    display: inline-block;
    padding-top: 37px;
    text-transform: none !important;
    margin-left: -13px;
  }

  .mb-24 {
    margin-bottom: 48px !important;
  }
  .mb-30 {
    margin-bottom: 30px;
  }
  .calender_txt p {
    font-size: 0.875rem;
  }
  .calender_icon {
    height: 24px;
  }


  .attend_cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
  }
  .attend_cards .card {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0 !important;
    margin-bottom: 12px;
  }
  .attend_cards .card:nth-child(2) {
    margin-bottom: 24px;
  }
  .attend_cards .card .card-img {
    width: 40px;
    padding: 2px !important;
    margin-bottom: 0 !important;
  }
  .attend_cards .card .card-txt {
    margin-left: 12px;
  }
  .attend_cards .card .card-txt h6 {
    font-size: 1rem !important;
    line-height: normal;
  }
  .attend_box .calendar_button:nth-child(1) .calendar_btn a {
    display: none !important;
  }
  .countdown_box p {
    font-size: 0.875rem !important;
    line-height: normal;
  }
  .countdown_box .calender_icon {
    width: 20px !important;
    height: 20px !important;
  }

@media screen and (min-width: 767px) {
  .mb-cards {
    display: none !important;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  .attend_box .calender_button .calender_btn a {
    padding: 13px 45px;
  }
}
.attend_cards > .calender_button {
  display: none;
}
@media (max-width: 767px) {
  .attend_cards > .calender_button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.attend_txt > .calender_button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.timer-end-text{
  color: #e31515;
  font-size: 1.45rem;
  font-weight: 700;
}
.admin-div a.btn{
  padding: 10px 32px;
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
.card-reg_form{
  background: transparent;
  border: 0;
}
@media (min-width: 992px) {
  .card-reg_form{
    border-radius: 9px;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    box-shadow: 0 8px 17px 0 rgba(28, 26, 40, 0.15), 0 30px 30px 0 rgba(28, 26, 40, 0.13), 0 68px 41px 0 rgba(28, 26, 40, 0.08), 0 121px 48px 0 rgba(28, 26, 40, 0.02), 0 188px 53px 0 rgba(28, 26, 40, 0);
    background-color: #fafafa;
    padding: 36px 40px;
    border: none;
    /*position: sticky;*/
    /*top: calc(103px + 30px);*/
  }
  /*.hide-header .card-reg_form{*/
  /*  top: 30px;*/
  /*}*/
}

.card-reg_form h4{
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: normal;
  color: #23262f;
  margin-bottom: 32px;
}
.card-reg_form h4 img{
  margin-right: 16px;
}
@media (min-width: 768px) {
  .card-reg_form h4{
    font-size: 28px;
    font-weight: bold;
    line-height: 1.29;
  }

}
.card-reg_form .form-group{
  margin-bottom: 32px;
}
.card-reg_form label{
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: #23262f;
}
.card-reg_form label .asterisk{
  color: #f00;
}
.card-reg_form .form-control{
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: #05031e;
  padding: 14px 16px;
  border-radius: 8px;
  border: solid 1px rgba(180, 188, 206, 0.22);
  background-color: #fff;
  height: 47px;
}

.card-reg_form .form-control:focus{
  box-shadow: 0 0 0 .2rem rgba(80, 70, 229, 0.25);
}
.card-reg_form .form-control:focus-visible{
  outline: none;
}

.card-reg_form .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b3b3b3;
}
.card-reg_form .form-control::-moz-placeholder { /* Firefox 19+ */
  color: #b3b3b3;
}
.card-reg_form .form-control:-ms-input-placeholder { /* IE 10+ */
  color: #b3b3b3;
}
.card-reg_form .form-control:-moz-placeholder { /* Firefox 18- */
  color: #b3b3b3;
}
.card-reg_form .btn, #btn-form-scroll {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  background-image: linear-gradient(to bottom, #a09bed, #5046e5), linear-gradient(to bottom, #5046e5, #5046e5);
  border: 0;
}
#btn-form-scroll {
  padding: 16px;
}
@media (min-width: 768px) {
  .card-reg_form .btn, #btn-form-scroll {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
  }
}
.card-reg_form .btn.btn-live, #btn-form-scroll.btn-live {
  background-image: linear-gradient(to bottom, #13d84e, #008a2a);
}

.card-reg_form .btn:hover, #btn-form-scroll:hover {
  background-image: linear-gradient(to bottom, #5046e5, #5046e5), linear-gradient(to bottom, #5046e5, #5046e5);
}
.card-reg_form .btn:focus, #btn-form-scroll:focus {
  box-shadow: 0 0 0 .2rem rgba(80, 70, 229, .25);
}

.card-reg_form .btn.btn-live:hover, #btn-form-scroll.btn-live:hover {
  background-image: linear-gradient(to top, #13d84e, #008a2a);
}

#btn-form-scroll.btn-ended {
  background-image: linear-gradient(to bottom, #ff8d8d, #ae0000), linear-gradient(to bottom, #ff8d8d, #ae0000);
}
#btn-form-scroll.btn-ended:hover {
  background-image: linear-gradient(to bottom, #ff8d8d, #ae0000), linear-gradient(to bottom, #ff8d8d, #ae0000);
}
.instructor-image{
  height: 40px;
  width: 40px;
  padding: 2px;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  margin-right: 12px;
  overflow: hidden;
}
.instructor-image img{
  border-radius: 20px;
}
.instructor-div{
  margin-bottom: 25px;
}
.instructor-div .media-instructor{
  margin-right: 15px;
}
.media-instructor .media-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #23262f;
}
.form-alert-success{
  border-radius: 8px;
  border: solid 1px #c3e6cb;
  background-color: rgba(212, 237, 218, 0.5);
  padding: 21px;
  margin-bottom: 32px;
}
.media-success-alert{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: normal;
  color: #23262f;
}
.iti.iti--allow-dropdown{
  width: 100%;
}
@media (min-width: 1440px) {
  .container{
    max-width: 1219px;
  }
}

.form-error-div .is-invalid{
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  color: #fe0100;
  margin-bottom: 0;
}
a{
  text-decoration: none;
}
a:hover{
  text-decoration: none;
}
.btn-form-scroll-div{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  box-shadow: 0 -2px 3px 0 rgba(26, 26, 35, 0.1), 0 -6px 6px 0 rgba(26, 26, 35, 0.09), 0 -14px 8px 0 rgba(26, 26, 35, 0.05), 0 -25px 10px 0 rgba(26, 26, 35, 0.01), 0 -39px 11px 0 rgba(26, 26, 35, 0);
  background-color: #fff;
  z-index: 99;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-style: normal;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  word-wrap: break-word;
  opacity: 0;
  font-size: 1.125rem;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0.1px;
  text-align: left;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: calc(100% - 10px);
  padding: 15px;
  color: #fff;
  text-align: center;
  background-color: #05031E;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .tooltip-inner {
    max-width: 700px;
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .tooltip-inner {
    max-width: 800px;
  }
}
.tooltip-inner p{
  font-size: 1.125rem;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.1px;
  text-align: left;
}
.tooltip-inner p:last-of-type{
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .text-lg-unset{
    text-transform: unset !important;
  }
}
.iti--separate-dial-code .iti__selected-flag{
  background-color: transparent;
  border-right: solid 1px rgba(0, 0, 0, 0.1);
  padding-left: 12px;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{
  background-color: transparent;
}
.card-learn{
  padding: 4px;
  border-radius: 12px;
  background-color: #fff;
  border: 0;
}
.card-learn .card-header{
  padding: 12px 14px;
  border-radius: 10px;
  background-image: linear-gradient(to right, #f5f5f5, #ffffff);
  border: 0;
}
@media (min-width: 768px) {
  .card-learn .card-header{
    padding: 24px 26px;
  }
}
.card-learn .card-header h3{
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #101828;
}
.card-learn .card-header h3 img{
  margin-right: 19px;
}
.card-learn .card-body{
  padding: 20px;
}
@media (min-width: 768px) {
  .card-learn .card-header h3{
    font-size: 22px;
    line-height: 1.5;
  }
  .card-learn .card-header h3 img{
    margin-right: 17px;
  }
  .card-learn .card-body{
    padding: 32px;
  }
}


.learn_box ul li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #23262f;
  padding-left: 33px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .learn_box ul li {
    font-size: 18px;
    padding-left: 37px;
    line-height: 1.78;
    margin-bottom: 40px;
  }
}
.learn_box ul li:last-child {
  margin-bottom: 0;
}
.learn_box ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  width: 21px;
  height: 20px;
  background-image: url("../images/icon-star-gradient.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.learn_box ul li.gift-li:before {
  background-image: url("../images/icon-star-gift.svg");
  width: 32px;
  height: 33px;
  top: 4px;
  left: -4px;
}
.webinar-progress{
  padding: 8px 12px;
  border-radius: 8px;
  background-color: #e2ffea;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 1.12px;
  text-align: center;
  color: #0aa338;
}
.webinar-progress img{
  margin-right: 10px;
}

.card-reg_form .btn.btn-live .media-body, #btn-form-scroll.btn-live .media-body, .webinar-progress .media-body{
  flex: unset;
}
.card-reg_form .btn.btn-live img, #btn-form-scroll.btn-live img{
  margin-right: 8px;
}
.card-ended{
  border-radius: 9px;
  background-color: #fafafa;
  border: 0;
  margin-bottom: 30px;
}

.card-ended .card-body{
  padding: 16px 20px 32px;
}
.card-ended h4{
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #23262f;
  margin-bottom: 16px;
}
.card-ended p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #23262f;
}
.card-ended p a{
  color: #5046e5;
}
.card-ended img{
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .card-ended{
    box-shadow: 0 8px 17px 0 rgba(28, 26, 40, 0.15), 0 30px 30px 0 rgba(28, 26, 40, 0.13), 0 68px 41px 0 rgba(28, 26, 40, 0.08), 0 121px 48px 0 rgba(28, 26, 40, 0.02), 0 188px 53px 0 rgba(28, 26, 40, 0);
  }
  .card-ended img{
    margin-bottom: 34px;
  }
  .card-ended .card-body{
    padding: 72px 40px 36px;
  }
  .card-ended h4{
    font-size: 28px;
    line-height: 1.29;
  }
  .card-ended p{
    font-size: 14px;
    line-height: 1.71;
  }
}
@media (min-width: 992px) {
  #sticky-right{
    position: sticky;
    top: calc(103px + 30px);
  }
}
.click-loading{
  position: relative;
}
.click-loading:after {
  content: '';
  position: absolute;
  background: rgba(80, 70, 229, .9) url(../images/fade-stagger-circles.svg);
  background-repeat: no-repeat;
  background-size: 19px 19px;
  background-position: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

/*Start ALert box css*/
.card-attention{
  border-radius: 10px;
  background-image: linear-gradient(to right, rgba(255, 176, 0, 0.3), rgba(255, 176, 0, 0.3));
  margin-top: 20px;
  border: 0;
}
.card-attention .card-body{
  padding: 16px 20px;
  background-image: url("../images/bg-icon-alert-circle.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.card-attention .card-body > p{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #7a2e0e;
}
.card-attention .media{
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #b54708;
  margin-bottom: 12px;
}
.card-attention .media img{
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

@media (min-width: 768px) {
  .card-attention{
    margin-top: 40px;
  }
  .card-attention .card-body {
    padding: 24px 32px;
  }
  .card-attention .card-body > p{
    font-size: 18px;
    line-height: 1.5;
  }
  .card-attention .media{
    font-size: 22px;
    margin-bottom: 16px;
  }
  .card-attention .media img{
    width: 32px;
    height: 32px;
    margin-right: 12px;
  }
}
/*End ALert box css*/

/*Start Gift box css*/
.card-gift{
  border-radius: 10px;
  background: #fce7f6;
  margin-top: 20px;
  border: 0;
}
.card-gift .card-body{
  padding: 16px 20px;
  background-image: url("../images/bg-icon-gift.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 200px 200px;
}
.card-gift .card-body > p{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #851651;
}
.card-gift .media{
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #c11574;
  margin-bottom: 12px;
}
.card-gift .media img{
  width: 39px;
  height: 29px;
  margin-right: 6px;
}

@media (min-width: 768px) {
  .card-gift{
    margin-top: 40px;
  }
  .card-gift .card-body {
    padding: 24px 32px;
    background-image: url("../images/bg-icon-gift.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 167px 167px;
  }
  .card-gift .card-body > p{
    font-size: 18px;
    line-height: 1.5;
  }
  .card-gift .media{
    font-size: 22px;
    margin-bottom: 16px;
  }
  .card-gift .media img{
    width: 39px;
    height: 29px;
    margin-right: 6px;
  }
}
/*End Gift box css*/

.hide-footer footer, .hide-footer .sub-footer{
  display: none;
}