/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans KR", sans-serif;
    color: #172238;
    background: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

button,
input,
textarea {
    /*font: inherit;*/
}

button {
    border: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

img {
    display: block;
    width: 100%;
}

::selection {
    background: #10294d;
    color: #fff;
}


/* =========================================================
   COMMON
========================================================= */

:root {
    --navy: #10294d;
    --navy-dark: #081b34;
    --blue: #183c6b;
    --gray: #667085;
    --light: #f6f7f9;
    --line: #e8ebf0;
    --white: #ffffff;
}

.container {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
}

.section {
    padding: 120px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #667085;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(32px, 3vw, 52px);
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.section-desc {
    margin-top: 25px;
    color: #687386;
    font-size: 18px;
    line-height: 1.9;
}

.btn {
    min-height: 58px;
    padding: 0 30px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: .25s ease;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
}

.btn-primary:hover {
    background: #071a33;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: var(--navy);
}

.section-btn {
    margin-top: 35px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 86px;
    z-index: 1000;
    transition: .3s ease;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    height: 74px;
    box-shadow: 0 10px 35px rgba(16,41,77,.10);
    border-color: #edf0f4;
}

.header-inner {
    width: min(1480px, calc(100% - 60px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.logo-cross {
    font-size: 38px;
    line-height: 1;
    color: var(--navy);
    font-weight: 400;
}

.logo strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.logo span {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    color: #7d8591;
    letter-spacing: .08em;
}

.gnb {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.2vw, 48px);
}

.gnb a {
    position: relative;
    font-size: 15px;
    font-weight: 700;
}

.gnb a:not(.gnb-login)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--navy);
    transition: .25s;
    transform: translateX(-50%);
}

.gnb a:hover::after {
    width: 100%;
}

.gnb-login {
    padding: 10px 19px;
    color: #fff;
    background: var(--navy);
    border-radius: 3px;
}

.menu-btn {
    width: 42px;
    height: 42px;
    background: transparent;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: .3s;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(420px, 90%);
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 100px 38px 40px;
    transition: .4s cubic-bezier(.77,0,.18,1);
    box-shadow: -20px 0 50px rgba(0,0,0,.12);
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: #fff;
    font-size: 28px;
}

.mobile-nav {
    border-top: 1px solid var(--line);
}

.mobile-nav a {
    display: block;
    padding: 19px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
    font-weight: 700;
}

.mobile-dim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.mobile-dim.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    height: min(850px, 90vh);
    min-height: 700px;
    margin-top: 86px;
    overflow: hidden;
    background: #182434;
}

.hero-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 7s ease;
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(7,20,37,.78) 0%,
            rgba(7,20,37,.45) 38%,
            rgba(7,20,37,.08) 70%
        );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1380px, calc(100% - 80px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    padding-bottom: 80px;
    color: #fff;
}

.hero-text {
    max-width: 780px;
}

.hero-kicker {
    display: block;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
}

.hero-title {
    font-size: clamp(52px, 6vw, 94px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.065em;
    text-shadow: 0 5px 30px rgba(0,0,0,.2);
}

.hero-desc {
    margin-top: 28px;
    max-width: 520px;
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255,255,255,.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 130px;
    z-index: 10;
    width: min(1380px, calc(100% - 80px));
    transform: translateX(-50%);
}

.hero-pages {
    display: flex;
    align-items: flex-end;
    gap: 42px;
}

.hero-page {
    position: relative;
    width: 88px;
    padding-bottom: 14px;
    background: transparent;
    color: rgba(255,255,255,.45);
    text-align: left;
    font-size: 15px;
}

.hero-page-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,.3);
    overflow: hidden;
}

.hero-page-progress {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
}

.hero-page.active {
    color: #fff;
}

.hero-page.active .hero-page-progress {
    animation: progressBar 6s linear forwards;
}

@keyframes progressBar {
    from { width: 0; }
    to { width: 100%; }
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: #fff;
    background: rgba(10,20,30,.28);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 42px;
    font-weight: 300;
    transform: translateY(-50%);
    transition: .25s;
}

.hero-arrow:hover {
    background: rgba(255,255,255,.22);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}


/* =========================================================
   QUICK MENU
========================================================= */

.quick-wrap {
    position: relative;
    z-index: 30;
    margin-top: -54px;
}

.quick-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, #10294d, #0a1e3a);
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(16,41,77,.2);
}

.quick-item {
    position: relative;
    min-height: 112px;
    padding: 25px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: transparent;
    color: #fff;
    text-align: left;
}

.quick-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,.14);
}

.quick-item:last-child::after {
    display: none;
}

.quick-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 22px;
    flex-shrink: 0;
}

.quick-item strong {
    display: block;
    font-size: 17px;
}

.quick-item span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
}


/* =========================================================
   WELCOME
========================================================= */

.welcome {
    padding-top: 135px;
}

.welcome-grid {
    display: grid;
    grid-template-columns: .9fr 1.2fr;
    align-items: center;
    gap: 90px;
}

.welcome-image {
    position: relative;
}

.welcome-image > img {
    height: 500px;
    object-fit: cover;
}

.welcome-stats {
    position: absolute;
    right: -30px;
    bottom: -45px;
    width: 78%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 50px rgba(16,41,77,.13);
}

.stat {
    padding: 28px 15px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border: 0;
}

.stat-icon {
    font-size: 25px;
}

.stat small {
    display: block;
    margin-top: 7px;
    color: #788191;
    font-size: 13px;
}

.stat strong {
    display: block;
    margin-top: 3px;
    font-size: 20px;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.feature-section {
    padding-top: 150px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    transition: .3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(20,35,55,.1);
}

.feature-card-image {
    height: 180px;
    overflow: hidden;
}

.feature-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.feature-card:hover img {
    transform: scale(1.08);
}

.feature-card-body {
    padding: 30px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #687386;
    font-size: 16px;
}

.card-more {
    display: inline-flex;
    margin-top: 22px;
    gap: 7px;
    font-weight: 700;
    font-size: 15px;
}


/* =========================================================
   WORSHIP
========================================================= */

.worship-section {
    background: #f7f8fa;
}

.worship-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
}

.worship-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #fff;
    border: 1px solid var(--line);
}

.worship-item {
    min-height: 180px;
    padding: 28px 15px;
    text-align: center;
    border-right: 1px solid var(--line);
    cursor: pointer;
    transition: .25s;
}

.worship-item:last-child {
    border: 0;
}

.worship-item:hover {
    background: var(--navy);
    color: #fff;
}

.worship-icon {
    font-size: 30px;
}

.worship-item strong {
    display: block;
    margin-top: 12px;
    font-size: 17px;
}

.worship-item span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #758092;
}

.worship-item:hover span {
    color: rgba(255,255,255,.7);
}


/* =========================================================
   SERMON
========================================================= */

.sermon-section {
    background: linear-gradient(120deg, #10294d, #081b34);
    color: #fff;
}

.sermon-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 45px;
}

.sermon-section .eyebrow {
    color: rgba(255,255,255,.55);
}

.sermon-section .section-desc {
    color: rgba(255,255,255,.65);
}

.sermon-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sermon-track-wrap {
    overflow: hidden;
    flex: 1;
}

.sermon-track {
    display: flex;
    gap: 20px;
    transition: transform .5s ease;
}

.sermon-card {
    min-width: calc(25% - 15px);
    background: #fff;
    color: var(--navy);
    overflow: hidden;
    cursor: pointer;
}

.sermon-thumb {
    position: relative;
    height: 185px;
}

.sermon-thumb img {
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: var(--navy);
    transform: translate(-50%,-50%);
    font-size: 20px;
}

.sermon-card-body {
    padding: 22px;
}

.sermon-card h3 {
    font-size: 19px;
}

.sermon-card p {
    margin-top: 8px;
    color: #7b8492;
    font-size: 14px;
}

.slider-small-btn {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    font-size: 30px;
}


/* =========================================================
   NEWS
========================================================= */

.news-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 65px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news-card {
    cursor: pointer;
}

.news-thumb {
    height: 190px;
    overflow: hidden;
}

.news-thumb img {
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-card:hover img {
    transform: scale(1.07);
}

.news-card h3 {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.5;
}

.news-card span {
    display: block;
    margin-top: 7px;
    color: #89919d;
    font-size: 13px;
}




/* =========================================================
   PRAYER BANNER
========================================================= */

.prayer-banner {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7,20,37,.88), rgba(7,20,37,.25)),
        url("https://images.unsplash.com/photo-1507692049790-de58290a4334?auto=format&fit=crop&w=1800&q=85") center/cover;
    color: #fff;
}

.prayer-banner h2 {
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.3;
    letter-spacing: -0.05em;
}

.prayer-banner p {
    margin-top: 15px;
    font-size: 18px;
    color: rgba(255,255,255,.8);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #f5f6f8;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 45px;
    padding-bottom: 50px;
}

.footer .logo {
    margin-bottom: 22px;
}

.footer-desc {
    color: #687386;
    font-size: 14px;
}

.footer-title {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 800;
}

.footer-links a {
    display: block;
    padding: 5px 0;
    color: #687386;
    font-size: 14px;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid #dde1e7;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #8b93a0;
    font-size: 12px;
}


/* =========================================================
   MODAL
========================================================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-dim {
    position: absolute;
    inset: 0;
    background: rgba(5,15,28,.7);
    backdrop-filter: blur(4px);
}

.modal-box {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    max-height: min(780px, 90vh);
    overflow-y: auto;
    background: #fff;
    transform: translateY(30px) scale(.97);
    transition: .3s ease;
}

.modal.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 5;
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,.5);
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
}

.modal-image {
    height: 330px;
}

.modal-image img {
    height: 100%;
    object-fit: cover;
}

.modal-content {
    padding: 45px;
}

.modal-label {
    color: #657187;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
}

.modal-title {
    margin-top: 12px;
    font-size: 34px;
    line-height: 1.4;
    letter-spacing: -0.04em;
}

.modal-text {
    margin-top: 22px;
    color: #687386;
    font-size: 17px;
    line-height: 1.9;
}

.modal-info {
    margin-top: 30px;
    padding: 25px;
    background: #f6f8fb;
}

.modal-info p {
    padding: 6px 0;
}


/* =========================================================
   FLOATING
========================================================= */

.floating {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    font-size: 14px;
    font-weight: 800;
}

.float-btn.top {
    background: var(--navy);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s;
}

.float-btn.top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

    .gnb {
        gap: 22px;
    }

    .welcome-grid,
    .worship-layout,
    .news-layout {
        gap: 45px;
    }

    .sermon-card {
        min-width: calc(33.333% - 14px);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {

    .container {
        width: min(100% - 40px, 760px);
    }

    .header-inner {
        width: calc(100% - 40px);
    }

    .gnb {
        display: none;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content,
    .hero-controls {
        width: calc(100% - 48px);
    }

    .quick-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-item:nth-child(2)::after {
        display: none;
    }

    .quick-item {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .welcome-grid,
    .worship-layout,
    .news-layout {
        grid-template-columns: 1fr;
    }

    .welcome-image {
        order: -1;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .worship-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .worship-item:nth-child(3) {
        border-right: 0;
    }

    .worship-item:nth-child(-n+3) {
        border-bottom: 1px solid var(--line);
    }

    .sermon-card {
        min-width: calc(50% - 10px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid > div:first-child {
        grid-column: span 2;
    }

}

@media (max-width: 640px) {

    body {
        font-size: 15px;
    }

    .section {
        padding: 85px 0;
    }

    .header,
    .header.scrolled {
        height: 72px;
    }

    .logo-cross {
        font-size: 31px;
    }

    .logo strong {
        font-size: 16px;
    }

    .hero {
        margin-top: 72px;
        height: 760px;
        min-height: auto;
    }

    .hero-content {
        width: calc(100% - 40px);
        padding-bottom: 100px;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(45px, 13vw, 68px);
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-controls {
        width: calc(100% - 40px);
        bottom: 48px;
    }

    .hero-pages {
        gap: 15px;
    }

    .hero-page {
        flex: 1;
        width: auto;
    }

    .hero-arrow {
        display: none;
    }

    .quick-wrap {
        margin-top: 0;
    }

    .quick-menu {
        border-radius: 0;
    }

    .quick-item {
        padding: 20px;
        min-height: 100px;
    }

    .quick-icon {
        width: 40px;
        height: 40px;
    }

    .quick-item strong {
        font-size: 15px;
    }

    .quick-item span {
        font-size: 11px;
    }

    .welcome {
        padding-top: 90px;
    }

    .welcome-image > img {
        height: 380px;
    }

    .welcome-stats {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
    }

    .stat {
        padding: 18px 5px;
    }

    .stat strong {
        font-size: 16px;
    }

    .feature-section {
        padding-top: 90px;
    }

    .worship-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .worship-item:nth-child(3) {
        border-right: 1px solid var(--line);
    }

    .worship-item:nth-child(2),
    .worship-item:nth-child(4) {
        border-right: 0;
    }

    .worship-item {
        min-height: 155px;
    }

    .sermon-head {
        display: block;
    }

    .sermon-slider {
        margin-left: -20px;
        margin-right: -20px;
    }

    .sermon-track-wrap {
        padding-left: 20px;
    }

    .sermon-card {
        min-width: 85%;
    }

    .slider-small-btn {
        display: none;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 18px;
        align-items: center;
    }

    .news-thumb {
        height: 110px;
    }

    .news-card h3 {
        margin-top: 0;
    }

    .prayer-banner {
        min-height: 420px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom div + div {
        margin-top: 10px;
    }

    .modal {
        padding: 12px;
    }

    .modal-image {
        height: 220px;
    }

    .modal-content {
        padding: 30px 24px;
    }

    .modal-title {
        font-size: 27px;
    }

    .modal-text {
        font-size: 16px;
    }

    .floating {
        right: 15px;
        bottom: 15px;
    }

}
