@-webkit-keyframes scale {
  0%,
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-box-shadow: 0 5px 15px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 15px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}
@keyframes scale {
  0%,
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-box-shadow: 0 5px 15px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 15px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }
}
@-webkit-keyframes nope {
  0%,
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-7px) rotateY(-10deg);
    transform: translateX(-7px) rotateY(-10deg);
  }
  18.5% {
    -webkit-transform: translateX(6px) rotateY(8deg);
    transform: translateX(6px) rotateY(8deg);
  }
  31.5% {
    -webkit-transform: translateX(-4px) rotateY(-6deg);
    transform: translateX(-4px) rotateY(-6deg);
  }
  43.5% {
    -webkit-transform: translateX(3px) rotateY(4deg);
    transform: translateX(3px) rotateY(4deg);
  }
}
@keyframes nope {
  0%,
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-7px) rotateY(-10deg);
    transform: translateX(-7px) rotateY(-10deg);
  }
  18.5% {
    -webkit-transform: translateX(6px) rotateY(8deg);
    transform: translateX(6px) rotateY(8deg);
  }
  31.5% {
    -webkit-transform: translateX(-4px) rotateY(-6deg);
    transform: translateX(-4px) rotateY(-6deg);
  }
  43.5% {
    -webkit-transform: translateX(3px) rotateY(4deg);
    transform: translateX(3px) rotateY(4deg);
  }
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  to {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  to {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}
@-webkit-keyframes btnAnimationTransition {
  0% {
    -webkit-transform: translate3d(15px);
    transform: translate3d(15px);
  }
  50% {
    -webkit-box-shadow: 0 5px 15px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 15px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate3d(0deg);
    transform: translate3d(0deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(15px);
    transform: translate3d(15px);
  }
}
@keyframes btnAnimationTransition {
  0% {
    -webkit-transform: translate3d(15px);
    transform: translate3d(15px);
  }
  50% {
    -webkit-box-shadow: 0 5px 15px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 15px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate3d(0deg);
    transform: translate3d(0deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(15px);
    transform: translate3d(15px);
  }
}
@-webkit-keyframes tableShow {
  0%,
  25%,
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}
@keyframes tableShow {
  0%,
  25%,
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes moveInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
    transform: translateX(-10rem);
  }
  80% {
    -webkit-transform: translateX(1rem);
    transform: translateX(1rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
    transform: translateX(-10rem);
  }
  80% {
    -webkit-transform: translateX(1rem);
    transform: translateX(1rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes moveOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  80% {
    -webkit-transform: translateX(1rem);
    transform: translateX(1rem);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
    transform: translateX(-10rem);
  }
}
@keyframes moveOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  80% {
    -webkit-transform: translateX(1rem);
    transform: translateX(1rem);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
    transform: translateX(-10rem);
  }
}
@-webkit-keyframes moveOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  80% {
    -webkit-transform: translateX(-3rem);
    transform: translateX(-3rem);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
    transform: translateX(-10rem);
  }
}
@keyframes moveOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  80% {
    -webkit-transform: translateX(-3rem);
    transform: translateX(-3rem);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
    transform: translateX(-10rem);
  }
}
@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
    transform: translateX(10rem);
  }
  80% {
    -webkit-transform: translateX(-1rem);
    transform: translateX(-1rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
    transform: translateX(10rem);
  }
  80% {
    -webkit-transform: translateX(-1rem);
    transform: translateX(-1rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5rem);
    transform: translateY(-5rem);
  }
  75% {
    opacity: 0.4;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5rem);
    transform: translateY(-5rem);
  }
  75% {
    opacity: 0.4;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes moveOutBottom {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.02;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(5rem);
    transform: translateY(5rem);
  }
}
@keyframes moveOutBottom {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.02;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(5rem);
    transform: translateY(5rem);
  }
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a,
abbr,
acronym,
address,
applet,
b,
big,
blockquote,
body,
caption,
center,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
sub,
sup,
table,
tbody,
tfoot,
thead,
tr,
tt,
u,
ul,
var {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
body,
html {
  height: 100%;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.4;
  font-family: 'FSAlbertRegular', sans-serif;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  border: 0;
}
button:focus {
  outline: 0;
}
a,
a:hover {
  text-decoration: none;
}
@font-face {
  font-family: 'FSAlbertRegular';
  src: url(/file/css/fonts/FSAlbert-Regular.eot);
  src: local('/file/css/fonts/FSAlbert Regular'),
    local('/file/css/fonts/FSAlbert-Regular'),
    url(/file/css/fonts/FSAlbert-Regular.eot?#iefix) format('embedded-opentype'),
    url(/file/css/fonts/FSAlbert-Regular.ttf) format('truetype'),
    url(/file/css/fonts/FSAlbert-Regular.svg#FSAlbert-Regular) format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FSAlbertBold';
  src: url(/file/css/fonts/FSAlbert-Bold.eot);
  src: local('/file/css/fonts/FSAlbert-Bold'),
    url(/file/css/fonts/FSAlbert-Bold.eot?#iefix) format('embedded-opentype'),
    url(/file/css/fonts/FSAlbert-Bold.ttf) format('truetype'),
    url(/file/css/fonts/FSAlbert-Bold.svg#FSAlbert-Bold) format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FSAlbertBoldItalic';
  src: url(/file/css/fonts/FSAlbert-BoldItalic.eot);
  src: local('/file/css/fonts/FSAlbert-BoldItalic'),
    url(/file/css/fonts/FSAlbert-BoldItalic.eot?#iefix)
      format('embedded-opentype'),
    url(/file/css/fonts/FSAlbert-BoldItalic.ttf) format('truetype'),
    url(/file/css/fonts/FSAlbert-BoldItalic.svg#FSAlbert-BoldItalic)
      format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FSAlbertLight';
  src: url(/file/css/fonts/FSAlbert-Light.eot);
  src: local('/file/css/fonts/FSAlbert Light'),
    local('/file/css/fonts/FSAlbert-Light'),
    url(/file/css/fonts/FSAlbert-Light.eot?#iefix) format('embedded-opentype'),
    url(/file/css/fonts/FSAlbert-Light.ttf) format('truetype'),
    url(/file/css/fonts/FSAlbert-Light.svg#FSAlbert-Light) format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NotoSans';
  src: url(/file/css/fonts/NotoSans.eot);
  src: local('/file/css/fonts/FSAlbert Light'),
    local('/file/css/fonts/NotoSans'),
    url(/file/css/fonts/NotoSans.eot?#iefix) format('embedded-opentype'),
    url(/file/css/fonts/NotoSans.woff2) format('woff2'),
    url(/file/css/fonts/NotoSans.woff) format('woff'),
    url(/file/css/fonts/NotoSans.ttf) format('truetype'),
    url(/file/css/fonts/NotoSans.svg#NotoSans) format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansBold';
  src: url(/file/css/fonts/NotoSans-Bold.eot);
  src: local('/file/css/fonts/FSAlbert Light'),
    local('/file/css/fonts/NotoSans-Bold'),
    url(/file/css/fonts/NotoSans-Bold.eot?#iefix) format('embedded-opentype'),
    url(/file/css/fonts/NotoSans-Bold.woff2) format('woff2'),
    url(/file/css/fonts/NotoSans-Bold.woff) format('woff'),
    url(/file/css/fonts/NotoSans-Bold.ttf) format('truetype'),
    url(/file/css/fonts/NotoSans-Bold.svg#NotoSans-Bold) format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.bg-banner,
.bg-schedule {
  background-color: #000484;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-schedule {
  background-image: url(/file/image/bg-form.png);
  background-size: 1065px 900px;
  background-position: center;
}
.flex-column-center,
.flex-row-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-column-center {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.flex-end-md-center,
.flex-sb-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-end-md-center {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .flex-end-md-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.flex-start-sm-colmn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 776px) {
  .flex-start-sm-colmn {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.flex-end-sm-colmn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 776px) {
  .flex-end-sm-colmn {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.flex-centr-lg-colmn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .flex-centr-lg-colmn {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.flex-colmn-end-md-cntr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .flex-colmn-end-md-cntr {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 500px) {
  .flex-sm-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.flex-center-wrap,
.flex-start-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-start-wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-relative {
  position: relative;
}
.p-fixed {
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ie-mt-2 {
    margin-top: 2rem;
  }
}
.pt-sm {
  padding-top: 2rem;
}
.pt-md {
  padding-top: 3rem;
}
.pt-lg {
  padding-top: 4rem;
}
.pt-xl {
  padding-top: 5rem;
}
.pb-sm {
  padding-bottom: 2rem;
}
.pb-md {
  padding-bottom: 3rem;
}
.pb-lg {
  padding-bottom: 4rem;
}
.pb-xl {
  padding-bottom: 5rem;
}
.p-sm {
  padding: 2rem;
}
.p-md {
  padding: 3rem;
}
.p-lg {
  padding: 4rem;
}
.p-xl {
  padding: 5rem;
}
.mt-xxs {
  margin-top: 0.5rem !important;
}
.mt-xs {
  margin-top: 1rem !important;
}
.mt-sm {
  margin-top: 2rem !important;
}
.mt-md {
  margin-top: 3rem !important;
}
.mt-lg {
  margin-top: 4rem !important;
}
.mt-xl {
  margin-top: 5rem !important;
}
.ml-xxs {
  margin-left: 0.5rem !important;
}
.ml-xs {
  margin-left: 1rem !important;
}
.ml-sm {
  margin-left: 2rem !important;
}
.ml-md {
  margin-left: 3rem !important;
}
.ml-lg {
  margin-left: 4rem !important;
}
.ml-xl {
  margin-left: 5rem !important;
}
.mb-xxs {
  margin-bottom: 0.5rem !important;
}
.mb-xs {
  margin-bottom: 1rem !important;
}
.mb-sm {
  margin-bottom: 2rem !important;
}
.mb-md {
  margin-bottom: 3rem !important;
}
.mb-lg {
  margin-bottom: 4rem !important;
}
.mb-xl {
  margin-bottom: 5rem !important;
}
.mr-xxs {
  margin-right: 0.5rem !important;
}
.mr-xs {
  margin-right: 1rem !important;
}
.mr-sm {
  margin-right: 2rem !important;
}
.mr-md {
  margin-right: 3rem !important;
}
.mr-lg {
  margin-right: 4rem !important;
}
.mr-xl {
  margin-right: 5rem !important;
}
.my-xxs {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-xs {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-sm {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.my-md {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-lg {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.my-xl {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
.mx-xxs {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-xs {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.mx-sm {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}
.mx-md {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
.mx-lg {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}
.mx-xl {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}
.m-xxs {
  margin: 0.5rem !important;
}
.m-xs {
  margin: 1rem !important;
}
.m-sm {
  margin: 2rem !important;
}
.m-md {
  margin: 3rem !important;
}
.m-lg {
  margin: 4rem !important;
}
.m-xl {
  margin: 5rem !important;
}
.m-speaker-3 {
  margin: 0.5rem 2rem !important;
}
@media (max-width: 991px) {
  .m-speaker-3 {
    margin: 1rem !important;
  }
}
.color-menu {
  color: #232b76;
}
.color-white,
.color-white:hover {
  color: #fff;
}
.color-navy-blue,
.color-navy-blue:hover {
  color: #232b76;
}
.color-navy-blue-2,
.color-navy-blue-2:hover {
  color: #042164;
}
.color-blue,
.color-blue:hover {
  color: #009fe3;
}
.color-blue-2,
.color-blue-2:hover {
  color: #1490df;
}
.color-black-3,
.color-black-3:hover {
  color: #333;
}
.bg-white {
  background-color: #fff;
}
.bg-navy-blue {
  background-color: #232b76;
}
.bg-navy-blue-2 {
  background-color: #042164;
}
.bg-yellow-lg {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffcd2c),
    to(#ff940a)
  );
  background: linear-gradient(180deg, #ffcd2c 0%, #ff940a 100%);
}
.bg-gradient-blue {
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#00ceff),
      to(#cceaff)
    )
    0% 0% no-repeat padding-box;
  background: linear-gradient(180deg, #00ceff 0%, #cceaff 100%) 0% 0% no-repeat
    padding-box;
}
.bg-blue-light {
  background-color: #f7f8fb;
}
.bg-blue-light-2 {
  background-color: #e2f3fc;
}
.bg-blue {
  background-color: #009fe3;
}
.bg-gray-light-2 {
  background-color: #f5f5f5;
}
.border-btn-navyblue {
  border: 2px solid #232b76;
}
.border-btn-white {
  border: 2px solid #fff;
}
.border-btn-blue {
  border: 2px solid #009fe3;
}
.btn-animation-1:hover {
  -webkit-animation: scale 0.5s ease-in-out;
  animation: scale 0.5s ease-in-out;
}
.btn-animation-2:hover {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation: heartBeat 0.66s alternate;
  animation: heartBeat 0.66s alternate;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}
.btn-animation-nope:hover {
  -webkit-animation: nope 1s ease-in;
  animation: nope 1s ease-in;
}
.btn-banner,
.btn-speaker-date {
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
  display: inline-block;
  height: 50px;
  border-radius: 25px;
}
.btn-banner {
  max-width: 320px;
  text-transform: uppercase;
  font-size: 1.3em;
  width: 100%;
  padding: 12px 20px;
}
.btn-speaker-date {
  font-size: 17px;
  width: 290px;
  padding: 12px;
  cursor: pointer;
}
.btn-speaker-date--active {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  background-color: #232b76;
  color: #fff;
  border: 2px solid #232b76;
}
.btn-bio,
.btn-card-time,
.btn-schedule {
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
  display: inline-block;
}
.btn-bio {
  font-size: 15px;
  padding: 5px 25px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 16px;
}
.btn-bio:hover {
  -webkit-box-shadow: 0 0 20px rgba(20, 144, 223, 0.38);
  box-shadow: 0 0 20px rgba(20, 144, 223, 0.38);
}
.btn-card-time,
.btn-schedule {
  border-radius: 29px;
}
.btn-card-time {
  text-transform: uppercase;
  -webkit-box-shadow: 0 0 20px rgba(20, 144, 223, 0.38);
  box-shadow: 0 0 20px rgba(20, 144, 223, 0.38);
  width: 170px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.btn-card-time:hover {
  color: #fff;
  text-decoration: none;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.btn-schedule {
  font-size: 17px;
  padding: 10px 20px;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in,
    -webkit-transform 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in,
    -webkit-transform 0.3s ease-in-out;
  transition: box-shadow 0.2s ease-in, transform 0.3s ease-in-out;
  transition: box-shadow 0.2s ease-in, transform 0.3s ease-in-out,
    -webkit-box-shadow 0.2s ease-in, -webkit-transform 0.3s ease-in-out;
  cursor: pointer;
}
.btn-schedule--active {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  background-color: #fff;
  color: #232b76;
  border: 2px solid #fff;
}
.btn-schedule:hover {
  -webkit-box-shadow: 0 0 20px rgba(20, 144, 223, 0.38);
  box-shadow: 0 0 20px rgba(20, 144, 223, 0.38);
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.btn-login {
  font-size: 17px;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
  text-transform: uppercase;
  width: 252px;
  height: 48px;
  padding: 0.9rem 0.5rem;
  border-radius: 29px;
}
.btn-login:hover {
  color: #fff;
}
.btn-back-home,
.btn-login,
.btn-upcoming-register {
  -webkit-box-shadow: 0 0 20px rgba(20, 144, 223, 0.38);
  box-shadow: 0 0 20px rgba(20, 144, 223, 0.38);
}
.btn-back-home {
  font-size: 17px;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
  text-transform: uppercase;
  border-radius: 29px;
  height: 48px;
  display: inline-block;
  -webkit-transition: all 0.3s cubic-bezier(0, 1, 1, 0.01);
  transition: all 0.3s cubic-bezier(0, 1, 1, 0.01);
  padding: 0.6rem;
  width: 150px;
}
.btn-back-home:hover,
.btn-calendar:hover,
.btn-coming-soon:hover,
.btn-upcoming-calendar:hover,
.btn-upcoming-register:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.btn-upcoming-register {
  padding: 0.7rem;
  width: 107px;
}
.btn-coming-soon,
.btn-upcoming-calendar,
.btn-upcoming-register {
  font-size: 13px;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
  height: 37px;
  display: inline-block;
  border-radius: 29px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 1, 0, 0);
  transition: -webkit-transform 0.4s cubic-bezier(0, 1, 0, 0);
  transition: transform 0.4s cubic-bezier(0, 1, 0, 0);
  transition: transform 0.4s cubic-bezier(0, 1, 0, 0),
    -webkit-transform 0.4s cubic-bezier(0, 1, 0, 0);
}
.btn-coming-soon {
  text-transform: uppercase;
  border: solid 1px;
  padding: 0.6rem;
  width: 266px;
}
.btn-upcoming-calendar {
  padding: 0.7rem;
  width: 145px;
  -webkit-box-shadow: 0 0 20px rgba(20, 144, 223, 0.38);
  box-shadow: 0 0 20px rgba(20, 144, 223, 0.38);
}
.btn-calendar {
  width: 318px;
  height: 48px;
  font-size: 17px;
  color: #fff !important;
  text-transform: uppercase;
  background-color: #1490df !important;
  padding: 1rem;
  margin: auto;
  display: table !important;
  text-align: center;
  border: 0 !important;
  border-radius: 29px !important;
  -webkit-box-shadow: 0 0 20px rgba(20, 144, 223, 0.38) !important;
  box-shadow: 0 0 20px rgba(20, 144, 223, 0.38) !important;
  -webkit-transition: -webkit-transform 0.4s ease-in;
  transition: -webkit-transform 0.4s ease-in;
  transition: transform 0.4s ease-in;
  transition: transform 0.4s ease-in, -webkit-transform 0.4s ease-in;
}
.btn-calendar:hover {
  font-size: 17px;
}
@media (max-width: 460px) {
  .btn-calendar {
    width: 260px;
  }
}
.addeventatc .addeventatc_icon {
  display: none;
}
.card-time {
  position: relative;
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin: auto 1.5rem;
  font-size: 15px;
}
@media (max-width: 1400px) {
  .card-time {
    margin: auto 1rem;
  }
}
.card-time__date {
  font-size: 1.5em;
  text-align: center;
  padding: 0.5rem;
}
.card-time__title {
  font-size: 1.35em;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
  padding: 0 0.5rem 1rem;
  text-transform: uppercase;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-time__title {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 1400px) and (-ms-high-contrast: active),
  (max-width: 1400px) and (-ms-high-contrast: none) {
  .card-time__title {
    font-size: 1.2em;
  }
}
.card-time__location {
  font-size: 1.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 49px;
  padding: 0.5rem 1rem;
}
.card-time__city-time {
  display: inline-block;
  width: 100%;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(112, 112, 112, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.card-time__city-time:nth-last-of-type(2) {
  border-bottom: none;
}
.card-time__city {
  font-size: 1.1em;
}
@media screen and (max-width: 1400px) and (-ms-high-contrast: active),
  (max-width: 1400px) and (-ms-high-contrast: none) {
  .card-time__city {
    font-size: 1em;
  }
}
.card-time__clock {
  font-size: 1.1em;
  font-family: 'FSAlbertBold', sans-serif;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-time__clock {
    font-size: 1em;
  }
}
.card-time__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 0 3rem;
}
@media (max-width: 460px) {
  .card-time__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.card-thakyou {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px #00000024;
  box-shadow: 0 0 20px #00000024;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
}
@media (max-width: 1600px) {
  .card-thakyou {
    font-size: 14px;
    padding: 1.5rem;
    max-width: 380px;
  }
}
.card-thakyou__icon {
  width: 72px;
  height: 72px;
  font-size: 2.5em;
  color: #fff;
  border-radius: 100%;
}
.card-thakyou__desciription,
.card-thakyou__title {
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
}
.card-thakyou__title {
  margin: 0.8rem 0 1rem;
  font-size: 1.6em;
}
.card-thakyou__desciription {
  font-size: 1.25em;
  margin-bottom: 1.5rem;
}
.card-upcoming {
  width: 300px;
  border-radius: 10px;
}
.card-upcoming__head {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 1rem;
}
.card-upcoming__date {
  font-size: 1.25em;
  text-align: center;
}
.card-upcoming__body {
  padding: 0 1rem 1rem;
}
.card-upcoming__info {
  font-size: 1.18em;
  text-align: center;
  margin-top: 1rem;
  min-height: 95px;
}
.card-upcoming__border {
  border-bottom: 1px solid rgba(112, 112, 112, 0.3);
  width: 100%;
  display: block;
}
.card-upcoming__speaker-name {
  font-size: 1.2em;
  text-align: center;
  margin: 1rem;
}
.card-upcoming__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1rem 1rem;
}
.form-group {
  position: relative;
  margin-bottom: 1rem;
}
.form-card {
  max-width: 400px;
  width: 100%;
  background-color: #fff;
  padding: 2rem 1rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.14);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.14);
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .form-card {
    margin: 9rem 0 4rem;
  }
}
@media screen and (-ms-high-contrast: active) and (max-width: 991px),
  (-ms-high-contrast: none) and (max-width: 991px) {
  .form-card {
    margin: 5rem 0 2rem;
  }
}
.form-card__title {
  font-size: 1.6em;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.form-card__date {
  font-size: 1.25em;
  text-align: center;
  margin-bottom: 0.5rem;
}
.form-card__session-name {
  font-size: 1em;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.form-card__border {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
  margin-bottom: 0.8rem;
}
.form-card__input {
  max-width: 364px;
  width: 100%;
  height: 46px;
  background-color: #f5f5f5;
  border-radius: 7px;
  font-size: 1em;
  color: #666;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 2.2rem;
  border: 0;
}
.form-card__input::-ms-expand {
  display: none;
}
.form-card__textarea {
  width: 100%;
  min-height: 162px !important;
  padding: 12px;
  border-radius: 7px;
  font-size: 1em;
  color: #666;
  background-color: #f5f5f5;
  resize: vertical;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .form-card select {
    padding-left: 1.8rem;
  }
}
@-moz-document url-prefix() {
  .form-card select {
    padding-left: 0;
    text-indent: 14px;
  }
}
@supports (-webkit-touch-callout: none) {
  .form-card select {
    padding-left: 0;
    text-indent: 32px;
  }
}
.form-card__icon {
  position: absolute;
  top: 16px;
  left: 12px;
  color: #999;
}
.form-card__checkboxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form-card__text {
  font-size: 13px;
  color: #666;
  margin-left: 1.5rem;
  display: block;
}
.form-card__description {
  font-size: 10px;
  color: #666;
  margin-bottom: 1rem;
}
.checkbox-label {
  position: relative;
  margin: auto;
  cursor: pointer;
  font-size: 13px;
  clear: both;
}
.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-label .form-card__span {
  position: absolute;
  top: -2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border-radius: 4px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  border: 1px solid #707070;
}
.checkbox-label input:checked ~ .form-card__span {
  background-color: #232b76;
  border-radius: 4px;
  -webkit-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  opacity: 1;
  border: 1px solid #707070;
}
.checkbox-label .form-card__span::after {
  position: absolute;
  content: '';
  left: 8px;
  top: 8px;
  height: 0;
  width: 0;
  border-radius: 4px;
  border: solid #232b76;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(0deg) scale(0);
  transform: rotate(0deg) scale(0);
  opacity: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.checkbox-label input:checked ~ .form-card__span::after {
  -webkit-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
  opacity: 1;
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  background-color: transparent;
  border-radius: 0;
}
.checkbox-label .form-card__span::before {
  position: absolute;
  content: '';
  left: 10px;
  top: 10px;
  width: 0;
  height: 0;
  border-radius: 5px;
  border: 2px solid #fff;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.checkbox-label input:checked ~ .form-card__span::before {
  left: -3px;
  top: -3px;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  -webkit-transform: scale(3);
  transform: scale(3);
  opacity: 0;
  z-index: 999;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
  .modal {
    font-size: 14px;
  }
}
@media (max-width: 776px) {
  .modal {
    font-size: 12px;
  }
}
.modal .modal-dialog {
  max-width: 603px;
  margin-top: 3rem;
}
.modal .modal-dialog .modal-content {
  border-radius: 20px;
}
.modal .modal-dialog .modal-content .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  background-color: #e9faff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: none;
  padding: 22px 25px;
}
@media (max-width: 776px) {
  .modal .modal-dialog .modal-content .modal-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.modal .modal-dialog .modal-content .modal-header .btn-close {
  position: absolute;
  top: -22px;
  right: -38px;
  width: 30px;
  height: 32px;
  font-size: 20px;
  color: #5c0a3a;
  background-color: #fff;
  border-radius: 100%;
  opacity: 1;
}
@media (max-width: 776px) {
  .modal .modal-dialog .modal-content .modal-header .btn-close {
    top: 10;
    right: 10;
  }
}
.modal .modal-dialog .modal-content .modal-header .modal-speaker-img {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  margin-right: 22px;
}
.modal
  .modal-dialog
  .modal-content
  .modal-header
  .madol-speaker-info
  .madal-speaker-name {
  font-size: 1.375em;
  color: #020d84;
  font-family: 'FSAlbertBold', sans-serif;
}
@media (max-width: 776px) {
  .modal
    .modal-dialog
    .modal-content
    .modal-header
    .madol-speaker-info
    .madal-speaker-name {
    margin-top: 8px;
    text-align: center;
  }
}
.modal
  .modal-dialog
  .modal-content
  .modal-header
  .madol-speaker-info
  .modal-speaker-detail {
  font-size: 1.125em;
  color: #333;
  font-family: 'FSAlbertRegular', sans-serif;
}
@media (max-width: 776px) {
  .modal
    .modal-dialog
    .modal-content
    .modal-header
    .madol-speaker-info
    .modal-speaker-detail {
    text-align: center;
  }
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 35px 25px;
}
.modal .modal-dialog .modal-content .modal-body .modal-speaker-text {
  font-size: 1.375em;
  color: #333;
}
.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper-left-blur {
  position: absolute;
  width: 320px;
  height: calc(100% + 100px);
  left: 0;
  top: -20px;
  z-index: 9;
  background: linear-gradient(260deg, #f5f5f500 0%, #f5f5f5 100%) 0% 0%
    no-repeat padding-box;
}
@media (max-width: 991px) {
  .swiper-left-blur {
    width: 200px;
  }
}
@media (max-width: 776px) {
  .swiper-left-blur {
    display: none;
  }
}
.swiper-right-blur {
  position: absolute;
  width: 320px;
  height: calc(100% + 100px);
  right: 0;
  top: -20px;
  z-index: 9;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#f5f5f500),
      to(#f5f5f5)
    )
    0% 0% no-repeat padding-box;
  background: linear-gradient(90deg, #f5f5f500 0%, #f5f5f5 100%) 0% 0% no-repeat
    padding-box;
}
@media (max-width: 991px) {
  .swiper-right-blur {
    width: 200px;
  }
}
@media (max-width: 776px) {
  .swiper-right-blur {
    display: none;
  }
}
.header {
  min-height: 100px;
  margin: auto 0;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 99;
  position: fixed;
  top: 0;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}
@media (max-width: 991px) {
  .header {
    position: static;
  }
}
.header,
.header .nav-desktop {
  width: 100%;
}
@media (max-width: 991px) {
  .header .nav-desktop {
    display: none;
  }
}
.header .nav-desktop__logo-left,
.header .nav-desktop__logo-right {
  width: 150px;
}
.header .nav-desktop__list__item {
  float: left;
  margin: 0 12px;
}
.header .nav-desktop__list__link {
  font-size: 14px;
  font-family: 'FSAlbertBold', sans-serif;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}
.header .nav-mobile {
  display: none;
  width: 100%;
}
@media (max-width: 991px) {
  .header .nav-mobile {
    display: block;
  }
}
.header .nav-mobile__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 460px) {
  .header .nav-mobile__logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header .nav-mobile__logo-left {
    margin: 0.5rem 0;
  }
}
.header .nav-mobile__checkbox {
  display: none;
}
.header .nav-mobile__checkbox:checked ~ .nav-mobile__background {
  -webkit-transform: scale(100);
  transform: scale(100);
}
.header .nav-mobile__checkbox:checked ~ .nav-mobile__nav {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: initial;
  opacity: 1;
}
.header .nav-mobile__button {
  position: fixed;
  top: 1.5rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #009fe3;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 12;
  text-align: center;
}
.header .nav-mobile__background {
  position: fixed;
  top: 1.5rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-image: radial-gradient(#4364ff, #62b6ff);
  z-index: 10;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.header .nav-mobile__nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 11;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in,
    -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.8s ease-in,
    -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.8s ease-in,
    transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.8s ease-in,
    transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.header .nav-mobile__list {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  list-style: none;
}
.header .nav-mobile__item {
  margin: 1rem;
  counter-increment: list;
}
.header .nav-mobile__link:link,
.header .nav-mobile__link:visited {
  display: inline-block;
  font-size: 1.2em;
  font-family: 'FSAlbertBold', sans-serif;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 49.9%,
    #fff 50%
  );
  background-size: 240%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header .nav-mobile__link:active,
.header .nav-mobile__link:hover {
  color: #009fe3;
  background-position: 100%;
  -webkit-transform: translateX(1rem);
  transform: translateX(1rem);
}
.header .nav-mobile__icon {
  display: inline-block;
  position: relative;
  width: 1.8rem;
  height: 0.5rem;
  top: 26%;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.header .nav-mobile__icon-span {
  position: absolute;
  height: 0.3rem;
  width: 50%;
  background: #fff;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
.header .nav-mobile__icon-span:nth-child(even) {
  left: 50%;
  border-radius: 0 0.9rem 0.9rem 0;
}
.header .nav-mobile__icon-span:nth-child(odd) {
  left: 0;
  border-radius: 0.9rem 0 0 0.9rem;
}
.header .nav-mobile__icon-span:nth-child(1),
.header .nav-mobile__icon-span:nth-child(2) {
  -webkit-transform: translateY(-0.8rem);
  transform: translateY(-0.8rem);
}
.header .nav-mobile__icon-span:nth-child(5),
.header .nav-mobile__icon-span:nth-child(6) {
  -webkit-transform: translateY(0.8rem);
  transform: translateY(0.8rem);
}
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button
  .nav-mobile__icon-span:nth-child(1),
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button
  .nav-mobile__icon-span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button
  .nav-mobile__icon-span:nth-child(2),
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button
  .nav-mobile__icon-span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button
  .nav-mobile__icon-span:nth-child(2),
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button
  .nav-mobile__icon-span:nth-child(6) {
  -webkit-transform-origin: left;
  transform-origin: left;
}
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button
  .nav-mobile__icon-span:nth-child(1),
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button
  .nav-mobile__icon-span:nth-child(5) {
  -webkit-transform-origin: right;
  transform-origin: right;
}
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button
  .nav-mobile__icon-span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button
  .nav-mobile__icon-span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.header
  .nav-mobile__checkbox:checked
  + .nav-mobile__button:hover
  .nav-mobile__icon {
  top: 11px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header .nav-mobile__button:hover .nav-mobile__icon-span:nth-child(3) {
  -webkit-transform: translateX(-0.3rem) scale(1.1);
  transform: translateX(-0.3rem) scale(1.1);
}
.header .nav-mobile__button:hover .nav-mobile__icon-span:nth-child(4) {
  -webkit-transform: translateX(0.3rem) scale(1.1);
  transform: translateX(0.3rem) scale(1.1);
}
.footer {
  width: 100%;
  min-height: 123px;
  border-top: 1px solid rgba(112, 112, 112, 0.3);
}
.footer__img {
  width: 207px;
}
.footer__info {
  font-size: 1em;
  color: #333;
  text-align: center;
}
@media (max-width: 776px) {
  .footer__info {
    text-align: center;
    margin: 1rem 0;
  }
}
.footer__code {
  font-size: 1em;
  color: #333;
  text-align: right;
}
@media (max-width: 776px) {
  .footer__code {
    text-align: center;
  }
}
.banner {
  padding: 9em 0 4.5em;
}
@media (max-width: 1400px) {
  .banner {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .banner {
    font-size: 12px;
  }
}
.banner__next-webinar {
  font-size: 2.5em;
  font-family: 'NotoSans', sans-serif;
  color: #66bfff;
}
.banner__title {
  font-size: 2.5em;
  font-family: 'NotoSansBold', sans-serif;
}
.banner__subtitle {
  font-size: 2.9em;
  font-family: 'FSAlbertBoldItalic', sans-serif;
}
.banner__date {
  font-size: 1.8em;
}
.banner__img {
  max-width: 440px;
  width: 100%;
  margin-top: 27px;
  margin-left: -60px;
}
.speakers {
  padding: 2rem 0;
}
@media (max-width: 1400px) {
  .speakers {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .speakers {
    font-size: 13px;
  }
}
.speakers__title {
  font-size: 2.5em;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
}
.speakers__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .speakers__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.speakers__show {
  -webkit-animation: moveInBottom 1s ease-in;
  animation: moveInBottom 1s ease-in;
}
.speakers__hide {
  -webkit-animation: moveOutBottom 1s ease-out;
  animation: moveOutBottom 1s ease-out;
}
.speakers__group,
.speakers__speaker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.speakers__group {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.speakers__speaker {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 280px;
  width: 100%;
  margin: 1rem 0.5rem;
}
@media (max-width: 1400px) {
  .speakers__speaker {
    max-width: 250px;
  }
}
.speakers__speaker__img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
@media (max-width: 1400px) {
  .speakers__speaker__img {
    width: 110px;
    height: 110px;
  }
}
.speakers__speaker__name {
  font-size: 1.2em;
  font-family: 'FSAlbertBold', sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.5rem;
}
.speakers__speaker__info {
  font-size: 0.9em;
  text-align: center;
  margin-bottom: 0.8rem;
}
.speakers__speaker__info span {
  display: block;
}
@media (max-width: 500px) {
  .speakers__speaker__info span {
    display: inline;
  }
}
.webinar-info {
  padding: 2rem 0;
}
@media (max-width: 1400px) {
  .webinar-info {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .webinar-info {
    font-size: 12px;
  }
}
.webinar-info__title {
  font-size: 2.5em;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
}
.webinar-info__subtitle {
  font-size: 1.9em;
  text-align: center;
  max-width: 951px;
}
.webinar-info__border {
  border-bottom: 10px solid;
  max-width: 436px;
  width: 100%;
}
.webinar-info__commentary {
  max-width: 320px;
  width: 100%;
  margin: 1rem 2rem;
}
.webinar-info__commentary__group {
  position: relative;
  z-index: 9;
}
.webinar-info__commentary__title {
  color: #66bfff;
  font-size: 1.5em;
  font-family: 'FSAlbertBold', sans-serif;
}
.webinar-info__commentary__title::before {
  content: '';
  width: 84px;
  height: 84px;
  background-color: #c0e2f4;
  display: inline-block;
  border-radius: 100%;
  position: absolute;
  z-index: -1;
  top: -40px;
  left: -40px;
}
.webinar-info__commentary__item {
  font-size: 1.5em;
  color: #232b76;
}
.time-by-city {
  padding: 2rem 0;
}
.time-by-city__title {
  font-size: 2.5em;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
}
.time-by-city__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.schedule {
  padding: 3rem 0;
}
.schedule__title {
  font-size: 2.5em;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
}
.schedule__buttons-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .schedule__scroll {
    max-width: 1000px;
    width: 100%;
    overflow-x: scroll;
    border-radius: 20px;
  }
  .schedule__scroll::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
  }
  .schedule__scroll::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
  }
  .schedule__scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: transparent;
    background-image: -webkit-gradient(
      linear,
      40% 0%,
      75% 84%,
      from(#67c3ff),
      to(#009fe3),
      color-stop(0.6, #5089ff)
    );
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  }
}
.schedule__table {
  width: 990px;
  border-radius: 20px;
  padding: 2rem;
  display: inline-block;
}
.schedule__table__head__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0.5rem 2rem;
}
.schedule__table__head__col {
  font-size: 1.5em;
  font-family: 'FSAlbertBold', sans-serif;
}
.schedule__table__head__col:first-of-type {
  width: 600px;
}
.schedule__table__head__col:nth-of-type(2) {
  width: 390px;
}
.schedule__table__body__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.schedule__table__body__row:last-of-type {
  border-bottom: none;
}
.schedule__table__body__col {
  font-size: 1.125em;
}
.schedule__table__body__col:first-of-type {
  width: 600px;
  font-family: 'FSAlbertBold', sans-serif;
}
.schedule__table__body__col:nth-of-type(2) {
  width: 390px;
}
.schedule__table-hide {
  opacity: 0;
  display: none;
}
.schedule__table.show {
  -webkit-animation: tableShow 1s linear;
  animation: tableShow 1s linear;
}
.video {
  padding: 2rem 0;
}
.video__player {
  max-width: 1200px;
  width: 100%;
}
.teaser {
  padding: 2rem 0;
}
@media (max-width: 1400px) {
  .teaser {
    font-size: 14px;
  }
}
@media (max-width: 776px) {
  .teaser {
    font-size: 12px;
  }
}
.teaser__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  margin: 1rem 2rem;
}
@media (max-width: 600px) {
  .teaser__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 1rem;
  }
}
.teaser__circle {
  width: 74px;
  height: 74px;
  border-radius: 100%;
  position: absolute;
  left: 74px;
  top: -20px;
  z-index: 1;
}
@media (max-width: 600px) {
  .teaser__circle {
    display: none;
  }
}
.teaser__img {
  width: 64px;
  height: 58px;
  margin-right: 2rem;
}
@media (max-width: 600px) {
  .teaser__img {
    width: 55px;
    height: 50px;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.teaser__info {
  position: relative;
  z-index: 9;
}
@media (max-width: 600px) {
  .teaser__info {
    text-align: center;
  }
}
.teaser__info__title {
  font-size: 1.875em;
  font-family: 'FSAlbertBold', sans-serif;
  margin-bottom: 0.5rem;
}
.teaser__info__subtitle {
  font-size: 1.125em;
  margin-bottom: 0.5rem;
}
.upcoming-events {
  padding: 2rem 0;
}
.upcoming-events__title {
  font-size: 2.5em;
  font-family: 'FSAlbertBold', sans-serif;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .upcoming-events__title {
    margin-bottom: 2rem;
  }
}
.form-pages {
  background-image: url(/file/image/bg-form.png);
  background-color: #000484;
  background-size: 1065px 900px;
  background-repeat: no-repeat;
  background-position: center 90%;
  padding: 9em 0 4.5em;
  display: block;
  min-height: calc(100vh - (100px + 123px));
}
@font-face {
  font-family: 'RobotoBold';
  font-style: normal;
  font-weight: 400;
  src: url(/file/css/fonts/Roboto-Bold.eot);
  src: url(/file/css/fonts/Roboto-Bold.eot?#iefix) format('embedded-opentype'),
    url(/file/css/fonts/Roboto-Bold.woff2) format('woff2'),
    url(/file/css/fonts/Roboto-Bold.woff) format('woff'),
    url(/file/css/fonts/Roboto-Bold.ttf) format('ttf');
}
@font-face {
  font-family: 'RobotoRegular';
  font-style: normal;
  font-weight: 400;
  src: url(/file/css/fonts/Roboto-Regular.eot);
  src: url(/file/css/fonts/Roboto-Regular.eot?#iefix)
      format('embedded-opentype'),
    url(/file/css/fonts/Roboto-Regular.woff2) format('woff2'),
    url(/file/css/fonts/Roboto-Regular.woff) format('woff'),
    url(/file/css/fonts/Roboto-Regular.ttf) format('ttf');
}
