@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700&display=swap);

@font-face {
  font-family: var(--body-font-family);
  font-style: normal;
  font-weight: 300;
  src: local('Gotham'), url('../fonts/NewsGothicStd.otf') format('opentype');
}

@font-face {
  font-family: 'NewsGothicStd-Oblique';
  font-style: normal;
  font-weight: 500;
  src: local('Gotham'), url('../fonts/NewsGothicStd-Oblique.otf') format('opentype');
}

@font-face {
  font-family: 'NewsGothicStd-Bold';
  font-style: normal;
  font-weight: bold;
  src: local('Gotham'), url('../fonts/NewsGothicStd-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 300;
  src: local('Gotham'), url('../fonts/glyphicons-halflings-regular.ttf') format('opentype');
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #003974;
  --secondary-color: #666666;
  --text-color: #666666;
  --section-bg-color: #f0f8ff;
  --table-bg-color: #dbe3ea;
  --site-footer-bg-color: #f6f6f6;
  --custom-btn-bg-color: #597081;
  --custom-btn-bg-hover-color: #0071BC;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #e9eaeb;
  --active-color: #003974;
  --hover-top-color: orange;
  --program-row-bg-color: #f8f8f8;
  --grey-color: #808285;
  /*2024 color*/

  --body-font-family: "Roboto Condensed", sans-serif, "Microsoft JhengHei";

  --h1-font-size: 52px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 16px;
  --btn-font-size: 18px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --font-family-sans-serif: "Roboto Condensed", sans-serif, "Microsoft JhengHei";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  color: var(--text-color);
}

/* Loading */
.spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #cccccc 94%, #0000) top/9px 9px no-repeat, conic-gradient(#0000 30%, #cccccc);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 9px), #000 0);
  animation: spinner-c7wet2 1s infinite linear;
}

@keyframes spinner-c7wet2 {
  100% {
    transform: rotate(1turn);
  }
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
}


p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 70px;
  padding-bottom: 0px;
}

.section-padding-sm {
  padding-top: 60px;
  padding-bottom: 0px;
}

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

.section-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.section-overlay+.container {
  position: relative;
}


/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  background: var(--white-color);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.custom-block-body {
  padding: 30px 0px 30px 0px;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block;
}


/*---------------------------------------
  PROGRESS BAR               
-----------------------------------------*/
.progress {
  background: var(--border-color);
  height: 5px;
}

.progress-bar {
  background: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM LIST               
-----------------------------------------*/
.custom-list {
  margin-bottom: 0;
  padding-left: 0;
}

.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM TEXT BOX               
-----------------------------------------*/
.custom-text-box {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 40px;
}

.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-text-box-icon {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  line-height: 30px;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
}

.navbar-collapse {
  float: left;
  width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px;
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: var(--white-color);
  z-index: 9;
  padding-top: 20px;
  padding-bottom: 0;
  height: 138px;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand span {
  display: inline-block;
  vertical-align: middle;
}

.navbar-brand small {
  color: var(--secondary-color);
  display: block;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
}

.topnav {
  text-align: right;
  padding-top: 30px;
  padding-right: 0px;
}

.logo {
  width: 350px;
  height: auto;
  margin-left: 0px;
}

.loginbutt {
  padding-top: 0px;
  margin-left: 10px;
}

.loginbutt_mobile {
  display: none;
}

.social_buttons_mobile {
  display: none;
}

.login_txt {
  font-family: var(--body-font-family);
  float: left;
  padding: 2px 0px 0px 5px;
  font-size: 22px;
  font-weight: bold;
}

.login_icon {
  float: left;
  padding-top: 5px;
}

.login_icon img {
  margin-top: 0px;
  height: 15px;
}

.fa-brands.fa-facebook {
  width: 30px;
  color: var(--primary-color);
  display: inline-block;
  font-size: 30px;
}

.youtube-icon {
  display: inline-block;
  width: 30px;
  /* 圓形的寬度 */
  height: 30px;
  /* 圓形的高度 */
  background-color: var(--primary-color);
  border-radius: 50%;
  /* 使其成為圓形 */
  color: white;
  /* 圖標顏色 */
  text-align: center;
  /* 使圖標居中 */
  line-height: 30px;
  /* 垂直居中 */
  font-size: 20px;
  /* 圖標大小 */
}

.youtube-icon:hover i {
  color: white;
}

.featured-text {
  color: var(--text-color) !important;
}

.home_section_container {
  padding-bottom: 20px;
}

.home_section_title {
  color: var(--primary-color);
  text-align: left;
  font-family: var(--body-font-family);
  font-weight: bold;
  font-size: 22px;
  line-height: 25px;
  margin-top: 18px;
  padding: 0px 20px 0px 20px;
}

.home_section_desc {
  text-align: left;
  margin-top: 5px;
  font-family: var(--body-font-family);
  font-size: 18px;
  height: 100%;
  line-height: 25px;
  padding: 0px 20px 20px 20px;
}

.home_section2_desc {
  text-align: left;
  margin-top: 5px;
  font-family: var(--body-font-family);
  font-size: 18px;
  padding: 0px 20px 0px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  font-family: var(--body-font-family);
  font-weight: bold;
  font-size: 18px;
  margin-right: 0;
  margin-left: 0;
  padding: 10px 20px 20px 20px;
}

.navbar-expand-lg .navbar-nav:last-child .nav-link {
  padding-right: 0px;
}

.navbar-nav .nav-item {
  margin-left: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border: 0;
  padding: 0px 0px 0px 15px;
  margin-top: 20px;
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  padding-top: 0;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.faculty-title {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.site-header {
  background: var(--primary-color);
  padding-top: 15px;
  padding-bottom: 10px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}


/*---------------------------------------
  HERO & HERO SLIDE         
-----------------------------------------*/
.hero-section-full-height {
  height: 650px;
  min-height: 650px;
  position: relative;
}

.carousel:hover .carousel-control-next-icon,
.carousel:hover .carousel-control-prev-icon {
  opacity: 1;
}

#hero-slide .carousel-item {
  max-height: 480px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50% 50% 50%;
}

#hero-slide .carousel-item img {
  width: 100%;
}

#hero-slide .carousel-indicators button {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 2px solid white;
  bottom: 10px;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  background-size: 60% 60%;
  width: 80px;
  height: 80px;
  opacity: 0;
  transition: all 0.5s;
}

.carousel-control-next-icon:hover,
.carousel-control-prev-icon:hover {
  background-color: var(--primary-color);
}


/*---------------------------------------
  FEATURE BLOCK              
-----------------------------------------*/
.featured-block {
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid var(--grey-color);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% - 30px);
  height: 100%;
  margin: 0 auto;
  padding: 0 auto;
}

.featured-block-row:first-child .featured-block {
  margin-left: 0px;
}

.featured-block-row:last-child .featured-block {
  margin-right: 0px;
}

.featured-block:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  color: var(--text-color);
}

.featured-block:hover .featured-block-image {
  transform: scale(0.75);
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
}

.featured-block:hover .featured-block-text {
  margin-top: 0;
}

.featured-block-text {
  font-size: var(--h5-font-size);
  margin-top: 20px;
  transition: all 0.5s;
}

.video-block {
  top: 0px;
  height: 600px;
  background-color: #597081;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 350px;
  height: 400px;
  object-fit: cover;
}

.custom-text-block {
  padding: 60px 40px;
}


/*---------------------------------------
  COUNTER NUMBERS              
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
}

.counter-number,
.counter-text {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--primary-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}


/*---------------------------------------
  VOLUNTEER              
-----------------------------------------*/
.volunteer-section {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.volunteer-section::after {
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

.volunteer-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.volunteer-image {
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.volunteer-section .custom-block-body {
  max-width: 440px;
  margin: 0 auto;
}

.volunteer-section .custom-block-body p {
  line-height: 1.7;
}


/*---------------------------------------
  DONATE              
-----------------------------------------*/
.donate-section {
  background-image: url('../images/different-people-doing-volunteer-work.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.donate-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 50px;
}


/*---------------------------------------
  NEWS         
-----------------------------------------*/
.news-detail-header-section {
  max-height: 480px;
  overflow: hidden;
}

.news-detail-header-section img {
  height: 480px;
  max-height: 480px;
}

.news-block-top {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.news-block-two-col-image-wrap {
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  width: 150px;
  margin-right: 20px;
}

.news-category-block {
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10px 20px;
}

.news-category-block .category-block-link {
  color: var(--white-color);
  margin-right: 10px;
}

.news-block-info {
  padding-top: 10px;
  padding-bottom: 10px;
}

.news-block-title-link {
  color: var(--dark-color);
}

.news-detail-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 90px 50px 50px 50px;
  text-align: center;
}

blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

.author-comment-link {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
}

.search-form {
  margin-top: 20px;
}

.category-block,
.subscribe-form {
  margin-top: 40px;
  margin-bottom: 40px;
}

.category-block-link {
  font-size: var(--copyright-font-size);
  margin-top: 5px;
  margin-bottom: 5px;
}

.category-block-link:hover {
  color: var(--primary-color);
}

.badge {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding-bottom: 2px;
}

.tags-block-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  font-size: var(--copyright-font-size);
  line-height: normal;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 8px 15px;
}

.tags-block-link:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 200px;
  height: 200px;
}

.cta-section::after {
  content: "";
  border: 20px solid var(--custom-btn-bg-color);
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: 0;
  left: 0;
  margin: auto;
  width: 150px;
  height: 150px;
}


.carousel-name-title {
  font-weight: var(--font-weight-semibold);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-info-wrap {
  padding-top: 40px;
}

.contact-image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/

.page-banners {
  max-height: 480px;
}

.page-banners img {
  max-height: 480px;
  width: 100%;
}

.custom-form .form-control,
.input-group-file {
  background-color: var(--section-bg-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency+.form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-semibold);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.5s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio]+.form-check-label,
.form-check-radio .form-check-input:hover+.form-check-label,
.form-check-radio .form-check-input:checked+.form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.custom-form button[type="button"] {
  background: var(--custom-btn-bg-color);
  border: none;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="button"]:hover,
.custom-form button[type="button"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  CONTACT SEARCH & DONATE & SUBCRIBE FORM              
-----------------------------------------*/
.contact-form .form-control {
  background: var(--white-color);
}

.search-form {
  position: relative;
}

.search-form .form-control {
  padding-right: 50px;
}

.search-form button[type="submit"] {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--p-color);
  width: 50px;
  padding: 12px;
}

.search-form button[type="submit"]:hover {
  background: transparent;
  color: var(--dark-color);
}

.subscribe-form {
  padding: 0px;
}

.subscribe-form .form-control {
  background: var(--white-color);
}

.donate-form .form-control {
  margin-bottom: 0;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--site-footer-bg-color);
  padding-top: 10px;
  padding-bottom: 30px;
  margin-top: 70px;
}

.site-footer-bottom {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.site-footer-bottom a {
  color: var(--white-color);
}

.site-footer-bottom a:hover {
  color: #FF6;
}

.site-footer-link {
  color: var(--text-color);
}

.copyright-text {
  color: var(--text-color);
  font-size: var(--copyright-font-size);
  vertical-align: bottom;
}

.copyright-text-desktop {
  display: block;
  padding-left: 30px;
}

.copyright-text-mobile {
  display: none;
}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}


/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 1;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: var(--text-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}

.footer_organizers {
  color: var(--white-color);
  margin-top: 50px;
  width: 100%;
  text-align: center;
  font-size: 20px;
}

.footer_logos {
  height: 75px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.social-icon-item:last-child {
  margin-right: 0px;
}

.social-icon-link {
  background: var(--site-footer-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 38px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.loginform_leftrow {
  border-right: 1px solid #333;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1921px) {
  .featured-block {
    min-height: inherit;
  }
}

@media screen and (min-width: 1921px) {}

@media screen and (min-width: 1600px) {
  .featured-block {
    min-height: inherit;
  }
}

@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1200px) {
  .navbar {
    height: 140px;
  }

  .topnav {
    margin-top: 20px;
  }

  .logo {
    width: 300px;
    padding: 0px;
  }

  #navbarNav {
    position: relative;
    top: 0px;
    left: -60px;
    width: 100%;
  }

  .login_butt_mobile {
    display: none;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 0px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .featured-block {
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid #222222;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 auto;
  }

  .footer_logos {
    height: 40px;
  }

  .footer_secret {
    background-color: #fff;
    color: #000;
    padding: 5px 10px 5px 10px;
  }
}

@media screen and (min-width: 991px) {
  .disable_nl_desktop {
    display: none;
  }

  .grants_titles_left {
    margin-left: 180px;
  }

  .grants_titles_right {
    margin-left: 50px;
  }
}

@media screen and (max-width: 991px) {
  .disable_nl_mobile {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    margin: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .donate-form {
    padding: 35px;
  }

  .navbar {
    height: 100px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .loginbutt_mobile {
    float: left;
    margin: 4px 20px 0px 0px;
    display: block;
  }

  .social_buttons_mobile {
    display: block;
    padding: 0px 20px 30px 30px;
  }

  .social_buttons_mobile img {
    margin-right: 20px;
  }

  #navbarNav {
    position: absolute;
    top: 0px;
    left: px;
    background-color: red;
    width: 100px;
    box-shadow: -5px 6px 31px -11px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -5px 6px 31px -11px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -5px 6px 31px -11px rgba(0, 0, 0, 0.75);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 20px;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
    position: relative;
    margin-top: 5px;
    margin-bottom: 20px;
    left: 20px;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 5px;
  }

  .hero-section-full-height {
    height: inherit;
  }

  .carousel:hover .carousel-control-next-icon,
  .carousel:hover .carousel-control-prev-icon {
    opacity: 1;
  }

  #hero-slide .carousel-item {
    height: inherit;
  }

  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    opacity: 1;
    width: 60px;
    height: 60px;
  }

  .news-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-section::before {
    width: 150px;
    height: 150px;
  }

  .cta-section::after {
    bottom: -60px;
    width: 100px;
    height: 100px;
  }

  .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }

  .testimonial-section::before {
    width: 150px;
    height: 150px;
  }

  .testimonial-section::after {
    width: 200px;
    height: 200px;
  }

  #testimonial-carousel .carousel-caption {
    padding-top: 0;
  }

  blockquote {
    padding: 70px 30px 30px 30px;
  }

  .about-image {
    width: inherit;
    height: 480px;
  }

  .volunteer-image {
    width: 250px;
    height: 250px;
    margin: 0;
  }

  .custom-text-block {
    padding: 20px 0 0 0;
  }

  .custom-text-box,
  .volunteer-form {
    padding: 30px;
  }

  .counter-number,
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .contact-info-wrap {
    padding-top: 0;
  }

  .site-footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .navbar {
    height: 88px;
  }

  .logo {
    width: 200px;
    height: auto;
    margin-left: 0px;
  }

  .topnav {
    display: none;
  }

  .carousel-image {
    display: block;
    width: 100%;
    min-height: 280px;
  }

  .copyright-text-desktop {
    display: none;
  }

  .copyright-text-mobile {
    display: block;
    text-align: center;
  }

  .programme_table_title {
    font-size: 18px;
  }

  .programme_table_row_mobile {
    background-color: var(--program-row-bg-color)
  }

  .register_msg {
    margin-top: 0px !important;
  }

  #register_price_table {
    overflow: auto;
  }

  .footer_container {
    margin-top: 20px;
  }

  .important_date_container {
    text-align: left;
    margin-bottom: 30px;
  }

  .loginform_leftrow {
    border-right: 0px
  }

}

@media screen and (max-width: 580px) {
  .page_underline {
    margin-bottom: 20px !important;
  }

  #navbarNav {
    position: fixed;
    top: 90px;
    left: 0px;
    width: 100%;
  }

  #hero-slide {
    height: auto;
  }

  #hero-slide .carousel-item {
    height: auto;
    width: 100%;
  }

  #hero-slide .carousel-caption {
    clip-path: polygon(100% 100%, 100% 100px, 0 100%);
    padding-right: 50px;
    min-width: inherit;
    min-height: inherit;
  }

  .home_endoscopy_desc {
    font-size: 12px;
    padding: 0px 30px 0px 30px;
  }

  .featured-block-row {
    margin: 0 auto;
    padding: 0px 50px 0px 50px;
  }

  .register_banner_txt {
    top: 25px !important;
    left: 15px !important;
    font-size: 25px !important;
  }

  .register_banner {
    width: 100%;
    padding: 0px 40px 0px 40px;
    height: auto !important;
  }

  .faculty-title {
    font-size: 24px;
    font-family: var(--body-font-family);
    font-weight: bold;
    margin-bottom: 0px;
  }

  .faculty-title-photo {
    width: 196px !important;
    height: 196px !important;
  }

  .home_endoscopy_desc {
    font-size: 18px !important;
    margin-bottom: 20px;
  }

  .home_section_desc {
    font-family: var(--body-font-family);
    font-size: 18px !important;
  }

  .featured-block {
    height: 100%;
  }

  .section-padding {
    padding-top: 40px;
    padding-bottom: 0px;
  }

  .highlight_title {
    line-height: 30px;
    padding: 0px 50px 0px 50px;
  }

  .highlight_padding {
    padding: 0px;
  }

  .programme_table_title {
    font-size: 18px;
  }

  .programme_table_row_mobile {
    background-color: var(--program-row-bg-color)
  }

  .programme_table_content {
    font-size: 18px !important;
  }

  .faculty-block {
    padding: 0px 20px 0px 20px;
  }

  .grants_titles {
    color: var(--primary-color);
    font-size: 24px;
    padding: 20px 0px 0px 20px !important;
    font-weight: bold;
  }

  .grants_desc {
    color: var(--text-color);
    font-size: 18px;
    line-height: 25px;
    padding: 10px 20px 10px 20px !important;
  }

  .grants_left {
    padding: 0px 30px 0px 30px !important;
  }

  .grants_left img {
    margin: 0px !important;
    ;
  }

  .grants_photo_left1 {
    padding: 0px;
  }

  .grants_right {
    padding: 0px 30px 0px 30px !important;
  }

  .grants_right img {
    margin: 0px !important;
  }

  .important_date_container {
    text-align: left;
    margin-bottom: 0px;
  }

  .grants_left-content .important_date_desc {
    color: var(--white-color);
    font-size: 18px;
    line-height: 25px;
    padding: 10px 30px 0px 20px !important;
  }

  .grants_right-content .important_date_desc {
    color: var(--white-color);
    font-size: 18px;
    line-height: 25px;
    margin: 40px 0px 0px 0px !important;
    padding: 10px 30px 0px 20px !important;
  }

  .grants_guidelines {
    padding: 0px 30px 0px 30px !important;
  }

  .important_date_title {
    font-size: 22px !important;
    margin-left: 20px !important;
  }

  .date_title {
    font-size: 22px !important;
  }

  .date_txt {
    font-size: 22px !important;
  }

  .programme_time_txt {
    width: 120px !important;
  }

  .page_title2 {
    font-size: 20px !important;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px !important;
  }

  .gudelides {
    margin-top: 0px !important;
    padding-left: 30px !important;
    list-style-type: decimal;
  }

  .gudelides li {
    font-size: 20px;
    line-height: 35px;
    padding-left: 15px;
    margin-bottom: 10px;
  }

  .guides_text {
    padding-left: 20px !important;
  }

  .venue_topmargin_desktop {
    margin-top: 0px !important;
  }

  .venue_titles {
    color: var(--primary-color);
    font-size: 24px;
    line-height: 25px;
    padding: 0px 40px 0px 40px !important;
    font-weight: bold;
  }

  .venue_desc {
    padding: 0px 40px 0px 40px;
  }

  .page_intro {
    padding: 0px 40px 0px 40px !important;
  }

  .page-banners img {
    height: auto;
    width: 100%;
  }

  .footer_menu {
    font-family: var(--body-font-family);
    padding: 0px !important;
    font-size: 18px;
  }

  .footer_menu_row1,
  .footer_menu_row2,
  .footer_menu_row3 {
    width: 100% !important;
    text-align: center;
  }

  .footer_menu_row2,
  .footer_menu_row3 {
    margin-top: 30px;
  }

  .footer_logo_container {
    position: relative;
    margin-top: 0px !important;
    text-align: center !important;
    padding: 0px !important;
  }

  .footer_container {
    margin-top: 0px;
  }

  .footer_quick_title {
    padding: 0px !important;
    width: 98%;
    text-align: center;
  }

  .secret_padding {
    padding: 10px 0px 0px 0px;
  }

  .copyright-text-mobile {
    display: block;
    margin-top: 20px;
    padding: 0px 40px 0px 40px;
  }

  .contactus_title {
    margin-top: 20px !important;
    padding: 0px 40px 0px 40px !important;
  }

  .contactus_desc {
    padding: 0px 40px 0px 40px !important;
  }

  .contact-form {
    margin-top: 50px;
  }

  .cmecnu_text {
    padding: 0px 40px 0px 40px;
  }

  .register_msg {
    padding: 0px 40px 0px 40px;
  }

  .faq_question {
    padding: 0px 10px 0px 40px !important;
    font-size: 20px !important;
  }

  .faq_answer {
    padding: 0px 40px 0px 40px !important;
    font-size: 18px !important;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  #hero-slide .carousel-caption {
    min-width: inherit;
    padding-bottom: 30px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 45px;
    height: 45px;
  }

  .volunteer-image {
    width: 150px;
    height: 150px;
  }

  .volunteer-section::after {
    width: 200px;
    height: 200px;
  }

  .testimonial-section::before {
    top: -50px;
    width: 100px;
    height: 100px;
  }

  .testimonial-section::after {
    bottom: -150px;
    width: 200px;
    height: 200px;
  }

  .social-share .tags-block {
    margin-bottom: 10px;
  }

  .donate-form {
    padding: 25px;
  }
}

/* Custom */
body.noscroll {
  position: fixed;
  overflow: hidden;
}

.overlay {
  display: none;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 100px 0px 0px 0px;
  background-color: rgba(255, 255, 255, 1);
  z-index: 999999;
  text-align: center;

  .overlay-content {
    height: 100%;
    overflow: scroll;
  }
}

#overlay_modal {
  overflow: hidden;
}

#overlay_modal_content {
  margin: 0 auto;
  padding: 0px;
  width: 1200px;
}

.mouseover {
  cursor: pointer;
}

#overlay_modal_content_html {
  overflow: auto;
  height: 600px;
  margin-top: 0px;
  vertical-align: top;
  padding: 0px;
}

/* Sponser */
.sponsergroups {
  margin-top: 100px;
}

.sponser_group1 img {
  width: 50%;
}

.sponser_group2 img {
  width: 80%;
}

.sponser_group3 img {
  width: 80%;
}

.sponser_group4 img {
  width: 80%;
}

@media (max-width: 1024px) {
  .sponser_group1 img {
    width: 80%;
  }
}

#sponser_banner {
  width: auto;
  height: 150px;
}

#modal_close_butt img {
  width: 50px;
}

@media (max-width: 768px) {
  #overlay_modal {
    overflow: auto;
  }

  #modal_close_butt img {
    width: 30px;
  }

  #overlay_modal_content {
    margin: 0 auto;
    width: 100%;
    height: auto;
    overflow: auto;
  }

  #overlay_modal_content_html {
    overflow: auto;
    height: auto;
    margin: 0px;
    vertical-align: top;
    padding: 0px 20px 0px 20px;
  }

  #overlay_modal_content_links {
    margin-top: 50px;
    padding-bottom: 50px;
  }

  .navbar-collapse {
    position: fixed;
    top: 45px;
    left: 0;
    padding-left: 15px;
    padding-right: 15px;
    width: 75%;
  }

  .navbar-collapse.collapsing {
    left: -100%;
    transition: height 0s ease;
  }

  .navbar-collapse.show {
    left: 0;
    transition: left 300ms ease-in-out;
  }

  .navbar-toggler.collapsed~.navbar-collapse {
    transition: left 500ms ease-in-out;
  }

  /* Sponser */
  .sponsergroups {
    margin-top: 30px;
  }

  #sponser_banner {
    width: 90%;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .formfield {
    margin-top: 20px;
    font-size: 20px;
  }

  .hk_cme_col1 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 5%;
  }

  .hk_cme_col2 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 95%;
  }
}

@media (max-width: 1024px) {
  .hk_cme_col1 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 15%;
  }

  .hk_cme_col2 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 85%;
  }
}

.regionbutt_nonactive {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
  margin: 0 auto;
  width: 200px;
}

.regionbutt_active {
  background: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  ;
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  margin: 0 auto;
  padding: 15px 25px;
  width: 200px;
}

.regionbutt_nonactive:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.nextbutt {
  background: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  ;
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 10px 15px;
  cursor: pointer;
}

input.largerCheckbox {
  width: 20px;
  height: 20px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  margin-right: 2rem;
  padding: 1rem;
  padding-right: 2rem;
}

.requirespot {
  color: red;
}

.errmsg {
  color: red;
  padding-top: 20px;
}

/* Page */
.page_intro {
  padding-bottom: 30px;
  font-size: 18px;
  line-height: 25px;
  color: var(--text-color);
}

.page_title {
  font-size: 30px;
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
}

.page_title2 {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
  padding-left: 50px;
}

.page_underline {
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 35px;
  width: 80px;
}


/* FAQ */
.minimalist-collapse {
  padding-left: 0;
}

.m-actived,
.m-result.shadow-effect:hover,
.active.shadow-effect {
  box-shadow: 0 0 15px #d9d9d9;
  z-index: 2;
  margin-left: 10px;
}

.m-result {
  background-color: #fff;
  border-radius: 3px;
  border-bottom: 1px solid #d9d9d9;
  display: block;
  margin-bottom: 20px;
  margin-left: 10px;
  position: relative;
  z-index: 1;
  padding: 5px 10px 5px 10px;
  -webkit-transition: all 130ms ease-in-out;
  -moz-transition: all 130ms ease-in-out;
  -ms-transition: all 130ms ease-in-out;
  -o-transition: all 130ms ease-in-out;
  transition: all 130ms ease-in-out;
}

.active.content-focus {
  margin: 12px 0;
}

[data-collapse=m-collapse] {
  cursor: pointer;
  padding: 10px;
}

.m-collapse {
  display: none;
  padding: 10px;
}

.m-result dt:before {
  font-family: 'Glyphicons Halflings';
  content: "\e114";
  float: right;
  margin-left: 20px;
  transition: all 0.5s;
}

.m-result.active dt:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq_question {
  font-size: 22px;
  font-family: var(--body-font-family);
  font-weight: bold;
  color: var(--text-color);
}

.faq_answer {
  font-size: 20px;
  font-family: var(--body-font-family);
  color: var(--text-color);
}

/* home */
.slide1_txt {
  font-family: var(--body-font-family);
  font-weight: bold;
  position: absolute;
  top: 400px;
  left: 250px;
  color: #000;
  font-size: 30px;
}

.register_banner_txt {
  top: 50px;
  font-family: var(--body-font-family);
  font-weight: bold;
  color: #fff;
  font-size: 80px;
}

.home_endoscopy_title {
  color: var(--primary-color);
  font-family: var(--body-font-family);
  font-weight: bold;
  font-size: 32px;
}

.home_endoscopy_desc {
  margin-top: 10px;
  font-family: var(--body-font-family);
  font-size: 22px;
}

.highlight_title {
  color: var(--primary-color);
  font-family: var(--body-font-family);
  font-weight: bold;
  font-size: 32px;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.video_title {
  color: var(--primary-color);
  font-family: var(--body-font-family);
  font-weight: bold;
  font-size: 20px;
  padding: 10px 20px 0px 20px;
}

.video_desc {
  color: var(--text-color);
  font-family: var(--body-font-family);
  font-size: 18px;
  padding: 10px 20px 0px 20px;
}

.register_banner {
  width: 100%;
  height: auto;
}

/* Login */
.register_msg {
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 30px;
}

/* Faculty */
.faculty-nametitle-text {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  margin-top: 10px;
  transition: all 0.5s;
}

.faculty-title-text {
  color: var(--text-color) !important;
  font-size: 16px;
  margin-top: 0px;
  transition: all 0.5s;
  line-height: 22px;
  padding: 0px 10px 0px 10px;
}

.faculty-country-text {
  color: var(--text-color) !important;
  font-size: 16px;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 10px;
}

.faculty-title-photo {
  width: 240px;
  height: 240px;
  margin-top: 20px;
}

.faculty-profile-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 200px;
  text-align: center;
  background-color: #e8eae6;
  box-sizing: border-box;
  padding: 10px;
  z-index: 100;
  display: none;
  /*to hide popup initially*/
}

.faculty-block {
  margin-top: 20px;
}

#modal_close_butt {
  position: absolute;
  right: 50px;
  top: 50px;
  padding-right: 50x;
  text-align: center;
}

.profile-desc {
  margin-top: 20px;
  font-size: 14px;
  height: 200px;
  overflow: auto;
}

.profile-right {
  text-align: left;
  padding: 0px 50px 0px 50px
}

.faculty_titles {
  text-align: left;
  margin-top: 20px;
  padding: 0px 80px 0px 90px;
}

@media screen and (max-width: 1200px) {
  .faculty-title-photo {
    padding: 10px;
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 992px) {
  .profile-right {
    text-align: left;
    padding: 0px 30px 0px 30px
  }

  .profile-desc {
    height: 130px;
    overflow: auto;
  }
}

/* Programme */
.programme {
  display: none;
}

.programe_select {
  color: var(--text-color);
  background-color: var(--table-bg-color);
  font-size: var(--btn-font-size);
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  border-top: 3px solid var(--primary-color);
}

.programe_select:hover {
  background-color: var(--secondary-color);
  border-top: 3px solid var(--hover-top-color);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  padding: 10px;
}

.programe_select_active {
  background-color: var(--white-color);
  border-top: 3px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: bold;
  font-size: var(--btn-font-size);
  padding: 10px;
}

.programme_table {
  border-collapse: separate;
  border: 0px;
}

.programme_time_txt {
  text-align: left;
}

.venue_title {
  color: var(--primary-color);
  font-size: 24px;
  padding: 15px 40px 0px 40px;
  font-weight: bold;
}

.venue_value {
  font-size: 20px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 20px;
}

.venue_topmargin_desktop {
  margin-top: 45px;
}

.programme_table_title {
  padding: 10px;
  background-color: var(--primary-color);;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
}

.programme_table_title:first-child {
  width: 20%;
}

.programme_table_title:last-child {
  width: 30%;
}

.programme_table_row_mobile {
  background-color: var(--program-row-bg-color)
}

.programme_table_content {
  padding: 5px 0px 5px 10px;
  color: var(--text-color);
  font-size: 20px;
}

.programme_table_subtitle {
  padding: 15px;
  font-weight: bold;
  font-size: 20px;
  background-color: var(--site-footer-bg-color);
}

.page-button {
  font-size: 20px !important;
}

@media screen and (max-width: 768px) {
  .programme_time_txt {
    text-align: center;
  }

  .programe_select {
    color: var(--text-color);
    background-color: var(--table-bg-color);
    font-size: var(--btn-font-size);
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    border-top: 3px solid var(--primary-color);
  }

  .programe_select:hover {
    background-color: var(--secondary-color);
    border-top: 3px solid var(--hover-top-color);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    padding: 10px;
  }

  .programe_select_active {
    background-color: var(--white-color);
    border-top: 3px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    font-size: var(--btn-font-size);
    padding: 10px;
  }
}

/* Contact Us */
.contact_icons {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50;
  border-radius: 50;
  width: 80px;
}

.enquiry_title {
  text-align: left;
  font-size: 24px;
  color: var(--primary-color);
  font-weight: bold;
}

.contactus_title {
  margin-top: 40px;
  text-align: left;
  font-size: 24px;
  color: var(--primary-color);
  font-weight: bold;
}

.contactus_desc {
  margin-top: 0px;
  text-align: left;
  font-size: 18px;
  color: var(--text-color);
}

#contactusinfo {
  text-align: center;
  padding: 0px;
  padding-bottom: 40px
}

/* Register */
.register_msg {
  font-size: 20px;
}

#register_price_table td {
  padding: 10px;
  font-size: 20px;
}

.fee_col1 {
  border-bottom: 1px solid #ccc;
}

.fee_col2 {
  border-bottom: 1px solid #ccc;
}


/* Venue */
.venue_icons {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 80px;
}

.venue_access {
  padding: 25px;
}

.venue_access_text {
  padding: 35px 0px 0px 40px;
}

.venue_desc {
  color: var(--text-color);
  font-size: 18px;
  line-height: 25px;
  padding: 0px 30px 0px 40px;
  margin-bottom: 40px;
  ;
}

.venue_titles {
  color: var(--primary-color);
  font-size: 24px;
  line-height: 25px;
  padding: 0px 40px 0px 40px !important;
  font-weight: bold;
  margin-bottom: 10px;
}

.venue_titles1 {
  color: var(--text-color);
  font-size: 24px;
  padding: 25px 60px 0px 150px;
  font-weight: bold;
}

.venue_address1 {
  color: var(--text-color);
  font-size: 24px;
  padding: 5px 60px 0px 150px;
}

.venue_titles2 {
  color: var(--text-color);
  font-size: 24px;
  padding: 25px 60px 0px 50px;
  font-weight: bold;
}

.venue_address2 {
  color: var(--text-color);
  font-size: 24px;
  padding: 5px 60px 0px 50px;
}

.venue_1 {
  text-align: left;
  height: 280px;
}

.venue_2 {
  text-align: left;
  height: 200px;
}

.venue_photo1 {
  position: absolute;
  width: 400px;
}

.venue_photo2 {
  position: relative;
  width: 400px;
}

.accom_intro {
  text-align: center;
  color: var(--text-color);
  font-size: 20px;
  padding: 0px 60px 60px 60px;
}

.accom_listing {
  margin-top: 60px;
}

.accom_titles {
  color: var(--primary-color);
  font-size: 24px;
  line-height: 25px;
  padding: 10px 60px 10px 50px;
  font-weight: bold;
}

.accom_desc {
  color: var(--text-color);
  font-size: 20px;
  padding: 10px 60px 0px 50px;
}

.accom_photo {
  padding: 0px 100px 0px 100px;
}

.accom_info {
  margin-top: 10px;
  padding: 10px 60px 0px 50px;
}

.accom_info_txt {
  cursor: pointer;
  width: auto;
  color: var(--text-color);
  font-size: 20px;

}

.accom_info_txt:hover {
  color: var(--primary-color);
  border-bottom: 1px solid var(--text-color);
}

/* Grants */
.grants_left {
  padding-left: 40px;
}

.grants_left img {
  width: auto;
  padding-right: 20px;
  height: 300px;
}

.grants_left-content {
  padding: 0px 30px 0px 30px;
}

.grants_photo_left1 {
  display: none;
}

.grants_photo_left2 {
  display: block;
}

.grants_right {
  padding-left: 120px;
  padding-right: 30px;
  text-align: right;
}

.grants_right-content {
  padding: 0px 10px 0px 30px;
}

.grants_right img {
  width: auto;
  height: 300px;
}

.grants_titles {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
}

.grants_left-content .grants_desc {
  color: var(--text-color);
  font-size: 18px;
  line-height: 25px;
  padding: 0px 50px 0px 180px
}

.grants_right-content .grants_desc {
  color: var(--text-color);
  font-size: 18px;
  line-height: 25px;
  padding: 0px 220px 0px 50px
}

.grants_left-content .important_date_desc {
  color: var(--white-color);
  font-size: 18px;
  line-height: 25px;
  padding: 0px 50px 0px 180px
}

.grants_right-content .important_date_desc {
  color: var(--white-color);
  font-size: 18px;
  line-height: 25px;
  margin: 60px 50px 0px 80px;
}

.grants_important {
  margin-top: 30px;
  background-color: var(--primary-color);
  width: 100%;
  height: 150px;
}

.grants_guidelines {
  padding-left: 160px;
  padding-right: 250px;
  margin-top: 50px;
}

.important_date_title {
  margin-left: 180px;
  margin-top: 25px;
  color: var(--white-color);
  font-size: 24px;
  font-weight: bold;
}

.grants_date_table {
  margin-top: 0px;
  margin-left: 50px;
  font-size: 24px;
}

.date_title {
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
}

.date_txt {
  font-size: 18px;
  line-height: 25px;
}

.gudelides {
  margin-top: 0px;
  padding-left: 70px;
  list-style-type: decimal;
}

.gudelides li {
  font-size: 18px;
  line-height: 20px;
  padding-left: 15px;
  margin-bottom: 10px;
}

.guides_text {
  font-size: 18px;
  line-height: 25px;
  padding-left: 60px;
}

.guidelines_subpoints {
  list-style-type: disc;
  margin-left: 0px;
}

.guidelines_subpoints li {
  padding-left: 10px;
}

/* CMECNE */
.cmecnu_text {
  font-size: 18px;
  line-height: 25px;
  ;
}

.cmecnu_text:not(:first-child) {
  margin-top: 40px;
}

.cmecnu_table td {
  border: 1px;
  padding: 5px;
}

.tableheader {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Footer */
.site-footer-title {
  color: var(--primary-color);
  font-family: var(--body-font-family);
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 10px;
}

.footer_quick_title {
  color: var(--text-color);
  font-size: 20px;
  font-family: var(--body-font-family);
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 20px;
}

.footer_menu {
  font-family: var(--body-font-family);
  padding: 20px 0px 0px 30px;
  font-size: 18px;
}

.footer_menu_row1 {
  float: left;
  width: 260px;
}

.footer_menu_row2 {
  float: left;
  width: 188px;
}

.footer_menu_row3 {
  float: left;
  width: 160px;
}

.footer_secret {
  font-family: var(--body-font-family);
  font-size: 16px;
  background-color: #fff;
  color: var(--text-color);
  padding: 10px 30px 10px 30px !important;
}

.secret_padding {
  padding: 10px 0px 0px 100px;
}

.footer_logo_container {
  position: relative;
  margin-top: 20px;
  text-align: right;
  padding: 0px !important;
}

.footer_logos {
  margin-bottom: 0px;
  right: 0px;
}

.footer_logo_img:nth-child(3) {
  border-right: 2px solid #682058;
}

@media screen and (max-width: 768px) {
  .gudelides {
    margin-top: 0px;
  }

  .grants_left {
    padding-left: 20px;
  }

  .grants_photo_left1 {
    display: block;
  }

  .grants_photo_left2 {
    display: none;
  }

  .grants_left img {
    width: 100%;
    padding: 0px 20px 0px 20px;
    height: auto;
  }

  .grants_right {
    padding-left: 20px;
  }

  .grants_right img {
    width: 100%;
    padding: 0px 20px 0px 20px;
    height: auto;
  }

  .footer_secret {
    margin: 0px 20px 0px 20px;
    text-align: center;
  }

  .secret_padding {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0px;
  }

  .footer_logos {
    margin-bottom: 15px;
  }

  .grants_important {
    margin-top: 30px;
    background-color: var(--primary-color);
    width: 100%;
    height: auto;
    padding-bottom: 30px;
  }

  #loginform,
  #registerform {
    margin-top: 0px;
    padding-top: 0px;
  }
}

/* Member */
.member-link .register-icon {
  fill: var(--primary-color);
}

.member-link .member-icon g {
  fill: #808285;
  transition: fill 0.3s ease;
}

.member-link:hover .member-icon g {
  fill: var(--primary-color);
}

.member-link:hover p {
  color: var(--primary-color);
}

.member-block-disable {
  text-align: center;
  border: 0px solid #222222;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px;
}

.member-block {
  text-align: center;
  transition: all 0.5s ease;
  border: 0px solid #222222;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px;
}

.member-block:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  color: var(--text-color);
}

.member-block:hover .featured-block-text {
  margin-top: 0;
}

.member-block-text {
  font-size: var(--h5-font-size);
  font-weight: bold;
  margin-top: 24px;
  transition: all 0.5s;
  min-height: 75px;
}

.member_titles {
  font-size: 30px;
  font-weight: bold;
  color: var(--primary-color);
}

.member_subtitles {
  font-size: 24px;
  margin-top: 10px;
  color: var(--text-color);
}

.member_subtopics {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.member_intro_txt {
  font-size: 20px;
  color: var(--text-color);
  margin-top: 15px;
  font-weight: 500;
}

.price_txt {
  font-weight: bold;
}

.cmecne_title {
  font-size: 22px;
  color: var(--text-color);
}

.summary_title {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 10px;
}

.summary_desc {
  font-size: 22px;
  color: var(--text-color);
  margin-top: 5px;
}

.summary_text {
  font-size: 22px;
  color: var(--text-color);
  margin-top: 5px;
}

#memberapp_steps {
  z-index: 1;
  padding-left: 200px;
  padding-right: 200px;
}

#memberapp_steps .steps_bar {
  position: absolute;
  top: 22px;
  left: 0px;
  height: 12px;
  width: 100%;
  background-color: var(--primary-color);
  z-index: -1;
}

#memberapp_steps div div:first-child .steps_bar {
  margin-left: 50%;
  width: 50%;
}

#memberapp_steps div div:last-child .steps_bar {
  width: 50%;
}

#memberapp_steps .reg_steps {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 29px;
  color: var(--text-color);
  padding: 5px 0px 0px 2px;
  background-color: #FFF;
  border: 2px solid var(--primary-color);
  height: 60px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  width: 60px;
  margin: 0 auto;
  padding: 0 auto;
}

#memberapp_steps .reg_steps_active {
  background-color: var(--active-color);
  color: #fff;
}

#order_nummber_table {
  margin-top: 100px;
}

#tnc_title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
}


@media screen and (min-width: 991px) {
  .sliding-navbar {
    display: none;
  }
}

@media screen and (max-width: 991px) {

  /* Menu */
  .sliding-navbar {
    display: block;
    position: absolute;
    top: 0;
    left: -250px;
    height: 100vh;
    width: 250px;
    background: var(--active-color);
    transition: left 0.8s ease-in-out;
    z-index: 300;
    opacity: 0.9;
  }

  .sliding-navbar--open {
    left: 0px;
  }

  .mask {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: #333;
    opacity: 0.8;
    z-index: 100;
  }

  .show {
    z-index: 200;
  }

  .brand {
    text-decoration: none;
    color: #fff;
    display: block;
    width: 140px;
    margin: 20px auto 0 auto;
    font-family: sans-serif;
    transition: color 0.2s ease-in-out;
  }

  .brand:hover {
    color: #ccc;
  }

  .navbar--items {
    list-style-type: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .navbar--item {
    margin: 20px;
    letter-spacing: 1px;
    color: white;
    font-family: sans-serif;
    text-transform: uppercase;
  }

  .hamburger-menu {
    z-index: 999;
    position: absolute;
    top: 30px;
    right: 30px;
    margin: auto;
    width: 40px;
    height: 30px;
    cursor: pointer;
  }

  .hamburger {
    position: relative;
    transform: translateY(10px);
    background: white;
    transition: all 0ms 300ms;
  }

  .hamburger,
  .hamburger:after,
  .hamburger:before {
    width: 40px;
    height: 3px;
  }

  .hamburger:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    background: white;
    transition: bottom 0.3s ease-in-out;
  }

  .hamburger:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    background: white;
    transition: top 0.3s ease-in-out;
  }

  .menu-opened:before {
    bottom: 3px;
    transition: bottom 0.3s ease-in-out;
  }

  .menu-opened:after {
    top: 3px;
    transition: top 0.3s ease-in-out;
  }

  .mobile-navbar-items {
    margin-top: 80px;
  }

  .sliding-closebutt {
    position: absolute;
    right: 20px;
    top: 20px;
  }

  #memberapp_steps {
    z-index: 1;
    padding: 0px;
  }

  #order_nummber_table {
    margin-top: 40px;
  }
}