/* Breadcrumbs */
.breadcrumbs {
    background-image: url("../img/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 12.5rem 0 7.5rem 0; /* 200px 120px */
    z-index: 2;
    overflow: hidden;
    text-align: center;
}
.breadcrumbs.overlay::before {
    background-color: #081828;
    opacity: 0.9;
    z-index: -1;
}
.breadcrumbs .breadcrumbs-content {
    position: relative;
    float: none;
    padding: 0 6.25rem; /* 100px */
    margin-bottom: 1.875rem; /* 30px */
}
.breadcrumbs .breadcrumbs-content p {
    color: #fff;
    font-size: 0.8125rem; /* 13px */
    margin-top: 1.5625rem; /* 25px */
}
.breadcrumbs .breadcrumbs-content .page-title {
    font-size: 1.5rem; /* 24px */
    color: #fff;
    font-weight: 700;
    position: relative;
    line-height: 2.1875rem; /* 35px */
    padding-bottom: 1.25rem; /* 20px */
    margin-bottom: 0.3125rem; /* 5px */
}
.breadcrumbs .breadcrumbs-content .page-title:before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    height: 4px; /* 선 두께 px 유지 */
    width: 5rem; /* 80px */
    background: var(--bs-color02);
    border-radius: 5px;
    margin-left: -2.5rem; /* -40px */
}
.breadcrumbs .breadcrumb-nav {
    background: #fff3;
    border-radius: 5px;
    margin: 0.3125rem 0 0 0 !important; /* 5px */
    padding: 0.625rem 1.25rem; /* 10px 20px */
    display: inline-block;
    float: none;
}
.breadcrumbs .breadcrumb-nav li, .breadcrumbs .breadcrumb-nav li a {
    display: inline-block;
    color: #fff;
    font-size: 0.8125rem !important; /* 13px */
    font-weight: 500;
}
.breadcrumbs .breadcrumb-nav li a {
    padding-right: 0.9375rem; /* 15px */
    margin-right: 0.9375rem; /* 15px */
    position: relative;
}
.breadcrumbs .breadcrumb-nav li a:hover {
    color: var(--bs-color02);
}
.breadcrumbs .breadcrumb-nav li a:after {
    content: '';
    height: 80%;
    width: 2px; /* 선 px 유지 */
    background-color: #fff;
    position: absolute;
    top: 2px; /* 미세 위치 px 유지 */
    right: 0;
}

/* =========================================
   1. 공통 버튼 & 오버레이
   ========================================= */
.overlay {
    position: relative;
    z-index: 2;
}
/* 이미지 위에 깔리는 어두운 막 */
.overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: #081828;
    content: "";
    transition: all 0.4s ease;
    z-index: -1;
}

/* 버튼 스타일 */
.button .btn {
    display: inline-block;
    text-transform: capitalize;
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    padding: 0.9375rem 1.875rem; /* 15px 30px */
    background-color: #081828;
    color: #fff;
    border: none;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    position: relative;
    z-index: 2;
}
.button .btn::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--bs-color02);
    content: "";
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.button .btn:hover::before { width: 100%; }
.button .btn:hover { color: #fff; }
.button .btn-alt { background-color: #081828; color: #fff; }
.button .btn-alt:hover { background-color: var(--bs-color02); color: #fff; }


/* =========================================
   2. Hero Area (Swiper 레이아웃 적용)
   ========================================= */
.hero-area {
    position: relative;
    background-color: #F4F7FA;
    overflow: hidden;
    height: 100vh;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

/* 슬라이드 아이템 (액자 역할) */
.hero-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9); /* 이미지 로드 전 대비 */
    overflow: hidden; /* 내부 확대 이미지 절단 */
}

/* 애니메이션 정의: 1.03배에서 1배로 서서히 축소 */
@keyframes zoomOut {
    0% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* 배경 이미지 처리 (가상 요소) */
.hero-inner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    opacity: 0.7 !important; /* 밝기 조절 */
    will-change: transform;
}

/* 슬라이드 활성화 시 배경 애니메이션 실행 */
.swiper-slide-active .hero-inner::before {
    animation: zoomOut 6s cubic-bezier(0.2, 0.7, 0.4, 1) forwards;
}

/* 파티클 레이어 (옵션) */
.soonParticles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-area .container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-text {
    width: 100%;
    max-width: 56.25rem; /* 900px */
    padding: 0 0.9375rem;
    color: #fff;
    text-align: center;
}

/* 뱃지형 타이틀 (h5) */
.hero-text h5 {
    display: inline-block;
    padding: 0.75rem 1.375rem;
    margin-bottom: 0.9375rem;
    background: var(--bs-color02) !important;
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 1.875rem;
    text-transform: none;
}

/* 메인 타이틀 (h1) */
.hero-text h1 {
    font-size: 2.0rem !important;
    line-height: 3.125rem !important;
    font-weight: 700;
    margin-bottom: 1.5625rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text h1 span { color: var(--bs-color02); }

/* 서브 텍스트 (p) */
.hero-text p {
    font-size: 0.875rem;
    margin-bottom: 1.875rem;
    color: #fff;
}

/* 버튼 스타일 */
.hero-text .button { margin-top: 2.1875rem; }
.hero-text .button .btn { margin-right: 0.625rem; }
.hero-text .button .btn:last-child { margin-right: 0; }

.hero-text .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 30px;
    border-radius: 10px;
    background: #fff;
    color: #081828;
    border: none;
    transition: all 0.3s;
}

.hero-text .btn.alt-btn {
    background: var(--bs-color02);
    color: #fff;
}

.hero-text .btn.alt-btn:hover {
    background: #fff;
    color: #081828 !important;
    font-weight: 800;
}

/* 기본 상태: 아래로 40px 내려가 있고 투명함 */
.hero-text .ani-item {
    opacity: 0;
    transform: translateY(2.5rem);
    transition: all 0.3s ease-out;
}

/* 활성화 상태: 제자리로 이동하며 나타남 */
.swiper-slide-active .hero-text .ani-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

/* 등장 순서 지연(Delay) 설정 */
.swiper-slide-active .hero-text .ani-item.delay-1 { transition-delay: 0.5s; }
.swiper-slide-active .hero-text .ani-item.delay-2 { transition-delay: 1.0s; }
.swiper-slide-active .hero-text .ani-item.delay-3 { transition-delay: 1.3s; }
.swiper-slide-active .hero-text .ani-item.delay-4 { transition-delay: 1.6s; }

/* =========================================
   3. Swiper Pagination
   ========================================= */
.hero-area .swiper-pagination {
    position: absolute;
    bottom: 3.75rem !important; /* 60px */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 9;
    text-align: center;
}

.hero-area .swiper-pagination-bullet {
    width: 0.625rem; /* 10px */
    height: 0.625rem; /* 10px */
    background-color: #fff;
    border-radius: 1.875rem; /* 30px */
    display: inline-block;
    border: none;
    margin: 0 0.3125rem !important; /* 5px */
    opacity: 1;
    transition: all 0.4s ease;
}

.hero-area .swiper-pagination-bullet-active {
    width: 1.25rem; /* 20px */
    background-color: #fff;
}

/* 모바일 반응형 */
@media only screen and (max-width: 767px) {
    .hero-text h1 {
        font-size: 1.625rem !important; /* 26px */
        line-height: 2.25rem !important; /* 36px */
    }
    .hero-text p {
        font-size: 0.8125rem; /* 13px */
        padding: 0 0.625rem; /* 10px */
    }
    .hero-area .swiper-pagination {
        bottom: 1.875rem !important; /* 30px */
    }
}

/*--------------------------------------------------------------
# main_number. 2024
--------------------------------------------------------------*/
.contact-inner {
    background-color: #e0abca; 
}
.contact-item {
    color: #c56499; 
    font-weight: 500;
}
.contact-label, 
.contact-number {
    color: inherit;
    font-size: 2.2rem;
    line-height: 1.2;
}

@media (max-width: 575.98px) { .contact-label, .contact-number { font-size: 1.7rem; } }
@media (min-width: 576px) { .contact-label, .contact-number { font-size: 1.7rem; } }
@media (min-width: 768px) { .contact-label, .contact-number { font-size: 1.6rem; } }
@media (min-width: 992px) { .contact-label, .contact-number { font-size: 2.2rem; } }
@media (min-width: 1200px) { .contact-label, .contact-number { font-size: 2.7rem; } }
@media (min-width: 1400px) { .contact-label, .contact-number { font-size: 2.7rem; } }


/*--------------------------------------------------------------
# main_Virtua
--------------------------------------------------------------*/
    /* Card Style */
    #virtua .virt-card {
        display: block;
        background: #fff;
        border-radius: 0.75rem; /* 12px */
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Shadow px 유지 */
        transition: all 0.3s ease;
        height: 100%;
        text-decoration: none !important;
        border: 1px solid rgba(0,0,0,0.05); /* Border px 유지 */
    }

    #virtua .virt-card:hover {
        transform: translateY(-0.625rem); /* -10px */
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: rgba(0,0,0,0.1);
    }

    /* Image Area */
    #virtua .virt-card .img-wrap {
        position: relative;
        height: 15rem; /* 240px */
        overflow: hidden;
    }

    #virtua .virt-card .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    #virtua .virt-card:hover .img-wrap img {
        transform: scale(1.1);
    }



    /* Overlay Icon */
    #virtua .virt-card .overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1;
    }

    #virtua .virt-card .overlay i {
        color: #fff;
        font-size: 2rem;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    #virtua .virt-card:hover .overlay {
        opacity: 1;
    }
    #virtua .virt-card:hover .overlay i {
        transform: scale(1);
    }

    /* Text Area */
    #virtua .virt-card .text-wrap {
        padding: 1.5625rem 1.25rem; /* 25px 20px */
        text-align: center;
        position: relative;
    }
    
    /* 하단 보더 애니메이션 효과 */
    #virtua .virt-card .text-wrap::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 3px; /* 선 px 유지 */
        background-color: var(--bs-color02); 
        transition: width 0.3s ease;
    }

    #virtua .virt-card:hover .text-wrap::after {
        width: 100%;
    }

    #virtua .virt-card h4 {
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 0.5rem;
    }

    #virtua .virt-card p {
        font-size: 0.95rem;
        color: #888;
        margin-bottom: 0;
        word-break: keep-all;
    }

/*--------------------------------------------------------------
# main_Services-box
--------------------------------------------------------------*/
    /* Service Card */
    #services-box .service-card {
        background: #fff;
        padding: 2.5rem 1.875rem; /* 40px 30px */
        border-radius: 0.9375rem; /* 15px */
        border: 1px solid #eee; /* px 유지 */
        box-shadow: 0 5px 20px rgba(0,0,0,0.03); /* px 유지 */
        transition: all 0.3s ease;
        height: 100%; 
        min-height: 20rem; /* 320px */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Hover Effect */
    #services-box .service-card:hover {
        transform: translateY(-0.625rem); /* -10px */
        border-color: #c56499;
        box-shadow: 0 10px 30px rgba(197, 100, 153, 0.15);
    }

    /* Icon Circle */
    #services-box .icon-circle {
        width: 5rem; /* 80px */
        height: 5rem; /* 80px */
        display: flex; 
        align-items: center;
        justify-content: center;
        background: #fdf2f7;
        color: #c56499;
        border-radius: 50%;
        margin-bottom: 1.5625rem; /* 25px */
        font-size: 2rem; /* 32px */
        transition: all 0.3s ease;
    }

    #services-box .service-card:hover .icon-circle {
        background: #c56499;
        color: #fff;
    }

    /* Typography */
    #services-box .service-card h3 {
        font-size: 1.25rem; /* 20px */
        font-weight: 700;
        color: #333;
        margin-bottom: 0.9375rem; /* 15px */
    }

    #services-box .service-card p {
        font-size: 0.9375rem; /* 15px */
        color: #777;
        line-height: 1.6;
        word-break: keep-all;
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# main_Tour
--------------------------------------------------------------*/
    /* Card Style */
    #tour .tour-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        background: #fff;
        border-radius: 0.9375rem; /* 15px */
        border: 1px solid rgba(0,0,0,0.08); /* px 유지 */
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* px 유지 */
        transition: all 0.3s ease;
    }

    #tour .tour-card:hover {
        transform: translateY(-0.625rem); /* -10px */
        box-shadow: 0 15px 30px rgba(197, 100, 153, 0.2);
        border-color: #c56499;
    }

    /* Image Wrapper */
    #tour .img-wrap {
        position: relative;
        height: 15.625rem; /* 250px */
        overflow: hidden;
    }

    #tour .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    #tour .tour-card:hover .img-wrap img {
        transform: scale(1.1);
    }

    /* 360 Badge */
    #tour .tour-badge {
        position: absolute;
        top: 0.9375rem; /* 15px */
        left: 0.9375rem; /* 15px */
        background: rgba(33, 37, 41, 0.8);
        color: #fff;
        padding: 0.375rem 0.75rem; /* 6px 12px */
        border-radius: 1.875rem; /* 30px */
        font-size: 0.75rem; /* 12px */
        font-weight: 600;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 0.3125rem; /* 5px */
    }

    /* Hover Overlay & Play Button */
    #tour .overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(197, 100, 153, 0.85);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 3;
    }

    #tour .tour-card:hover .overlay {
        opacity: 1;
    }

    #tour .btn-play {
        width: 4rem; /* 64px */
        height: 4rem; /* 64px */
        border-radius: 50%;
        background: #fff;
        color: #c56499;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem; /* 24px */
        margin-bottom: 0.625rem; /* 10px */
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        animation: pulse-white 2s infinite;
    }

    #tour .overlay span {
        color: #fff;
        font-weight: 600;
        font-size: 1rem; /* 16px */
        letter-spacing: 0.5px;
    }

    /* Text Content */
    #tour .text-wrap {
        padding: 1.5625rem; /* 25px */
        text-align: center;
        flex-grow: 1;
    }

    #tour .text-wrap h3 {
        font-size: 1.25rem; /* 20px */
        font-weight: 700;
        color: #333;
        margin-bottom: 0.625rem; /* 10px */
    }

    #tour .text-wrap p {
        font-size: 0.9375rem; /* 15px */
        color: #777;
        margin: 0;
        line-height: 1.6;
        word-break: keep-all;
    }

    /* Pulse Animation */
    @keyframes pulse-white {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
        70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); } /* px 유지 */
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    }

/*--------------------------------------------------------------
# main_Wide-box
--------------------------------------------------------------*/
    /* 배경 이미지 영역 */
    #wide .intro-bg-image {
        background: url('../img/nhk2.jpg') center/cover no-repeat;
        min-height: 34.375rem; /* 550px */
    }

    /* 텍스트 영역 */
    #wide .intro-text-wrap {
        padding: 3.75rem 10%; /* 60px 10% */
        width: 100%;
    }

    /* 그랜드 오픈 뱃지 */
    #wide .badge-opening {
        background-color: var(--bs-color02);
        color: #fff;
        padding: 0.5em 1em;
        border-radius: 0.625rem; /* 10px */
        font-weight: 600;
        font-size: 0.9rem;
    }

    /* 구분선 */
    #wide .divider-rose {
        width: 3.125rem; /* 50px */
        height: 3px; /* 선 px 유지 */
        background-color: var(--bs-color02);
        margin-bottom: 1.875rem; /* 30px */
    }

    /* 로즈 버튼 (아웃라인) */
    #wide .btn-outline-rose {
        border: 2px solid var(--bs-color02); /* px 유지 */
        color: var(--bs-color02);
        background: transparent;
        transition: all 0.3s;
    }

    #wide .btn-outline-rose:hover {
        background-color: var(--bs-color02);
        color: #fff;
        border-color: var(--bs-color02);
        transform: translateY(-0.1875rem); /* -3px */
        box-shadow: 0 5px 15px rgba(197, 100, 153, 0.2);
    }

    /* 다크 버튼 커스텀 */
    #wide .btn-custom-dark {
        background-color: #333;
        border: none;
        color: #fff;
        transition: all 0.3s;
    }

    #wide .btn-custom-dark:hover {
        background-color: var(--bs-color02);
        color: #fff;
        transform: translateY(-0.1875rem); /* -3px */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* 모바일 반응형 (BS5 브레이크포인트 md 미만) */
    @media (max-width: 767.98px) {
        #wide .intro-bg-image {
            height: 18.75rem; /* 300px */
            min-height: auto;
        }
        #wide .intro-text-wrap {
            padding: 3.125rem 1.25rem; /* 50px 20px */
            text-align: center;
        }
        #wide .intro-text-wrap h2 {
            font-size: 1.5rem; 
        }
        /* 구분선 중앙 정렬 */
        #wide .divider-rose {
            margin-left: auto;
            margin-right: auto;
        }
        #wide .btn-group-custom {
            flex-direction: column;
            gap: 0.625rem; /* 10px */
        }
        #wide .btn-group-custom .btn {
            width: 100%;
            margin-left: 0 !important;
        }
    }

/*--------------------------------------------------------------
# main_Sns
--------------------------------------------------------------*/
    /* 1. 그리드 및 박스 기본 설정 */
    #sns .info_box_w > div {
        padding: 0.3125rem; /* 5px */
    }

    #sns .info_box {
        padding: 1.25rem 0.625rem; /* 20px 10px */
        border: 1px solid #ddd; /* px 유지 */
        width: 100%;
        height: 9.375rem; /* 150px */
        background: #f5f5f5;
        box-sizing: border-box; 
    }

    #sns .info_box-s {
        position: relative;
        padding: 0.3125rem; /* 5px */
        border: 1px solid #eee; /* px 유지 */
        width: 100%;
        height: 9.375rem; /* 150px */
        background: #fff;
        box-sizing: border-box;
        transition: all 0.3s ease;
    }

    /* 2. 텍스트 스타일 */
    #sns .box-text h2 {
        font-size: 1.25rem; /* 20px */
        padding: 0.9375rem 0 0.625rem 0; /* 15px 0 10px 0 */
        margin: 0;
        color: #666;
        text-align: center;
    }

    #sns .box-text p {
        font-family: "s-core-dream-regular", sans-serif;
        font-size: 0.9375rem; /* 15px */
        padding: 0.125rem 0.3125rem; /* 2px 5px */
        line-height: 1.3125rem; /* 21px */
        margin: 0;
        color: #666;
        font-weight: 700;
        text-align: center;
    }

    /* 호버 시 텍스트 색상 변경 */
    #sns .info_box-s:hover h2, 
    #sns .info_box-s:hover p {
        color: #000;
    }

    /* 3. 상단 핑크색 라인 애니메이션 */
    #sns .info_box-s::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 3px; /* 선 px 유지 */
        background-color:var(--bs-color02); 
        transition: width 0.4s ease-in-out;
    }

    #sns .info_box-s:hover::before {
        width: 100%;
    }

    /* 4. SNS 아이콘 슬라이딩 애니메이션 영역 */
    #sns .info_box-s .top-bar-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1.25rem 0 0.625rem 0; /* 20px 0 10px 0 */
        height: 3.125rem; /* 50px */
    }

    #sns .social-icon-sm {
        width: 3.125rem; /* 50px */
        height: 3.125rem; /* 50px */
        font-size: 1.75rem; /* 28px */
        line-height: 3.125rem; /* 50px */
        color: #fff;
        border-radius: 50%;
        overflow: hidden;
        display: block;
        text-align: center;
        border: 1px solid #AAA; /* px 유지 */
        background-color: var(--bs-color01); 
    }

    /* 아이콘 내부 이미지/폰트 설정 */
    #sns .social-icon-sm i {
        display: flex; 
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 3.125rem; /* 50px */
        transition: all 0.3s ease; 
    }
    
    #sns .social-icon-sm i img {
        top: 1.875rem; /* 30px */
    }

    /* 5. 호버 시 슬라이딩 효과 */
    #sns .info_box-s:hover .social-icon-sm i:first-child {
        margin-top: -3.125rem; /* -50px */
    }

    /* 6. 각 SNS별 호버 배경색 설정 */
    #sns .info_box-s:hover .si-facebook {
        background-color: #FEE500 !important;
        border-color: #FEE500;
        color: #3c1e1e !important;
    }
    
    #sns .info_box-s:hover .si-instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
        border-color: transparent;
        color: white !important;
    }

    #sns .info_box-s:hover .si-youtube-play {
        background-color: #FF0000 !important;
        border-color: #FF0000;
        color: white !important;
    }

    #sns .info_box-s:hover .si-naver {
        background-color: #03C75A !important;
        border-color: #03C75A;
        color: white !important;
    }
    .bg-gr1 {
    background: rgb(251, 244, 248);
    background: -moz-linear-gradient(166deg, rgba(251, 244, 248,1) 0%, rgba(255,255,255,0.7763480392156863) 100%);
    background: -webkit-linear-gradient(166deg, rgba(251, 244, 248, 1) 0%, rgba(255, 255, 255, 0.7763480392156863) 100%);
    background: linear-gradient(166deg, rgba(251, 244, 248, 1) 0%, rgba(255, 255, 255, 0.7763480392156863) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FBF4F8",endColorstr="#ffffff",GradientType=1);
    }
    .bg-gr2 {
    background: url(../img/bg/con-bg.png) center no-repeat;
    }