html {
  scroll-behavior: smooth;
}

html,
body {
  background: #ffffff;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
}

body {
  padding-top: 100px;
}

section {
  position: relative;
  padding: 70px 0;
}

.text-darker-blue {
  color: #32556e;
}

.bg-yellow {
  background-color: #fcfce5;
}

.button-primary {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background-color: #32556e;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 13px;
  font-weight: 600;
  min-width: 160px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.button-primary:hover,
.button-primary:focus {
  background-color: #ffffff;
  color: #32556e;
}

.button-primary .svg-inline--fa {
  font-size: 16px;
  margin-right: 8px;
}

.button-primary.is-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #32556e;
}

.button-primary.is-transparent {
  color: #32556e;
  background-color: transparent;
  border-color: #32556e;
}

.button-primary.is-transparent:hover {
  background-color: #32556e;
  color: #ffffff;
}

.button-primary.type-2 {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.25px;
  padding: 8px 25px;
}

.button-outline {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background-color: #ffffff;
  color: #32556e;
  border: 1px solid #32556e;
  border-radius: 6px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  padding: 6px 14px;
  text-transform: uppercase;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.button-outline:hover {
  background-color: #32556e;
  color: #ffffff;
}

.label-grey {
  background-color: #b1b1b1;
  color: #ffffff;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
  padding: 5px 10px;
  margin-bottom: 12px;
  border-radius: 0px 5px 5px 0px;
}

.label-grey small {
  font-size: 12px;
  display: block;
}

.icon-in-heading {
  font-size: 24px;
  vertical-align: baseline;
  margin-right: 7px;
  margin-bottom: 5px;
}

.custom-card {
  background-color: #ffffff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.09);
}

.custom-card .card-image {
  border-radius: 10px 10px 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.custom-card .card-body {
  padding: 28px 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.custom-card .card-body .button-primary {
  margin-top: auto;
}

.custom-card .card-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.custom-card .card-desc {
  font-weight: 300;
}

.education-container {
  height: 300px;
  position: relative;
  border-radius: 10px 10px 0 0;
  max-width: 350px;
  overflow: hidden;
}

.education-container:hover .education-image {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.education-container .education-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.education-container .education-body {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 28px 24px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: rgba(88, 88, 88, 0.68);
}

.education-container .education-body .body {
  display: inline-block;
  max-width: 200px;
}

.education-container .education-body .play-icon,
.education-container .education-body .download-icon {
  display: -webkit-inline-box;
  display: inline-flex;
  color: #ffffff;
  font-size: 30px;
  margin-right: 5px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.education-container .education-body .play-icon:hover,
.education-container .education-body .download-icon:hover {
  box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, -2px, 0);
          transform: translate3d(0, -2px, 0);
}

#navHeader {
  position: fixed;
  height: 100px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 1020;
  background: #ffffff;
  top: 0;
  width: 100%;
}

#navHeader .container {
  position: relative;
}

#navHeader.navbar .navbar-brand img {
  height: 75px;
}

@media (min-width: 768px) {
  #navHeader.navbar .nav-item {
    padding: 15px 0;
  }

  #navHeader.navbar .nav-item:not(:last-child) {
    margin-right: 26px;
  }
}

#navHeader.navbar .nav-item.active .nav-link {
  font-weight: 700;
}

#navHeader.navbar .nav-item.dropdown .dropdown-menu .dropdown-item.active {
  font-weight: 700;
  color: unset;
  background-color: unset;
}

#navHeader.navbar .nav-item.dropdown .dropdown-menu .dropdown-item:active {
  color: unset;
  background-color: unset;
}

@media (min-width: 992px) {
  #navHeader.navbar .nav-item.dropdown .dropdown-menu {
    margin-top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-radius: 8px;
    top: calc(100% + 30px);
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }

  #navHeader.navbar .nav-item.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
}

@media (max-width: 991.98px) {
  #navHeader.navbar .nav-item.dropdown .dropdown-toggle::after {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }

  #navHeader.navbar .nav-item.dropdown .dropdown-menu {
    display: block;
    border: none;
    padding-left: 40px;
    padding-top: 0;
    margin-top: 0;
  }

  #navHeader.navbar .nav-item.dropdown .dropdown-menu .dropdown-item {
    padding: 10px 0;
  }
}

#navHeader.navbar .languages {
  display: -webkit-box;
  display: flex;
}

#navHeader.navbar .nav-link {
  color: #000000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 0;
}

#navHeader.navbar .nav-link.active {
  font-weight: 600;
  pointer-events: none;
}

#navHeader.navbar .languages-separator {
  height: 20px;
  width: 1px;
  margin: 0 5px;
  background-color: #000000;
}

@media (max-width: 991.98px) {
  #navHeader .navbar-collapse {
    position: absolute;
    top: 100%;
    margin-top: 20px;
    left: 0;
    right: 0;
  }

  #navHeader .navbar-collapse .navbar-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding-bottom: 60px;
  }

  #navHeader .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 10px 20px;
  }
}

#appFooter {
  color: #ffffff;
}

#appFooter .footer-top {
  display: -webkit-box;
  display: flex;
  background-color: #3e3e3e;
  padding: 40px 140px 80px;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

#appFooter .footer-top > div {
  margin-left: 70px;
}

#appFooter .footer-top .footer-church > * {
  margin-bottom: 20px;
  -webkit-box-align: center;
          align-items: center;
}

#appFooter .footer-top .footer-church > *:nth-child(2) {
  -webkit-box-align: start;
          align-items: flex-start;
}

#appFooter .footer-top .footer-church > *:last-child {
  margin-bottom: 0;
}

#appFooter .footer-top .svg-inline--fa {
  color: #d6d6d6;
  font-size: 18px;
  margin-right: 25px;
}

#appFooter .footer-top .media-body > * {
  color: #ffffff;
}

#appFooter .footer-top .media-body a {
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#appFooter .footer-top .media-body a:hover .svg-inline--fa {
  box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, -2px, 0);
          transform: translate3d(0, -2px, 0);
}

#appFooter .footer-top .media-body address {
  max-width: 215px;
}

#appFooter .footer-top .media-social .media-body .svg-inline--fa {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  color: #ffffff;
  margin-right: 16px;
}

#appFooter .footer-bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  background-color: #4b4b4b;
  padding: 20px 0;
}

.section-hero {
  padding: 0;
  overflow: hidden;
}

.section-hero .hero-image {
  aspect-ratio: 16/9;
}

.section-hero .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-hero .hero-top {
  min-height: 50px;
}

.section-hero .hero-bottom {
  position: absolute;
  bottom: 0;
  min-height: 60px;
}

.section-hero .hero-left {
  position: absolute;
  left: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 991.98px) {
  .section-hero .hero-left {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.section-hero .hero-right {
  position: absolute;
  right: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#secondarySlider.splide {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(50, 85, 110, 0.75);
  padding: 0 50px;
}

#secondarySlider.splide .splide__track {
  height: 100%;
}

#secondarySlider.splide .splide__list {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

#secondarySlider.splide .splide__list .splide__slide {
  margin-top: 10px;
  margin-bottom: 10px;
}

#secondarySlider.splide .splide__list .splide__slide.is-active {
  border-color: #ffffff;
}

#secondarySlider.splide .splide__arrows .splide__arrow {
  width: 18px;
  height: 18px;
  background: none;
  opacity: 1;
}

#secondarySlider.splide .splide__arrows .splide__arrow svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
}

em {
  font-weight: 600;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: #32556e;
}

h1,
.size-1 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
}

h2,
.size-2 {
  font-size: 30px;
  line-height: 50px;
  font-weight: 700;
}

h3,
.size-3 {
  font-size: 20px;
  line-height: 24px;
}

h4,
.size-4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

h5,
.size-5 {
  font-size: 15px;
  line-height: 19px;
}

.size-6 {
  font-size: 14px;
  line-height: 18px;
}

.size-7 {
  font-size: 12px;
  line-height: 15px;
}

.size-8 {
  font-size: 16px;
  line-height: 19px;
}

.size-9 {
  font-size: 20px;
  line-height: 30px;
}

p,
.paragraph {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 0;
}

p:not(:last-of-type),
.paragraph:not(:last-of-type) {
  margin-bottom: 2em;
}

.font-weight-semibold {
  font-weight: 600;
}

.font-weight-medium {
  font-weight: 500;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1360px;
  }
}

.modal-full {
  min-width: 100%;
  margin: 0;
}

.modal-full .modal-body {
  padding: 0;
  background-image: url("/main/images/contact-popup-image.jpg");
  background-size: contain;
  background-position: right;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: stretch;
          align-items: stretch;
}

.modal-full .modal-body > * {
  -webkit-box-flex: 1;
          flex: 1;
}

.modal-full .modal-content {
  min-height: 100vh;
}

.modal-close-button {
  background: none;
  border: none;
  padding: 0;
  height: 44px;
}

.modal-close-button .icon-close {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 100%;
}

.modal-close-button .icon-close:before,
.modal-close-button .icon-close:after {
  position: absolute;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  height: 15px;
  width: 2px;
  background-color: #32556e;
}

.modal-close-button .icon-close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal-close-button .icon-close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.col-sidebar {
  background-color: #32556e;
}

@media (min-width: 992px) {
  .col-sidebar {
    max-width: 420px;
    padding: 0;
  }

  .col-sidebar .modal-sidebar {
    height: 100%;
    padding-top: 36px;
    padding-bottom: 120px;
    position: relative;
  }

  .col-sidebar .modal-sidebar .modal-close-button {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    margin-right: 350px;
    margin-left: auto;
  }

  .col-sidebar .modal-sidebar .sidebar-top {
    max-width: 270px;
    margin-right: 50px;
    margin-left: auto;
    margin-bottom: 25px;
  }

  .col-sidebar .modal-sidebar .sidebar-top .sidebar-title {
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .col-sidebar .modal-sidebar .sidebar-top .sidebar-desc {
    color: #ffffff;
  }

  .col-sidebar .modal-sidebar .sidebar-menu {
    margin-bottom: 80px;
    display: block;
    border: none;
  }

  .col-sidebar .modal-sidebar .sidebar-menu .menu-item {
    display: block;
    padding-top: 25px;
    padding-bottom: 42px;
    color: #ffffff;
  }

  .col-sidebar .modal-sidebar .sidebar-menu .menu-item.active {
    color: #32556e;
    background-color: #ffffff;
  }

  .col-sidebar .modal-sidebar .sidebar-menu .menu-item .menu-item-wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    width: 100%;
    max-width: 270px;
    margin-right: 50px;
    margin-left: auto;
  }

  .col-sidebar .modal-sidebar .sidebar-menu .menu-item .menu-icon {
    color: inherit;
    font-size: 30px;
    margin-right: 24px;
    width: 1.25em;
  }

  .col-sidebar .modal-sidebar .sidebar-menu .menu-item .menu-text {
    color: inherit;
    font-weight: 700;
    text-transform: uppercase;
  }

  .col-sidebar .modal-sidebar .sidebar-verse {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    max-width: 270px;
    margin-right: 50px;
    margin-left: auto;
  }

  .col-sidebar .modal-sidebar .sidebar-verse em {
    font-weight: 700;
  }
}

@media (max-width: 1199.98px) {
  .col-sidebar {
    padding: 30px 60px;
  }

  .col-sidebar .modal-sidebar {
    position: relative;
  }

  .col-sidebar .modal-sidebar .modal-close-button {
    position: absolute;
    right: 0;
  }

  .col-sidebar .modal-sidebar .sidebar-top {
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 25px;
  }

  .col-sidebar .modal-sidebar .sidebar-top .sidebar-title {
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .col-sidebar .modal-sidebar .sidebar-top .sidebar-desc {
    color: #ffffff;
  }

  .col-sidebar .modal-sidebar .sidebar-menu {
    display: none;
  }

  .col-sidebar .modal-sidebar .sidebar-verse {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    max-width: 550px;
    margin: 0 auto;
  }

  .col-sidebar .modal-sidebar .sidebar-verse em {
    font-weight: 700;
  }
}

.col-form {
  padding: 100px 100px 66px 100px;
  background-color: #ffffff;
}

@media (max-width: 1199.98px) {
  .col-form {
    padding: 30px 60px;
  }
}

.col-form .form-container {
  max-width: 550px;
  margin: 0 auto;
  display: none;
}

.col-form .form-container.active {
  display: block;
}

.col-form .form-container .contact-form .form-title {
  text-transform: uppercase;
  margin-bottom: 12px;
}

.col-form .form-container .contact-form .form-desc {
  margin-bottom: 30px;
}

.col-form .form-container .contact-form .form-row {
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 37.5px;
}

.col-form .form-container .contact-form .form-row .col-flex-start {
  align-self: flex-start;
}

.col-form .form-container .contact-form .form-row .col-flex-start .form-label {
  line-height: 32px;
}

.col-form .form-container .contact-form .form-label {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #32556e;
}

.col-form .form-container .contact-form .form-input,
.col-form .form-container .contact-form .form-textarea {
  width: 100%;
  padding: 6px 12px;
  border: none;
  border-bottom: 1px solid #32556e;
  font-size: 14px;
  line-height: 18px;
  color: #32556e;
}

.col-form .form-container .contact-form .form-input::-webkit-input-placeholder, .col-form .form-container .contact-form .form-textarea::-webkit-input-placeholder {
  color: #b1b1b1;
}

.col-form .form-container .contact-form .form-input::-moz-placeholder, .col-form .form-container .contact-form .form-textarea::-moz-placeholder {
  color: #b1b1b1;
}

.col-form .form-container .contact-form .form-input:-ms-input-placeholder, .col-form .form-container .contact-form .form-textarea:-ms-input-placeholder {
  color: #b1b1b1;
}

.col-form .form-container .contact-form .form-input::-ms-input-placeholder, .col-form .form-container .contact-form .form-textarea::-ms-input-placeholder {
  color: #b1b1b1;
}

.col-form .form-container .contact-form .form-input::placeholder,
.col-form .form-container .contact-form .form-textarea::placeholder {
  color: #b1b1b1;
}

.col-form .form-container .contact-form .form-textarea {
  padding: 14px 20px;
  border: 1px solid #32556e;
  border-radius: 6px;
  min-height: 100px;
  resize: none;
  overflow-y: auto;
}

.col-form .form-container .contact-form .form-select-container {
  padding-left: 12px;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
}

.col-form .form-container .contact-form .form-select-container .btn-select.button-outline {
  text-transform: none;
}

.col-form .form-container .contact-form .form-select-container .btn-select.button-outline:not(:last-child) {
  margin-bottom: 12px;
}

.col-form .form-container .contact-form .form-select-container .btn-select.active {
  background-color: #32556e;
  color: #ffffff;
}

.col-form .form-container .contact-form .form-select-container.is-inline {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
          justify-content: space-evenly;
}

.col-form .form-container .contact-form .button-submit {
  padding: 8px 12px;
}

@font-face {
  font-family: "Microsoft JhengHei";
  src: url(/fonts/Microsoft-JhengHei.ttf?a09be68b956f5d89f27e82f68c7c2926);
  font-style: normal;
  font-weight: 400;
}

.hero-left .hero-subtitle {
  color: #ffffff;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2em;
  text-transform: uppercase;
}

.hero-left .hero-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-left .hero-label {
  font-weight: 700;
  font-size: 30px;
  line-height: 42px;
  padding: 0 15px;
  min-width: 100%;
  text-align: center;
  border-top-left-radius: 22px;
  border-bottom-right-radius: 22px;
  background-color: rgba(255, 255, 255, 0.3);
}

.hero-bottom .button-primary {
  margin: 0 20px 60px;
}

@media screen and (max-width: 991.98px) {
  .hero-bottom .button-primary {
    margin: 0 20px 30px;
  }
}

.hero-image-parallax {
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-transition: background-position-y 0.1s linear;
  transition: background-position-y 0.1s linear;
  background-position-y: var(--scroll-percentage, 0);
}

@media screen and (max-width: 767.98px) {
  .hero-image-parallax {
    background-position-y: clamp(0%, calc(var(--scroll-percentage, 0) * 3), 100%);
  }
}

.section-news .mega-now h1 {
  margin-bottom: 20px;
}

.section-welcome .welcome-subtitle {
  font-size: 24px;
  line-height: 29px;
  font-weight: 400;
}

.section-welcome .welcome-title {
  font-weight: 500;
  font-size: 45px;
  line-height: 54px;
  margin-bottom: 10px;
}

.section-welcome .welcome-media h3 {
  margin-bottom: 24px;
}

@media screen and (max-width: 991.98px) {
  .section-welcome .welcome-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.section-welcome .welcome-media img {
  border-radius: 5px 5px 0 0;
  max-width: 360px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-welcome .welcome-media .media-body {
  margin-left: 40px;
  padding-top: 10px;
}

@media screen and (max-width: 991.98px) {
  .section-welcome .welcome-media .media-body {
    margin-left: 0;
    margin-top: 30px;
  }
}

.section-welcome .welcome-media .media-body .media-heading {
  position: relative;
  padding-left: 1em;
}

.section-welcome .welcome-media .media-body .media-heading .heading-quote {
  position: absolute;
  top: 0;
  left: 0;
}

.section-time .time-info {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  max-width: 300px;
}

.section-time h4 {
  margin-bottom: 22px;
}

@media (min-width: 992px) {
  .section-time .left-border {
    border-left: 1px solid #32556e;
  }
}

@media (max-width: 991.98px) {
  .section-time .left-border {
    border-top: 1px solid #32556e;
    margin-top: 30px;
    padding-top: 30px;
  }
}

.section-time .media.media-time {
  margin-bottom: 20px;
  -webkit-box-align: center;
          align-items: center;
}

.section-time .media.media-time .media-icon {
  color: #32556e;
  font-size: 24px;
  margin-right: 10px;
}

.section-time .media.media-time:last-child {
  margin-bottom: 0;
}

.hero-bottom .hero-indicator-block {
  -webkit-box-flex: 1;
          flex: 1 1 100%;
  padding: 25px 55px;
  color: #ffffff;
  background-color: rgba(50, 85, 110, 0.44);
  border: 0;
}

.hero-bottom .hero-indicator-block.is-active {
  background-color: rgba(0, 0, 0, 0.44);
}

.hero-bottom .hero-indicator-block .media {
  max-width: 500px;
}

.hero-bottom .hero-indicator-block h5,
.hero-bottom .hero-indicator-block p {
  color: inherit;
}

.hero-bottom .hero-indicator-block .svg-inline--fa {
  font-size: 18px;
  margin-right: 13.5px;
}

.hero-right .media-sermon {
  margin-bottom: 20px;
}

.hero-right .media-sermon .date-box {
  border-radius: 10px;
  text-align: center;
  background-color: #e0e0e0;
  padding: 8px;
  margin-right: 14px;
}

.hero-right .media-sermon .date-box h3,
.hero-right .media-sermon .date-box p {
  font-weight: 600;
  color: #ffffff;
}

.hero-right .sermon-container {
  max-width: 400px;
}

.hero-right .sermon-container > * {
  margin-bottom: 15px;
}

.section-word .word-top {
  margin-bottom: 40px;
}

.section-word .word-top .word-heading {
  margin-bottom: 12px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 991.98px) {
  .section-word .word-top .word-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }

  .section-word .word-top .word-heading > .button-primary {
    margin-bottom: 12px;
  }
}

.section-word .word-top .word-heading h1 {
  margin-bottom: 0;
}

.sermon-list {
  margin-bottom: -18px;
}

.sermon-list .each-sermon {
  margin-bottom: 18px;
}

.sermon-card {
  background-color: #ffffff;
  box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  border: 0;
}

.sermon-card .card-image {
  display: block;
  max-height: 230px;
  border-radius: 10px 10px 0 0;
}

.sermon-card .card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.sermon-card .card-body {
  padding: 12px 20px 30px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.sermon-card .card-body p {
  margin-top: 12px;
  margin-bottom: 15px;
}

.sermon-card .card-body .datetime-badge {
  display: -webkit-box;
  display: flex;
  max-width: 220px;
  margin-bottom: 30px;
}

.sermon-card .card-body .datetime-badge .date {
  color: #ffffff;
  padding: 8px;
  padding-right: 25px;
  text-align: right;
  width: 60%;
  background-color: #e0e0e0;
  border-radius: 10px 0 0 10px;
}

.sermon-card .card-body .datetime-badge .time {
  color: #32556e;
  padding: 8px;
  padding-left: 10px;
  text-align: left;
  width: 40%;
  background-color: #c6c6c6;
  border-radius: 0 10px 10px 0;
}

.sermon-card .card-body .button-primary {
  margin-top: auto;
  align-self: flex-start;
}

.sermon-card .card-footer {
  padding: 21px 15px 12px;
  text-align: right;
  background-color: #ffffff;
  border-top: 0.5px solid rgba(50, 85, 110, 0.12);
  border-radius: 0 0 10px 10px;
}

.sermon-card .card-footer .sermon-stats {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
          align-items: center;
}

.sermon-card .card-footer .sermon-stats .stat-group:first-child {
  margin-right: 20px;
}

.sermon-card .card-footer .sermon-stats .footer-icon {
  font-size: 18px;
  color: #32556e;
  margin-right: 12.5px;
}

.section-education h1 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
}

.section-education h1 .head-icon {
  font-size: 24px;
  margin-right: 21px;
}

.section-education .button-primary {
  margin: 30px 0;
}

.section-education .button-primary:not(:last-child) {
  margin-right: 20px;
}

.section-education .chevron-left,
.section-education .chevron-right {
  background: #fcfce5;
  border: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 50px;
  font-size: 20px;
  color: #32556e;
  z-index: 3;
}

.section-education .chevron-left {
  left: -65px;
}

.section-education .chevron-right {
  right: 0;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.education-list {
  position: relative;
  margin-bottom: -45px;
}

.education-list .each-education {
  margin-bottom: 45px;
}

.education-carousel .carousel-inner {
  padding-bottom: 60px;
}

.education-carousel .carousel-outer-indicator {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0;
}

.education-carousel .carousel-outer-indicator li {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid #32556e;
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  opacity: 1;
}

.education-carousel .carousel-outer-indicator li.active {
  background-color: #32556e;
}

.overflow-x-hidden-only {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

#videoModal .copy-link {
  cursor: pointer;
  color: #32556e;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  border: none;
  width: 70%;
}

#videoModal .copy-link:hover {
  opacity: 0.9;
}

#videoModal .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  margin: 1rem;
}

#videoModal .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#videoModal .video-wrapper .icon-loader {
  font-size: 50px;
  top: 50px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.sub-header {
  position: absolute;
  top: 0;
  height: 50px;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.44);
}

.sub-header > .container {
  padding-left: 0;
  padding-right: 0;
  height: 100%;
}

.sub-header .nav-items {
  display: -webkit-box;
  display: flex;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 991.98px) {
  .sub-header .nav-items {
    flex-wrap: nowrap;
    overflow: scroll;
  }
}

.sub-header .nav-items .nav-item {
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  font-weight: 500;
  padding: 10px 15px;
}

@media (max-width: 991.98px) {
  .sub-header .nav-items .nav-item {
    white-space: nowrap;
  }
}

.sub-header .nav-items .nav-item.active {
  background-color: rgba(255, 0, 0, 0.5);
  font-weight: 800;
}

.section-generation .about-wrapper {
  max-width: 700px;
}

.section-generation .about-wrapper h1 {
  margin-bottom: 12px;
}

.section-generation .about-wrapper .generation-verse {
  font-size: 20px;
  line-height: 30px;
  color: #32556e;
  margin-bottom: 30px;
}

.section-generation .about-wrapper .generation-body .paragraph {
  margin-bottom: 60px;
}

.section-generation .about-wrapper .generation-body .paragraph * {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

.section-generation .about-wrapper .generation-body h3 {
  margin-bottom: 30px;
}

.section-generation .about-wrapper .generation-body .label-group:not(:last-child) {
  margin-bottom: 32px;
}

.section-generation .about-wrapper .generation-body .label-group .label-grey {
  min-width: 200px;
  margin-bottom: 12px;
}

.section-generation .info-wrapper {
  max-width: 390px;
}

.section-generation .info-wrapper .media:not(:last-child) {
  border-bottom: 1px solid rgba(50, 85, 110, 0.4);
}

.section-generation .info-wrapper .media-left {
  margin-right: 45px;
  width: 30px;
  text-align: center;
}

.section-generation .info-wrapper .media-left .icon {
  font-size: 24px;
  color: #32556e;
}

.section-generation .info-wrapper .media-body p {
  font-weight: 500;
}

.section-generation .info-wrapper .media-age {
  padding-bottom: 22.5px;
}

.section-generation .info-wrapper .media-schedule {
  padding: 20px 0 12px;
}

.section-generation .info-wrapper .media-schedule .label-grey {
  margin-bottom: 6px;
}

.section-generation .info-wrapper .media-schedule p:not(:last-child) {
  margin-bottom: 24px;
}

.section-generation .info-wrapper .media-location {
  padding-top: 24px;
}

.section-generation .info-wrapper .media-location .media-body p {
  font-weight: bold;
}

.church-retreat .title-1 {
  background-image: url("/main/images/church-retreat/gradient.jpg");
  background-position: top;
  background-size: cover;
  text-align: center;
  padding: 20px 20px;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.church-retreat .title-1 p {
  font-size: 26px;
  line-height: 30px;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.church-retreat .title-2 {
  background-image: url("/main/images/church-retreat/gradient-low.jpg");
  background-position: top;
  background-size: cover;
  text-align: center;
  padding: 20px 20px;
}

.church-retreat .title-2 p {
  font-size: 26px;
  line-height: 30px;
  color: black;
  font-weight: bold;
  overflow-wrap: break-word;
}

.church-retreat .title-3 {
  background-position: top;
  background-size: cover;
  text-align: center;
  padding: 1px;
}

.church-retreat .title-3 p {
  font-size: 36px;
  line-height: 1px;
  color: #1e9d40;
  font-weight: bold;
  overflow-wrap: break-word;
}

.church-retreat .main-banner-img {
  aspect-ratio: 16/9;
  margin: 0;
  padding: 0;
  background-image: url("/main/images/hero-church-retreat.png");
  background-size: cover;
  /* Make it cover the entire area */
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Prevent tiling */
  height: 100%;
  width: 100%;
}

.church-retreat .duit-now {
  width: 50%;
}

.church-retreat .collapsible-container {
  padding: 40px;
}

.church-retreat hr {
  background: black;
  /* width: 2px; */
  border-top: 2px solid;
  width: 100%;
}

.church-retreat .collapsible {
  color: black;
  cursor: pointer;
  background-color: white;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  padding: 14px;
  border: none;
  border-radius: 6px;
}

.church-retreat .content {
  padding: 0px 20px;
  max-height: 0;
  min-height: 0px;
  overflow: hidden;
  border-radius: 6px;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  margin: 20px 0px;
}

.church-retreat .content.open {
  min-height: 100px;
}

.church-retreat .content p,
.church-retreat ul {
  font-size: 20px !important;
  line-height: 1.5em;
  padding: 20px;
  color: #32556e;
}

.church-retreat .signup-logo {
  width: 60%;
}

@media (max-width: 991.98px) {
  .church-retreat .signup-logo,
  .church-retreat .duit-now {
    width: 100% !important;
  }
}

.church-retreat .content-description {
  padding: 20px;
  gap: 20px;
}

.church-retreat .section-gradient {
  background-image: url("/main/images/church-retreat/gradient.jpg");
  padding: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  font-size: 1.8em;
  -webkit-box-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.church-retreat .section-gradient-low {
  background-image: url("/main/images/church-retreat/gradient-low.jpg");
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 35px 35px;
}

.church-retreat .blue-btn {
  background-color: #32556e;
  padding: 10px;
  color: white;
  border-radius: 10px;
  width: 120px;
  height: 40px;
  -webkit-box-pack: center;
          justify-content: center;
  /* Center horizontally */
  -webkit-box-align: center;
          align-items: center;
  /* Center vertically */
}

.church-retreat .blue-btn a,
.church-retreat .blue-btn a:hover {
  color: white;
}

.church-retreat .auto-size-btn {
  padding: 10px 20px;
  /* space around the text */
  font-size: 16px;
  /* controls height indirectly */
  background-color: teal;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.church-retreat .auto-size-btn a,
.church-retreat .auto-size-btn a:hover {
  color: white;
}

.church-retreat .section-1 {
  font-size: 1.8em;
  line-height: 1.3em;
  background-color: #f0f0f0;
  padding: 20px;
  font-weight: bold;
}

.section-church .church-heading h1 {
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-church .church-heading h2 {
  margin-bottom: 12px;
}

.section-church .column-mission p > strong {
  display: block;
}

.section-church .church-verse {
  font-family: "Libre Baskerville", serif;
  color: #030303;
  font-size: 24px;
  line-height: 30px;
  max-width: 1100px;
  margin-bottom: 26px;
}

.church-vision .vision-heading {
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .church-vision .visions {
    display: -webkit-box;
    display: flex;
  }
}

.church-vision .visions .vision {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  min-height: 120px;
  padding: 30px;
}

@media (max-width: 991.98px) {
  .church-vision .visions .vision {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .church-vision .visions .vision:not(:last-child) {
    margin-right: 70px;
  }
}

.church-vision .visions .vision h2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
}

.church-mission {
  background-color: #fcfce5;
  padding-bottom: 64px;
  padding-top: 64px;
  margin-top: 64px;
}

@media (min-width: 992px) {
  .church-mission {
    padding-top: 160px;
    margin-top: -96px;
  }
}

.church-mission .mission-heading {
  margin-bottom: 24px;
}

.church-strategy {
  padding-top: 57px;
  padding-bottom: 96px;
}

.church-strategy .strategy-heading {
  margin-bottom: 24px;
}

.church-strategy p strong {
  display: block;
}

.church-strategy p + ul {
  color: #32556e;
  -webkit-padding-start: 18px;
          padding-inline-start: 18px;
}

.church-strategy .strategy-image {
  max-width: 450px;
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
}

.church-strategy .strategy-image img {
  max-width: 100%;
}

.church-team {
  margin-bottom: 30px;
}

.church-team:last-child {
  margin-bottom: 21px;
}

.church-team h1 {
  margin-bottom: 12px;
}

.church-team .team-card {
  background-color: #ffffff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.09);
}

.church-team .team-card .card-image {
  border-radius: 10px 10px 0 0;
}

.church-team .team-card .card-body {
  padding: 28px 20px;
}

.church-team .team-verse {
  min-height: 78px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
  margin-bottom: 15px;
}

.church-team .team-title {
  font-size: 20px;
  line-height: 18px;
  font-weight: 600;
}

.church-team .team-desc {
  font-weight: 300;
}

.social-wall {
  padding: 0;
  margin-bottom: 130px;
}

.social-wall [class*=col-] {
  overflow: hidden;
}

.social-wall img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.social-wall img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.contact-hero {
  padding: 50px 0 20px;
}

.contact-hero .hero-title {
  text-transform: uppercase;
  margin-bottom: 82px;
}

@media (max-width: 1199.98px) {
  .contact-hero .hero-title {
    margin-bottom: 48px;
  }
}

.contact-hero .each-contact.has-margin-bottom {
  margin-bottom: 80px;
}

@media (max-width: 1199.98px) {
  .contact-hero .each-contact.has-margin-bottom {
    margin-bottom: 48px;
  }
}

.contact-hero .each-contact .media-icon {
  font-size: 28px;
  color: #32556e;
  margin-right: 14px;
}

.contact-hero .each-contact h3 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hero .each-contact .media-desc {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-offering {
  padding-top: 50px;
}

.contact-offering .offering-title {
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (max-width: 1199.98px) {
  .contact-offering .offering-title {
    margin-bottom: 12px;
  }
}

.contact-offering .offering-left {
  max-width: 450px;
}

@media (max-width: 1199.98px) {
  .contact-offering .offering-left {
    margin-bottom: 24px;
  }
}

.contact-offering .offering-left .offering-verse {
  font-family: "Libre Baskerville", serif;
  color: #030303;
  margin-bottom: 48px;
}

@media (max-width: 1199.98px) {
  .contact-offering .offering-left .offering-verse {
    margin-bottom: 24px;
  }
}

.contact-offering .offering-left .email-box {
  padding: 20px;
  border-radius: 6px;
  box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.1);
}

.contact-offering .offering-left .email-box .media-icon {
  font-size: 30px;
  margin-right: 15px;
  color: #32556e;
}

.contact-offering .offering-left .email-box .media-body p {
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 1200px) {
  .contact-offering .offering-right {
    display: -webkit-box;
    display: flex;
    padding-left: 100px;
  }
}

@media (min-width: 1200px) {
  .contact-offering .offering-right .offering-qr > :first-child {
    width: 320px;
  }
}

.contact-offering .offering-right .offering-qr img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 300px;
}

@media (max-width: 991.98px) {
  .contact-offering .offering-right .offering-qr img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
  }
}

.contact-offering .offering-right .offering-info {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .contact-offering .offering-right .offering-info > :first-child {
    border-right: 1px solid #707070;
    padding-right: 20px;
    margin-right: 45px;
    max-width: 320px;
  }
}

@media (max-width: 767.98px) {
  .contact-offering .offering-right .offering-info > :first-child {
    border-bottom: 1px solid #707070;
    padding-top: 20px;
    margin-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.contact-offering .offering-right .offering-info > * {
  -webkit-box-flex: 1;
          flex: 1 0 auto;
}

.contact-offering .offering-right .offering-info .offering-icon {
  font-size: 70px;
  line-height: 70px;
  margin-bottom: 8px;
  color: #32556e;
}

.contact-offering .offering-right .offering-info h4 {
  font-weight: 700;
  text-transform: uppercase;
  max-width: 200px;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .contact-offering .offering-right .offering-info h4 {
    height: 38px;
    margin-bottom: 20px;
  }
}

.contact-offering .offering-right .offering-info .offering-paragraph {
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
}

.contact-offering .offering-right .offering-info .offering-paragraph em {
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
}

.contact-offering .offering-right .offering-info .offering-bank {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.contact-offering .offering-right .offering-info .offering-bank .image-wrapper {
  width: 110px;
  text-align: left;
  margin-right: 5px;
}

.contact-offering .offering-right .offering-info .offering-bank .image-wrapper img {
  max-height: 25px;
}

@media screen and (max-width: 991.98px) {
  .deut6 .hero-left {
    width: 80%;
  }
}

.deut6 .hero-left .hero-title-wrapper {
  max-width: 420px;
}

@media screen and (max-width: 991.98px) {
  .deut6 .hero-left .hero-title-wrapper {
    text-align: center;
    border-top-left-radius: 22px;
    border-bottom-right-radius: 22px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px;
  }

  .deut6 .hero-left .hero-title-wrapper .hero-title,
  .deut6 .hero-left .hero-title-wrapper .hero-subtitle {
    color: #030303;
  }
}

.deut6 .hero-left .hero-title-wrapper.english .hero-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 0.8px;
}

.deut6 .hero-left .hero-title-wrapper.english .hero-subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.6px;
}

.deut6 .hero-left .hero-title {
  font-size: 36px;
  line-height: 42px;
  color: #32556e;
  margin-bottom: 10px;
  letter-spacing: 1.08px;
}

@media screen and (max-width: 991.98px) {
  .deut6 .hero-left .hero-title {
    font-size: 30px;
    line-height: 50px;
    margin-bottom: 6px;
  }
}

.deut6 .hero-left .hero-subtitle {
  font-size: 24px;
  line-height: 33px;
  color: #32556e;
  margin-bottom: 0;
  letter-spacing: 7.2px;
}

.deut6 .section-title {
  margin-bottom: 60px;
}

@media screen and (max-width: 991.98px) {
  .deut6 .section-title {
    margin-bottom: 30px;
  }
}

.deut6 .deut6-plans {
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 991.98px) {
  .deut6 .deut6-plans {
    -webkit-box-pack: center;
            justify-content: center;
  }
}

.deut6 .deut6-plans .col-lg {
  max-width: 165px;
  text-align: center;
}

@media screen and (max-width: 991.98px) {
  .deut6 .deut6-plans .col-lg:not(:last-child) {
    margin-bottom: 20px;
  }
}

.deut6 .deut6-plans .plan-icon {
  max-width: 100%;
  margin-bottom: 45px;
  color: #32556e;
}

@media screen and (max-width: 991.98px) {
  .deut6 .deut6-plans .plan-icon {
    margin-bottom: 15px;
  }
}

.deut6 .section-middle {
  padding-top: 58px;
  padding-bottom: 58px;
  color: #32556e;
}

.deut6 .section-middle h1 {
  margin-bottom: 38px;
}

.deut6 .section-middle p {
  margin-bottom: 6px;
}

.deut6 .section-middle ul {
  list-style-type: disc;
  -webkit-padding-start: 1.2em;
          padding-inline-start: 1.2em;
}

@media screen and (max-width: 991.98px) {
  .deut6 .section-deut6 h1 {
    text-align: center;
  }
}

.deut6 .deut6-devotion {
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 991.98px) {
  .deut6 .deut6-devotion {
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.deut6 .deut6-devotion .devotion-info {
  margin-right: 60px;
}

.deut6 .deut6-devotion .education-container {
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  max-width: 600px;
  width: 100%;
}

.deut6 .deut6-devotion .media-deut6 {
  -webkit-box-flex: 0;
          flex: 0 0 auto;
}

@media screen and (max-width: 991.98px) {
  .deut6 .deut6-devotion .media-deut6 {
    text-align: center;
  }
}

.deut6 .deut6-devotion .media-deut6 .media-icon {
  color: #32556e;
  margin-right: 21px;
  font-size: 24px;
}

.deut6 .deut6-devotion .media-deut6 h3 {
  margin-bottom: 15px;
}

.deut6 .deut6-image {
  max-width: max(650px, 50%);
  margin: 0 auto;
}

.deut6 .deut6-image img {
  max-width: 100%;
}

.section-window {
  font-family: "Montserrat", "Microsoft JhengHei", sans-serif;
}

@media (max-width: 991.98px) {
  .section-window .column-title-wrapper {
    -webkit-box-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .section-window {
    padding-right: 0;
  }
}

.section-window .books {
  row-gap: 60px;
}

.section-window .books .book {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  height: 100%;
}

.section-window .books .book .edition {
  color: #b1b1b1;
  margin-bottom: 4px;
}

.section-window .books .book > img {
  margin-top: auto;
}

.section-window .books .book .buttons-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.section-window .books .book .buttons-wrapper a {
  font-size: 14px;
  width: 50%;
  display: block;
  color: #08c7ff;
  background-color: #ffffff;
  border: 1px solid;
  border-radius: 25px;
  padding: 4px 8px;
  text-align: center;
  -webkit-transition: opacity 0.2s, color 0.2s;
  transition: opacity 0.2s, color 0.2s;
}

.section-window .books .book .buttons-wrapper a:first-child {
  background-color: #27abd6;
  border-color: #27abd6;
  color: #ffffff;
}

.section-window .books .book .buttons-wrapper a:nth-child(2) {
  background-color: #c4f0fc;
  border-color: #c4f0fc;
  color: #27abd6;
}

.section-window .books .book .buttons-wrapper a:hover {
  text-decoration: none;
  color: #3e3e3e;
  opacity: 0.9;
}

.section-window .books .book .buttons-wrapper a span {
  display: block;
}

.highlights-column,
.listing-column {
  margin-top: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.section-his-window {
  display: -webkit-box;
  display: flex;
}

.tag-container {
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 15px;
}

.content-img {
  height: 300px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-content {
  padding: 0px;
}

.tag-span {
  border-radius: 10px;
  border: 1px solid #32556e;
  text-align: center;
  padding: 5px 10px;
  display: inline-block;
  color: #32556e;
  background-color: #e0ebf6;
  margin: 5px 0px;
  margin-right: 5px;
}

.column-title-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 8px;
}

@media (max-width: 991.98px) {
  .column-title-wrapper h3 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
}

.column-title-wrapper .search-input-container {
  margin-left: auto;
}

@media (max-width: 991.98px) {
  .column-title-wrapper .search-input-container {
    margin-right: auto;
  }
}

.listing-column ul {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  list-style-type: circle;
}

.listing-column .listing-link {
  font-size: 14px;
  line-height: 18px;
  color: #030303;
}

.blog-container {
  display: block;
  height: 420px;
  position: relative;
  border-radius: 10px 10px 0 0;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .blog-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    height: auto;
  }
}

.blog-container:last-child {
  margin-bottom: 60px;
}

.blog-container:hover .blog-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog-container .blog-image {
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  .blog-container .blog-image {
    position: relative;
    padding-top: calc(630 / 1200 * 100%);
  }
}

.blog-container .blog-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.blog-container .blog-body {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 20px 30px 30px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: rgba(88, 88, 88, 0.68);
}

@media (max-width: 991.98px) {
  .blog-container .blog-body {
    padding: 15px 20px 20px;
  }

  .blog-container .blog-body p {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 767.98px) {
  .blog-container .blog-body {
    position: relative;
    background-color: #3e3e3e;
  }

  .blog-container .blog-body h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .blog-container .blog-body p {
    font-size: 12px;
    line-height: 15px;
  }
}

.blog-container .blog-body .body {
  display: inline-block;
}

.blog-container .blog-body h3 {
  color: #ffffff;
  font-weight: 600;
}

.blog-container .blog-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.blog-tag {
  display: inline-block;
  padding: 7px 25px;
  text-transform: uppercase;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  background-color: #8652fa;
}

.blog-tag.color-1 {
  background-color: #8652fa;
}

.blog-tag.color-2 {
  background-color: #1dc6a5;
}

.blog-tag.color-3 {
  background-color: #fa52b3;
}

@media (min-width: 992px) {
  .offset-lg-half {
    margin-left: 4.1666666667%;
  }
}

.tag-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow: inset -9px 7px 25px 0px #efefef;
  height: 100%;
  padding: 24px;
}

.tag-container h3 {
  color: #08c7ff;
  font-weight: 500;
}

.tag-container ul {
  list-style-type: none;
  padding-left: 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-container ul .tag {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  background-color: #ffffff;
  border: 1px solid;
  border-color: #08c7ff;
  color: #27abd6;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}

.tag-container ul .tag:hover,
.tag-container ul .tag.is-active {
  background-color: #08c7ff;
  color: #ffffff;
}

.tag-container ul .tag a {
  display: -webkit-box;
  display: flex;
  padding: 6px 8px;
  height: 100%;
  width: 100%;
  color: inherit;
  z-index: 1;
}

.tag-container ul .tag a:hover {
  text-decoration: none;
}

.section-windows h1 {
  font-size: 45px;
  line-height: 54px;
}

.dropdown-year {
  border: 1px solid #27abd6;
  margin-left: 40px;
}

@media (max-width: 991.98px) {
  .dropdown-year {
    margin-top: 10px;
  }
}

.dropdown-year .dropdown-toggle {
  min-width: 120px;
  padding: 4px 12px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  color: #27abd6;
}

@media (max-width: 767.98px) {
  .dropdown-year {
    margin-left: 0px;
  }
}

.dropdown-year .dropdown-menu {
  min-width: 100%;
  text-align: center;
}

.dropdown-year .dropdown-menu > li > a {
  display: block;
  padding: 4px 20px;
  white-space: nowrap;
  color: #27abd6;
}

@media (max-width: 991.98px) {
  .window-library-row,
  .his-window-row,
  .his-window-article-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    gap: 40px;
  }
}

.his-window-avoiding-header-anchor {
  position: absolute;
  top: -100px;
}

.library-result {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 8px;
}

.library-result:not(:last-child) {
  margin-bottom: 36px;
}

.library-result a {
  color: #707070;
  font-weight: 600;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  margin-bottom: 6px;
}

.library-result a > * {
  color: inherit;
  font-weight: inherit;
}

.library-result a:hover {
  color: #27abd6;
  text-decoration: none;
}

.library-result p {
  color: #b1b1b1;
}

@media (max-width: 1199.98px) {
  .section-his-window-article,
  .section-window-library {
    padding: 35px 0;
  }
}

.section-window-library h1 {
  font-size: 45px;
  line-height: 54px;
}

@media (max-width: 1199.98px) {
  .section-window-library h1 {
    font-size: 30px;
    line-height: 1.2;
  }
}

@media (max-width: 1199.98px) {
  .section-window-library .tags-column {
    margin-bottom: 40px;
  }
}

@media (max-width: 1199.98px) {
  .section-his-window-article {
    padding-bottom: 70px;
  }
}

.section-his-window-article .tag-container h3 {
  color: #3e3e3e;
}

.section-his-window-article .toc {
  padding-left: 0;
  list-style-type: none;
}

.section-his-window-article .toc li {
  color: #3e3e3e;
}

.section-his-window-article .toc li h4 {
  color: #3e3e3e;
}

.section-his-window-article .toc li:hover {
  color: #27abd6;
}

.section-his-window-article .toc li a {
  color: inherit;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.section-his-window-article .toc li a:hover {
  text-decoration: none;
  color: #27abd6;
}

.section-his-window-article .toc li a.is-active {
  font-weight: 600;
  color: #3e3e3e;
}

.section-his-window-article .toc > li:not(:last-child) {
  margin-bottom: 12px;
}

.section-his-window-article .toc ol > li:not(:last-child) {
  margin-bottom: 6px;
}

.section-his-window-article .toc li > ol {
  list-style-type: none;
  padding-left: 1em;
}

.section-his-window-article .navigation-icon.chevron-left,
.section-his-window-article .navigation-icon.chevron-right {
  position: -webkit-sticky;
  position: sticky;
  top: 50%;
  display: block;
  font-size: 28px;
  color: #000000;
}

@media (max-width: 1199.98px) {
  .section-his-window-article .navigation-icon.chevron-left,
  .section-his-window-article .navigation-icon.chevron-right {
    position: absolute;
    top: unset;
    z-index: 1;
  }
}

.section-his-window-article .navigation-icon.chevron-left:hover,
.section-his-window-article .navigation-icon.chevron-right:hover {
  color: #08c7ff;
}

.section-his-window-article .navigation-icon.chevron-left.is-visibility-hidden,
.section-his-window-article .navigation-icon.chevron-right.is-visibility-hidden {
  visibility: hidden;
}

@media (max-width: 1199.98px) {
  .section-his-window-article .navigation-icon.chevron-left {
    left: 0;
    bottom: 0;
  }

  .section-his-window-article .navigation-icon.chevron-right {
    right: 0;
    bottom: 0;
  }
}

.section-his-window-article .article-content {
  position: relative;
  padding-bottom: 60px;
  padding-left: 45px;
  padding-right: 45px;
}

@media (max-width: 1199.98px) {
  .section-his-window-article .article-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-his-window-article .article-content h1 {
  font-size: 36px;
  line-height: 1.1;
  color: #707070;
}

@media (max-width: 1199.98px) {
  .section-his-window-article .article-content h1 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
}

.section-his-window-article .article-content * {
  color: #4b4b4b;
}

.section-his-window-article .article-content img {
  max-width: 100%;
}

@media (max-width: 1199.98px) {
  .section-his-window-article .article-content img {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.section-his-window-article .article-content .navigations {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@media (max-width: 1199.98px) {
  .section-his-window-article .article-content .navigations {
    height: 42px;
  }
}

.section-his-window-article .article-content .navigations .more-about-tag {
  text-decoration: underline;
  color: #3e3e3e;
  font-weight: 400;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.section-his-window-article .article-content .navigations .more-about-tag:hover {
  color: #27abd6;
}

@media (max-width: 1199.98px) {
  .section-his-window-article .content-column {
    margin-bottom: 40px;
  }
}

.section-his-window-article #button-gototop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background-color: #e0e0e0;
  border-radius: 6px;
  opacity: 0.8;
  font-size: 20px;
  color: #ffffff;
  -webkit-transition: background-color 0.2s, opacity 0.4s, color 0.2s;
  transition: background-color 0.2s, opacity 0.4s, color 0.2s;
  z-index: 99;
}

.section-his-window-article #button-gototop:hover {
  background-color: #08c7ff;
}

@media (max-width: 1199.98px) {
  .section-his-window-article #button-gototop {
    width: 42px;
    height: 42px;
  }
}

.section-blog .blog-image {
  position: relative;
  margin: 0 auto;
  padding-top: calc(630 / 1200 * 100%);
}

.section-blog .blog-image img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.blog-title-wrapper {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  .blog-title-wrapper {
    margin-bottom: 20px;
  }

  .blog-title-wrapper h1 {
    margin-bottom: 15px;
  }
}

.blog-title-wrapper .blog-date {
  color: #b1b1b1;
}

.blog-content-wrapper {
  max-width: 960px;
  margin: 60px auto;
}

@media (max-width: 991.98px) {
  .blog-content-wrapper {
    margin-top: 30px;
  }
}

.blog-content-wrapper p {
  font-size: 18px;
  line-height: 22px;
}

.blog-content-wrapper p b,
.blog-content-wrapper p strong {
  font-weight: 600;
}

.share-button {
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  -webkit-transition: opacity 0.3 ease;
  transition: opacity 0.3 ease;
}

.share-button:hover {
  opacity: 0.8;
}

.share-button img {
  width: 24px;
  height: 24px;
}

@media (max-width: 1199.98px) {
  .share-button {
    position: fixed;
    bottom: 72px;
    right: 30px;
    width: 42px;
    height: 42px;
    background-color: #e0e0e0;
    border-radius: 6px;
    opacity: 0.8;
  }

  .share-button:hover {
    background-color: #08c7ff;
  }

  .share-button img {
    width: 18px;
    height: 18px;
    -webkit-filter: invert(100%);
            filter: invert(100%);
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.share-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-radius: 16px 16px 0 0;
  padding: 20px;
  z-index: 1001;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.share-sheet.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.share-sheet-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.share-sheet-title {
  font-size: 18px;
  font-weight: 600;
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.close-button:hover {
  color: #333;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.share-option {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.3s forwards;
          animation: fadeInUp 0.3s forwards;
}

.share-option:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.share-option:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}

.share-option:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.share-option:nth-child(3) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.share-option:nth-child(4) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.share-icon-button {
  width: 60px;
  height: 60px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 8px;
  font-size: 24px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.share-icon-button img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}

.share-option:hover .share-icon-button {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.share-name {
  font-size: 12px;
  color: #333;
}

.share-toast-container {
  position: fixed;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  bottom: 20px;
  left: 0;
  right: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  z-index: 2000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.share-toast {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  text-align: center;
}

/* Desktop-specific styles */

@media (min-width: 768px) {
  .overlay.active {
    background-color: rgba(0, 0, 0, 0);
  }

  .share-sheet {
    position: absolute;
    bottom: auto;
    width: 300px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  }

  .share-sheet.active {
    opacity: 1;
    visibility: visible;
  }

  .share-options {
    grid-template-columns: repeat(3, 1fr);
  }

  .share-action-buttons {
    margin-top: 10px;
  }
}

.search-input-container .search-input-wrapper {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  border-bottom: 1px solid #c0c0c0;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.search-input-container .search-input-wrapper:focus-within {
  border-color: #404040;
}

.search-input-container .search-input {
  -webkit-box-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #333;
}

.search-input-container .search-input::-webkit-input-placeholder {
  color: #999;
}

.search-input-container .search-input::-moz-placeholder {
  color: #999;
}

.search-input-container .search-input:-ms-input-placeholder {
  color: #999;
}

.search-input-container .search-input::-ms-input-placeholder {
  color: #999;
}

.search-input-container .search-input::placeholder {
  color: #999;
}

.search-input-container .search-input:focus {
  color: #000;
}

.search-input-container .search-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.search-input-container .search-button .search-icon {
  color: #999;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.search-input-container .search-button:hover .search-icon {
  color: #404040;
}

