@charset "utf-8";

.nav {
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    position: relative;
}

.nav .nav_arrow {
    position: absolute;
    top: -100px;
    right: 0;
    z-index: -1;
}

.nav .right_nav {
    align-items: center;
    gap: 50px;
    padding: 15px 0;
}


.nav .right_nav .btn_normal {
    display: none;
    font-size: 22px;
}

.logo {
    display: inline-block;
    vertical-align: middle;
}

.logo img {
    display: inline-block;
    vertical-align: middle;
    height: 32px;
    object-fit: contain;
    margin-left: 5px;
}

.logo strong,
.logo span {
    display: inline-block;
    vertical-align: middle;
    color: var(--primary);
    font-weight: 800;
    font-family: var(--font_head);
}

.nav_menu {
    list-style: none;
    align-items: center;
    gap: 25px;
}

.nav_menu a {
    color: var(--dark-700);
    font-weight: 300;
}

.nav_menu .close_menu {
    font-size: 18px;
    color: var(--dark-700);
    display: none;
    text-align: center;
    float: left;
    background: var(--secondary);
    padding: 15px;
    box-sizing: border-box;
    border-radius: var(--radius_15);
}

.hero {
    position: relative;
    height: 600px;
}

.hero .container {
    align-items: center;
    gap: 25px;
    height: 100%;
}

.hero .hero_detail {
    width: 50%;
    position: relative;
    border-radius: 0 0 25px 0;
}

.hero .hero_detail h2 {
    align-items: center;
    flex-wrap: wrap;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 25px;
}

.hero .hero_detail h2 strong {
    font-size: 40px;
    font-family: var(--font_head);
    color: var(--primary);
    font-weight: 800;
}

.hero .hero_detail p {
    font-weight: 300;
    text-align: justify;
    width: calc(100% - 72px);
    margin-bottom: 10px;
}

.hero .hero_detail .nav_arrow {
    position: absolute;
    bottom: -70px;
    right: 180px;
    opacity: 0.4;
}

.hero .nav_brush {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 54%;
    z-index: -1;
}

.hero .hero_img {
    width: 50%;
    height: 600px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 0 25px 25px 0;
}

.hero .hero_img .image {
    width: 100%;
    height: 100%;
}

.hero .hero_img .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-image: linear-gradient(to top, #6B4FBDdd, transparent);
    border-radius: 0 25px 25px 0;
}

.circle_effect_btn {
    display: grid;
    place-items: center;
    position: absolute;
    right: -65px;
    bottom: 100px;
    width: 130px;
    height: 130px;
    border-radius: var(--radius_oval);
    border: 3px solid var(--primary);
    box-shadow: inset 0 0 0 30px var(--light);
    overflow: hidden;
    cursor: pointer;
}

.circle_effect_btn .img_effect {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    transform: scale(1.1) rotate(0);

    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-name: anim_circle;
    animation-play-state: running !important;
    animation-iteration-count: infinite;
}

@keyframes anim_circle {
    0% {
        transform: scale(1.1) rotate(0);

    }
    100% {
        transform: scale(1.1) rotate(360deg);
    }
}


.circle_effect_btn .play_icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: var(--radius_50);
    border: 3px solid var(--primary);
}

.circle_effect_btn .play_icon:before {
    content: "";
    position: absolute;
    right: 6px;
    width: 30px;
    background: var(--light);
    height: 20px;
    bottom: 27px;
    transform: rotate(30deg);
}

.circle_effect_btn .play_icon i {
    -webkit-text-stroke: 2px var(--light);
    font-size: 45px;
    color: var(--primary);
}

.service_anime {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.service_anime .service_holder {
    width: 110%;
    height: fit-content;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -5%;
    left: -5%;
    margin: auto;
}

.background_dark {
    background: var(--dark-700);
    transform: rotate(5deg);
}

.background_purple {
    background: var(--primary);
    transform: rotate(-5deg);
}

.service_anime .holder_scroll {
    overflow: hidden;
}

.service_anime .text_scroll {
    align-items: center;
    gap: 80px;
    padding: 15px 25px;
    box-sizing: border-box;
    transition: all 40s linear !important;
}

.service_anime .text_scroll .item {
    color: var(--white);
}

.service_anime .text_scroll i {
    color: var(--yellow);
}

.about {
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 50px;
}

.about .about_detail {
    width: calc(100% - 450px);
    position: relative;
}

.about .about_detail .arrow {
    position: absolute;
    right: 100px;
    bottom: -75px;
    opacity: 0.4;
    z-index: -1;
}

.holder_header {
    width: 100%;
    padding: 15px 0;
}

.up_title_img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.holder_title {
    font-size: var(--font_xl);
    color: var(--primary);
    font-family: var(--font_head);
    font-weight: 950;
}

.about .about_image {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: var(--radius_25);
    overflow: hidden;
}

.about .about_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about_image .play_icon {
    position: absolute;
    display: grid;
    place-items: center;
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: var(--radius_50);
    box-shadow: inset 0 0 0 8px var(--light);
}

.about .about_image .play_icon i {
    width: 80px;
    height: 80px;
    border-radius: var(--radius_50);
    border: 1px solid var(--light);
    font-size: 50px;
    display: grid;
    place-items: center;
    color: var(--light);
}

.scroll_holder {
    align-items: start;
    justify-content: start;
}

.scroll_holder .scroller {
    gap: 15px;
    padding: 5px;
    box-sizing: border-box;
}

.card_holder {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    overflow: hidden;
    margin: 35px auto;
    position: relative;
}

.service_card {
    display: inline-block;
    vertical-align: top;
    width: 250px;
    border-radius: var(--radius_25);
    box-shadow: var(--b_shadow_primary);
    overflow: hidden;
}

.service_card .card_img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service_card .card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_card:hover .card_img img {
    transform: scale(1.05);
}

.service_card .card_detail {
    padding: var(--margin_l) var(--margin_m);
}

.service_card .card_detail .title {
    text-align: center;
    width: 100%;
    color: var(--dark-700);
    font-family: var(--font_head);
    font-weight: 800;
}

.service_card:hover {
    box-shadow: var(--b_shadow_secondary);
}

.holder_scroll_btn_right {
    display: grid;
    place-items: center;
    width: 50px;
    height: 270px;
    position: absolute;
    font-size: 30px;
    bottom: 0;
    right: 0;
    text-align: center;
    color: var(--primary);
    -webkit-text-stroke: 1px var(--light);
    cursor: pointer;
    z-index: 1;
}

.holder_scroll_btn_left {
    z-index: 1;
    display: grid;
    place-items: center;
    width: 50px;
    height: 270px;
    position: absolute;
    font-size: 30px;
    bottom: 0;
    left: 0;
    text-align: center;
    color: var(--primary);
    -webkit-text-stroke: 1px var(--light);
    cursor: pointer;
}

.appointment {
    background-color: var(--primary);
    background-image: url("../img/Texture.png");
    background-attachment: fixed;
    width: 100%;
    height: 600px;
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
}

.appointment .container {
    align-items: center;
    gap: 50px;
    height: 100%;
}

.appointment .appointment_img {
    width: 450px;
    height: 450px;
    border-radius: var(--radius_oval);
    overflow: hidden;
}

.appointment .appointment_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment .detail {
    align-items: start;
}

.appointment .detail .title {
    font-size: var(--font_xl);
    color: var(--light);
    font-family: var(--font_head);
    font-weight: 950;
}

.appointment .detail .sub_title {
    color: var(--light);
    margin-bottom: 25px;
}

.appointment .detail .arrow {
    position: absolute;
    right: 125px;
    bottom: -45px;
}

.appointment .detail .btn_secondary_yellow {
    z-index: 1;
}

.article_gallery {
    padding: 25px 0;
    gap: 10px;
}

.article_gallery .gallery_holder {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 616px;
}

.image_holder {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100vh;
    background: var(--light);
    z-index: 20;
    transform: scale(0, 0);
}

.image_holder .image_header {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    height: 50px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--gray_100);
}

.image_holder .image_header .title {
    width: calc(100% - 80px);
}

.image_holder .image_header .btn_secondary_yellow_2 {
    margin: 0;
    padding: 5px;
    font-size: 10pt;
}

.image_holder .image_middle {
    position: relative;
    width: 100%;
    height: calc(100% - 120px)
}

.image_holder .image_middle .image {
    width: 100%;
    height: 100%;
}

.image_holder .image_middle .image video,
.image_holder .image_middle .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image_holder .btn_scroll_right,
.image_holder .btn_scroll_left {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 30px;
}

.image_holder .btn_scroll_left {
    right: unset;
    left: 0;
}

.image_holder .image_detail {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px;
    width: 100%;
    max-height: 30%;
    height: 70px;
    overflow: auto;
    box-sizing: border-box;
    background: #6B4FBD55;
    backdrop-filter: blur(10px);
    align-items: start;
}

.image_holder .image_detail p {
    width: calc(100% - 50px);
}

.image_holder .image_detail .text_open {
    padding: 5px;
    font-size: 20px;
}

.gallery_holder .item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius_25);
    cursor: pointer;
}

.gallery_holder .item .detail {
    display: grid;
    place-items: center;
    position: absolute;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-image: repeating-linear-gradient(to top, #6B4FBDdd, transparent);
    top: unset;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: var(--radius_25);
    text-align: center;
}

.gallery_holder .item:hover .detail {
    top: 0;
    height: 100%;
}

.gallery_holder .item .detail .title {
    position: absolute;
    bottom: 10%;
    right: 0;
    left: 0;
    font-weight: 800;
    font-family: var(--font_head);
    color: var(--white);
    font-size: var(--font_x);
}

.gallery_holder .item .detail i {
    color: var(--white);
    font-size: 50px;
}


.gallery_holder .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius_25);
}

.gallery_holder .item:hover img {
    transform: scale(1.05);
}

.item_0 {
    grid-area: 1 / 1 / 5 / 3;
}

.item_1 {
    grid-area: 1 / 3 / 3 / 5;
}

.item_2 {
    grid-area: 3 / 3 / 5 / 5;
}

.item_3 {
    grid-area: 1 / 5 / 5 / 8;
}

.blog_card {
    width: 450px;
    border-radius: var(--radius_25);
    overflow: hidden;
    align-items: start;
    justify-content: space-between;
    box-shadow: var(--b_shadow_primary);
}

.blog_card:hover {
    box-shadow: var(--b_shadow_secondary);
}

.blog_card .card_img {
    width: 100%;
    height: 215px;
    overflow: hidden;
}

.blog_card .card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_card:hover .card_img img {
    transform: scale(1.05);
}

.blog_card .card_detail {
    width: 100%;
    padding: 10px;
    align-items: start;
    gap: 10px;
    box-sizing: border-box;
}

.blog_card .card_detail .btn_primary {
    padding: 5px;
}

.blog_card .card_detail .title {
    width: 100%;
    color: var(--dark-700);
    /*font-family: var(--font_head);*/
    font-weight: 500;
}

.blog_card .card_detail .text {
    width: 100%;
    font-size: var(--font_r);
    line-height: 1.5;
    text-align: justify;
    height: 58px;
    overflow: hidden;
    color: var(--gray);
}

.card_header {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.card_header .card_result {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: var(--radius_5);
    background: var(--light);
    padding: 3px;
    color: var(--gray);
}

.card_header .card_result span {
    font-size: var(--font_s);
}

.card_header .card_result i {
    font-size: 10px;
}

.footer {
    align-items: center;
    width: 100%;
    position: relative;
    margin-top: 150px;
    padding-top: 200px;
    background: var(--light);
}

.footer_contact_box {
    position: absolute;
    top: -100px;
    height: 200px;
    width: 800px;
    background: var(--primary);
    border-radius: var(--radius_25);
    overflow: hidden;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 30px;
    box-sizing: border-box;
}

.footer_contact_box .title {
    font-size: var(--font_xl);
    color: var(--white);
}

.footer_contact_box .title strong {
    font-size: 20px;
    font-family: var(--font_head);
}

.footer_contact_box .btn_secondary_yellow {
    color: var(--white);
    font-size: 22px;
    padding: var(--margin_l) var(--margin_x);
    box-shadow: 0 0 0 3px var(--orange);
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
    animation-name: anim_fade_in_btn;
    animation-play-state: running !important;
    animation-iteration-count: infinite;
    position: relative;
}

.footer_contact_box .btn_secondary_yellow:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: var(--radius_25);
    box-shadow: 0 0 0 3px var(--yellow);
    animation-duration: 0.8s;
    animation-timing-function: ease-in;
    animation-fill-mode: both;
    animation-name: anim_fade_in_btn2;
    animation-play-state: running !important;
    animation-iteration-count: infinite;
}

@keyframes anim_fade_in_btn {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 127, 23, 0.45);

    }
    100% {
        box-shadow: 0 0 0 6px rgba(245, 127, 23, 0.15);
    }
}

@keyframes anim_fade_in_btn2 {
    0% {
        box-shadow: 0 0 0 6px rgba(245, 219, 2, 0.45);

    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 219, 2, 0.15);
    }
}

.footer_main {
    width: 100%;
    align-items: start;
    padding: 20px;
    box-sizing: border-box;
}

.footer_main .item {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 33%;
    gap: 10px;
    padding-left: 10px;
    box-sizing: border-box;
}

.footer_main .item .item_header {
    font-size: var(--font_x);
    color: var(--gray);
    font-family: var(--font_head);
    font-weight: 950;
}

.footer_main .item .detail {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    color: var(--gray);
    list-style: none;
}

.footer_main .item .detail a {
    color: var(--gray);
}

.footer_main .item .detail a:hover {
    color: var(--primary);
}

.footer_main .item .social {
    align-items: center;
    gap: 35px;
}

.footer_main .item .social a {
    color: var(--gray);
    font-size: 24px;
}

.footer .copy_right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    color: var(--gray);
    text-align: center;
}

.footer .copy_right span {
    display: inline-block;
    vertical-align: middle;
    font-size: 10pt;
    font-weight: 400;
}

.footer .copy_right a {
    display: inline-block;
    vertical-align: middle;
    color: var(--reihoon);
    font-weight: 600;
}

.footer .copy_right span img {
    display: inline-block;
    vertical-align: middle;
    height: 25px;
    margin: 0 2px;
}

.page_hero {
    align-items: center;
    justify-content: center;
    padding: 25px 0;
    width: 100%;
    gap: 10px;
}

.page_hero .title {
    color: var(--primary);
    font-size: 22px;
    font-family: var(--font_head);
    font-weight: 950;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumbs .container .item {
    padding: var(--margin_l) var(--margin_m);
    color: var(--primary);
    font-size: var(--font_r);
}

.breadcrumbs .container .select {
    color: var(--dark-700);
    font-family: var(--font_head);
    font-weight: 800;
    cursor: context-menu;
}

.side {
    width: 270px;
    padding: 5px 15px;
    box-sizing: border-box;
}

.side .btn_secondary {
    display: none;
}

.side .side_title {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font_head);
    color: var(--gray);
}

.side .side_title i {
    display: none;
    font-size: 18px;
}

.filter_card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.filter_card .card_side {
    display: block;
    margin-bottom: 16px;
    width: 100%;
    padding: var(--margin_m);
    box-sizing: border-box;
    border-radius: var(--radius_25);
    box-shadow: var(--b_shadow_primary);
}

.filter_card .card_side .list {
    max-height: 300px;
    overflow: auto;
}

.side .card_side .side_sub_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 700;
    font-family: var(--font_head);
    color: var(--gray);
    margin-bottom: var(--margin_m);
}

.side .card_side .side_sub_title i {
    padding: 5px;
}

.card_side .menu {
    padding: 0 var(--margin_m);
    box-sizing: border-box;
}

.card_side .menu .title {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    color: var(--gray);
    cursor: pointer;
}

.card_side .menu .select {
    font-weight: 600;
}

.card_side .menu .title i {
    font-size: 6px;
}

.archive_blog .main {
    flex-wrap: wrap;
    gap: 20px;
    padding: 5px;
    box-sizing: border-box;
    width: calc(100% - 270px);
}

.archive_blog .main .card_holder {
    flex-wrap: wrap;
    gap: 10px;
    padding: 3px;
    box-sizing: border-box;
    margin: 0;
}

.archive_blog .main .blog_card {
    width: calc(33% - 11px);
}

.archive_blog .main .blog_card .card_img {
    height: 150px;
}

.filter_btn {
    display: none;
    align-items: baseline;
    flex-direction: row;
    cursor: pointer;
    color: var(--primary);
    border-radius: var(--radius_15);

    text-align: center;
    box-sizing: border-box;
    padding: var(--margin_s) var(--margin_m);
    font-size: 20px;
}

.filter_btn i {
    margin-left: 4px;
}

.filter_btn span {
    font-weight: 600;
}

.search_side {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.search_side input {
    padding: var(--margin_m) var(--margin_l);
    width: 100%;
    border: none !important;
    box-shadow: unset;
    margin: 0;
}

.search_side input:focus {
    border: none !important;
    box-shadow: unset;
}

.search_side .search_btn {
    display: grid;
    place-items: center;
    position: absolute;
    left: -5px;
    margin: auto;
    width: 34px;
    height: 34px;
    padding: 6px;
    box-sizing: border-box;
    font-size: 12px;
    cursor: pointer;
    background: var(--secondary);
    border-radius: var(--radius_20);
}

.error_page {
    text-align: center;
    /*position: absolute;*/
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    /*height: 200px;*/
    width: 100%;
    display: block;
    padding: 50px;
    box-sizing: border-box;
}

.error_page i {
    font-size: 100px;
    color: var(--secondary);
}

.error_page span {
    font-size: 16pt;
    display: block;
    margin: 15px auto;
    color: var(--secondary);
    font-family: var(--font_head);
    font-weight: 600;
}

.error_page .btn_secondary_gray {
    width: 150px;
    margin: auto;
    text-align: center;
    justify-content: center;
}

.page_number {
    display: block;
    width: 100%;
    margin: 20px auto;
    text-align: center;
}

.page_number a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 8px 10px;
    box-sizing: border-box;
    color: var(--dark-700);

    box-shadow: var(--b_shadow_primary);
    border-radius: var(--radius_25);
    border: 1px solid var(--light);
    font-family: var(--font_head);
}

.page_number .page_active,
.page_number .selected {
    color: var(--light);
    background: var(--primary);
}

.post .card_item {
    background-color: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
    border-radius: var(--radius_25);
    box-shadow: var(--b_shadow_primary);
}

.post .card_item .card_img {
    width: 100%;
    height: 450px;
    background-color: var(--light);
    position: relative;
}

.post .card_item .card_img .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card_img audio {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.card_img video {
    width: 100%;
    height: 100%;
    backdrop-filter: blur(15px);
    position: relative;
}


.post .card_item .card_detail {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.card_item .detail_header {
    width: 100%;
    flex-wrap: wrap;
}

/*******************************************/
.comment_holder {
    margin: 10px 0;
    padding: 25px 0;
    border-radius: var(--radius_25);
    box-shadow: var(--b_shadow_primary);
}

.comment {
    padding: 0 10px;
}

.comment .holder_title {
    display: block;
    margin-bottom: 25px;
    font-weight: 800;
}

.comment .comment_item {
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    background: var(--light);
    border-bottom: 1px solid var(--green_light);
    border-radius: var(--radius_25);
}

.comment .comment_item:last-child {
    border-bottom: none;
}

.comment .comment_item .comment_item {
    padding: 5px 30px;
    background: var(--blue_hover);
}

.comment .comment_item .comment_head {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 25px;
}

.comment .comment_item .comment_head .comment_name {
    font-weight: 700;
    font-family: var(--font_head);
    color: var(--gray);
}

.comment .comment_item .comment_middle {
    display: flex;
    align-items: baseline;
}


.comment .comment_item .date {
    font-size: 8pt;
    color: var(--gray);
    background: var(--white);
    border-radius: var(--radius_5);
    padding: 3px;
}

.comment .comment_item .date i {
    margin: 0 10px;
    font-size: 8px;
    color: var(--primary);
}


.comment .comment_item .replay {
    border-bottom: 2px solid var(--secondary);
}

.comment .comment_item .comment_text {
    line-height: 1.7;
    display: block;
    color: var(--gray);
    width: 100%;
    text-align: justify;
    padding: 8px 0;
    box-sizing: border-box;
}

.comment .comment_item .comment_footer {
    display: flex;
    margin-top: 3px;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    box-sizing: border-box;
}

.comment .comment_item .comment_footer .btn_secondary_yellow_2 {
    font-size: var(--font_m);
    padding: var(--margin_s) var(--margin_m);
}

.comment_form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 10px;
}

.comment_form .comment_score {
    margin-bottom: 8px;
}

.comment_form .comment_score i {
    cursor: pointer;
}

.comment_form .text_area {
    display: block;
    margin-bottom: 16px;
    padding: 8px 16px;
    min-height: 50px;
    width: 100%;
}

.post_action {
    display: flex;
    padding: 0 18px;
    margin: 10px 0;
    align-items: center;
}

.post_action .action_title {
    font-weight: 400;
    color: var(--dark-700);
    margin-left: 10px;
}

.post_action .action_like {
    display: inline-block;
    vertical-align: middle;
    color: var(--green);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.post_action .action_dis_like span,
.post_action .action_like span {
    font-weight: 400;
    margin-right: 5px;
}

.post_action .action_dis_like {
    display: inline-block;
    vertical-align: middle;
    color: var(--danger);
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.part_holder {
    background-color: var(--secondary);
    background-image: url("../img/part_back.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    background-blend-mode: color-dodge;
}

.part_2_holder {
    align-items: start;
    padding: 25px 0;
}

.part_2_holder .part_side {
    width: 270px;
    gap: 10px;
    border-left: 1px solid var(--light);
    align-items: center;
}

.part_2_holder .part_side .item {
    width: calc(100% - 100px);
    padding: 10px;
    border-radius: var(--radius_15);
    color: var(--dark-700);
    font-family: var(--font_head);
    text-align: center;
    font-weight: 600;
    background-color: var(--light);
    cursor: pointer;
}

.part_2_holder .part_side .item:hover {
    background-color: var(--secondary);
    color: var(--dark-700);
}

.part_2_holder .part_side .select {
    background-color: var(--secondary);
    color: var(--dark-700);
    font-weight: 800;
}

.part_2_holder .part_main {
    width: calc(100% - 275px);
    padding: 0 20px;
    box-sizing: border-box;
    align-items: center;
    gap: 25px;
    backdrop-filter: blur(15px);
    border-radius: var(--radius_25);
}

.part_2_holder .part_main .part_main_img {
    width: 250px;
    height: 250px;
    border-radius: 200px;
    object-fit: cover;
    border: 5px solid var(--light);
}

.part_2_holder .part_main .title {
    font-size: var(--font_x);
    color: var(--primary);
    font-family: var(--font_head);
    font-weight: 800;
}

/*********************************************/

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 850px) {
    .nav_menu {
        gap: 15px;
    }

    .about .about_image {
        width: 400px;
        height: 400px;
    }

    .about {
        gap: 5px;
    }

    .about .about_detail {
        width: calc(100% - 400px);
    }

    .footer_contact_box {
        width: 600px;
    }

    .side {
        position: fixed;
        bottom: -100%;
        background: var(--light);
        width: 100%;
        overflow: auto;
        right: 0;
        left: 0;
        z-index: 15;
        transition: all 0.8s ease-in-out;
    }

    .side .fa-times {
        float: left;
        display: block;
    }

    .filter_btn {
        display: inline-block;
    }

    .archive_blog .main {
        width: 100%;
        padding: 5px 0;
        gap: 10px;
        align-items: start;
    }

    .side .side_title i {
        display: inline-block;
        color: var(--red);
    }

    .archive_blog .main .blog_card {
        width: calc(33% - 5px);
    }
}

@media screen and (max-width: 768px) {

    .right_nav .nav_menu {
        flex-direction: column;
        background-image: url("../img/menu-back.png");
        background-size: contain;
        background-position: bottom;
        background-repeat: no-repeat;
        align-items: start;
        justify-content: start;
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 270px;
        min-width: unset;
        height: 100vh;
        overflow: auto;
        background-color: var(--white);
        z-index: 10;
        border-left: 1px solid var(--secondary);
        padding: 20px;
        box-sizing: border-box;
        gap: 0;
    }

    .right_nav .nav_menu li {
        width: 100%;
        padding: 10px 5px;
        box-sizing: border-box;
    }

    .right_nav .nav_menu li a {
        color: var(--dark-700);
    }

    .nav .right_nav .btn_normal {
        display: inline-block;
    }

    .nav_menu .close_menu {
        display: block;
        width: 35px !important;
        height: 35px;
        cursor: pointer;
        padding: 8px 0 !important;
    }

    .hero .hero_img {
        width: 100%;
    }

    .hero .hero_detail {
        width: 100%;
        position: absolute;
        bottom: 0;
        z-index: 1;
        background: #6B4FBD55;
        backdrop-filter: blur(2px);
        padding: 10px 25px;
        left: 0;
        right: 0;
    }

    .circle_effect_btn {
        left: 0;
        bottom: 50%;
        right: 0;
        margin: auto;
        z-index: 2;
    }

    .hero .hero_detail .up_title {
        color: var(--white);
    }

    .hero .hero_detail p,
    .hero .hero_detail h2 strong,
    .hero .hero_detail h2 {
        color: var(--white);
    }

    .hero .hero_detail p {
        width: 100%;
    }

    .hero .hero_detail h2 strong {
        text-shadow: 0 0 2px var(--secondary);
    }

    .about {
        flex-direction: column !important;
        gap: 25px;
    }

    .about .about_detail {
        width: 100%;
    }

    .appointment .container {
        /*flex-direction: column !important;*/
        /*align-items: start;*/
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
        box-sizing: border-box;
        justify-content: center;
    }

    .appointment .appointment_img {
        width: 300px;
        height: 300px;
    }

    .article_gallery .gallery_holder {
        height: 316px;
    }

    .gallery_holder .item .detail {
        height: 100%;
        backdrop-filter: blur(1px);
        background-image: repeating-linear-gradient(to top, #6B4FBD99, transparent);
    }

    .gallery_holder .item .detail i {
        font-size: 20px;
    }

    .gallery_holder .item .detail .title {
        font-size: var(--font_r);
    }

    .card_item .detail_header {
        gap: 5px;
    }

    .post .card_item .card_img {
        height: 300px;
    }

    .scroll_holder .card_holder,
    .service .card_holder {
        overflow: auto;
    }

    .holder_scroll_btn_right,
    .holder_scroll_btn_left {
        display: none;
    }
}

@media screen and (max-width: 650px) {
    .btn_secondary_yellow,
    .btn_primary,
    .btn_secondary {
        padding: var(--margin_s) var(--margin_m);
        font-size: var(--font_r);
    }

    .left_nav .btn_secondary {
        display: none;
    }

    .hero .hero_detail .up_title {
        font-size: var(--font_m);
    }

    .hero .hero_detail h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .hero .hero_detail h2 strong {
        font-size: 26px;
    }

    .circle_effect_btn {
        width: 100px;
        height: 100px;
    }

    .circle_effect_btn .play_icon {
        width: 40px;
        height: 40px;
    }

    .circle_effect_btn .play_icon i {
        font-size: 24px;
    }

    .circle_effect_btn .play_icon::before {
        right: 0;
        width: 30px;
        height: 15px;
        bottom: 20px;
    }

    .service_anime {
        height: 230px;
    }

    .service_anime .scroller {
        padding: 10px 15px;
    }

    .about .about_image {
        width: 100%;
    }

    .footer_contact_box {
        gap: 25px;
        width: calc(100% - 24px);
        margin: auto;
    }

    .footer_contact_box .btn_secondary_yellow {
        font-size: var(--font_l);
        color: var(--dark-700);
    }

    .footer_main {
        flex-direction: column;
        gap: 25px;
    }

    .footer_main .item {
        width: 100%;
    }

    .nav .nav_arrow {
        width: 100%;
        top: -50px;
    }

    .archive_blog .main .blog_card {
        width: calc(50% - 5px);
        border-radius: var(--radius_10);
        justify-content: start;
        gap: 5px;
    }

    .blog_card .card_detail {
        order: 2;
    }

    .archive_blog .main .blog_card .card_img {
        width: 50px;
        height: 50px;
        border-radius: var(--radius_5);
        overflow: hidden;
        margin: 5px 5px 0 0;
    }

    .blog_card .card_detail {
        gap: 5px;
        padding: 5px;
    }

    .blog_card .card_detail .text {
        height: 37px;
    }

    .breadcrumbs .container {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 450px) {

    .about .about_image {
        height: fit-content;
    }

    .article_gallery .gallery_holder {
        height: auto;
    }

    .item_0 {
        grid-area: 5 / 8 / 9 / 5;
    }

    .item_1 {
        grid-area: 5 / 1 / 9 / 5;
    }

    .item_2 {
        grid-area: 1 / 1 / 5 / 4;
    }

    .item_3 {
        grid-area: 1 / 4 / 5 / 8;
    }
}
