:root {
  --theme: #2a007d;
  --themePink: #ff00ff;
  --themePinkDark: #c700c7;
  --themeCyan: #00ffff;
  --themeSkyTxt: #2d82c3;
  --link: #3800a9;
  --linkHover: #3800a9;
  --btn: #f8d108;
}

@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 100%;
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans TC", "Noto Sans", "微軟正黑體", "Open Sans", Helvetica,
    Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    min-height: 100%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 20px 0 10px;
  line-height: 1.4;
}

h1 {
  font-size: 50px;
  font-weight: 500;
}

h2 {
  font-size: 43px;
  font-weight: 500;
}

h3 {
  font-size: 35px;
  font-weight: 500;
}

h4 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
}

h5 {
  font-size: 20px;
  font-weight: 500;
}

h6 {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
}

.lead {
  margin: 10px 0 5px;
  font-weight: bold;
}

strong {
  font-weight: 700;
}

i.fa,
i.fas {
  min-width: 20px;
  min-height: 20px;
  display: inline;
}

p,
.p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

p.smaller,
.p.smaller {
  font-size: 87.5%;
  line-height: 1.5;
}

.desc {
  font-size: 18px;
  line-height: 1.8;
}

.hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid #dddddd;
}

.breadcrumb-head {
  color: #dfdfdf;
  font-weight: 500;
  margin: -1% -4% 3% 0;
  letter-spacing: -2px;
}

ul {
  list-style: none;
  line-height: 1.9em;
}

ul li {
  list-style: none;
}

ul.disc-list li.disc-list {
  list-style: disc;
}

ol {
  margin-left: 1.5rem;
  line-height: 1.9em;
}

.list ul,
.list ol {
  margin-left: 1.5rem;
}

.list ul>li {
  list-style: disc;
}

.list ol>li {
  list-style: decimal;
}

a {
  transition: all 0.3s ease;
  color: var(--link);
  cursor: pointer;
}

a:hover,
a:focus,
a:active {
  color: var(--linkHover);
  text-decoration: none;
}

@media (min-width: 480px) and (max-width: 767px) {
  body {
    line-height: 1.4;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 20px 0 10px;
    line-height: 1.2;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  h4 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  h5 {
    font-size: 1.3rem;
  }

  h6 {
    font-size: 1rem;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.3;
  }

  ul {
    line-height: 1.8;
  }

  ol {
    margin-left: 20px;
  }

  button,
  .btn,
  .btn--default {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  body {
    line-height: 1.4;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    margin: 20px 0 10px;
    line-height: 1.3;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.2rem;
    font-weight: 600;
  }

  h6 {
    font-size: 1rem;
    font-weight: 700;
    margin: 10px 0;
  }

  p {
    line-height: 1.4;
  }

  ul {
    line-height: 1.8;
  }

  ol {
    margin-left: 20px;
  }

  button,
  .btn,
  .btn--default {
    font-size: 18px;
    width: 90%;
  }
}

/**************
  btn 共用 start
 **************/
button,
.btn {
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 1.4;
  border: none;
  outline: none;
  font-family: "微軟正黑體", "Open Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

button:focus,
button:hover,
.btn:focus,
.btn:hover {
  color: #ffffff;
  outline: none;
}

.btn-inline {
  color: #333;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 1.4;
  border: none;
  outline: none;
  font-family: "微軟正黑體", "Open Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

.btn-inline:focus,
.btn-inline:hover {
  color: #333;
  outline: none;
}

.btn-block {
  display: block;
  width: 90%;
  max-width: 350px;
  margin: 1% auto 2%;
  padding: 15px;
  font-size: 18px;
  letter-spacing: 1px;
  box-shadow: 0px 4px 4px 0px #00000040;
  background-color: var(--theme-feat);
}

.btn-glowing {
  margin-top: 4rem;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  text-shadow: none;
  /* border: 1px solid #fff; */
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px #00000040;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: 0.3s ease;
}

.btn-glowing:hover {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  box-shadow: none;
}

.btn-glowing:before {
  content: "";
  background: #0001f0;
  background: -moz-linear-gradient(-45deg,
      rgba(177, 28, 173, 1) 0%,
      rgba(42, 0, 126, 1) 50%,
      rgba(177, 28, 173, 1) 100%);
  background: -webkit-linear-gradient(-45deg,
      rgba(177, 28, 173, 1) 0%,
      rgba(42, 0, 126, 1) 50%,
      rgba(177, 28, 173, 1) 100%);
  background: linear-gradient(135deg,
      rgba(177, 28, 173, 1) 0%,
      rgba(42, 0, 126, 1) 50%,
      rgba(177, 28, 173, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0001f0', endColorstr='#0001f0', GradientType=1);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.btn-glowing:hover:before {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-moz-keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

@-webkit-keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.btn-default {
  font-size: 18px;
  letter-spacing: 3px;
  display: inline-block;
  color: #fff;
  background-color: var(--theme);
  border-radius: 10px;
  padding: 0.8rem 0;
  width: 30%;
}

.btn-default:focus,
.btn-default:hover,
.btn-default:active {
  color: #fff;
  background: #050c5c;
}

.btn-line {
  font-size: 18px;
  letter-spacing: 3px;
  display: inline-block;
  border-radius: 10px;
  padding: 0.8rem 0;
  width: 30%;
  border-radius: 0;
  background: #fff;
  color: #066999;
  border: 1px solid #d4d4d4;
}

.btn-line:focus,
.btn-line:hover,
.btn-line:active {
  color: #088bca;
  background-color: #fff;
}

.btn-line-s {
  letter-spacing: 3px;
  display: inline-block;
  padding: 1px 8px 0px;
  border-radius: 5px;
  color: var(--theme-hit);
  border: 1px solid var(--theme-hit);
  font-size: 90%;
  margin: 0 3px;
}

.btn-line-s:focus,
.btn-line-s:hover,
.btn-line-s:active {
  background-color: var(--theme-hit);
  color: var(--theme);
}

.btn-outline {
  color: var(--link);
  border: 1px solid var(--link);
}

.btn-outline:focus,
.btn-outline:hover {
  background: var(--linkHover);
  border-color: var(--linkHover);
  color: #fff;
}

/* close btn */
.btn-close {
  background-color: #ccc;
  color: var(--theme);
  text-shadow: none;
  /* cursor: not-allowed !important; */
}

.more {
  text-align: right;
  float: right;
}

.more::after {
  content: "";
  clear: right;
}

/* back btn on inner pages: speaker_page, techdemo_page, product_page */
.btn-back {
  border: 3px solid #fff;
  color: #fff;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 45px;
  border-radius: 50px;
  margin: -2% 2% 1%;
  font-size: 24px;
  opacity: 0.7;
}

.btn-back:hover {
  opacity: 1;
  background-color: #fff;
  color: var(--link);
}

.btn-back:focus {
  opacity: 0.8;
}

/**************
  btn 共用 end
 **************/

/* 共用的 section 上下 padding */
.py-section {
  padding: 8% 0;
}

.bolder {
  font-weight: bolder;
}

.bg-black {
  background-color: #333;
}

.bg-theme {
  background-color: var(--theme);
}

.bg-gold {
  background-color: #f9e7ae;
}

.text-gold {
  color: #c0942d;
}

.text-theme {
  color: var(--theme);
}

section,
header {
  position: relative;
}

section {
  padding: 4% 0% 5% 0%;
  /* float: left; */
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  section {
    padding: 20px 15px;
    /* overflow: hidden; */
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.sec-head {
  position: relative;
  line-height: 1;
}

.sec-head::before {
  content: "";
  background: rgb(0, 112, 239);
  background: -moz-linear-gradient(-45deg,
      rgba(0, 112, 239, 1) 60%,
      rgba(71, 224, 249) 100%);
  background: -webkit-linear-gradient(-45deg,
      rgba(0, 112, 239, 1) 60%,
      rgba(71, 224, 249) 100%);
  background: linear-gradient(135deg,
      rgba(0, 112, 239, 1) 60%,
      rgba(71, 224, 249) 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4px;
}

section .ul li {
  list-style: disc;
  margin-left: 1.5em;
  margin-bottom: 0.4rem;
}

section:last-of-type {
  margin-bottom: 0;
}

.container {
  padding: 0;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}

header,
footer {
  /* float: left; */
  position: relative;
  width: 100%;
}

/* 
Navbar
 */
.navbar {
  background-color: var(--theme);
  padding: 0rem 1rem;
  box-shadow: 0 3px 5px #00000040;
}

.navbar-brand {
  width: 85%;
  max-width: 300px;
  margin: 0;
}

.navbar-brand img {
  width: 100%;
}

.navbar-toggler {
  width: 15%;
}

.navbar-toggler-icon {}

.navbar-collapse {}

.navbar-nav {
  font-weight: 400;
}

.navbar-nav .nav-item {}

.navbar-nav .nav-item .nav-link {
  color: #fff;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
  color: var(--themeCyan);
}

.navbar-nav .nav-item .nav-link {}

.navbar-nav .nav-item.btn-sign {}

.navbar-nav .nav-item.btn-sign .nav-link {
  color: #fff;
  padding: 10px 30px 5px;
  font-weight: 500;
  line-height: 1.6;
  background: var(--themePink);
  transition: 0.3s ease;
}

.navbar-nav .nav-item.btn-sign .nav-link:hover,
.navbar-nav .nav-item.btn-sign .nav-link:focus {
  background: var(--themePinkDark);
}

.navbar-nav .nav-item.btn-sign .nav-link small {
  display: block;
  line-height: 1;
}

.navbar-nav .nav-item.nav-li-close {}

.navbar-nav .nav-item.nav-li-close .btn-close {
  color: #333;
  padding: 10px 30px 10px;
  font-weight: 500;
  line-height: 1.6;
  background: #ccc;
  cursor: not-allowed;
  transition: 0.3s ease;
}

@media (max-width: 991px) {
  .navbar-nav {
    background-color: #ffffff33;
  }

  .navbar-nav .nav-item {
    border-bottom: 2px solid var(--theme);
  }

  .navbar-nav .nav-item:last-child() {
    border-bottom-color: transparent;
  }
}

.pagination {
  margin: 10px;
  display: inline-block;
}

.pagination>li>a,
.pagination>li>span {
  color: #888;
}

.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>a:active,
.pagination>li>span:hover,
.pagination>li>span:focus,
.pagination>li>span:active {
  color: #333;
  text-decoration: none;
}

.highlight {
  color: #c0942d;
}

.card-shadow {
  -webkit-box-shadow: 0px 0rem 0.5rem rgba(0, 0, 0, 0.25) !important;
  box-shadow: 0px 0rem 0.5rem rgba(0, 0, 0, 0.25) !important;
  border-radius: 6px !important;
}

.section-title {
  text-align: center;
  color: #333333;
}

/*
 go top 
 */
.gotop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  color: #eeeeee;
  background: var(--link);
  border: 2px solid var(--linkHover);
  box-shadow: 0 0 5px #ffffffcc;
  width: 40px;
  height: 40px;
  font-size: 24px;
  border-radius: 50%;
  -moz-border-radius: 3px;
  line-height: 40px;
  text-align: center;
  z-index: 998;
  transition: 0.3s ease;
}

.gotop:hover,
.gotop:focus,
.gotop:active {
  color: var(--linkHover);
  background: var(--themeCyan);
  border-color: var(--themeCyan);
}

/* 
footer
 */
footer.section-footer {
  font-family: "Lato", sans-serif;
  background: #222;
  margin: 0px;
  padding: 2% 0;
  padding-bottom: 60px;
  bottom: 0px;
  width: 100%;
  color: #cdcdcd;
  z-index: 99;
}

.section-footer a {
  color: #cdcdcd;
}

.section-footer a:hover,
.section-footer a:active,
.section-footer a:focus {
  color: #15c9ff;
  opacity: 1;
}

.section-footer .footer-container {
  /* padding: 10px 10% 0; */
  width: 100%;
}

.section-footer .footer-container:first-child {
  border-bottom: 1px solid #666666;
}

.section-footer .footer-container .footer-brand {}

.section-footer .footer-title {
  font-size: 32px;
}

.section-footer .footer-title img {
  width: 100%;
  max-width: 500px;
}

footer .social-group {
  width: 100%;
}

footer .social-group .social-list {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: end;
}

footer .social-group .social-list li {
  display: inline-block;
  padding: 0 10px;
}

footer .social-group .social-list li:hover,
footer .social-group .social-list li:focus,
footer .social-group .social-list li:active {
  transform: translateY(2px);
}

footer .social-group .social-list li a {
  display: inline-block;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 40px;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(0px);
}

@media (max-width: 767px) {
  footer .social-group .social-list li a {
    font-size: 50px;
  }
}

footer .social-group .social-list li:not(a):hover,
footer .social-group .social-list li a:hover {
  filter: brightness(1.05);
}

.footer-info {
  width: 100%;
}

.speed-link {
  padding: 0;
}

.speed-link ul li {
  display: inline-block;
  padding: 0 10px;
  border-left: 1px solid #666666;
}

.speed-link ul li:first-child {
  border-left-width: 0px;
}

.speed-link ul li a {}

.history-years {
  padding-left: 15px;
}

.years-title {
  padding: 0 8px;
  display: inline-block;
}

.history-years .years-list {
  display: inline-block;
}

.history-years .years-list li {
  display: inline-block;
  padding: 0 10px;
  border-left: 1px solid #666666;
}

.history-years .years-list li:first-child {
  border-left-width: 0px;
}

.history-years .years-list li a span {}

.brand-part {
  line-height: 1.8em;
  opacity: 0.6;
}

.brand-part .img-cyber {
  width: 100%;
  display: inline-block;
  margin: 0.5rem 0.5rem 0.5rem 0;
  max-width: 180px;
}

.brand-part .img-cyber span a img {}

.logo-img,
.imgbox {
  overflow: hidden;
}

.logo-img img,
.imgbox img {
  box-shadow: 0 0 2px #ccc;
  /* -webkit-transform: scale(1);
  transform: scale(1);
  transition: .5s ease; */
  width: 100%;
}

.logo-img:hover img,
.imgbox:hover img {
  /* -webkit-transform: scale(1.2);
  transform: scale(1.2); */
}

.brand-part .img-ithome {
  width: 100%;
  max-width: 150px;
  display: inline-block;
  margin: 1%;
}

.right-logo-cyber {}

.copyrightbox {}

.copyright {
  padding-top: 2%;
  color: #777;
}

/* 
index kv
 */
.kv.main {
  position: relative;
}

.kv-txt-title {
  background: var(--theme);
  text-align: center;
}

.kv-txt-title img {
  width: 100%;
  max-width: 1920px;
  margin: auto;
}

@media (max-width: 767px) {
  .kv-txt-title img {
    max-width: 800px;
  }
}

/* 
    index foreword */
.section-foreword {
  background-color: #f5f5f5;
}

.foreword-mainbox {}

.foreword-title-top {
  color: var(--themePinkDark);
}

.foreword-title-top span {}

.foreword-title {
  color: var(--themeSkyTxt);
}

.foreword-mainbox .desc {}

.foreword-mainbox .btn-glowing {
  padding: 15px 20px;
  width: 60%;
  display: block;
  margin: 0;
}

.foreword-mainbox .btn-glowing i {
  margin: 3px;
}

.foreword-decobox {
  padding: 0 0 0 15px;
}

.foreword-deco {}

.foreword-iconbox {
  opacity: 0.8;
  text-align: center;
  padding: 15px;
}

.foreword-iconbox img {
  max-width: 90px;
  width: 90px;
  height: 90px;
  /* filter: drop-shadow(0px 0px 1px #ffffff); */
  filter: grayscale(1);
}

.foreword-txt {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
}

.foreword-txt .txt {
  margin: 0;
}

/* active */
.foreword-deco.active {
  background-color: #fff;
}

.foreword-deco.active .foreword-iconbox img {
  filter: grayscale(0);
}

.foreword-deco.active .foreword-txt .txt {
  color: var(--theme);
}

@media (max-width: 767px) {
  .foreword-decobox {
    padding: 0 15px;
    text-align: center;
  }

  .foreword-iconbox {
    padding: 5% 1% 1%;
  }

  .foreword-mainbox .btn-glowing {
    margin: auto;
  }
}

/* .swiperIntroNav .swiper-slide-active {
  opacity: 1;
}
.foreword-deco .swiperIntro {

}
.foreword-deco .swiperIntro .swiper-wrapper {
}
.swiperIntro  .swiper-slide-active {
  color: var(--themePinkDark);
} */

/* 
event
 */
.section-event {
  padding: 0 0 5%;
  /* background: linear-gradient(90deg, #F5F5F5 50%,#ffffff 45%); */
  background: var(--theme);
}

@media (max-width: 767px) {
  .section-event {
    background: #fff;
  }
}

.event-header {
  background: url("../img/ciso/kv-bg.jpg") no-repeat center / 150%;
  color: #fff;
  text-align: center;
  padding: 3% 0 2%;
}

.event-header .til {
  margin: 10px 0;
}

.event-header .sub {
  font-weight: normal;
}

.event-card-forum-cover {}

.event-card-ciso-cover {}

/* event-card */
.section-event .event-card {
  padding: 30px;
  margin: 0;
  max-width: 800px;
  background-color: #e3eded;
}

.section-event .event-card.forum {
  background-color: #ebebeb;
}

.section-event .event-card.ciso {}

/* event-card 裡面共用 */
.section-event .event-card-imgbox {}

.section-event .event-card-imgbox img {
  width: 100%;
}

.section-event .event-card-timebox {
  padding: 0;
}

.section-event .event-card-timebox .date {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1;
}

.section-event .event-card-timebox .date span {
  font-size: 24px;
  vertical-align: middle;
}

.section-event .event-card-timebox .date small {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0px;
}

.section-event .event-card-timebox time {
  font-size: 15px;
  letter-spacing: 1px;
}

.section-event .event-card-titlebox {
  font-weight: 500;
  padding-right: 0;
}

.section-event .event-card-titlebox .top {
  font-size: 16px;
}

.section-event .event-card-titlebox .til {
  margin: 0;
}

.section-event .event-card-sloganbox {
  font-weight: normal;
}

.section-event .event-card-sloganbox .slogan {}

.section-event .event-card-txtbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  min-height: 200px;
}

.section-event .event-card-txtbox::before {
  content: "";
  background: linear-gradient(var(--themeCyan), var(--theme));
  height: 160px;
  /* width: 5px; */
  flex: 0 0 5px;
  display: inline-block;
}

.section-event .event-card-txtbox .txt {
  padding-left: 15px;
}

.section-event .event-card-txtbox .txt strong {
  color: var(--theme);
}

.section-event .event-card-btnbox {
  padding: 0;
  text-align: center;
}

.section-event .btn-choose {
  display: block;
  max-width: 300px;
  margin: 10px auto;
  font-size: 18px;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: var(--themePinkDark);
  color: #fff;
  line-height: 1;
}

.section-event .btn-choose i {
  display: inline-block;
  margin-left: 10px;
  /* color: var(--themePinkDark); */
  font-size: 24px;
  line-height: 24px;
}

.section-event .btn-choose span {}

.section-event .btn-choose:hover,
.section-event .btn-choose:focus {
  background-color: #fff;
  color: var(--themePinkDark);
  box-shadow: 0 0 0 3px var(--themePinkDark);
}

.section-event .btn-choose:hover i,
.section-event .btn-choose:focus i {
  /* color: #fff; */
}

.section-event .btn-choose:hover span,
.section-event .btn-choose:focus span {}

.section-event .event-card.forum .btn-choose {}

.section-event .event-card.ciso .btn-choose {
  /* background-color: var(--themePinkDark);
  color: #fff; */
}

.section-event .btn-close {
  display: block;
  max-width: 300px;
  margin: 10px auto;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #ccc;
  color: #333;
  /* cursor: not-allowed; */
  line-height: 1;
}

.section-event .event-card-partnerbox {
  background-color: #fff;
  padding: 10px 15px;
  margin: 0;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.section-event .event-card-partnerbox span {
  word-break: keep-all;
  display: inline-block;
}

.section-event .event-card-partnerbox img {
  max-width: 200px;
  margin-left: 2%;
}

.section-event .event-card-sessionbox {
  width: 100%;
}

.section-event .session-headbox {
  padding: 15px;
}

.section-event .session-headbox .top {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 5px;
}

.section-event .head-title {
  margin: 0;
}

.section-event .session-datebox {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1;
  padding: 15px;
  text-align: center;
}

.section-event .session-datebox span {
  font-size: 24px;
  vertical-align: middle;
}

.section-event .session-main {}

.section-event .session-main .session-item-link {}

.section-event .session-main .session-item {
  margin: 2% 0;
  padding: 15px 0;
  background-color: #fff;
  color: var(--theme);
  transition: 0.3s ease;
}

.section-event .session-main .session-item:hover,
.section-event .session-main .session-item:focus {
  color: var(--linkHover);
  box-shadow: 0 0 2px 2px #e2e2e2;
}

.section-event .session-item .imgbox {
  text-align: center;
}

.section-event .session-item .imgbox img {
  max-width: 200px;
}

.section-event .session-item .txtbox time {}

.section-event .session-item .txtbox .session-title {
  margin: 10px 0;
  font-size: 18px;
}

.section-event .session-speaker {
  font-size: 14px;
}

/* Modal */
.modal-event {}

.modal-event .modal-dialog {
  max-width: 1000px;
  margin: 1.75rem auto;
}

.modal-event .modal-dialog .modal-content {}

.modal-event .modal-dialog .modal-content .modal-body {
  padding: 15px;
}

.modal-event .modal-dialog .modal-content .modal-body button.close {
  color: var(--theme);
  border: 1px solid var(--theme);
  font-size: 20px;
  padding: 8px 12px;
  border-radius: 5px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.modal-event .modal-dialog .modal-content .modal-body button.close span {
  font-size: 22px;
  vertical-align: bottom;
}

.modal-item {
  margin: 2% 0;
  padding: 15px;
  background-color: #fff;
}

.modal-item .imgbox img {}

.modal-item .txtbox time {
  font-size: 20px;
  font-weight: 500;
  color: var(--theme);
}

.modal-item .txtbox .modal-title {
  margin: 10px 0;
  color: var(--theme);
}

.modal-item .txtbox .loaction {
  color: #858585;
}

.modal-item .txtbox .loaction label {
  margin-right: 5px;
  text-align: right;
  color: #b5b5b5;
}

.modal-item .modal-txtbox {
  padding: 15px;
}

.modal-item .modal-txtbox.deco::before {
  content: "";
  background: rgb(0, 112, 239);
  background: -moz-linear-gradient(-45deg,
      rgba(0, 112, 239, 1) 60%,
      rgba(71, 224, 249) 100%);
  background: -webkit-linear-gradient(-45deg,
      rgba(0, 112, 239, 1) 60%,
      rgba(71, 224, 249) 100%);
  background: linear-gradient(135deg,
      rgba(0, 112, 239, 1) 60%,
      rgba(71, 224, 249) 100%);
  position: absolute;
  bottom: 0;
  width: 98%;
  left: 1%;
  height: 4px;
}

.modal-item .modal-txtbox .modal-speaker {
  margin: 10px 0;
}

/* 選擇場次 立即報名 Call to Action Button */
.section-cta {
  background: var(--theme);
  background: linear-gradient(0deg, rgba(42, 0, 125, 0), rgba(42, 0, 125, 1)),
    url("../img/ciso/kv-bg.jpg") no-repeat center top/ 200%;
  padding: 5% 2%;
  color: #fff;
  text-align: center;
  font-size: 18px;
}

.section-cta .title {
  margin: 10px auto;
}

.section-cta .txt {
  line-height: 1.6;
  margin: 15px 0 30px;
}

.btn-signup {
  background-color: var(--btn);
  color: var(--linkHover);
  font-size: 18px;
  border-radius: 30px;
  padding: 15px 20px;
  display: block;
  max-width: 50%;
  margin: 3% auto;
  text-align: center;
  line-height: 1;
  opacity: 1;
  transition: 0.3s ease;
}

.btn-signup:hover {
  opacity: 0.6;
}

.btn-signup i {
  font-size: 24px;
  vertical-align: text-bottom;
}

/* ----logo-wall---- */

.section-sponsor {
  background-color: #fff;
}

.section-sponsor .sec-head {
  margin: 0;
}

.section-sponsor .sec-head .title {
  color: var(--theme);
}

.section-sponsor .title .sub {}

.section-sponsor .title-btn .circle {}

.section-sponsor .title-btn .icon-arrow {}

.section-sponsor .title-btn .button-text {
  color: #b991ff;
}

/* .title-btn .button-text */

.logo-wall,
.logo-wall2 {
  position: relative;
  width: 80%;
  text-align: center;
  background-color: #fff;
  z-index: 11;
}

.logo-wall .section-logowall,
.logo-wall2 .section-logowall {
  /* position: relative; */
  background-color: #fff;
}

.logo-wall .logoWall-content,
.logo-wall2 .logoWall-content {
  width: 100%;
  margin: 0 auto;
  padding-top: 3%;
}

.logo-wall .logoWall-content>h2,
.logo-wall2 .logoWall-content>h2 {
  color: #15356c;
  font-size: 46px;
  letter-spacing: 4px;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 768px) {

  .logo-wall .logoWall-content>h2,
  .logo-wall2 .logoWall-content>h2 {
    font-size: 2.25em;
    letter-spacing: 1px;
  }
}

.logo-wall .logoWall-content .levelTtitle,
.logo-wall2 .logoWall-content .levelTtitle {
  font-size: 20px;
  padding: 0;
  margin: 2.5% 0 1%;
  font-weight: bold;
  color: #15356c;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo-wall .logoWall-content .levelTtitle:before,
.logo-wall2 .logoWall-content .levelTtitle:before {
  background-color: #d1eeff;
  position: absolute;
  width: 100%;
  height: 10px;
  top: 0;
  transform: translate(-6%, 155%) rotate(-5deg);
  transform-origin: right;
  z-index: -1;
}

.logo-wall .logoWall-content .levelSubTtitle,
.logo-wall2 .logoWall-content .levelSubTtitle {
  font-size: 18px;
  font-weight: bold;
  margin: 12% auto 4%;
  color: #15356c;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo-wall .logoWall-content .levelSubTtitle:before,
.logo-wall2 .logoWall-content .levelSubTtitle:before {
  content: "";
  background-color: #d1eeff;
  display: inline-block;
  width: 20px;
  height: 5px;
  margin: 0 10px;
}

.logo-wall .logoWall-content .levelSubTtitle:after,
.logo-wall2 .logoWall-content .levelSubTtitle:after {
  content: "";
  background-color: #d1eeff;
  display: inline-block;
  width: 20px;
  height: 5px;
  margin: 0 10px;
}

.logo-wall .levelLine,
.logo-wall2 .levelLine {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 1%;
}

.logo-wall .levelGroup,
.logo-wall2 .levelGroup {
  text-align: center;
  width: 100%;
}

.logo-wall .levelGroup>h3,
.logo-wall2 .levelGroup>h3 {
  display: inline-block;
}

.logo-wall .level,
.logo-wall2 .level,
.level>a {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

@media (max-width: 1199px) {

  .logo-wall .level,
  .logo-wall2 .level,
  .level>a {
    flex-wrap: wrap;
  }
}

.logo-wall .logo-img,
.logo-wall2 .logo-img {
  width: 20%;
  flex-basis: 20%;
  max-width: 250px;
  padding: 5px;
  overflow: hidden;
}

@media (max-width: 1200px) {

  .logo-wall .logo-img,
  .logo-wall2 .logo-img {
    width: auto;
    flex-basis: auto;
    flex-grow: 1;
  }
}

.logo-wall .logo-img-sm,
.logo-wall2 .logo-img-sm {
  width: calc(100% / 6);
  flex-basis: calc(100% / 6);
}

@media (max-width: 1200px) {

  .logo-wall .logo-img-sm,
  .logo-wall2 .logo-img-sm {
    width: calc(100% / 4);
    flex-basis: calc(100% / 4);
    flex-grow: 1;
  }
}

@media (max-width: 992px) {

  .logo-wall .logo-img-sm,
  .logo-wall2 .logo-img-sm {
    width: calc(100% / 3);
    flex-basis: calc(100% / 3);
  }
}

@media (max-width: 667px) {

  .logo-wall .logo-img-sm,
  .logo-wall2 .logo-img-sm {
    width: 100%;
    flex-basis: 100%;
  }
}

.logo-wall .level-left .logo-img-sm,
.logo-wall2 .level-left .logo-img-sm {
  flex-grow: unset;
}

.logo-wall .level-left .logo-img-sm:last-child,
.logo-wall2 .level-left .logo-img-sm:last-child {
  margin-right: auto;
}

@media (max-width: 667px) {

  .logo-wall .level-left .logo-img-sm:last-child,
  .logo-wall2 .level-left .logo-img-sm:last-child {
    margin-right: unset;
  }
}

.logo-wall .logo-img>img,
.logo-wall2 .logo-img>img {
  margin: 0 auto;
  cursor: default;
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: #fff;
  box-shadow: none;
  transition: all 0.1s ease-in;
  transform: scale(1);
}

.logo-wall .logo-img:hover>img,
.logo-wall2 .logo-img:hover>img {
  transform: scale(1.08);
}

.logo-wall .logo-img-sm>img,
.logo-wall2 .logo-img-sm>img {
  margin: 0 auto;
  max-width: 168px;
  width: 100%;
}

@media (max-width: 1200px) {

  .logo-wall .logo-img-sm>img,
  .logo-wall2 .logo-img-sm>img {
    max-width: 75%;
  }
}

@media (max-width: 992px) {

  .logo-wall .logo-img-sm>img,
  .logo-wall2 .logo-img-sm>img {
    max-width: 100%;
  }
}

.logo-wall #levelMediaPartnerTtt img,
.logo-wall2 #levelMediaPartnerTtt img {
  cursor: default;
}

.logo-wall #level2 .logo-img,
#level2 a {
  /* flex: 0 1 300px; */
}

.logo-wall #level2-2 .logo-img,
#level2-2 a {
  /* flex: 0 1 260px; */
}

.logo-wall #level3 .logo-img,
#level3 a {
  /* flex: 0 1 240px; */
}

.logo-wall #level4 .logo-img,
#level4 a {
  /* flex: 0 2 220px; 
    margin: 15px 45px;*/
}

.logo-wall #level5 .logo-img,
#level5 a {
  /* flex: 0 2 200px; */
}

.logo-wall #level6 .logo-img,
#level6 a {
  /* flex: 0 2 180px; */
}

.room {
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-top: 3px;
}


/* ciso logowall */
.section-partners.ciso {}