@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Lilita+One&family=Noto+Sans+TC:wght@400;500;600;700&family=Roboto:wght@400;500;600&display=swap');

:root {
  --main-color: #00B3C4;
  --green-color: #B7D332;
  --highlight-color: #FF6B57;
  --black-color: #202020;
  --white-color: #ffffff;
  --light-gray: #CCCCCC;
  --dark-gray: #777777;
  --border-radius: 20px;
  --shadow-small: 0 3px 5px rgba(0, 0, 0, 0.15);
  --shadow-box: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body,
html {
  font-family: 'Roboto', 'Noto Sans TC', 'Helvetica LT', "微軟正黑體", sans-serif;
  font-size: 16px;
  color: var(--black-color);
  font-weight: 400;
  position: relative;
  line-height: 1.75;
}

a {
  transition: all ease-in-out .3s;
  color: var(--highlight-color);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 400;
  margin-bottom: 0;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

:focus {
  outline: none;
}

button {
  border: none;
  box-shadow: none;
}

.btn.focus,
.btn:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #333 !important;
  background-color: transparent;
  box-shadow: none !important;
  z-index: -1;
}

input:-internal-autofill-selected {
  appearance: none;
  background-color: transparent !important;
  box-shadow: none !important;
}

/**/
.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.font-400 {
  font-weight: 400;
}

.font-20 {
  font-size: 1.25rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  line-height: 1.5;
}

.shadow-small {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.shadow-box {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/*header*/
header {
  background: transparent;
  transition: all ease-in-out 0.3s;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 900;
  padding: 20px 80px;
}

.navbar-toggler,
.navbar-toggler:focus {
  background: var(--green-color);
  display: flex;
  align-items: center;
  color: #fff;
  width: 136px;
  padding: 13px 20px;
  border-radius: 25px;
  font-size: 1.5rem;
  border: none;
  z-index: 1000;
  transition: all ease-in-out .3s;
  box-shadow: var(--shadow-small);
}

.navbar-toggler:hover {
  background: var(--main-color);
}

body.open-menu .navbar-toggler {
  background: var(--white-color) !important;
  color: var(--black-color);
}

.collapse:not(.show) {
  display: none;
}

.navbar {
  padding: 0;
  flex-wrap: nowrap;
}

.navbar .navbar-brand {
  padding: 0;
  margin: 0;
  z-index: 1000;
}

.navbar .navbar-brand img {
  height: 50px;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right .lang {
  font-size: 1.5rem;
  margin-right: 20px;
}

.header-right .lang a {
  color: var(--black-color);
  padding: 0 5px;
}

.header-right .lang a.disabled {
  pointer-events: none;
  cursor: none;
  color: #aaa;
}

.navbar-menu {
  display: flex;
  width: 100%;
  padding: 60px 0;
  position: fixed;
  left: 0;
  top: -150%;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  background: linear-gradient(60deg, #ffffff 0%, #00b3c4 43%, #00b3c4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  transition: top ease-in-out .5s;
  z-index: 1000;
}

body.open-menu .navbar-menu {
  position: fixed;
  top: 0;

}

.menu-left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  padding: 0 80px;
}

.menu-left p {
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;

}

.navbar-nav {
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 0 80px;
}

.navbar-nav .nav-item {
  padding: 6px 0;
}


.navbar-nav .nav-item .nav-link {
  display: inline-block;
  font-size: 1.125rem;
  color: var(--white-color);
  font-weight: 600;
  text-align: left;
  position: relative;
  z-index: 0;
  letter-spacing: 10%;
  line-height: 1.5;
  padding: 0;
  transition: all ease-in-out .3s;
}

.navbar-nav .nav-item .nav-link span {
  font-size: 1.5rem;
  padding-right: 5px;
}

.navbar-nav .nav-item .nav-link:before {

  transition: all ease-in-out .5s;
  content: "";
  width: 0;
  height: 100%;
  background: var(--white-color);
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--main-color);
  opacity: 1;
}

.navbar-nav .nav-item .nav-link:hover::before,
.navbar-nav .nav-item.active .nav-link::before {
  opacity: 1;
  width: 100%;
}

/* body.fixed header {
  z-index: 100;
  box-shadow: 0 0 8px rgba(0, 0, 0, .15);
} */


#nav-icon {
  margin-left: 10px;
  width: 24px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  width: 100%;
  background: var(--white-color);
  height: 3px;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 7px;
}

#nav-icon span:nth-child(4) {
  top: 14px;
}

#nav-icon.open span {
  background: var(--black-color);
}

#nav-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}


/*content*/
.hide-all {
  display: none !important;
}

.show-mb {
  display: none !important;
}

.container-lg {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
}

.container {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
}

.row {
  margin: 0 -30px;
}

.row>* {
  padding: 0 30px;
}

.imgBox img {
  max-width: 100%;
}

.fixed-right {
  width: 100px;
  height: 120px;
  position: fixed;
  right: 30px;
  bottom: 10%;
  background-image: url(../img/btn-cta.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  z-index: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  padding-top: 5px;
  transition: all ease-in-out .3s;
}

.fixed-right:hover {
  background-image: url(../img/btn-cta-hover.svg);
}

.fixed-right .btn-box {
  width: 48px;
}

.fixed-right .btn-cta {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}

.fixed-right .btn-cta:hover {
  opacity: 1;
}

/* .loading-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out .3s;
  opacity: 1;
}

.loading-cover.hide-cover {
  z-index: -1;
  opacity: 0;
} */



.padding-setting {
  padding: 120px 0;
}

.padding-settingB {
  padding: 60px 0;
}

.title-style {
  padding: 40px 0 20px;
  margin-bottom: 20px;
}

.title-style h2 {
  position: relative;
  text-align: center;
  letter-spacing: 10%;
  line-height: 1.5;
  font-size: 2.5rem;
  font-weight: 700;

}

.title-style h5 {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #777;
  text-align: center;
  letter-spacing: 10%;
  font-weight: 700;
  line-height: 1.5;
}

.title-style.text-left h5,
.title-style.text-left h2 {
  text-align: left;
}

.text-box p {
  line-height: 1.5;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.text-row {
  display: flex;
  align-items: center;
}

.modal-dialog {
  max-width: 360px;
  margin: 0 auto;
  padding: 20px;
}

.modal-content {
  border-radius: var(--border-radius);
  border: none;
  padding: 0;
  background-color: var(--white-color);
}

.modal-content .close {
  background: var(--main-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 30px;
  padding: 0;
  box-shadow: var(--shadow-small);
  text-align: center;
  transition: all ease-in-out .3s;
  opacity: 1;
  z-index: 10;
}

.modal-content .close:hover {
  opacity: 0.8;
}

.modal-body {
  padding: 60px;
  overflow: hidden;
  z-index: 0;
}

.modal-body .bigYear {
  font-size: 240px;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  background-image: linear-gradient(40deg, rgba(183, 211, 50, 0) 0%, rgba(183, 211, 50, 0.6) 60%, rgba(183, 211, 50, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.modal-body .textBox {
  width: auto;
  flex: 0 1 auto;
  letter-spacing: 3%;
  padding: 125px 80px 0;
  text-align: center;
  margin-bottom: 40px;
}

.modal-body .textBox .title {
  margin-bottom: 20px;
}

.modal-body .textBox .title h2 {
  font-weight: 700;
  line-height: 1.5;
}

.modal-body .textBox .title h4 {
  color: var(--dark-gray);
  line-height: 1.5;
}

.modal-body .textBox p {
  color: var(--black-color);
  font-size: 1.125rem;
}

.modal-body .img-scrollBox {
  width: 100%;
  overflow: hidden;
}

.modal-body .img-group {
  margin: 0 -10px;
  overflow-x: scroll;
}

.modal-body .img-group .img-box {
  padding: 0 10px;
  width: 33.3%;
  flex: 0 0 33.3%;

}

.modal-body .img-group .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.form-modal-container .modal-dialog {
  width: 320px;
}

.form-modal-container .modal-content {
  border-radius: 0;
}

.form-modal-container .modal-content .close {
  display: none;
}

.form-modal-container .modal-body {
  padding: 24px 20px;
  text-align: center;
}

.form-modal-container .modal-body .btn-nomal {
  color: var(--highlight-color);
  text-decoration: none;
  border-radius: 10px;
  width: 180px;
  margin: 20px auto;
  box-shadow: var(--shadow-small);
  transition: all ease-in-out .3s;
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
}

.agenda-tabs {
  margin-bottom: 60px;
}

.agenda-tabs .tab {
  width: 50%;
  background: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-gray);
  border-bottom: 3px solid;
  padding: 5px 20px;
}

.agenda-tabs .tab.active,
.agenda-tabs .tab:hover {
  border-color: var(--main-color);
  color: var(--main-color);
}


.nav-tabs {
  border: none;
  margin: 0 -10px;
}

.nav-tabs .nav-link {
  padding: 0 10px;
  border: none;
  margin: 0;
  border-right: 1px solid var(--light-gray);
  border-radius: 0;
  line-height: 1;
  color: var(--black-color);
  position: relative;
  background-color: transparent;
  font-size: 1.25rem;
}

.nav-tabs .nav-link.active {
  color: var(--main-color);
  background-color: transparent;
}

.nav-tabs .nav-link.active:after {
  content: "";
  width: 11px;
  height: 12px;
  background: url(../img/icon/icon-drip.svg) no-repeat center center;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
}


.nav-tabs .nav-item:last-child .nav-link {
  border-right: none;
}


/*banner*/

.section-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.section-banner img {
  width: 100%;
}

.section-banner .banner-textBox {

  max-width: 42%;
  position: absolute;
  left: 80px;
  top: 40%;
  transform: translateY(-50%);
  isolation: isolate;
}

.drip {
  position: absolute;
  background-image: url(../img/drip.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 6.5%;
  height: 15%;
  opacity: 1;
  top: -100%;
}

.drip-drop01 {

  animation: drip-drop01 15s 1.5s infinite;
  right: 41%;
}

@keyframes drip-drop01 {
  0% {
    top: -100%;
    opacity: 1;
  }

  15% {
    top: 18%;
    opacity: 1;
  }

  83% {
    top: 18%;
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.drip-drop02 {
  animation: drip-drop02 15s 3s ease-in-out infinite;
  right: 33%;
}

@keyframes drip-drop02 {
  0% {
    top: -100%;
    opacity: 1;
  }

  22% {
    top: 75%;
    opacity: 1;
  }

  92% {
    top: 75%;
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.drip-drop03 {
  animation: drip-drop03 15s 0s infinite;
  right: 0%;
  top: -100%;
}

@keyframes drip-drop03 {
  0% {
    top: -100%;
    opacity: 1;
  }

  20% {
    top: 33%;
    opacity: 1;
  }

  80% {
    top: 33%;
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}


/* .btn-scroll {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  text-align: center;
} */

/* .btn-scroll .imgBox {
  position: relative;
  width: 30px;
  margin: 0 auto 20px;
}

.btn-scroll .imgBox::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  transition: all ease-in-out .3s;
  animation: scrollLoopArrow 2s infinite;
}

.btn-scroll .imgBox::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #fff;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  transition: all ease-in-out .3s;
  animation: scrollLoopArrow 2s infinite;
}

@keyframes scrollLoopArrow {
  0% {
    bottom: -15px;
  }

  50% {
    bottom: -20px;
  }

  100% {
    bottom: -15px;
  }
}

@keyframes scrollLoopLine {
  0% {
    height: 30px;
    bottom: -15px;
  }

  50% {
    height: 35px;
    bottom: -20px;
  }

  100% {
    height: 30px;
    bottom: -15px;
  }
} */


/* .btn-scroll span {
  color: #fff;
  font-size: 0.9rem;
} */

.section-foreword .title-style h2 {
  font-size: 2rem;
}

.section-foreword .card-blur {
  padding: 60px 80px 90px;
  border: none;
  border-radius: var(--border-radius);
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(1.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -5%;
}

.section-foreword .card-blur p {
  font-size: 1.125rem;
  margin-bottom: 80px;
  line-height: 2;
  letter-spacing: 10%;
}

.section-foreword .card-blur .foreword-info {
  width: 750px;
}

.section-foreword .card-blur .foreword-info .text-row {
  margin-bottom: 20px;
}

.section-foreword .card-blur .foreword-info h4 {

  color: var(--main-color);
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
  font-weight: 700;
}

.section-foreword .card-blur .foreword-info h4:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--main-color);
  position: absolute;
  top: 0;
  right: 0;
}

.section-foreword .card-blur .foreword-info p {
  letter-spacing: 5%;
  line-height: 1.5;
  margin-bottom: 0;
}

.ani-updownloop {
  animation: upDownLoop 1.2s ease-in-out infinite;
  transition: all ease-in-out .3s;
}

@keyframes upDownLoop {
  0% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(-4px);
  }
}

.section-foreword .marquee {
  font-size: 240px;
  line-height: 1;
  font-weight: 700;
  margin-top: -75px;
  position: relative;
  z-index: -1;
  color: var(--main-color);
  opacity: .1;
  overflow: visible;
  padding-bottom: 50px;
}

.bg-greenWave {
  position: relative;
}

.bg-greenWave:before {
  content: "";
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/wave-bg.svg)no-repeat center top;
  background-size: 100% auto;
  z-index: -1;
}

.section-agenda {
  position: relative;
  z-index: 0;
}

.section-agenda #content-wrapper {
  margin-bottom: 60px;
}

.agenda-name {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-color);
  padding: 0;
  margin-bottom: 40px;
}

.agenda-name {
  border-bottom: 4px solid var(--main-color);
}

/* 
.agenda-name[data-tab="afternoon"] {
  border-bottom: 4px solid var(--green-color);
} */

.agenda-name span {
  background-color: var(--main-color);
  display: inline-block;
  padding: 4px 20px 0;
}

/* 
.agenda-name[data-tab="afternoon"] span {
  background-color: var(--green-color);
} */

.agenda-list {
  color: #fff;
  margin-bottom: 40px;
}

.agenda-list li {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  padding-top: 10px;
}

.agenda-list li:last-child {
  margin-bottom: 0;
}

.agenda-list li:before {
  content: "";
  width: 13px;
  height: 13px;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  left: 194px;
  top: 22px;
  z-index: 1;
}


.agenda-list li:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--light-gray);
  position: absolute;
  left: 200px;
  top: 0;
}

.agenda-list li .time {
  color: var(--black-color);
  width: 200px;
  flex: 0 0 200px;
  padding: 5px 30px;
  text-align: center;
  font-size: 1.125rem;
  position: relative;
}

.agenda-list li .content {
  flex: 0 1 auto;
  padding: 0 30px;
}

.agenda-list li .content {
  padding: 0 30px;
}

.agenda-list li .content>div {
  margin-bottom: 5px;
}

.agenda-list li .content .title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--main-color);
}


.agenda-list li .content .description {
  color: var(--black-color);
}

.agenda-list li .content .speakers {
  color: var(--dark-gray);
}

.agenda-list li.isSubject,
.agenda-list li.isGray {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  padding: 10px 0;
}

.agenda-list li.isSubject:before,
.agenda-list li.isSubject:after,
.agenda-list li.isSubject .time,
.agenda-list li.isGray:before,
.agenda-list li.isGray::after,
.agenda-list li.isGray .time {
  display: none;
}

.agenda-list li.isSubject .content,
.agenda-list li.isGray .content {
  width: 100%;
  text-align: center;
}

.agenda-list li.isSubject .content .title {
  margin: 0;
  color: #64b212;
}

.agenda-list li.isGray .content .title {
  margin: 0;
  color: var(--dark-gray);
  font-size: 1.75rem;
}


.speaker-outer {
  position: relative;
}

.speaker-box {
  padding: 0 46px;
  position: relative;
  margin: 200px 0 40px;
}

.slide-speaker-list {

  display: flex;
  align-items: flex-end;
  height: 450px;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
  padding-left: 46%;
}

.slide-speaker-list .slick-list {
  overflow: visible;

}

.slide-speaker-list .slick-track {
  overflow: visible;
}

.slide-speaker-list .slick-slide {
  width: 120px;
  height: 160px;
  position: relative;
  transition: all 0.3s ease-in-out;
  margin-right: 32px;
}

.slide-speaker-list .slick-slide.slick-current {
  transform-origin: bottom right;
  z-index: 2;
  margin-left: 200px;
  transition: all 0.3s ease-in-out;

}

.slide-speaker-list .slick-slide .img-box,
.slide-speaker-list .slick-slide .speaker-bg {
  width: 100%;
  transform-origin: bottom right;
  transition: all 0.3s ease-in-out;
}

.slide-speaker-list .slick-slide.slick-current .img-box,
.slide-speaker-list .slick-slide.slick-current .speaker-bg {
  transform: scale(2.6);
}

.slide-speaker-list .slick-slide.slick-current .speaker-bg {
  width: 50%;
}


.speaker-single {
  position: relative;
  z-index: 0;
  border-radius: var(--border-radius);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  transition: all ease-in-out .5s;
  transform-origin: right bottom;
}

.speaker-single .speaker-bg {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  position: absolute;
  width: 120px;
  height: 160px;
  bottom: 0;
  right: 0;
  z-index: -1;
  box-shadow: var(--shadow-small);
  overflow: hidden;
  transition: all ease-in-out .5s;
  transition-delay: .3s;
  transform-origin: right bottom;
}

.speaker-single .speaker-bg:before {
  content: "";
  width: 50px;
  height: 61px;
  background: url(../img/speaker-bgA.svg)no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -2px;
  transition: all ease-in-out .5s;
}

.speaker-single .speaker-bg:after {
  content: "";
  width: 126px;
  height: 138px;
  background: url(../img/speaker-bgB.svg)no-repeat center center;
  background-size: contain;
  position: absolute;
  right: -7px;
  bottom: -23px;
  transition: all ease-in-out .5s;
}

.speaker-single .img-box {
  width: 120px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all ease-in-out .5s;
  transform-origin: right bottom;
  position: absolute;
  bottom: 0;
  right: 0;
}

.speaker-single .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: all ease-in-out .8s;
  transform-origin: right bottom;
}


.speaker-info-box {

  position: absolute;
  right: 0;
  top: -200px;
  width: 42%;
}

.speaker-info-box .spearker-info {
  padding: 80px 40px;
  letter-spacing: 10%;

}

.speaker-info-box .spearker-info h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.speaker-info-box .spearker-info h3 span {
  font-weight: 400;
  font-size: 1.125rem;
  margin-left: 10px;
}

.speaker-info-box .spearker-info h5 {
  color: var(--highlight-color);
  margin-bottom: 40px;
  line-height: 1.5;
}

.speaker-info-box .spearker-info p {
  font-size: 1.125rem;
  line-height: 1.5;
}


.speaker-box .slide-controller .slick-prev {
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 10;
}

.speaker-box .slide-controller .slick-next {
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 10;
}

.section-register {
  position: relative;
  overflow: hidden;
}

.section-register:before {
  content: "";
  width: 225px;
  height: 300px;
  background: url(../img/register-imgB.svg)no-repeat center center;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.section-register:after {
  content: "";
  width: 240px;
  height: 240px;
  background: url(../img/register-img.svg)no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.apply-form {
  padding-top: 60px;
}

.apply-form .campaign-form-wrap .campaign-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.apply-form .form-item {
  width: 50%;
  padding: 0 10px;
  position: relative;
  margin-bottom: 20px;
  z-index: 0;
}

.apply-form .form-item.form-full {
  width: 100%;
}


.apply-form .campaign-form-wrap .form-item .item-title {
  font-size: 1.125rem;
  color: var(--black-color);
  font-weight: 500;
  margin: 0;
  letter-spacing: 10%;
}

.apply-form .campaign-form-wrap input[type=text],
.apply-form .campaign-form-wrap input[type=email],
.apply-form .campaign-form-wrap select {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--black-color);
  padding: 10px 12px;
  transition: all ease-in-out .3s;
  font-size: 1.5rem;
  color: var(--main-color);
  font-weight: 500;
  background-color: transparent;
  height: 53px;
}

.apply-form .campaign-form-wrap select {
  /* 移除瀏覽器預設樣式 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 自訂下拉箭頭圖示 (可替換圖片網址) */
  background-image: url(../img/icon/select.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 8px;
  color: transparent;
  padding-right: 24px;
}

.apply-form .campaign-form-wrap .form-item.active input[type=text],
.apply-form .campaign-form-wrap .form-item.active input[type=email],
.apply-form .campaign-form-wrap .form-item.active select {
  border-color: var(--main-color);
  color: var(--main-color);
}

.apply-form .campaign-form-wrap .checkbox-item {
  align-items: center;
}

.apply-form .campaign-form-wrap .checkbox-item .checkbox {
  border-color: var(--black-color);
  border-radius: 2px;
  border-width: 2px;
  color: var(--main-color);
  width: 30px;
  height: 30px;
}

.apply-form .campaign-form-wrap .checkbox-item .checkbox-text {
  font-size: 1.125rem;
  color: var(--black-color);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 10%;
  width: calc(100% - 30px);
}

.apply-form .campaign-form-wrap .checkbox-item+.checkbox-item {
  margin-left: 10px;
}

.apply-form .campaign-form-wrap .form-item.privacy-policy-wrap {
  padding-top: 10px;
}

.apply-form .campaign-form-wrap .form-item.privacy-policy-wrap .privacy-policy-title {
  position: relative;
  left: 0;
  top: 0;
  transform: none;
  padding: 12px 0;
}

.apply-form .campaign-form-wrap .form-item .item-title.privacy-policy-title.required::before {
  display: none;
}

.apply-form .campaign-form-wrap .form-item.privacy-policy-wrap .privacy-policy-content {
  font-size: 1.125rem;
  color: var(--black-color);
  line-height: 1.75;
  text-align: justify;
  padding: 0;
  letter-spacing: 10%;
}

.apply-form .campaign-form-wrap .checkbox-item input[type=checkbox]:checked+.checkbox svg {
  transform: scale(1.5);
}

.apply-form .campaign-form-wrap .form-item.privacy-policy-wrap .privacy-policy-content a {
  color: var(--main-color);
}

.apply-form .campaign-form-wrap .form-item .flex-row {
  display: flex;
  flex-direction: row;
  height: 53px;
  border-bottom: 1px solid var(--black-color);
  align-items: center;
}

.apply-form .campaign-form-wrap .form-item .radio-item {
  margin-right: 10px;
}

.apply-form .campaign-form-wrap .radio-item .radiobox::before {
  background-color: var(--main-color)
}


.section-register .submit-buttons-wrap {
  justify-content: center;
  text-align: center;
  width: 100%;
  margin: 0;
}

.section-register .submit-buttons-wrap button {
  padding: 8px 15px;
  border-radius: 10px;
  background: var(--highlight-color);
  width: 180px;
  font-size: 1.25rem;
  color: var(--white-color);
  margin: 40px 0;
  box-shadow: var(--shadow-small);
  transition: all ease-in-out .3s;
}

.section-register .submit-buttons-wrap button.done {
  cursor: not-allowed;
  background: #ccc;
  box-shadow: none;
  opacity: 1;
}

.bg-blueToGreen {
  position: relative;
  background: linear-gradient(to bottom, rgba(0, 179, 196, 0.1) 0%, rgba(255, 255, 255, 0.1) 51%, rgba(183, 211, 50, 0.1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.bg-blueToGreen:before {
  content: "";
  width: 250px;
  height: 266px;
  background: url(../img/blueToGreen-img.svg) no-repeat right top;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.bg-blueToGreen:after {
  content: "";
  width: 250px;
  height: 266px;
  background: url(../img/blueToGreen-imgB.svg) no-repeat left bottom;
  background-size: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.download-list {
  width: 800px;
  margin: 0 auto;
}

.download-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}

.download-list li p {
  font-size: 1.25rem;
}

.download-list li a {
  font-size: 1.125rem;
}

.download-list li a img {
  margin-left: 5px;
}

.achievement-box {
  padding: 0 40px;
  position: relative;
}

.achievement-box .slick-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.achievement-box .slick-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slide-achievement {
  display: flex;
  flex-wrap: wrap;
}

.card-achievement-outer {
  padding: 20px;
  width: 33.3%;
}

.card-achievement {
  border-radius: var(--border-radius);
  background-color: var(--white-color);
  position: relative;
}

.card-achievement .year {
  background-color: #B7D332;
  padding: 10px 40px 10px 40px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  font-size: 1.75rem;
  position: absolute;
  border-radius: 25px;
  border-top-right-radius: 0;
  letter-spacing: 0;
  left: -20px;
  top: -25px;
}

.card-achievement .top {
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  aspect-ratio: 4/3;
}

.card-achievement .top img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  height: 100%;
}


.card-achievement .bottom {
  letter-spacing: 10%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 20px 20px;
  height: 200px;
}

.card-achievement .bottom .text-box {
  width: 100%;
}

.card-achievement .bottom .text-box .title-en {
  color: var(--dark-gray);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;

}

.card-achievement .bottom .btn-more {
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 3px 15px;
  color: var(--black-color);
  letter-spacing: 0;
  width: 115px;
}

.card-achievement .bottom .btn-more span {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 1px;
  margin-left: 5px;
  background-color: var(--highlight-color);
  opacity: 1;
  transition: all ease-in-out .3s;
}

.card-achievement .bottom .btn-more span:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--highlight-color);
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
}

.card-achievement .bottom .btn-more span:after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--highlight-color);
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .5;
}

.card-achievement .bottom .btn-more:hover span {
  width: 14px;
}

.live-group {
  display: flex;
  margin: 0 -12px;
  height: 450px;
}

.live-group .main-live-box {
  width: 80%;
  padding: 0 12px;
  height: 100%;
}

.live-group .main-live-box .live-box {
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
}

.live-group .live-box img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-group .sub-live-box {
  width: 20%;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: scroll;
}

.live-group .sub-live-box .live-box {
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  height: 25%;
  min-height: 120px;
  border: 2px solid transparent;
}

.live-group .sub-live-box .live-box:last-child {

  margin-bottom: 0;

}

.live-group .sub-live-box .live-box:hover {
  border-color: var(--highlight-color);
}

.highlight-box {
  padding-top: 30px;
  overflow: hidden;
  width: 100%;
}

.highlight-group {
  display: flex;
  margin: 0 -10px;
}

.highlight-group .img-box {
  padding: 0 10px;
}

/*footer*/
footer {
  background-color: var(--white-color);
  color: var(--black-color);
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

footer:before {
  content: "";
  width: 95px;
  height: 112px;
  background: url(../img/footer-left.png)no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 60%;
  left: 10%;
  transform: translateY(-50%);
}

footer:after {
  content: "";
  width: 320px;
  max-width: 25%;
  height: 326px;
  background: url(../img/footer-right.png)no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

footer .text-row {
  margin-bottom: 40px;
  justify-content: center;
}

footer .text-row,
footer p {
  position: relative;
  z-index: 1;
}

footer .text-row h5,
footer .text-row img {
  margin-right: 30px;
}

footer p {
  text-align: center;
  margin: 0;
}

footer a {
  text-align: center;
  margin: 0;
  display: block;
  color: var(--black-color);
  text-decoration: underline !important;
}

footer a:hover {
  color: var(--main-color);
}



@media(min-width:576px) {
  .modal-dialog {
    max-width: 500px;
  }
}

@media(min-width:992px) {
  .modal-dialog {
    max-width: 1060px;
  }
}



@media(max-width:1200px) {
  header {
    padding: 10px 20px;
  }

  .section-banner .banner-textBox {
    left: 20px;
  }

}

@media(max-width:991px) {


  .navbar .navbar-brand img {
    height: 32px;
  }

  body.open-menu header:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    animation: fadeIn .3s ease-in-out;
    -webkit-animation: fadeIn .3s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .navbar-toggler,
  .navbar-toggler:focus {
    width: 56px;
    padding: 9px 15px;
    justify-content: center;
  }

  .navbar-toggler .navbar-toggler-text {
    display: none;
  }

  #nav-icon {
    margin: 0;
  }

  .navbar-nav {
    margin: 20px 0;
    width: 50%;
    padding: 0 40px;
  }

  .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 400;
  }

  .navbar-nav .nav-item .nav-link span {
    font-size: 1.25rem;
  }

  .menu-left {
    padding: 0 40px;
  }

  .menu-left img {
    width: 220px;
  }

  .menu-left p {
    font-size: 1.25rem;
    font-weight: 400;
  }

  .header-right .lang {
    font-size: 1.25rem;
    margin-right: 10px;
  }

  .row {
    margin: 0 -20px;
  }

  .row>* {
    padding: 0 20px;
  }

  .padding-setting,
  .padding-settingB {
    padding: 60px 0;
  }

  .section-banner .banner-textBox {
    left: 20px;
  }

  .section-foreword .card-blur {
    padding: 40px 20px;
  }

  .section-foreword .card-blur p {
    margin-bottom: 40px;
  }

  .section-foreword .card-blur .foreword-info .text-row {
    flex-direction: column;
  }

  .section-foreword .card-blur .foreword-info h4 {
    padding-bottom: 10px;
    padding-right: 0;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .section-foreword .card-blur .foreword-info h4:after {
    top: auto;
    right: auto;
    height: 1px;
    width: 25px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .speaker-box {
    margin: 40px 0 20px;
  }

  .slide-speaker-list {
    padding-left: 56%;
  }

  .speaker-info-box {
    width: 100%;
    position: static;
  }

  .speaker-info-box .spearker-info {
    padding: 20px 0;
  }

  .section-register:before {
    width: 110px;
    height: 150px;
  }

  .section-register:after {
    width: 120px;
    height: 120px;
  }

  .bg-blueToGreen:before,
  .bg-blueToGreen:after {
    width: 200px;
    height: 210px;
  }

  .section-register .submit-buttons-wrap button {
    margin: 0;
  }

  .download-list {
    width: 100%;
  }

  .live-group {
    flex-direction: column;
    height: auto;
  }

  .live-group .main-live-box {
    width: 100%;
    margin-bottom: 20px;
  }

  .live-group .sub-live-box {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .live-group .sub-live-box .live-box {
    min-width: 160px;
    height: 90px;
    min-height: auto;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .modal-content .close {
    width: 40px;
    height: 40px;
    right: 20px;
    top: 20px;
  }

  .modal-content .close img {
    width: 16px;

  }

  .modal-body {
    padding: 40px 20px;
  }

  .modal-body .bigYear {
    font-size: 80px;
  }

  .modal-body .textBox {
    padding: 0;
    padding-top: 40px;
  }

  .modal-body .textBox .title h2 {
    font-size: 1.25rem;
  }

  .modal-body .textBox .title h4 {
    font-size: 1.125rem;
  }

  .modal-body .textBox p {
    font-size: 1rem;
  }

  .modal-body .img-group .img-box {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  footer {
    padding: 40px 0;
  }

  footer:before {
    width: 50px;
    height: 59px;
    left: 5%;
  }

  footer:after {
    width: 116px;
    height: 227px;
  }

  .fixed-right {
    width: 60px;
    height: 70px;
    padding: 5px 10px 0;
    font-size: .9rem;
    text-align: center;
    right: 10px;
  }

  .fixed-right .btn-cta {
    font-size: .9rem;
  }
}



@media(max-width:767px) {
  .wrapper {
    padding-top: 60px;
  }

  .show-mb {
    display: block !important;
  }

  .hide-mb {
    display: none !important;
  }

  header {
    padding: 10px 20px;
  }

  .navbar .navbar-brand {

    font-size: 1rem;
    line-height: 1;
  }

  body.open-menu .navbar-menu {
    flex-direction: column;
  }

  .navbar-menu .menu-logo img {
    position: absolute;
    top: 10px;
    left: 20px;
    width: auto;
    height: 32px;
  }

  .navbar-nav {
    width: 100%;
    padding: 0 20px;
  }

  .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
  }

  .navbar-nav .nav-item .nav-link span {
    font-size: 1.25rem;
  }


  h3 {
    font-size: 1.125rem;
  }

  .textBox p {
    font-size: 1rem;
  }

  .title-style {
    padding: 0 0 20px;
    margin-bottom: 10px;
  }

  .title-style h2,
  .section-foreword .title-style h2 {
    font-size: 1.5rem;
  }

  .section-banner .banner-textBox {
    width: 330px;
    top: 30px;
    transform: none;
    max-width: none;
  }

  .drip {
    display: none;
  }

  .section-foreword .card-blur p {
    font-size: 1rem;
    text-align: center;
  }

  .section-foreword .card-blur .foreword-info {
    width: 100%;
  }

  .section-foreword .card-blur .foreword-info h4 {
    font-size: 1.125rem;
  }

  .section-foreword .card-blur .foreword-info a {
    display: block;
    padding-top: 5px;
  }

  .section-foreword .marquee {
    font-size: 120px;
    margin-top: -40px;
    padding: 0;
  }


  .bg-greenWave:before {
    background-size: 200%;
  }

  .agenda-tabs {
    margin-bottom: 20px;
  }

  .agenda-tabs .tab {
    font-size: 1.125rem;
  }

  .agenda-name {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .agenda-list li:before {
    width: 10px;
    height: 10px;
    left: 106px;
    top: 18px;
  }

  .agenda-list li:after {
    left: 110px;
  }

  .agenda-list li .time {
    width: 100px;
    flex: 0 0 100px;
    font-size: .875rem;
    padding: 6px 0;
    line-height: 1;
    text-align: left;
  }

  .agenda-list li .content {
    width: 100%;
    padding-left: 30px;
    padding-right: 0;
    line-height: 1.5;
  }

  .agenda-list li .content .title {
    font-size: 1.125rem;
  }

  .agenda-list li.isSubject .content,
  .agenda-list li.isGray .content {
    padding: 0;
  }

  .agenda-list li.isSubject .content .title,
  .agenda-list li.isGray .content .title {
    font-size: 1.25rem;
  }

  .nav-tabs {
    flex-wrap: nowrap;
    width: auto;
    overflow-x: auto;
    padding-bottom: 30px;
  }

  .nav-tabs .nav-link {
    font-size: 1.125rem;
    word-break: keep-all;
    width: 150px;
  }


  .slide-speaker-list .slick-slide {
    margin-right: 20px;
  }


  .slide-controller {
    width: 70px;
    height: 25px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
  }

  .speaker-box .slide-controller .slick-arrow {
    position: static;
  }


  .section-speakers {
    padding-top: 80px;
  }

  .speaker-box {
    padding: 0;
  }

  .speaker-list {
    margin: 0 -10px;
  }

  .speaker-list li {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .speaker-list li .btn-plus {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
  }

  .speaker-list li .btn-plus img {
    width: 18px;
  }


  .apply-form {
    padding: 20px 0;
    margin-bottom: 30px;
  }

  .apply-form .form-item {
    width: 100%;
  }

  .apply-form .campaign-form-wrap .form-item .item-title {
    font-size: 1rem;
  }

  .apply-form .campaign-form-wrap input[type=text],
  .apply-form .campaign-form-wrap input[type=email],
  .apply-form .campaign-form-wrap select {
    font-size: 1.25rem;
    height: 45px;
    padding: 5px 12px;
  }

  .apply-form .campaign-form-wrap .form-item.privacy-policy-wrap {
    padding: 0 10px;
  }

  .apply-form .campaign-form-wrap .checkbox-item .checkbox {
    width: 24px;
    height: 24px;
  }

  .apply-form .campaign-form-wrap .checkbox-item .checkbox-text,
  .apply-form .campaign-form-wrap .form-item.privacy-policy-wrap .privacy-policy-content {
    font-size: 1rem;
    text-align: left;
  }

  .section-register .submit-buttons-wrap button {
    font-size: 1.125rem;
  }

  .section-register:after {
    width: 90px;
    height: 90px;
  }

  .bg-blueToGreen:before,
  .bg-blueToGreen:after {
    width: 115px;
    height: 120px;
  }

  .download-list li {
    padding: 15px 10px;
  }

  .download-list li p {
    font-size: 1.125rem;
  }

  .achievement-box {
    padding: 0;
    padding-bottom: 60px;
    margin: 0 -10px;
  }

  .achievement-box .slide-controller {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 25px;
  }

  .achievement-box .slick-prev {
    top: auto;
    left: auto;
  }

  .achievement-box .slick-next {
    top: auto;
    left: auto;
  }

  .live-group .main-live-box .live-box {
    height: 210px;
  }

  .highlight-group .img-box {
    height: 200px;
  }

  .highlight-group .img-box img {
    height: 100%;
    width: auto;
  }

  footer {
    padding: 60px 20px;
    font-size: .875rem;
  }

  footer:after {
    background: url(../img/footer-right-mb.png) no-repeat center center;
    background-size: 100%;
    right: -20px;
  }

  footer .text-row {
    flex-direction: column;
    margin-bottom: 20px;
  }

  footer .text-row h5,
  footer .text-row img {
    font-size: 1.125rem;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .modal-content .close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15px;
    right: 15px;
  }

  .modal-content .close img {
    width: 15px;
  }

  .modal-body {
    padding: 30px 20px;
  }

  .modal-body::before {
    display: none;
  }

  .modal-body .textBox .top h2 {
    font-size: 1.5rem;
  }

  .modal-body .textBox .top p {
    font-size: 1.125rem;
  }

  .modal-body .textBox .bottom p {
    font-size: 1rem;
  }

  .modal-body .textBox .top {
    margin-bottom: 20px;
  }

  .modal-body .imgBox {
    width: 100%;
    ;
  }
}

@media(max-width:420px) {}


@media(max-width:375px) {}

@media(max-width:320px) {}