/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* scroll-behavior는 ScrollSmoother가 자동으로 'auto'로 설정함 */
    font-size: 10px;
}

/* 접근성: 사용자가 애니메이션 감소를 선호하는 경우 */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Paperozi', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}


button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
}









/* Header Styles */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header.hidden {
    top: -98px;
    transition: top 0.3s ease;
}

.header.scrolled,
.header:hover {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
}

/* ScrollSmoother Wrapper */
.smooth-wrapper {
    position: relative;
    z-index: 1;
}

.smooth-content {
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 60px;
}

.header-logo {
    display: flex;
    width: 176px;
    height: 41.953px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.header-nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-navigation>ul {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}
.header-navigation>ul>li{
    position: relative;
}
.nav-link {
    font-family: 'Paperozi', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #ffffff;
    transition: color 0.3s ease;
    display: block;
    padding: 36px 0;
}

.nav-link:hover {
    color: #ddf160;
}
.nav-dep2-wrap{
    position: absolute;
    left: 0;
    min-width: 180px;
    width: max-content;
    z-index: 5;
    top: calc(100% - 20px);
    display: none;

}
.nav-dep2-wrap>ul{
    background-color: #000;
    border: 1px solid rgba(255,255,255,0.3);
    box-sizing: border-box;
    padding: 20px;
    border-radius: 10px;
}
.nav-dep2-wrap>ul>li{
    list-style: none;
}
.nav-dep2-wrap>ul>li>a{
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    color: #ffffff;
    transition: color 0.3s ease;
}
.nav-dep2-wrap>ul>li>a:hover{
    color: #ddf160;
}

.header-contact {
    display: flex;
    align-items: center;
}
.btn-contact{
    display: flex;
}
.btn-arrow-circle-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: #000000;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    letter-spacing: 0.8px;
    
}
.btn-contact-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    transition: all 0.3s ease;
    border-radius: 999px;
    background-color: #ffffff;
    height: 43px;
}
.btn-contact-text>span{
    line-height: 1;
	font-weight:500;
}
.btn-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    width: 43px;
    height: 43px;
    margin-left: -6px;
    transition: all 0.3s ease;
}
.btn-contact:hover .btn-contact-text{
    background-color: #ddf160;
}
.btn-contact:hover .btn-contact-icon {
    transform: translateX(12px) rotate(45deg);
    background-color: #ddf160;
}

.btn-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 24px;
    justify-content: center;
}

.btn-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* Burger to X transformation when nav is open */
body.nav-open .btn-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.nav-open .btn-burger span:nth-child(2) {
    opacity: 0;
}
body.nav-open .btn-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


@media screen and (max-width: 1280px){
    .header-container{padding: 26.5px 20px;}
    .header-navigation{display: none;}
}
@media screen and (max-width: 1024px){
    .header-contact{display: none;}
}
@media screen and (max-width: 768px){
    .header-container{padding: 0 20px; height: 80px;}
}







/* ===== Open Navigation (Mobile Menu) ===== */
.open-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: none;
    flex-direction: column;
    pointer-events: none;
}

.open-nav.active {
    pointer-events: auto;
}

/* Body scroll lock when menu is open */
body.nav-open {
    overflow: hidden;
}

/* Header visible when nav is open */
body.nav-open .header.hidden {
    top: 0;
}

/* Open Nav Background - Circle Expand Effect */
.open-nav-bg {
    position: fixed;
    top: 40px;
    right: 72px;
    width: 0;
    height: 0;
    background-color: #000000;
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.open-nav.active .open-nav-bg {
    width: 1500%;
    height: 1500%;
}

/* Open Nav Body */
.open-nav-body {
    flex: 1;
    padding: 100px 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.open-nav-menu {
    display: flex;
    flex-direction: row;
    gap: 80px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Custom Scrollbar for Open Nav Menu */
.open-nav-menu {
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(221, 241, 96, 0.3) rgba(255, 255, 255, 0.05);
}

/* Webkit browsers (Chrome, Safari, Edge) */
.open-nav-menu::-webkit-scrollbar {
    width: 8px;
}

.open-nav-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.open-nav-menu::-webkit-scrollbar-thumb {
    background: rgba(221, 241, 96, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.open-nav-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(221, 241, 96, 0.5);
}

.open-nav-menu::-webkit-scrollbar-thumb:active {
    background: rgba(221, 241, 96, 0.7);
}

/* Menu Item */
.open-nav-item {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(100px);
}

.open-nav-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.8px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.open-nav-link:hover {
    color: #ddf160;
}

/* Submenu */
.open-nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    padding-left: 20px;
    border-left: 2px solid #444444;
    list-style: none;
    width: fit-content;
}

.open-nav-submenu li a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    letter-spacing: 0.8px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.open-nav-submenu li a:hover {
    color: #ddf160;
}

/* Open Nav Footer */
.open-nav-footer {
    padding: 20px 15px;
    flex-shrink: 0;
    display: none;
}

.btn-contact-full {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 28px;
    background-color: #ddf160;
    border-radius: 300px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.8px;
    transition: background-color 0.3s ease;
}

.btn-contact-full:hover {
    background-color: #c9dd4a;
}

@media screen and (max-width: 1280px){
    .open-nav-menu{gap: 40px;}
}
@media screen and (max-width: 1024px){
    .open-nav-body{display: flex; height: 100%; flex-direction: column;justify-content: flex-start; align-items: flex-start; height: 0%;}
    .open-nav-menu{flex-direction: column; gap: 20px; overflow-y: auto; width: 100%;}
    .open-nav-footer{display: block;}
}







/* ===== Footer ===== */
.footer {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    border-top: 1px solid #444444;
    width: 100%;
}

.footer-container {
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Footer Top */
.footer-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
}

.footer-top-left {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.footer-fin {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    margin: 0;
}

.footer-top-right {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

/* Footer Top Animation */
.footer-top {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.footer-tagline {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    white-space: nowrap;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.footer-tagline p {
    margin: 0;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    transform-origin: center bottom;
    transform-style: preserve-3d;
}

/* Footer Middle Animation */
.footer-middle {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.footer-copyright {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.footer-copyright p,
.footer-nav-link,
.footer-cta a {
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    transform-origin: center bottom;
    transform-style: preserve-3d;
}

/* Footer Info Section */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

/* Footer Middle Section (4 columns) */
.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.footer-middle-col {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Column 1: Copyright */
.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    white-space: nowrap;
}

.footer-copyright p {
    margin: 0;
}

/* Column 2: Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-link {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    transition: all 0.3s ease-out;
}
.footer-nav-link>span{
    line-height: 0.8;
}

.footer-nav-link:hover {
    color: #ddf160;
    transform: translateX(5px);
}

.footer-nav-link:hover .footer-nav-icon {
    color: #ddf160;
    transition: color 0.3s ease-out;
}

.footer-nav-link--highlighted {
    color: #ddf160;
}

.footer-nav-link--highlighted .footer-nav-icon {
    color: #ddf160;
}

.footer-nav-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease-out;
    color: inherit;
    flex-shrink: 0;
}

/* Column 3: CTA */
.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-cta-title {
    font-family: 'Paperozi', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #ac60ff;
}

.footer-cta-btn {
    display: flex;
    gap: 5px;
    align-items: center;
    font-family: 'Paperozi', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    border-radius: 60px;
    transition: color 0.3s ease;
}

.footer-cta-icon {
    width: 20px;
    height: 20px;
}

/* Column 4: Video */
.footer-video {
    width: 100%;
    height: 180px;
    overflow: clip;
    max-width: 100%;
}

.footer-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer Bottom Info Section (4 columns) */
.footer-bottom-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-top: 0;
    position: relative;
}

.footer-bottom-info .line {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: #444444;
    display: none;
}

.footer-info-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.footer-info-item {
    display: flex;
    gap: 6px;
    font-family: 'Paperozi', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    transform-origin: center bottom;
    transform-style: preserve-3d;
}


.footer-info-item.addr {
    flex-direction: column;
}

.footer-info-label {
    font-weight: 600;
    color: #ffffff;
}

.footer-info-value {
    font-weight: 400;
    color: #bbbbbb;
    font-style: normal;
}

.footer-info-value address {
    font-style: normal;
}

/* Footer Bottom Bar */
.footer-bar {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.footer-bar-left {
    width: 100%;
    display: flex;
    gap: 20px;
}

.footer-policy-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-policy-link--muted {
    color: #999999;
}

.footer-policy-link:hover {
    color: #ddf160;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 6px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social li {
    list-style: none;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-out;
    width: 35px;
    height: 35px;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-social img {
    display: block;
}
/* footer의 반응형은 여기 아래에 모아서 작성할것. */

/* 500px 이상 */
@media (min-width: 500px) {
    .footer-container {
        padding: 0 40px;
    }
    .footer-fin {
        font-size: 10rem;
    }
    .footer-nav-link {
        font-size: 4rem;
    }
    .footer-nav-icon {
        width: 24px;
        height: 24px;
    }
}

/* 768px 이상 (태블릿) */
@media (min-width: 768px) {
    .footer-container {
        gap: 80px;
    }
    .footer-top {
        gap: 40px;
    }
    .footer-fin {
        font-size: 12rem;
    }
    .footer-tagline {
        font-size: 2rem;
    }
    .footer-info {
        gap: 60px;
    }
    .footer-middle {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .footer-middle-col {
        flex: 0 0 calc(50% - 20px);
        width: auto;
    }
    .footer-copyright {
        font-size: 15px;
    }
    .footer-nav-link {
        font-size: 4.8rem;
        gap: 12px;
    }
    .footer-nav-icon {
        width: 28px;
        height: 28px;
    }
    .footer-cta-title,
    .footer-cta-btn {
        font-size: 2rem;
    }
    .footer-cta-icon {
        width: 22px;
        height: 22px;
    }
    .footer-video {
        height: 200px;
    }
    .footer-bottom-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
        padding-top: 60px;
    }
    .footer-info-col {
        flex: 0 0 calc(50% - 20px);
        width: auto;
    }
    .footer-bar {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    .footer-bar-left {
        flex: 1 0 0;
        flex-direction: row;
        gap: 20px;
    }
    .footer-policy-link {
        font-size: 1.6rem;
    }
}

/* 1024px 이상 */
@media (min-width: 1024px) {
    .footer-fin {
        font-size: 14rem;
    }
    .footer-nav-link {
        font-size: 5.4rem;
    }
    .footer-video {
        height: 220px;
        max-width: 420px;
    }
    .footer-bottom-info {
        flex-wrap: nowrap;
    }
    .footer-info-col {
        flex: 1 0 0;
    }
}

/* 1280px 이상 (PC) */
@media (min-width: 1280px) {
    .footer {
        padding: 80px 0;
    }
    .footer-container {
        padding: 0 60px;
        gap: 100px;
    }
    .footer-top {
        flex-direction: row;
        align-items: flex-end;
    }
    .footer-top-left {
        flex: 1 0 0;
    }
    .footer-top-right {
        flex: 1 0 0;
    }
    .footer-fin {
        font-size: 16rem;
    }
    .footer-tagline {
        font-size: 2.4rem;
    }
    .footer-middle {
        flex-wrap: nowrap;
    }
    .footer-middle-col {
        flex: 1 0 0;
    }
    .footer-copyright {
        font-size: 16px;
    }
    .footer-nav-link {
        font-size: 6rem;
        gap: 15px;
    }
    .footer-nav-icon {
        width: 34.25px;
        height: 34.25px;
    }
    .footer-bottom-info .line{
        display: block;
    }
    .footer-cta-title,
    .footer-cta-btn {
        font-size: 2.4rem;
    }
    .footer-cta-icon {
        width: 26px;
        height: 26px;
    }
    .footer-policy-link {
        font-size: 1.8rem;
    }
}













/* Quick Menu */
.quick-menu {
    position: fixed;
    right: 15px;
    bottom: 60px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}
.quick-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-btn:hover {
    transform: scale(1.1);
}

.quick-btn.chatbot {
    background-color: #ac60ff;
}

.quick-btn.chatbot:hover {
    background-color: #9a50e8;
}

.quick-btn.chatbot img {
    width: 34px;
    height: 34px;
}

.quick-btn.contact-btn {
    background-color: #ddf160;
}

.quick-btn.contact-btn:hover {
    background-color: #c9dd4a;
}

.quick-btn.contact_btn img{
    max-width: 20px;
}

.quick-btn.top-btn {
    background-color: #161616;
}

.quick-btn.top-btn:hover {
    background-color: #2a2a2a;
}

@media screen and (min-width: 769px){
    .quick-menu{
        right: 20px;
    }
    .quick-btn{
        width: 60px;
        height: 60px;
    }
}

@media screen and (min-width: 1025px){
    .quick-menu{
        bottom: 110px;
    }
}






/* =============================================================================
   Chatbot Bubble
============================================================================= */
/*챗봇 버블 랩퍼*/
.chatbot-bubble-wrapper {
    position: fixed;
    right: 20px;
    bottom: 220px;
    z-index: 999;
    gap: 6px;
    display: none;
}
.chatbot-bubble {
    background-color: #ffffff;
    padding: 15px 36px 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #dddddd;
    position: relative;
    display: block;
}

.chatbot-bubble.hidden {
    display: none;
}
.chatbot-bubble-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.chatbot-bubble-close:hover {
    background-color: #e5e5e5;
}

.chatbot-bubble-title {
    font-family: 'Paperozi', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1;
}

.chatbot-bubble-text {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.chatbot-bubble-text-dot {
    width: 6px;
    height: 6px;
    background-color: #87e64b;
    border-radius: 50%;
}

.chatbot-bubble-text-text {
    font-family: 'Paperozi', sans-serif;
    font-size: 15px;
    color: #666666;
}



/* 챗봇 채팅 랩퍼 */
.chatbot-chat-wrapper{
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    transform: translateY(0);
    bottom: unset;
    right: unset;
    z-index: 9999;
    gap: 6px;
    display: none;
}
.chatbot-chat-content{
    background-color: #FFF;
    border-radius: 0;
    overflow: hidden;
    z-index: 1002;
    width: 100%;
    height: 100%;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

/* 챗봇 채팅 컨텐츠 헤더 */
.chatbot-content-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #DDD;
}

.chatbot-content-header-logo{
    width: 176px;
}
.chatbot-content-header-logo img{
    width: 100%;
}

.chatbot-content-header-close-button{
    width: 19px;
    height: 19px;
}
.chatbot-content-header-close-button img{
    width: 100%;
}
.chatbot-content-body{
    box-sizing: border-box;
    padding: 20px 15px;
    max-height: calc(100vh - 61px - 69px);
    overflow-y: auto;
}
.chatbot-content-body::webkit-scrollbar{
    background-color: #FFF;
    width: 6px;
}
.chatbot-content-body::webkit-scrollbar-thumb{
    background: #DDD; /* 스크롤바 막대 색상 */
    border: 2px solid #FFF; /* 스크롤바 막대 테두리 설정  */
    border-radius: 12px 12px 12px 12px;
}
.chatbot-content-body::webkit-scrollbar-thumb:hover{
    background-color: #DDD;
}


.chatbot-content-body-top{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 40px;
}
.chatbot-content-body-top-avatar{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #EFF0F2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chatbot-content-body-top-avatar img{
    width: 70%;
}
.chatbot-content-body-top-text{
    font-size: 2rem;
    color: #000;
    font-weight: 600;
    line-height: 1.4;
}
.chatbot-content-body-message{
    display: flex;
    gap: 6px;
    align-items: flex-start;
}
.chatbot-content-body-message-avatar{
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chatbot-content-body-message-avatar img{
    width: 100%;
}
.chatbot-content-body-message-chatbot-text{
    background-color: #f5f5f5;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    padding: 12px 15px;
    max-width: 334px;
    border-radius: 4px 20px 20px 20px;
}
.chatbot-content-body-question{
    margin-top: 20px;
}
.chatbot-content-body-question>a{
    border-radius: 50px;
    border: 1px solid #000;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    padding: 12px 15px;
    color: #000;
    width: fit-content;
}
.chatbot-content-body-question>a:last-child{
    margin-bottom: 0;
}
.chatbot-content-body-my-message{
    width: 100%;
    margin: 30px 0;
    display: flex;
    justify-content: right;
}
.chatbot-content-body-my-message-text{
    border: 1px solid #DDD;
    border-radius: 30px 4px 30px 30px;
    padding: 12px 15px;
    font-size: 15px;
    color: #000;
    line-height: 1.6;
    font-weight: 400;
    max-width: 100%;
    width: fit-content;
}
.chatbot-content-footer{
    display: flex;
    padding: 12px 15px;
    position: relative;
    border-top: 1px solid #DDD;
}
.chatbot-content-input{
    width: 100%;
    position: relative;
    appearance: none;
    border: 1px solid #DDD;
    box-sizing: border-box;
    padding: 12px 15px;
    border-radius: 60px;
    color: #000;
    font-weight: 400;
    line-height: 1;
    font-size: 15px;
    font-family: 'Paperozi', sans-serif;
}
.chatbot-content-input::placeholder{
    color: #000;
}
.chatbot-content-input:focus{
    outline: none;
}
.chatbot-content-send{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
}
.chatbot-content-send img{
    width: 100%;
}

@media screen and (min-width: 501px){
    .chatbot-chat-wrapper{
        width: 100%;
        height: 100vh;
        left: 0;
        top: 0;
        transform: translateY(0);
        bottom: unset;
        right: unset;
    }
    .chatbot-content-header{
        padding: 30px;
        padding-bottom: 10px;
        padding-top: 20px;
    }
    .chatbot-content-body{
        padding: 30px;
        max-height: calc(100vh - 71px - 106px);
    }
    .chatbot-content-body-top{
        padding: 0 30px;
    }
    .chatbot-content-body-top-text{
        font-size: 3rem;
        line-height: 1.5;
        padding: 0;
    }
    .chatbot-content-body-message-chatbot-text{
        font-size: 16px;
        padding: 16px 20px;
    }
    .chatbot-content-body-question>a{
        font-size: 16px;
        padding: 12px 20px;
    }
    .chatbot-content-body-my-message-text{
        font-size: 16px;
        padding: 16px 20px;
    }
    .chatbot-content-footer{
        padding: 20px 30px;
    }
    .chatbot-content-input{
        padding: 22px 26px;
        font-size: 16px;
    }
    .chatbot-content-send{
        width: 40px;
        height: 40px;
        right: 40px;
    }
}

@media screen and (min-width: 769px){
    .chatbot-bubble-wrapper{
        bottom: 260px;
    }
    .chatbot-chat-wrapper{
        right: 100px;
        bottom: 50px;
        width: auto;
        height: auto;
        left: auto;
        top: auto;
        transform: none;
    }
    .chatbot-chat-content{
        border-radius: 20px;
        width: 500px;
        height: auto;
    }
    .chatbot-content-body{
        max-height: 550px;
    }
    .chatbot-content-body-top{
        margin-bottom: 50px;
    }
    .chatbot-content-body-top-avatar{
        width: 120px;
        height: 120px;
    }
    .chatbot-content-body-top-avatar img{
        max-width: 90%;
    }
    .chatbot-content-body-message{
        gap: 20px;
    }
    .chatbot-content-body-message-avatar{
        width: 46px;
    }
}

@media screen and (min-width: 1025px){
    .chatbot-bubble-wrapper{
        bottom: 310px;
        display: none;
    }
}

@media screen and (min-width: 1281px){
    .chatbot-bubble-wrapper{
        bottom: 310px;
    }
}










































