/* Import local CSS */
@import url(/static/css/variables.css);
@import url(/static/css/reset.css);

html { scroll-behavior: smooth; }

* {
    font-family: var(--primary-kr);
}

body {
    margin: 0;
    color: var(--black);
    line-height: 1.5em;
    font-size: 16px;
}

/* #### Common CSS #### */

/* Layout CSS */
.container {
    width: 100%;
    position: relative;
}

[class*=inner] {
    width: 1280px;
    margin: auto;
}

/* Button(viewmore) CSS */
.btn-viewmore {
    width: 180px;
    padding: 10px;
    border: 1px solid var(--deep-latte);
    border-radius: 30px;
    font-size: 20px;
    font-weight: 500;
    color: var(--deep-latte);
    background-color: var(--creamy-white);
    transition: 0.25s;
}

.btn-viewmore i {
    font-size: 16px;
    color: var(--latte);
    transform: translateY(-10%);
    padding-right: 10px;
    transition: 0.25s;
}

.btn-viewmore:hover {
    background: linear-gradient( 180deg, #A69880, #746448);
    color: white;
}

.btn-viewmore:hover i {
    color: white;
}

/* Button(page-nav) CSS */
.btn-page-nav {
    font-size: 20px;
    padding: 10px 15px;
    color: var(--deep-latte);
    border: none;
    font-weight: 500;
    background-color: var(--whitey-gray);
    margin: 0 5px;
    transition: 0.35s;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.436);
}

.btn-page-nav:hover {
    background-color: var(--deep-latte);
    color: #fff;
}

.btn-page-nav:active {
    transform: scale(95%);
}

.btn-page-nav i {
    padding: 0 7px;
    font-size: 14px;
    transform: translateY(-10%);
}

/* Search field CSS */
.search-field {
    display: inline-block;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.397);
    width: 370px;
    height: 55px;
    background-color: #fff;
}

.search-field input {
    border: none;
    font-size: 16px;
    color: var(--black);
    padding: 12px 20px;
    float: left;
    height: 100%;
    width: 77%;
}

.search-field:focus-within {
    outline: 1px solid var(--deep-latte);
    box-shadow: 0 0 10px rgba(165, 123, 5, 0.447);
}

.search-field input::placeholder {
    color: var(--silver);
}

.search-field input:focus::placeholder{
    opacity: 0;
}

.search-field button {
    width: 80px;
    height: 100%;
    border: none;
    background-color: var(--latte);
    float: right;
    transition: 0.35s;
}

.search-field button i {
    font-size: 24px;
    color: #fff;
    padding: 10px 0;
    transition: 0.35s;
}

.search-field button:hover {
    background-color: var(--deep-latte);
}

.search-field button:hover > i {
    color: var(--foam-latte);
}

/* Table-board CSS */
.table-board {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 50px 0;
    font-size: 20px;
}

.table-board tr {
    height: 70px;
    border-bottom: 1px solid var(--latte);
    transition: 0.35s;
}

.table-board tr:hover {
    background-color: var(--creamy-white);
    color: var(--red-wine);
}

.table-board tr:first-child {
    border-top: 2px solid var(--latte);
}

.table-board tr:last-child {
    border-bottom: 2px solid var(--latte);
}

.table-board tr td {
    padding: 15px;
}

.table-board tr td:first-child {
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.table-board tr td:last-child {
    text-align: right;
    color: var(--deep-latte);
    width: 120px;
}

/* Pagenation CSS */
.pagenation {
    display: flex;
    justify-content: center;
    margin: 70px auto 20px auto;
}

.pagebox {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    border: 1px solid var(--deep-latte);
    margin-right: 5px;
    background-color: #fff;
    color: var(--deep-latte);
    transition: 0.25s;
}

.pagebox:hover {
    background-color: var(--foam-latte);
}

.pagebox:disabled {
    border: 1px solid var(--light-gray);
    color: var(--whitey-gray);
}

.pagebox.active {
    background-color: var(--deep-latte);
    color: #fff;
}

.pagebox:last-child {
    margin-right: 0;
}

/* The Animation code */
@keyframes floating-effect {
    0% {margin-top: 100px;
        opacity:0;}
    100% {margin-top: 0;
        opacity:1;}
}

@keyframes slide-from-right {
    from { right: -200px; opacity: 0;}
    to { right: 0; opacity: 1; }
}


/* #### Landing Page #### */

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: white;
    box-shadow:0 2px 10px rgba(128, 128, 128, 0.158);
    z-index: 100;
}

.top-banner{
    background-color: var(--foam-latte);
    margin: auto;
    display: flex;
    align-items: center;
}

.top-banner .lnb {
    width: 1280px;
    text-align: right;
    margin: auto;
    padding: 2px 0;
    font-size: 14px;
    font-family: var(--secondary-en);
    font-weight: 500;
    color: var(--dark-gray);
}

.top-banner .lnb span {
    padding: 0 7px;
    color: var(--silver);
}

.top-banner .lnb a:hover {
    color: var(--black);
}

nav {
    width: 1280px;
    height: 55px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jubilee-logo {
    text-align: left;
    flex: 1;
}

.jubilee-logo img{
    width: 100px;
    vertical-align: middle;
}

.gnb ul li {
    list-style: none;
}

.gnb {
    text-align: center;
    margin: 0 auto;
}

.gnb > ul {
    flex: 1;
    display: flex;
    justify-content: space-around;
    padding-inline-start: 0;
    text-align: center;
}

.gnb > ul > li {
    color: var(--black);
    background-color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding: 15px 0;
    margin: 0 20px;
    position: relative;
    padding-inline-start: 0;
    transition: 0.35s;
}

.gnb > ul > li:hover {
    color: var(--red-wine);
}

.gnb > ul > li:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--red-wine);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.35s;
}

.gnb > ul > li:hover:before {
    width: 100%;
}

.gnb > ul > li > ul {
    width: 120px;
    height: auto;
    background-color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    box-shadow: 2px 2px 8px rgba(128, 128, 128, 0.368);
    position: absolute;
    top: 55px;
    padding-inline-start: 0;
    opacity: 0;
    transition: 0.4s;
}

.gnb > ul > li:hover > ul {
    opacity: 1;
}

.gnb > ul > li > ul > li {
    color: var(--black);
    padding: 6px 10px;
    transition: 0.2s;
}

.gnb > ul > li > ul > li:hover {
    color: white;
    background-color: var(--red-wine);
}

.gnb-mobile {
    display: none;
}

.gnb-mobile.active {
    display: none;
}

/* go-youtube button*/
.goyoutube {
    flex: 1;
    text-align: right;
    opacity: 1;
    visibility: visible;
    transition: 0.35s;
}

.goyoutube img {
    width: 70px;
}

.goyoutube a {
    vertical-align: middle;
}

.goyoutube p {
    font-size: 12px;
    font-family: var(--secondary-kr);
    font-weight: 600;
    color: var(--youtube-red);
    margin: 0;
    padding: 0;
    line-height: 1;
}

.goyoutube p span {
    color: var(--black);
}

/* trigger-layover */
.trigger-layover.active {
    background-color: #000000;
    z-index: 90;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 60%;
    transition: 0.5s;
    display: none;
}

/* Main_Intro */
/* intro-first */
.slide {
    opacity: 0;
    display: none;
    -webkit-transition: opacity 1s ease-in;
    transition: opacity 1s ease-in;
}

.intro-background {
    height: 880px;
    background: url(/static/images/landing/intro_image00.png) no-repeat center center;
    background-size: cover;
    margin-bottom: 30px;
}

.intro {
    height: 880px;
    margin-bottom: 30px;
    background: url(/static/images/landing/intro_image01_new.jpg) no-repeat center center;
    background-size: cover;
}


/* intro-second */
.intro-second {
    height: 880px;
    margin-bottom: 30px;
    background: url(/static/images/landing/intro_image02_new.jpg) no-repeat center center;
    background-size: cover;
}

/* intro-third */
.intro-third {
    height: 880px;
    margin-bottom: 30px;
    background: url(/static/images/landing/intro_image03.jpg) no-repeat center center;
    background-size: cover;
}

/* intro-fourth */
.intro-fourth {
    height: 880px;
    margin-bottom: 30px;
    background: url(/static/images/landing/intro_image04.jpg) no-repeat center center;
    background-size: cover;
}

/* intro-fifth */
.intro-fifth {
    height: 880px;
    margin-bottom: 30px;
    background: url(/static/images/landing/intro_image05.jpg) no-repeat center center;
    background-size: cover;
}

/* intro-sixth */
.intro-sixth {
    height: 880px;
    margin-bottom: 30px;
    background: url(/static/images/landing/intro_image06_new.jpg) no-repeat center center;
    background-size: cover;
}

/* intro-seventh */
.intro-seventh {
    height: 880px;
    margin-bottom: 30px;
    background: url(/static/images/landing/intro_image07_new.jpg) no-repeat center center;
    background-size: cover;
}

.slide-indicator {
    z-index: 50;
    font-size: 14px;
    transform: translateY(-800%);
}

.slide-indicator i {
    padding: 0 4px;
    color: var(--latte);
}

.slide-indicator i.active {
    color: #ffffff;
}

.intro-shortcut {
    position: absolute;
    top: 770px;
    left: 58%;
    display: flex;
    z-index: 50;
    animation-name: floating-effect;
    animation-duration: 1.2s;
}

.intro-shortcut .shortcut-item {
    display: inline-block;
    width: 120px;
    height: 120px;
    border: 3px solid var(--foam-latte);
    margin-left: 5px;
    border-radius: 10px;
    color: var(--deep-latte);
    background-color: var(--creamy-white);
    text-align: center;
    box-shadow: 1px 1px 10px rgba(128, 128, 128, 0.336);
    opacity: 90%;
    transition: 0.35s;
}

.intro-shortcut .shortcut-item:hover {
    transform: translateY(-7%);
    opacity: 100%;
    box-shadow: 1px 10px 10px rgba(128, 128, 128, 0.24);
}

.intro-shortcut .shortcut-item:hover > i {
    color: var(--deep-latte);
}

.intro-shortcut .shortcut-item i, .intro-shortcut .shortcut-item h4 {
    transform: translateY(40%);
    transition: 0.35s;
}

.intro-shortcut .shortcut-item i {
    font-size: 45px;
    color: var(--latte);
}

.intro-shortcut .shortcut-item h4 {
    font-family: var(--secondary-kr);
    padding-top: 20px
}

/* Section common */
.landing section {
    text-align: center;
}

section.floating {
    animation-name: floating-effect;
    animation-duration: 1.8s;
}

/* Section_Sermon */
.sermons {
    padding-top: 100px;
}

.sermon-summary .heading h1 {
    font-weight: 600;
    position: relative;
}

.sermon-summary .heading h1:after {
    content:'Sermon';
    font-family: var(--decor-font);
    color: var(--latte);
    display: inline-block;
    transform: translate(-20px,20px);
    font-size: 40px;
    position: absolute;
    opacity: 30%;
}

.sermon-summary hr {
    width: 50px;
    height: 2px;
    border: none;
    background-color: var(--red-wine);
    margin: 40px auto;
}

.sermon-summary .sermon-contents {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.sermon-contents i {
    position: absolute;
    top: 50%;
    font-size: 26px;
    display: none;
    transform: translateY(-50%);
}

.sermon-contents i.fa-solid.fa-chevron-left {
    left: 0;
}

.sermon-contents i.fa-solid.fa-chevron-right {
    right: 0;
}

.sermon-contents a.sermon-card {
    display: inline-block;
    width: 305px;
    height: auto;
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.42);
    border-radius: 10px 0 10px 0;
    overflow: hidden;
    transition: 0.4s;
}

.sermon-contents a.sermon-card:hover {
    transform: translate(-1%, -3%);
    box-shadow: 5px 10px 10px rgba(128, 128, 128, 0.174);
}

.sermons img {
    width: 100%;
}

a.sermon-card {
    text-align: left;
}

.card-desc {
    height: 120px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-desc .card-badge span {
    font-size: 12px;
    display: inline-block;
    background-color: var(--red-wine);
    padding: 0 8px;
    color: white;
    border-radius: 3px;
}

.card-desc .card-badge em {
    font-style: normal;
    padding-left: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--red-wine);
}

.card-desc h4 {
    margin: 0;
    width: 275px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.card-desc b {
    font-weight: 500;
    font-size: 16px;
    color: var(--deep-latte);
}

.btn-viewmore {
    margin: 50px auto;
}

/* Section_News */
section.news {
    background-color: var(--creamy-white);
    padding-top: 100px;
}

.news-summary .heading h1 {
    font-weight: 600;
    position: relative;
}

.news-summary .heading h1:after {
    content:'Greetings';
    font-family: var(--decor-font);
    color: var(--latte);
    display: inline-block;
    transform: translate(-20px,20px);
    font-size: 40px;
    position: absolute;
    opacity: 30%;
}

.news-summary hr {
    width: 50px;
    height: 2px;
    border: none;
    background-color: var(--red-wine);
    margin: 40px auto;
}

.news-contents {
    display: flex;
}

.news-contents .news-sum table {
    width: 590px;
    border-collapse: collapse;
    table-layout: fixed;
}

.news-contents .news-sum .btn-view {
    margin-right: 100px;
}

.news-contents .news-sum table tr {
    height: 60px;
    border-bottom: 1px solid var(--deep-latte);
}

.news-contents .news-sum table tr:first-child {
    border-top: 1px solid var(--deep-latte);
}

.news-contents .news-sum table tr td:first-child {
    text-align: left;
    font-size: 20px;
    padding-left: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 75%;
}

.news-contents .news-sum table tr td:first-child:hover {
    color: var(--red-wine);
}

.news-contents .news-sum table tr td:last-child {
    text-align: right;
    color: var(--deep-latte);
    padding-right: 10px;
    width: 25%;
}

.news-contents .news-sum button.btn-viewmore {
    margin-top: 30px;
}

.news-contents .news-cards {
    width: 590px;
    margin-left: 100px;
}

.news-cards .newscard-item {
    display: inline-block;
    width: 100%;
    /* height: 80px; */
    border: 1px solid var(--latte);
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: white;
    border: 1px solid var(--latte);
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.304);
    padding: 25px 30px;
    align-items: center;
    transition: 0.35s;
}

.news-cards .newscard-item:last-child {
    margin-bottom: 0;
}

.news-cards .newscard-item .item-title {
    display: flex;
    align-items: center;
}

.item-title i {
    width: 30px;
    font-size: 28px;
    transform: translateY(5%)
}

.item-title.first i {
    color: var(--red-wine);
}

.item-title.second i {
    color: var(--olive);
}

.item-title.third i.fa-solid.fa-children {
    color: var(--mustard);
}

.item-title.third i.fa-brands.fa-instagram {
    background: linear-gradient( 180deg, #6228d7,#ee2a7b,#f9ce34);
    background-clip: text;
    -webkit-background-clip: text;
    color: rgb(0 0 0 / 20%);
    padding-left: 8px;
    font-size: 20px;
    transform: translateY(-20%);
}

.item-title.fourth i {
    color: var(--navy-blue);
}

.item-title h3 {
    margin: 0;
    padding-left: 20px;
}

.news-cards .newscard-item span {
    color: var(--red-wine);
}

.news-cards .newscard-item span em {
    font-style: normal;
}

.newscard-item:hover {
    transform: translateY(-5%);
    box-shadow: 1px 7px 10px rgba(128, 128, 128, 0.205);
    border: 1px solid var(--red-wine);
}

.newscard-item:hover span {
    color: var(--youtube-red);
}

/* Section_Groupcare */
section.groupcare {
    background-color: var(--white);
    padding-top: 100px;
}

.groupcare .heading h1 {
    font-weight: 600;
    position: relative;
}

.groupcare .heading h1:after {
    content:'Groupcare';
    font-family: var(--decor-font);
    color: var(--latte);
    display: inline-block;
    transform: translate(-20px,20px);
    font-size: 40px;
    position: absolute;
    opacity: 30%;
}

.groupcare hr {
    width: 50px;
    height: 2px;
    border: none;
    background-color: var(--red-wine);
    margin: 40px auto;
}

.groupcare-background {
    position: relative;
}

.groupcare-background .bg-top {
    width: 82%;
    height: 130px;
    background: linear-gradient(180deg, #DFD8CF, transparent);
    position: absolute;
    z-index: -1;
    border-radius: 0 80px 0 0;
    top: 105px;
    opacity: 60%;
}

.groupcare-background .bg-letter {
    font-family: var(--background-font);
    color: var(--foam-latte);
    font-size: 230px;
    opacity: 25%;
    position: absolute;
    letter-spacing: -15px;
    z-index: -1;
}

.groupcare-background .bg-letter.jubilee {
    top: 320px;
}

.groupcare-background .bg-letter.church {
    top: 500px;
    right: 0;
}

.groupcare-contents {
    display: flex;
    margin-bottom: 150px;
}

.cards-internal {
    display: flex;
}

.cards-internal a {
    margin-right: 20px;
}

.cards-internal .leftcard {
    width: 200px;
    height: 300px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.646);
    transition: 0.35s;
}

.cards-internal .leftcard:hover {
    transform: translateY(-5%);
    box-shadow: 1px 10px 10px rgba(128, 128, 128, 0.26);
    filter: brightness(120%);
}

.cards-internal .leftcard:before {
    content: '';
    width: inherit;
    height: inherit;
    background: linear-gradient(180deg, #333333, transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.cards-internal h2 {
    color: white;
    position: relative;
    font-family: var(--secondary-kr);
}

.cards-internal .leftcard.igm {
    background: url(/static/images/landing/groupcare_image01.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 40px 0 0 40px;
    position: relative;
}

.cards-internal .leftcard.igm h2 {
    position: absolute;
    bottom: 5%;
    right: 10%;
}

.cards-internal .leftcard.youngadults {
    background: url(/static/images/landing/groupcare_image02.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    margin-top: 35px;
}

.cards-internal .leftcard.youngadults h2 {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(0,-50%)
}

.cards-internal .leftcard.adults{
    background: url(/static/images/landing/groupcare_image03.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    margin-top: 50px;
}

.cards-internal .leftcard.adults h2 {
    position: absolute;
    width:100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    line-height: 1.5;
}

.cards-internal .leftcard.disciples {
    background: url(/static/images/landing/groupcare_image04.jpg) no-repeat right -200px center;
    background-size: cover;
    border-radius: 0 40px 40px 0;
    margin-top: 65px;
}

.cards-internal .leftcard.disciples h2 {
    position: absolute;
    width: 100%;
    bottom: 45%;
    right: 10%;
    text-align: right;
    line-height: 1.5;
}

.cards-external {
    margin-left: 20px;
    margin-top: 20px;
}

.cards-external h4 {
    font-weight: 500;
    color: var(--deep-latte);
    text-align: left;
}

.cards-external .rightcard {
    width: 360px;
    height: 130px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.646);
    transition: 0.35s;
}

.cards-external .rightcard:hover {
    transform: translateY(-5%);
    box-shadow: 1px 10px 10px rgba(128, 128, 128, 0.26);
    filter: brightness(120%);
}

.cards-external .rightcard:before {
    content: '';
    width: inherit;
    height: inherit;
    background: linear-gradient(180deg, #333333, transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.cards-external h2 {
    color: white;
    position: relative;
    font-family: var(--secondary-kr);
}

.cards-external .korean-school {
    background: url(/static/images/landing/groupcare_image05.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 40px 0 0 0;
}

.cards-external .korean-school h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-40%);
}

.cards-external .digital-library {
    background: url(/static/images/landing/groupcare_image06.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 0 0 40px 0;
}

.cards-external .digital-library h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-40%);
}

/* Section_Scripture */
.scripture {
    background: url(/static/images/landing/scripture-bg.jpg) no-repeat top center;
    background-size: cover;
    height: 260px;
}

.scripture-inner {
    position: relative;
    height: inherit;
}

.scripture-contents {
    position: absolute;
    top: 20%;
    right: 0;
    text-align: right;
    animation-name: slide-from-right;
    animation-duration: 2s;
}

.scripture-contents i {
    display: block;
    text-align: center;
    font-size: 50px;
    color: white;
    margin-bottom: 20px;
    opacity: 70%;
}

.scripture-contents p {
    color: var(--latte);
    font-weight: 600;
    font-family: var(--secondary-kr);
    margin-top: 5px;
}

.scripture-contents p span {
    font-weight: 400;
}

/* Footer */
footer {
    background-color: var(--light-black);
    padding: 70px 0;
    height: auto;
}

.footer-contents {
    display: flex;
}

.church-logo {
    display: flex;
    flex: 1;
}

.church-logo img {
    width: 60px;
    height: 60px;
    margin-right: 12px;
}

.church-logo .church-name {
    color: white;
}

.church-logo .church-name h5 {
    font-family: var(--tertiary-kr);
    margin: 0;
}

.church-logo .church-name p {
    margin: 0;
    padding-top: 3px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    font-family: var(--primary-en);
    letter-spacing: 0.4px;
}

.church-info {
    flex: 1;
    color: var(--light-gray);
    font-family: var(--tertiary-kr);
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.church-info hr {
    width: 40px;
    height: 2px;
    border: none;
    background-color: var(--dark-gray);
    color: var(--dark-gray);
    margin: 40px auto;
}

.church-youtube {
    flex: 1;
    text-align: right;
    color: white;
}

.church-youtube .youtube-name i {
    font-size: 24px;
    transform: translateY(5%);
    padding-right: 2px;
}

.church-youtube .youtube-name h3 {
    display: inline-block;
    font-family: 'Rum Raisin';
    margin: 0;
}

.goto-youtube h4 {
    margin: 0;
    padding-top: 5px;
    font-weight: normal;
    font-family: var(--tertiary-kr);
    line-height: 1.3;
}

.goto-youtube h4 i {
    padding-left: 7px;
    font-size: 26px;
    transform: translateY(20%);
    color: var(--foam-latte);
}

footer .copyright {
    text-align: center;
    color: var(--foam-latte);
    font-family: var(--tertiary-kr);
    margin: 0;
    font-weight: 300;
}

/* Go-to-top */
.goto-top {
    position: fixed;
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, #A69880, #746448);
    border-radius: 50%;
    right: 50px;
    bottom: -50px;
    opacity: 0;
    color: #fff;
    text-align: center;
    font-size: 24px;
    line-height: 50px;
    box-shadow: 2px 2px 5px rgba(106, 106, 106, 0.805);
    transition: 0.5s;
}

.goto-top.active{
    bottom: 40px;
    opacity: 1;
}


/* #### Introduction Pages #### */

/* Pages-common-styles */

.page-banner {
    width: 100%;
    height: 300px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.page-banner:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    top: 0;
    left: 0;
    background-color: var(--black);
    opacity: 65%;
}

.page-banner h1 {
    font-size: 40px;
    color: #fff;
    padding-top: 110px;
    text-align: center;
    z-index: 10;
}

section .page-contents {
    padding: 70px 0;
}

h1.sub-title {
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Worship-services page */

.worship-services.page-banner {
    background: url(/static/images/introduction/introduction-banner.jpg) no-repeat center center;
    background-size: cover;
}

.worship-services-info {
    background: url(/static/images/introduction/worship-background.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 1170px;
}

.worship-services-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: inherit;
    background-color: #fff;
    opacity: 90%;
}

.worship-services-info .worship-inner {
    position: relative;
    text-align: center;
}

.worship-services-info .worship-inner table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.worship-upper {
    animation: floating-effect 2s;
}

.worship-services-info h1 {
    margin-bottom: 35px;
    font-weight: 600;
}

.worship-services-info table {
    font-weight: 500;
    font-size: 20px;
}

.worship-services-info tr {
    height: 60px;
    border-bottom: 1px solid var(--light-gray);
    transition: 0.35s;
}

.worship-services-info tr:hover {
    background-color: white;
}

.worship-services-info table tr:first-child {
    border-top: 3px solid var(--latte);
}

.worship-services-info table tr:nth-child(4) {
    border-bottom: 2px solid var(--latte);
}

.worship-services-info table tr:last-child {
    border-bottom: 3px solid var(--latte);
}

.worship-services-info table tr td:nth-child(2) {
    color: var(--deep-latte);
}

.worship-services-info table tr td:nth-child(3) {
    color: var(--dark-gray);
}

.worship-lower {
    margin-top: 70px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.worship-lower table {
    font-size: 16px;
}

.worship-lower tr td:first-child {
    font-size: 20px;
}

.worship-left {
    flex: 1;
}

.worship-right {
    flex: 1;
}

.worship-lower tr td span {
    font-size: 12px;
}

/* Ministry-values page */

.ministry-values.page-banner {
    background: url(/static/images/introduction/introduction-banner.jpg) no-repeat center center;
    background-size: cover;
}

.ministry-values-inner {
    animation: floating-effect 2s;
}

.ministry-values-heading {
    background-color: rgba(223, 216, 207, 0.40);
    border-radius: 30px 0 30px 0;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ministry-values-heading h1, .ministry-values-heading h1 span {
    font-weight: 600;
    font-size: 28px;
    font-family: var(--secondary-kr);
    line-height: 1.3;
    margin-bottom: 0;
}

.ministry-values-heading h1 span {
    color: var(--deep-latte);
}

.ministry-values-heading hr {
    width: 40px;
    height: 1px;
    border: none;
    background-color: var(--latte);
    margin: 20px auto;
}

.ministry-values-heading h3 {
    font-family: var(--tertiary-kr);
    font-weight: 400;
    line-height: 1.5;
    color: var(--deep-latte);
    text-align: center;
    width: 75%;
    margin-bottom: 0;
    font-size: 22px;
}

.ministry-seven-values {
    margin: 80px 0;
}

.ministry-seven-values h1 span {
    color: var(--red-wine);
}

.ministry-seven-values h1 em {
    font-style: normal;
    font-family: var(--primary-en);
    font-weight: normal;
    font-size: 28px;
}

.ministry-seven-values .value-contents {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--creamy-white);
    border-radius: 100px 20px 20px 100px;
    width: 95%;
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.441);
    transition: 0.35s;
    margin-bottom: 15px;
}

.ministry-seven-values .value-contents:hover {
    background-color: #fff;
    transform: translateY(-5px);
    box-shadow: 3px 3px 10px rgba(128, 128, 128, 0.441);
}

.ministry-seven-values .value-contents .value-numbering {
    flex-basis: 75px;
    height: 75px;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(128, 128, 128, 0.4);
}

.value-numbering h2, .value-numbering h3 {
    margin: 0;
    font-family: var(--tertiary-kr);
    color: #fff;
    transform: translateY(43%);
}

.value-numbering h2 {
    margin-bottom: 3px;
    font-weight: 400;
    color: var(--whitey-gray);
}

.value-numbering h3 {
    font-weight: normal;
    font-size: 22px;
}

.value-desc {
    padding-left: 20px;
}

.value-desc h4 {
    margin-bottom: 0;
}

.ministry-seven-values .first-value .value-numbering, .ministry-seven-values .fifth-value .value-numbering {
    background-color: var(--dark-gray);
}

.ministry-seven-values .second-value .value-numbering, .ministry-seven-values .fourth-value .value-numbering, .ministry-seven-values .seventh-value .value-numbering {
    background-color: var(--deep-latte);
}

.ministry-seven-values .third-value .value-numbering, .ministry-seven-values .sixth-value .value-numbering {
    background-color: var(--latte);
}

.value-desc h4 span {
    color: var(--red-wine)
}

.ministry-twelve-rules {
    margin-top: 80px;
}

.ministry-twelve-rules h1 span {
    color: var(--red-wine);
}

.rules-kapc img {
    float: left;
    margin-right: 20px;
    transform: translateY(15%);
}

.rules-kapc, .rules-desc {
    font-size: 20px;
    line-height: 1.5;
}

.rules-kapc {
    color: var(--deep-latte);
}

.rules-kapc p span {
    color: var(--red-wine)
}

.rules-desc {
    margin-bottom: 30px;
}

.rules-details {
    margin-bottom: 50px;
}

.rules-details .rules-detail-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    background-color: var(--latte);
    padding: 15px 0;
    color: #fff;
    transition: 0.3s;
}

.rules-detail-heading:hover {
    cursor: pointer;
    background-color: var(--deep-latte);
}

.rules-details .rules-detail-heading i {
    font-size: 16px;
}

/* 12신조 열기- active클래스 추가했을 때 */
.rules-details .rules-detail-heading.active i {
    transform: rotate(180deg);
    font-size: 16px;
}

.rules-details ol.rules-detail-words {
    padding: 15px;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(128, 128, 128, 0.434);
    margin: 0;
    padding-left: 40px;
    line-height: 1.8;
    display: none;
}

/* 12신조 열기- active클래스 추가했을 때 */
.rules-details ol.rules-detail-words.active {
    display: block;
}

.rules-details ol.rules-detail-words li {
    padding-left: 5px;
}

/* New-members page */

img.jubilee-vector {
    float: left;
    transform: translate(-30%, 50%);
}

img.tree-vector {
    float: right;
    transform: translate(-170%,-20%);
    width: 90px;
}

img.tree2-vector {
    float: right;
    transform: translate(40%,-55%);
    width: 150px;
}

/* Staffs page */

.staffs.page-banner {
    background: url(/static/images/introduction/introduction-banner.jpg) no-repeat center center;
    background-size: cover;
}

.staffs.page-contents {
    padding-top: 0;
}

.upper-staffs {
    background-color: var(--creamy-white);
    position: relative;
    animation: floating-effect 2s;
}

.upper-staffs-inner {
    position: relative;
}

.upper-staffs > img {
    position: absolute;
    right: 3%;
    bottom: -12%;
    width: 500px;
}

.upper-staffs h1.sub-title {
    padding-top: 70px;
}

img.profile-img {
    width: 200px;
    height: 265px;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.753);
}

.senior-pastor {
    display: flex;
    padding: 20px 0 50px 0;
    align-items: flex-end;
}

.senior-pastor-profile {
    margin-left: 20px;
}

.staff-name {
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
}

.staff-name span {
    font-size: 16px;
}

.staffs .fa-regular.fa-envelope {
    color: var(--red-wine);
    font-weight: 500;
    font-size: 20px;
    padding-left: 5px;
    transition: 0.25s;
}

.staffs .fa-regular.fa-envelope:hover {
    transform: scale(120%);
    font-weight: 600;
}

.upper-staffs p, .lower-staffs p {
    margin: 0;
    padding-bottom: 4px;
}

.senior-pastor-profile p:nth-of-type(1),.pastors-profile .profile-card p:nth-of-type(1), .junior-pastors .profile-card p:nth-of-type(1), .junior-pastors-em .profile-card p:nth-of-type(1)  {
    font-size: 14px;
    color: var(--dark-gray);
}

.senior-pastor-profile p:nth-of-type(2), .pastors-profile .profile-card p:nth-of-type(2), .junior-pastors .profile-card p:nth-of-type(2), .junior-pastors-em .profile-card p:nth-of-type(2) {
    font-weight: 500;
    color: var(--deep-latte);
}

.senior-pastor-profile ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.senior-pastor-profile ul li {
    font-size: 14px;
}

.lower-staffs {
    position: relative;
}

.lower-staffs img.jubilee-background {
    position: absolute;
    opacity: 3%;
    width: 1530px;
    z-index: -1;
}

.lower-staffs img.jubilee-background:nth-of-type(1) {
    top: 10%;
    left: 0;
}

.lower-staffs img.jubilee-background:nth-of-type(2) {
    bottom: 10%;
    right: 0;
}

.lower-staffs-inner {
    padding-top: 50px;
}

.lower-staffs-inner img.profile-img{
    display: block;
}

.pastors-profile, .junior-pastors, .junior-pastors-em {
    display: flex;
    flex-wrap: wrap;
}

.lower-staffs-inner .profile-card {
    margin-right: 100px;
    margin-bottom: 50px;
}

.junior-pastors-em .profile-card {
    margin-bottom: 0;
}

.lower-staffs-inner .profile-card {
    text-align: center;
}

.lower-staffs-inner .profile-card .staff-name {
    padding-top: 10px;
}

/* Direction page */

.direction.page-banner {
    background: url(/static/images/introduction/introduction-banner.jpg) no-repeat center center;
    background-size: cover;
}

.direction-inner {
    animation: floating-effect 2s;
}

.direction-inner i {
    font-size: 22px;
}

.direction-inner h4 {
    padding: 0 10px;
    font-family: var(--secondary-en);
    font-weight: 600;
}

.jubilee-address-copy .fa-solid.fa-location-dot {
    color: var(--red-wine);
    font-size: 26px;
    padding-right: 10px;
}

.jubilee-address-copy .fa-regular.fa-copy {
    color: var(--med-gray);
    padding-left: 5px;
}

.jubilee-contact-number .fa-solid.fa-phone {
    color: var(--deep-latte);
    padding-right: 10px;
}

.jubilee-google-map {
    width: 100%;
    margin: 20px 0 30px 0;
}

/* Sermons page */

.sunday-sermons.page-banner {
    background: url(/static/images/sermon/sermon-banner.jpg) no-repeat center center;
    background-size: cover;
}

.sunday-sermons.page-contents {
    text-align: center;
}

.sunday-sermons-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sunday-sermons-cards .sermon-contents {
    width: 392px;
    margin-top: 50px;
}

.sunday-sermons-cards .sermon-contents a.sermon-card {
    width: 100%;
    height: 100%;
}

.sunday-sermons-cards .sermon-contents .sermon-card img {
    width: 100%;
}

.sunday-sermons-cards .sermon-contents .sermon-card .card-desc {
    height: 150px;
    padding: 20px 15px;
}

.sunday-sermons-cards .sermon-contents .sermon-card .card-desc .card-badge span {
    font-size: 16px;
    padding: 2px 8px;
}

.sunday-sermons-cards .sermon-contents .sermon-card .card-desc .card-badge em {
    font-size: 18px;
}

.sunday-sermons-cards .sermon-contents .sermon-card .card-desc h4 {
    width: 100%;
    font-size: 24px;
    font-weight: 600;
}

.sunday-sermons-cards .sermon-contents .sermon-card .card-desc b {
    font-size: 20px;
}
.sunday-sermons .btn-viewmore {
    margin-top: 80px;
}

/* Sunday-sermons-detail page */

.sunday-sermons-detail.page-banner {
    background: url(/static/images/sermon/sermon-banner.jpg) no-repeat center center;
    background-size: cover;
}

.sunday-sermons-detail {
    text-align: center;
}

.sunday-sermon-youtube {
    text-align: center;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.sunday-sermon-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sunday-sermons-detail-inner h1.sub-title {
    margin: 50px 0 25px 0;
}

.sunday-sermons-detail-inner h3 {
    color: var(--red-wine);
    font-weight: 500;
    font-size: 22px;
}

.sunday-sermons-detail-inner h3 span {
    padding: 0 12px;
}

.sunday-sermons-detail-inner p {
    color: var(--deep-latte);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
}

.sunday-sermons-detail hr {
    width: 50px;
    height: 1px;
    border: none;
    background-color: var(--latte);
    margin: 30px auto;
}

.todays-scripture-heading, .todays-questions-heading {
    width: 100%;
    font-size: 28px;
    border: 1px solid var(--latte);
    padding: 10px;
    font-family: var(--tertiary-kr);
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.404);
    transition: 0.25s;
    background-color: #fff;
    margin: 0;
}

.todays-scripture-heading:hover {
    cursor: pointer;
    color: var(--deep-latte);
    background-color: var(--creamy-white);
}

.todays-questions-heading:hover {
    cursor: pointer;
    color: var(--red-wine);
    background-color: var(--creamy-white);
}

.todays-scripture {
    margin-top: 60px;
}

.todays-questions {
    margin-top: 30px;
}

.todays-scripture-heading i, .todays-questions-heading i {
    padding: 10px;
}

.todays-scripture-heading .fa-solid.fa-book-open {
    color: var(--deep-latte);
}

.sunday-sermons-detail-inner .fa-solid.fa-chevron-down {
    font-size: 20px;
    color: var(--med-gray);
}
.todays-questions-heading .fa-solid.fa-heart {
    color: var(--red-wine);
}

.todays-scripture-contents {
    text-align: left;
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.404);
    padding: 25px 15px 5px 15px;
    opacity: 0;
    display: none;
    transition: 0.35s;
}

.todays-scripture-contents h4 {
    margin: 0;
    padding: 0 15px;
    color: var(--deep-latte);
}

.todays-scripture-contents ol li {
    padding: 5px;
}

.todays-questions-contents {
    text-align: left;
    padding: 15px;
    opacity: 0;
    display: none;
    transition: 0.35s;
}

.sunday-sermons-detail hr:nth-of-type(2) {
    margin: 50px auto;
}

/* 본문열기, 사랑방 질문 열기 - active클래스 추가 동작 모음 */
.todays-scripture-heading.active .fa-solid.fa-chevron-down.scripture-chevron {
    transform: rotate(180deg);
}

.todays-questions-heading.active .fa-solid.fa-chevron-down.questions-chevron {
    transform: rotate(180deg);
}

.todays-scripture-contents.active, .todays-questions-contents.active {
    opacity: 100%;
    display: block;
}

/* Church-news page */

.church-news.page-banner {
    background: url(/static/images/news/news-banner.jpg) no-repeat center center;
    background-size: cover;
}

.church-news {
    text-align: center;
}

/* Church-members-news page */

.church-members-news.page-banner {
    background: url(/static/images/news/news-banner.jpg) no-repeat center center;
    background-size: cover;
}

.church-members-news {
    text-align: center;
}

/* Church-bulletins page */

.church-bulletins.page-banner {
    background: url(/static/images/news/news-banner.jpg) no-repeat center center;
    background-size: cover;
}

.church-bulletins {
    text-align: center;
}

/* Young-adults page */

.young-adults.page-banner {
    background: url(/static/images/groupcare/groupcare-banner.jpg) no-repeat center center;
    background-size: cover;
}

.young-adults h1.sub-title {
    margin-bottom: 20px;
}

.young-adults h3 {
    line-height: 1.7;
    margin-bottom: 50px;
}

.young-adults h3 span {
    color: var(--dark-olive);
}

.young-adults-contents {
    background-color: var(--creamy-white);
    padding: 80px 0 70px 0;
}

.young-adults-cards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    animation: floating-effect 2s;
}

.young-adults-card {
    width: 350px;
    height: 250px;
    border-radius: 20px;
    background-color: #fff;
    padding: 40px 30px 30px 30px;
    position: relative;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.15);
    transition: 0.35s;
}

.young-adults-card:hover {
    transform: translateY(-5%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.073);
}

.young-adults-card .icon-bg {
    width: 110px;
    height: 110px;
    position: absolute;
    top: -12%;
    color: #fff;
    border-radius: 20px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.436);
}

.young-adults-card h1 {
    font-family: var(--secondary-kr);
    font-weight: 600;
    padding-left: 140px;
    margin-top: 10px;
}

.young-adults-card h4{
    line-height: 1.5;
    font-family: var(--tertiary-kr);
}

.young-adults-card h4 span {
    font-family: var(--tertiary-kr);
}

.young-adults-card:first-child .icon-bg {
    background: linear-gradient(135deg, rgba(32, 68, 140, 0.5),rgba(32, 68, 140, 1));
    text-align: center;
    animation: floating-effect 1.5s;
}

.young-adults-card:first-child .icon-bg i {
    font-size: 60px;
    line-height: 105px;
}

.young-adults-card:first-child h1 {
    color: var(--navy-blue);
}

.young-adults-card:first-child h4 span {
    color: var(--navy-blue);
    font-family: var(--tertiary-kr);
}

.young-adults-card:nth-child(2) .icon-bg {
    background: linear-gradient(317deg, #535925 0%, rgba(83, 89, 37, 0.50) 96.2%);
    text-align: center;
    animation: floating-effect 2s;
}

.young-adults-card:nth-child(2) .icon-bg i {
    font-size: 45px;
    line-height: 110px;
}

.young-adults-card:nth-child(2) .icon-bg i:last-child {
    transform: scaleX(-1);
}

.young-adults-card:nth-child(2) h1 {
    color: var(--dark-olive);
}

.young-adults-card:nth-child(2) h4 {
    line-height: 1.5;
}

.young-adults-card:nth-child(2) h4 span {
    color: var(--dark-olive);
}

.young-adults-card:nth-child(3) .icon-bg {
    background: linear-gradient(319deg, #FF6D03 0%, rgba(255, 109, 3, 0.50) 94.46%);
    text-align: center;
    animation: floating-effect 2.5s;
}

.young-adults-card:nth-child(3) .icon-bg i {
    font-size: 48px;
    line-height: 110px;
}

.young-adults-card:nth-child(3) h1 {
    color: var(--mandarin);
}

.young-adults-card:nth-child(3) h4 {
    line-height: 1.5;
}

.young-adults-card:nth-child(3) h4 span {
    color: var(--mandarin);
}

.young-adults-contents-inner h1.sub-title {
    margin-top: 60px;
}

.young-adults-contents-inner ul {
    font-size: 20px;
    line-height: 1.5;
}

.young-adults-contents-inner ul li {
    list-style: circle;
}

.young-adults-contents-inner button {
    margin-top: 0;
}

.young-adults.page-contents {
    padding-bottom: 0;
}

/* Misamo page */

.misamo.page-banner {
    background: url(/static/images/misamo/missionary-banner.jpg) no-repeat center center;
    background-size: cover;
}

.misamo-heading-background {
    position: relative;
}

.misamo-heading-background i {
    position: absolute;
    color: var(--vivid-blue);
    z-index: -1;
}

@keyframes slide-from-up {
    from {
        top: -250px;
        opacity: 0%;
    }
    to {
        top: -120px;
        opacity: 8%;
    }
}

@keyframes slide-from-upup {
    from {
        top: -200px;
        opacity: 0%;
    }
    to {
        top: -130px;
        opacity: 6%;
    }
}

@keyframes slide-from-rightright {
    from {
        right: -100px;
        opacity: 0%;
    }
    to {
        right: 100px;
        opacity: 7%;
    }
}

.misamo-heading-background i:first-child {
    font-size: 250px;
    top: -120px;
    left: 7%;
    opacity: 8%;
    animation: slide-from-up 2s;
}

.misamo-heading-background i:nth-child(2) {
    font-size: 120px;
    opacity: 6%;
    top: -130px;
    right: 35%;
    animation: slide-from-upup 2s;
}

.misamo-heading-background i:last-child {
    font-size: 170px;
    top: 110px;
    right: 100px;
    opacity: 7%;
    animation: slide-from-rightright 2s;
}

.misamo-heading {
    width: 800px;
    margin: auto;
    text-align: center;
}

.misamo-heading h2 {
    color: var(--navy-blue);
    font-family: var(--secondary-kr);
    font-weight: 600;
}

.misamo-heading h2 b {
    font-size: 24px;
    font-family: var(--secondary-kr);
    color: var(--black);
}

.misamo-heading h2 b span {
    font-family: var(--secondary-kr);
    color: var(--vivid-blue);
}

.misamo-heading p {
    font-family: var(--tertiary-kr);
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 60px;
}

.misamo-contents-container {
    background-color: var(--creamy-white);
    padding-top: 50px;
    animation: floating-effect 2s;
    padding-bottom: 30px;
}

.misamo-contents{
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */
    margin-bottom: 50px;
    justify-content: space-between;
}

.misamo-card {
    width: 630px;
    height: 200px;
    display: flex;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.292);
    transition: 0.35s;
    margin-bottom: 20px;
}

.misamo-card:hover {
    transform: translateY(-3%);
}

.misamo-card .misamo-card-img {
    height: 100%;
    opacity: 80%;
    filter: brightness(70%);
    transition: 0.35s;
}

.misamo-card:hover .misamo-card-img {
    opacity: 100%;
    filter: brightness(100%);
}

.misamo-card .misamo-card-desc {
    padding: 20px;
}

.misamo-card-desc h4 {
    margin-bottom: 0;
}

.misamo-card-desc h4 span {
    color: var(--vivid-blue);
    font-weight: 600;
}

.misamo-card-desc h4 em {
    font-style: normal;
    font-size: 16px;
}

.misamo-card-desc ul {
    padding-left: 20px;
}

.misamo-card-desc ul li {
    list-style: circle;
}

.misamo-card:nth-child(5) .misamo-card-desc ul {
    margin-top: 0;
    padding-top: 0;
}

.misamo-card-desc p {
    margin-top: 15px;
    padding-bottom: 0;
    margin-bottom: 5px;
}

.misamo-card .dense {
    letter-spacing: -0.5px;
}
.JC-misamo-instagram {
    position: relative;
}

.JC-misamo-instagram i {
    position: absolute;
    right: 0;
    top: 0;
}

.JC-misamo-instagram i.fa-brands.fa-instagram {
    background: linear-gradient( 180deg, #6228d7,#ee2a7b,#f9ce34);
    background-clip: text;
    -webkit-background-clip: text;
    color: rgb(0 0 0 / 20%);
    font-size: 24px;
}

.misamo-contents-inner h3 {
    font-family: var(--tertiary-kr);
    text-align: center;
}

.misamo-contents-inner h3 i {
    color: var(--red-wine);
}

.misamo-participate {
    padding-top: 50px;
}

.misamo-participate-boxes {
    display: flex;
}

.misamo-box {
    width: 315px;
    height: 85px;
    border: 1px solid var(--deep-latte);
    border-radius: 10px;
    margin-right: 15px;
    text-align: center;
    position: relative;
    box-shadow: 1px 1px 5px rgba(128, 128, 128, 0.368);
}

.misamo-box b {
    position: absolute;
    left: 5px;
    top: -13px;
    font-size: 24px;
    width: 32px;
    height: 32px;
    background-color: var(--deep-latte);
    color: #fff;
    border-radius: 50%;
    font-weight: normal;
    text-align: center;
    padding: auto;
    line-height: 28px;
}

.misamo-box h4 {
    transform: translateY(120%);
}

.misamo-box h4 span {
    color: var(--red-wine);
    font-weight: 600;
}

.misamo-participate-boxes button {
    margin-top: 18px;
}

/* Adults-care page */

.adults-care.page-banner {
    background: url(/static/images/groupcare/groupcare-banner.jpg) no-repeat center center;
    background-size: cover;
}

.adults-care h1.sub-title {
    margin-bottom: 20px;
}

.adults-care h3 {
    line-height: 1.7;
    margin-bottom: 50px;
}

.adults-care h3 span {
    color: var(--deep-latte);
}

.adults-care-contents {
    background-color: var(--creamy-white);
    padding: 60px 0;
}

.adults-care-cards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    animation: floating-effect 2s;
    padding-bottom: 20px;
}

.adults-care-card {
    width: 236px;
    min-width: 150px;
    height: 220px;
    border-radius: 40px 20px 20px 20px;
    background-color: #fff;
    padding: 0px auto;
    position: relative;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.15);
    transition: 0.35s;
    text-align: center;
}

.adults-care-card:hover {
    transform: translateY(-5%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.073);
}

.adults-care-card h3, .adults-care-card h4, .adults-care-card p {
    font-family: var(--tertiary-kr);
}

.adults-care-card h3 {
    width: 200px;
    height: 60px;
    position: absolute;
    line-height: 60px;
    top: 30px;
    left: -10px;
    border-radius: 10px 5px 5px 5px;
    color: #fff;
    box-shadow: 5px 5px 5px rgba(128, 128, 128, 0.425);
    animation: floating-effect 1.7s;
}

.adults-care-card h4 {
    padding-top: 120px;
    margin-bottom: 10px;
    font-weight: 600;
}

.adults-care-card:nth-child(1) h3 {
    background-color: var(--navy-blue);
}

.adults-care-card:nth-child(2) h3 {
    background-color: var(--vivid-blue);
}

.adults-care-card:nth-child(3) h3 {
    background-color: var(--dark-olive);
}

.adults-care-card:nth-child(4) h3 {
    background-color: var(--olive);
}

.adults-care-card:nth-child(5) h3 {
    background-color: var(--deep-latte);
}

.adults-care-meetings {
    margin-top: 50px;
}

.adults-care-meetings h4 {
    font-weight: normal;
}

.adults-care-meetings button {
    margin-top: 0;
}

.adults-care.page-contents {
    padding-bottom: 0;
}

/* Disciples-bible page */

.disciples-bible.page-banner {
    background: url(/static/images/groupcare/groupcare-banner.jpg) no-repeat center center;
    background-size: cover;
}

.disciples-bible-heading-inner {
    position: relative;
}

@keyframes floating-effect-2 {
    from {
        opacity: 0;
        bottom: -250px;
    }
    to {
        opacity: 15%;
        bottom: -90px;
    }
}

.disciples-bible-heading img {
    width: 350px;
    position: absolute;
    right: 0;
    bottom: -90px;
    opacity: 15%;
    z-index: -1;
    animation: floating-effect-2 2s;
}

.disciples-bible-heading {
    text-align: center;
    margin-bottom: 50px;
}

.disciples-bible-heading h2 {
    margin-bottom: 20px;
    font-family: var(--secondary-kr);
    color: var(--deep-latte);
    font-weight: 600;
}

.disciples-bible-heading h2 b {
    font-size: 24px;
    color: var(--deep-latte);
    font-family: var(--secondary-en);
    font-weight: 500;
}

.disciples-bible-heading p, .disciples-bible-heading p span {
    font-family: var(--tertiary-kr);
    font-size: 24px;
    line-height: 1.7;
}

.disciples-bible-heading p span {
    display: block;
}

.disciples-bible-contents-container {
    background-color: var(--creamy-white);
    animation: floating-effect 3s;
    padding-bottom: 50px;
}

.disciples-bible-contents-container h1.sub-title {
    padding-top: 50px;
    margin-bottom: 20px;
}

.disciples-bible-contents-container h1.sub-title span {
    color: var(--red-wine);
}

.disciples-bible-cards-container {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    width: inherit;
    justify-content: start;
    gap: 35px;
}

.disciples-bible-cards-container a {
    width: 390px;
}

.disciples-bible-cards-container a .disciples-bible-card {
    width: 100%;
    height: 270px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.598);
    position: relative;
    padding: 10px 10px 15px 10px;
    transition: 0.35s;
}

.disciples-bible-card:hover {
    transform: translateY(-3%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.272);
}

.disciples-bible-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.disciples-bible-card:before {
    content: '';
    width: inherit;
    height: inherit;
    background: linear-gradient(20deg, rgba(0, 0, 0, 0.806), rgba(128, 128, 128, 0.473));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.disciples-bible-card:after {
    content: '';
    color: #fff;
    width: inherit;
    height: inherit;
    background: linear-gradient(20deg, rgba(0, 0, 0, 0.945), rgba(0, 0, 0, 0.765));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0;
    transition: 0.25s;
}

.disciples-bible-card:hover::after {
    opacity: 100%;
}

.disciples-bible-card .lecture-info {
    position: relative;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.disciples-bible-card .lecture-more-info {
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
    color: #fff;
    z-index: 5;
    font-weight: 400;
    font-family: var(--tertiary-kr);
    border: 1px solid var(--latte);
    border-radius: 5px;
    padding: 10px;
    opacity: 0;
}

.disciples-bible-card:hover .lecture-more-info {
    opacity: 100%;
}

.lecture-badge {
    text-align: left;
}

.lecture-badge span {
    display: inline-block;
    background-color: #fff;
    color: var(--deep-latte);
    padding: 1px 5px;
    border-radius: 5px 0 0 5px;
    font-family: var(--tertiary-kr);
}

.lecture-badge b {
    display: inline-block;
    font-weight: normal;
    background-color: var(--deep-latte);
    padding: 2px 6px;
    border-radius: 0 5px 5px 0;
    font-family: var(--tertiary-kr);
}

.lecture-info h3 {
    color: var(--mustard);
    font-family: var(--secondary-kr);
    margin-bottom: 20px;
}

.lecture-info h1 {
    font-weight: 600;
    font-family: var(--secondary-kr);
    margin-bottom: 0;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.lecture-info h4 {
    font-weight: 400;
    font-family: var(--tertiary-kr);
    margin: 0;
    font-size: 18px;
}

.lecture-badge .lecture-type-reading-club span {
    color: var(--deep-latte);
}

.lecture-badge .lecture-type-reading-club b {
    background-color: var(--deep-latte);
}

.lecture-badge .lecture-type-new-members b {
    background-color: var(--red-wine);
}

.lecture-badge .lecture-type-new-members span {
    color: var(--red-wine);
}

.lecture-badge .lecture-type-theology b {
    background-color: var(--dark-olive);
}

.lecture-badge .lecture-type-theology span {
    color: var(--dark-olive);
}

.lecture-badge .lecture-type-church-history b {
    background-color: var(--navy-blue);
}

.lecture-badge .lecture-type-church-history span {
    color: var(--navy-blue);
}

.lecture-badge .lecture-type-bible-em b {
    background-color: var(--light-black);
}

.lecture-badge .lecture-type-bible-em span {
    color: var(--light-black);
}

.lecture-badge .lecture-type-missionary b {
    background-color: var(--vivid-blue);
}

.lecture-badge .lecture-type-missionary span {
    color: var(--vivid-blue);
}

.lecture-badge .lecture-type-leadership b {
    background-color: var(--olive);
}

.lecture-badge .lecture-type-leadership span {
    color: var(--olive);
}

.disciples-bible-registration h1.sub-title {
    margin-top: 40px;
    margin-bottom: 20px;
}

.disciples-bible-registration ul {
    line-height: 1.7;
}

.disciples-bible-registration ul li {
    list-style: circle;
    font-size: 20px;
}

.disciples-bible-registration .btn-viewmore, .disciples-bible-last-lectures .btn-viewmore {
    margin-top: 0;
}

.disciples-bible-last-lectures h1.sub-title {
    margin-bottom: 20px;
}

/* Igm page */

.igm.page-banner {
    background: url(/static/images/igm/igm-banner.jpg) no-repeat center center;
    background-size: cover;
}

.igm-heading-background {
    position: relative;
}

.igm-heading-background i {
    position: absolute;
    color: var(--mandarin);
    z-index: -1;
}

@keyframes slide-from-up-igm {
    from {
        top: -270px;
        opacity: 0%;
    }
    to {
        top: -150px;
        opacity: 20%;
    }
}

@keyframes slide-from-upup-igm {
    from {
        top: -150px;
        opacity: 0%;
    }
    to {
        top: 3px;
        opacity: 18%;
    }
}

@keyframes slide-from-rightright-igm {
    from {
        right: -100px;
        opacity: 0%;
    }
    to {
        right: 180px;
        opacity: 10%;
    }
}

.igm-heading-background i:first-child {
    font-size: 300px;
    top: -150px;
    left: 5%;
    opacity: 20%;
    animation: slide-from-up-igm 2s;
}

.igm-heading-background i:nth-child(2) {
    font-size: 90px;
    color: var(--olive);
    opacity: 18%;
    top: 3px;
    right: 10%;
    animation: slide-from-upup-igm 2.5s;
}

.igm-heading-background i:nth-child(3) {
    font-size: 130px;
    color: var(--vivid-blue);
    top: 60px;
    right: 180px;
    opacity: 10%;
    animation: slide-from-rightright-igm 2s;
}

.igm-heading-background i:nth-child(4) {
    font-size: 50px;
    color: var(--mustard);
    top: 120px;
    left: 27%;
    opacity: 13%;
}

.igm-heading-background i:nth-child(5) {
    font-size: 100px;
    color: var(--mustard);
    opacity: 10%;
    top: 20px;
    left: 30%;
}

.igm-heading-background i:nth-child(6) {
    font-size: 80px;
    color: var(--mustard);
    top: -150px;
    right: 320px;
    opacity: 10%;
}

.igm-heading-background i:nth-child(7) {
    font-size: 220px;
    color: var(--mustard);
    top: -230px;
    right: 20px;
    opacity: 8%;
}

.igm-heading {
    width: 800px;
    margin: auto;
    text-align: center;
    line-height: 1.7;
    color: var(--latte);
    margin: 50px auto 100px auto;
}

.igm-heading h2 {
    font-family: var(--secondary-kr);
    font-weight: 600;
}

.igm-heading h2 span {
    display: block;
    font-family: var(--secondary-kr);
    font-weight: 600;
}

.igm-upper-contents {
    background-color: rgba(253, 184, 55, 0.07);
}

h1.with-border {
    border: 3px solid var(--mustard);
    display: inline-block;
    background-color: #fff;
    border-radius: 100px;
    padding: 5px 15px;
    transform: translateY(-30%);
    margin-bottom: 20px;
}

.igm-cards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    animation: floating-effect 2s;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.igm-card {
    width: 236px;
    min-width: 150px;
    height: 225px;
    border-radius: 40px 20px 20px 20px;
    background-color: #fff;
    padding: 0px auto;
    position: relative;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.15);
    transition: 0.35s;
    text-align: center;
}

.igm-card:hover {
    transform: translateY(-5%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.073);
}

.igm-card h3, .igm-card h4, .igm-card p {
    font-family: var(--tertiary-kr);
}

.igm-card h3 {
    width: 200px;
    height: 60px;
    position: absolute;
    line-height: 60px;
    top: 30px;
    left: -10px;
    border-radius: 10px 5px 5px 5px;
    color: #fff;
    box-shadow: 5px 5px 5px rgba(128, 128, 128, 0.235);
    animation: floating-effect 1.7s;
}

.igm-card h4 {
    padding-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.igm-card:nth-child(1) h3 {
    background-color: var(--mustard);
}

.igm-card:nth-child(2) h3 {
    background-color: var(--mandarin);
}

.igm-card:nth-child(3) h3 {
    background-color: var(--olive);
}

.igm-card:nth-child(4) h3 {
    background-color: var(--vivid-blue);
}

.igm-card:nth-child(5) h3 {
    background-color: var(--navy-blue);
}

.igm-card em {
    display: block;
    font-style: normal;
    padding-top: 90px;
    font-size: 16px;
    font-family: var(--primary-en);
    padding-left: 12px;
}

.igm-card:nth-child(1) em {
    color: var(--mustard);
}

.igm-card:nth-child(2) em {
    color: var(--mandarin);
}

.igm-card:nth-child(3) em {
    color: var(--olive);
}

.igm-card:nth-child(4) em {
    color: var(--vivid-blue);
}

.igm-card:nth-child(5) em {
    color: var(--navy-blue);
}

.igm-card h4 i {
    padding-right: 7px;
}

.igm-card:nth-child(1) i {
    color: var(--mustard);
}

.igm-card:nth-child(2) i {
    color: var(--mandarin);
}

.igm-card:nth-child(3) i {
    color: var(--olive);
}

.igm-card:nth-child(4) i {
    color: var(--vivid-blue);
}

.igm-card:nth-child(5) i {
    color: var(--navy-blue);
}

.igm-middle-contents {
    margin-bottom: 80px;
}

.igm-middle-contents .igm-worships h1, .igm-meetings h1 {
    margin-bottom: 20px;
}

.igm-middle-contents .igm-worships .btn-viewmore {
    margin-top: 0;
}

.igm-middle-contents .igm-meetings h4 {
    margin-bottom: 0;
}

.igm-middle-contents .igm-meetings ul {
    line-height: 1.7;
    font-size: 20px;
}

.igm-middle-contents .igm-meetings ul li {
    list-style: circle;
}

.igm-middle-contents img {
    float: right;
    width: 360px;
    opacity: 75%;
    margin-right: 80px;
    margin-top: 80px;
}

.igm-lower-contents {
    background-color: rgba(253, 184, 55, 0.12);
    padding-bottom: 2px;
}

.igm-lower-contents .igm-awana, .igm-lower-contents .igm-catechism {
    display: flex;
    margin-bottom: 60px;
    justify-content: space-between;
    align-items: center;
}

.igm-lower-contents .igm-awana img {
    width: 390px;
}

.igm-lower-contents i {
    font-size: 55px;
    color: var(--mustard);
    opacity: 60%;
    transform: translateY(15%);
}

.igm-lower-contents h3 {
    font-size: 26px;
    display: inline-block;
    padding: 0 10px;
}

.awana-info {
    text-align: center;
    margin-left: 40px;
}

.igm-lower-contents h4 {
    text-align: left;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

.igm-lower-contents h4 span {
    color: var(--red-wine);
}

.igm-lower-contents p {
    padding-top: 0;
    color: var(--deep-latte);
    text-align: left;
    margin-bottom: 0;
}

.igm-lower-contents hr {
    width: 100px;
    border: none;
    height: 1px;
    background-color: var(--foam-latte);
}

.igm-catechism {
    margin-top: 50px;
}

.igm-catechism .catechism-info {
    text-align: center;
    margin-right: 40px;
}

.igm-lower-contents .igm-catechism img {
    width: 275px;
}

.igm-contact-info {
    margin-top: 50px;
}

.igm-contact-info h1 {
    margin-bottom: 20px;
}

.igm-contact-info ul {
    font-size: 20px;
    line-height: 1.7;
}

.igm-contact-info ul li {
    list-style: circle;
}

.igm-contact-info ul li a {
    font-weight: 600;
    background: linear-gradient( 180deg, #6228d7,#ee2a7b,#f9ce34);
    background-clip: text;
    -webkit-background-clip: text;
    color: rgb(0 0 0 / 20%);
}

.igm-contact-info .btn-viewmore {
    margin-top: 0;
}

.no-scroll {
    overflow: hidden;
}

.calendar-iframe {
    display: block;
    margin: 50px auto;
    width: 800px;
    max-width: 100%;
    border: none;
}
