<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

 :root {
    --color-green: #a9d18e;
    --color-white: #fff;
    --color-black: #000;
    --color-title: #555558;
    --color-sv: #666;
    --color-gray: #cfccc7;
    --color-titme: #9c9692;
    --color-body: #666;
}

 ::placeholder {
    color: var(--color-gray);
}

.box--img {
    width: 100%;
}

p {
    margin-bottom: 10px;
}
ul.angels {
 padding-left: 30px;
}
ul.angels li {
 list-style: disc;
}
.back-to-top {
    position: fixed !important;
    bottom: 30px;
    right: 15px;
    display: none;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: var(--color-green);
    border: 1px solid var(--color-green);
    font-size: 17px;
    z-index: 9999;
    transition: all ease 0.5s;
}

.back-to-top.active {
    display: block;
}

.back-to-top:hover {
    background: var(--color-green);
    color: var(--color-white);
    border: 1px solid var(--color-green);
}

.pagination a {
    color: var(--color-sv);
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
    border-radius: 8px;
    border: 1px solid var(--color-gray);
    margin-left: 10px;
}

.pagination .icon {
    border: none;
    background: none;
}


/* Style the active/current link */

.pagination a.active {
    background-color: var(--color-green);
    color: white;
}


/* Add a grey background color on mouse-over */

.pagination a:hover:not(.active) {
    background-color: var(--color-green);
}

.secondary__btn {
    background: transparent;
    color: var(--color-green);
    border: 2px solid var(--color-green);
    border-radius: 40px;
    font-weight: 600;
    transition: all ease 0.5s;
    padding: 12px 40px;
    text-transform: uppercase;
    min-width: 200px;
}

.secondary__btn:hover {
    color: var(--color-white);
    background: var(--color-green);
    border: 2px var(--color-green) solid;
}

.primary__btn {
    background: var(--color-green);
    color: var(--color-white);
    text-transform: uppercase;
    border-radius: 40px;
    padding: 12px 40px;
    font-weight: 600;
    border: 2px var(--color-green) solid;
    transition: all ease 0.5s;
    min-width: 200px;
}

.primary__btn_psychic {
    background: var(--color-green);
    color: var(--color-white);
    text-transform: uppercase;
    border-radius: 40px;
    padding: 12px 10px;
    font-weight: 600;
    border: 2px var(--color-green) solid;
    transition: all ease 0.5s;
    min-width: 200px;
}

.primary__btn:hover {
    background: transparent;
    border: 2px var(--color-green) solid;
    color: var(--color-green);
}

.primary__btn_psychic:hover {
    background: transparent;
    border: 2px var(--color-green) solid;
    color: var(--color-green);
}

.box--img img {
    height: 100%;
}

.primary__title {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-white);
    font-family: "Playfair Display", serif;
}

.small__title,
.news__small--title,
.news__title,
.thr__title,
.content--title,
.secondary__title,
.blog__title,
.title {
    font-family: "Playfair Display", serif;
}

.thr__title {
    font-size: 32px;
    color: var(--color-title);
    font-weight: 600;
}

.bg__linear {
    background: linear-gradient( 180deg, rgba(13, 21, 8, 0) 65.8%, rgba(13, 21, 8, 0.65) 97.63%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    height: 345px;
}


/* .bg__linear2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
} */

body {
    font-size: 16px;
    color: var(--color-body);
    font-family: "Open Sans", sans-serif;
}

strong {
    font-weight: 600 !important;
    color: var(--color-title);
}

.secondary__title {
    font-size: 42px;
    font-weight: 600;
    color: var(--color-title);
}

ul li {
    list-style: none;
}


/* **banner*** */

.wr__banner {
    background-image: url(/uploads/back-mf.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 713px;
    position: relative;
}

.wr__banner .box__content--banner {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin-top: 50px;
    width: 100%;
}

.wr__banner .box__content--banner p {
    color: var(--color-white);
    width: 60%;
    margin: auto;
    padding-bottom: 50px;
}

.wr__banner .box__banner--img {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translatey(-50%);
}

.wr__banner .box__banner--img .ar {
    animation: arrow 3s infinite;
}

@keyframes arrow {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 40px);
        transform: translate(0, 40px);
        opacity: 1;
    }
}


/* **intro** */

.intro {
    margin-top: 70px;
    margin-bottom: 70px;
    padding-top: 100px;
}

.intro .box--img {
    text-align: center;
}

.intro h4.title {
    color: var(--color-green);
    font-size: 21px;
    font-weight: 600;
}

.intro h2.title.bold {
    font-weight: 700;
    font-size: 40px;
    color: var(--color-title);
    line-height: 53px;
}

.intro h2.title {
    font-weight: 300;
}

.intro .box--button {
    margin-top: 50px;
}


/* ****service***** */

.overview ul li {
    margin-left: 10px;
    margin-bottom: 5px;
}

.service .right {
    position: relative;
    text-align: center;
}

.service .box__right--content .box__right--item {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.service .box__right--content .box__img--bg,
.service .box__right--content .box__img--bg-2,
.service .box__right--content .box__img--bg-3 {
    position: absolute;
    z-index: 0;
}

.service .box__right--content .box__img--bg {
    top: 0;
}

.service .box__right--content .box__img--bg-2 {
    left: 50%;
    top: 60%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.5;
}

.service .box__right--content .box__img--bg-3 {
    right: 0;
    bottom: 0;
}

.service .secondary__title {
    text-align: center;
    margin-bottom: 50px;
}

.service .image-2 {
    margin-left: 20px;
    margin-right: 20px;
}

.service .box__item--content {
    padding-left: 66px;
    padding-right: 66px;
}

.service .content--title {
    color: var(--color-title);
    font-size: 32px;
    letter-spacing: 0.03em;
}

.service .left .box--img img {
    width: 100%;
}

.service .box--btn {
    margin-top: 50px;
}

.service {
    margin-top: 70px;
    padding-top: 70px;
    /*margin-bottom: 70px;*/
    /*padding-bottom: 70px;*/
}

.service .box__left--content .box--img {
    max-height: 640px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.service .box__right--content {
    height: 640px;
    overflow: hidden;
    /*background-image: url(/themes/healing/assets/image/bgbv.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.service .left,
.service .right {
    margin-bottom: 50px;
}


/* **ceti* */

.ceti .wr__ceti {
    background-image: url(/themes/healing/assets/image/banner2.png);
    height: 531px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ceti .box__ceti--title {
    text-align: center;
    padding-top: 70px;
    margin-bottom: 70px;
}


/* **cus*** */

.cus {
    margin-top: 70px;
}

.cus .wr__cus {
    background-image: url(/themes/healing/assets/image/banner3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 700px;
}

.cus .box__title {
    text-align: center;
    padding-top: 70px;
    margin-bottom: 70px;
}

.cus .box__cus--content {
    text-align: center;
}

.cus .avatar img {
    margin: 0 auto;
    border-radius: 50%;
    max-height: 115px;
}

.cus .box__cus--desc {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.cus .box__cus--desc .box--img {
    position: absolute;
}

.cus .box__cus--desc .close {
    top: 0;
    left: 0;
    position: absolute;
    height: 73px;
}

.cus .box__cus--desc p {
    margin-top: 1rem;
}

.cus .box__cus--desc .open {
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: right;
    position: absolute;
    height: 73px;
}

.cus .italic {
    font-style: italic;
    font-weight: 600;
}

.cus a {
    color: var(--color-title);
    font-weight: 600;
    font-family: "Playfair Display", serif;
}

.more-news .box--img img {
    width: 100%;
}

.sv__item .nopading {
    padding-left: 0;
}


/* ****Blog***** */

/*.blog {*/
    /*margin-top: 70px;*/
    /*margin-bottom: 70px;*/
    /*padding-bottom: 100px;*/
    /*padding-top: 100px;*/
/*}*/

.blog .box--img img {
    width: 100%;
}

.blog .box--img {
    border-radius: 15px;
    overflow: hidden;
    max-height: 220px;
}

.blog .box__blog--title {
    margin-bottom: 50px;
}

.blog .blog__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-title);
}

.blog .time {
    font-size: 12px;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.blog .box__btn {
    padding-bottom: 50px;
}

.blog p {
    color: var(--color-body);
    padding-bottom: 30px;
}

.blog .box__btn {
    padding-bottom: 50px;
}


/* *****Intro******* */

.banner.rekki .wr__banner,
.banner.intros .wr__banner {
    height: 345px;
    background-image: url(/themes/healing/assets/image/banner-intro.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.banner.rekki .wr__banner .box__content--banner,
.banner.intros .wr__banner .box__content--banner {
    margin-top: 0;
}

.banner.our .box__banner--breadk .breadcrumb,
.banner.rekki .box__banner--breadk .breadcrumb,
.banner.intros .box__banner--breadk .breadcrumb {
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.box__banner--breadk .breadcrumb {
    background: transparent;
}

.box__banner--breadk .breadcrumb a {
    color: var(--color-white);
}

.detail_news .box__banner--breadk .breadcrumb a {
    color: var(--color-title);
}

.box__banner--breadk .breadcrumb li {
    color: var(--color-white);
    text-transform: uppercase;
}

.detail_news .box__banner--breadk .breadcrumb li {
    color: var(--color-title);
    text-transform: uppercase;
}

.box__banner--breadk .breadcrumb {
    background: transparent;
    padding-left: 0;
}

.detail_news .box__banner--breadk .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: black;
    content: "&gt;";
    margin-left: 10px;
    margin-right: 10px;
}

.box__banner--breadk .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: var(--color-white);
    content: "&gt;";
}


/* **intro-content*** */

.intro-content {
    position: relative;
    margin-top: 100px;
    padding-bottom: 70px;
}

.intro-content .bg--img {
    position: absolute;
    bottom: 8rem;
    z-index: 0;
}

.intro-content .bg-2 img {
    width: 100%;
}

.intro-content .bg--img {
    position: absolute;
    bottom: 0;
    z-index: 0;
}

.intro-content .bg-2 {
    position: relative;
    z-index: 1;
}

.intro-content .wr__intro--content {
    max-width: 1400px;
    margin: 0 auto;
}

.en__content figcaption {
    text-align: left;
    font-size: 16px;
    color: var(--color-title);
    opacity: 0.9;
    padding-top: 20px;
    padding-bottom: 20px;
}

.en__content h5 {
    font-size: 16px;
    color: var(--color-title);
}

.en__content {}


/* **detail-en** */

.detail-en {
    margin-top: 70px;
    margin-bottom: 70px;
}

.detail-en .box__sv--title {
    text-align: center;
}

.detail-en .box__sv--title p {
    font-size: 18px;
}

.detail-en .wr__detail-en {
    background-image: url(/themes/healing/assets/image/LOGO_NEW3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 550px;
}

.detail-en .box__en--content {
    border-radius: 15px;
    padding: 40px 60px;
    border: 1px solid var(--color-green);
    height: 360px;
    overflow: hidden;
}

.detail-en .box__en--content .box--img {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
}

.detail-en .wr__detail-en .row {
    justify-content: center;
    padding-top: 20px;
}


/* **intro__bottom** */

.intro__bottom .wr__intro--bottom {
    background-image: url(/themes/healing/assets/image/bg-en.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
}

.intro__bottom .intro__bottom--content {
    text-align: center;
    padding-top: 40px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 40px;
}

.intro__bottom .intro__bottom--content h5 {
    line-height: 2rem;
}

.intro__bottom {
    padding-bottom: 70px;
}


/* *****Footer***** */

.footer {
    padding-top: 50px;
    margin-top: 50px;
}

.footer .strong {
    color: var(--color-green);
}

.footer .left ul li {
    list-style: none;
    display: flex;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer .left ul li strong {
    margin-right: 5px;
    display: block;
    font-size: 18px;
}

.footer .title__footer {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 2rem;
}

.footer .mid ul li {
    list-style: none;
    display: flex;
    margin-bottom: 20px;
}

.footer .mid ul li .fas.fa-chevron-right {
    margin-top: 10px;
}

.footer .logo__footer {
    text-align: center;
    margin-bottom: 55px;
}

.footer .logo__footer .box--img {
    width: 200px;
    margin: auto;
}

.footer .logo__footer .box--img img {
    width: 100%;
}

.footer .mid ul li a {
    color: var(--color-title);
    line-height: 30px;
    margin-left: 15px;
    display: block;
}

.footer .image__bottom {
    display: flex;
}

.footer .image__bottom .box--img {
    height: 50px;
}

.footer__bottom .box--content {
    text-align: center;
    padding-top: 50px;
    color: var(--color-green);
}

footer .box--content a {
    color: var(--color-green);
}

footer a {
    color: var(--color-title);
}


/* ***SV** */

.sv .box__sv--title {
    text-align: center;
    margin-top: 70px;
    padding-left: 100px;
    padding-right: 100px;
}

.sv .respon {
    display: none;
}

.sv .sv__item {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding-top: 20px;
}

.sv .sv__item p {
    color: var(--color-title);
    font-family: "Playfair Display", serif;
}

.sv .sv__item .box--img {
    width: 175px;
    height: 175px;
    margin: auto;
    /* margin-bottom: 2rem; */
}

.sv .sv__item .box--img img {
    margin: 0 auto;
    display: block;
}

.sv .box--btn {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}


/* ***Rekki page**** */

.banner.rekki .wr__banner {
    position: relative;
    /* background-image: url(/themes/healing/assets/image/banner4.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 345px;
}

.banner.rekki .wr__banner .box__content--banner {
    margin-top: 0;
}

.overview {
    margin-top: 50px;
}

.course .left {
    padding-right: 0;
}

.course .box--img img {
    width: 100%;
}

.course .top .box--img {
    margin-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.course .top .box--img img {
    /* border-radius: 15px; */
    overflow: hidden;
}

.course .des {
    font-size: 13px;
}


/* .course .left,
  .course .right,
  .course .mid {
    height: 188px;
  }
  
  .course .top.middle .left,
  .course .top.middle .right,
  .course .top.middle .mid {
    height: 340px;
  } */

.course .top {
    border: 1px solid var(--color-green);
    border-radius: 15px;
    align-items: center;
}

.course .top.middle .box__desc {
    height: auto;
}

.course .top.middle .box__desc::before {
    padding-bottom: 55%;
}

.course .top .box__content {
    padding-top: 15px;
}

.course .top .box__desc .price {
    display: block;
    font-weight: 700;
}

.course .top .box--btn {
    padding-top: 50px;
    text-align: center;
    padding-bottom: 30px;
}

.course .top .box__desc {
    color: var(--color-green);
    text-align: center;
    padding-bottom: 30px;
    position: relative;
    height: 80px;
}

.course .top .box__desc::before {
    position: absolute;
    content: "";
    border-bottom: 1px solid var(--color-green);
    width: 50%;
    padding-bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.course .top.bottom .box__desc::before {
    padding-bottom: 95px;
}

.course .top .small__title {
    font-size: 16px;
    font-weight: 700;
}

.course .top li {
    margin-left: 15px;
}

.course .top {
    margin-bottom: 30px;
    display: flex;
}

.course .top .left {
    width: 33.33%;
}

.course .top.top.middle .left {
    width: 33.33%;
    border-right: none;
}

.course .top .mid {
    width: 33.33%;
    padding-left: 15px;
    padding-right: 15px;
}

.course .top.middle .line {
    width: 1px;
    border-right: 1px solid var(--color-green);
    height: 360px;
}

.course .top .line {
    width: 1px;
    border-right: 1px solid var(--color-green);
    height: 188px;
}

.course .top .right {
    width: 33.33%;
}

.course {
    margin-top: 50px;
}

.course .primary__btn {
    min-width: unset;
}

.course .thr__title {
    margin-bottom: 30px;
}

.more-news .secondary__title {
    margin-bottom: 50px;
}

.more-news .small__title {
    font-size: 22px;
    color: var(--color-title);
    font-weight: 700;
}

.more-news .view-more {
    color: var(--color-green);
    font-size: 17px;
}

.news-content {
    margin-top: 50px;
    margin-bottom: 50px;
}

.news-content .box--img img {
    width: 100%;
}

.news-content .box__news--item {
    position: relative;
}

.news-content .box__news--desc {
    bottom: 0;
    position: absolute;
}

.news-content .box__news--desc .news__title {
    color: var(--color-white);
    font-weight: 600;
    padding-left: 70px;
    margin-bottom: 50px;
}

.news-content .news__small--title {
    font-size: 21px;
    color: var(--color-white);
    padding-left: 20px;
    margin-bottom: 20px;
}

.news-item .box--img img {
    width: 100%;
}

.news-item .box__news--content {
    position: relative;
    overflow: hidden;
    height: 470px;
    border-radius: 15px;
    background-size: cover;
    margin-top: 30px;
}

.news-item .box__news--content .box__news--desc {
    position: absolute;
    bottom: 0;
    padding-left: 70px;
    color: var(--color-white);
    padding-bottom: 20px;
}

.news-item .box__news--content .box__news--desc p {
    width: 60%;
}

.news-item .news__title {
    position: relative;
    padding-bottom: 50px;
    font-weight: 700;
}

.news-item .news__title::before {
    border-bottom: 3px solid var(--color-white);
    width: 138px;
    position: absolute;
    content: "";
    /* padding-bottom: 50px; */
    top: 70%;
}

.news-item .pagination {
    justify-content: center;
    margin-top: 50px;
}

.contact__content .map {
    border-radius: 15px;
    overflow: hidden;
}

.contact__content {
    margin-top: 70px;
    margin-bottom: 70px;
}

.contact__content .contact__content--item p {
    line-height: 1.5rem;
}

.contact__content .contact__content--item form input {
    width: 100%;
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--color-gray);
    padding: 10px 15px;
    border: none;
    border-bottom: 2px solid var(--color-gray);
}

.contact__content .contact__content--item form textarea:focus,
.contact__content .contact__content--item form input:focus {
    outline: none;
}

.contact__content .contact__content--item form textarea {
    width: 100%;
    font-size: 18px;
    color: var(--color-gray);
    padding: 10px 15px;
    border: none;
    border-bottom: 2px solid var(--color-gray);
}

.contact__content .box--btn {
    padding-top: 70px;
}

.contact__content .contact__content--item ul li {
    line-height: 2rem;
    margin-bottom: 20px;
    display: flex;
}

.contact__content .contact__content--item ul li strong {
    margin-right: 5px;
}

.contact__content .contact__content--item ul li .box--img {
    display: block;
    height: 32px;
    width: 32px;
    margin-right: 10px;
}

.contact__content .contact__content--item ul {
    margin-top: 50px;
}

.detail-top {
    margin-top: 40px;
    margin-bottom: 70px;
}

.detail-top .row {
    align-items: center;
    margin-top: 50px;
}

.detail-top .day {
    font-size: 14px;
    color: var(--color-titme);
}

.detail__content {}

.detail__content .box__detail--content .tb__content {
    border-radius: 15px;
    border: 1px solid var(--color-sv);
    padding: 40px 60px;
}

.detail__content .box__detail--content .tb__content ul li a {
    color: var(--color-sv);
}

.detail__content .box__detail--content .tb__content ul .small a {
    font-size: 16px;
}

.detail__content .box__detail--content .tb__content ul .small {
    margin-left: 20px;
}

.detail__content .box__detail--content .tb__content ul li {
    line-height: 2.5rem;
}

.detail__content .secondary__title {
    text-align: center;
    font-size: 22px;
}

.detail__content .box__detail--item h4 {
    font-size: 16px;
    font-weight: 700;
}

.detail__content .box__detail--item {
    margin-top: 40px;
    padding-bottom: 50px;
    border-bottom: 2px dashed var(--color-black);
    margin-bottom: 50px;
}


.detail__content .box__detail--item ul{
    padding-left: 15px;
}

.detail__content .box__detail--item ul&gt;li{
    list-style: disc;
    margin-bottom:5px;
}

.detail__content .box__detail--item .box--img img {
    width: 100%;
}

figcaption {
    text-align: center;
    font-style: italic;
}

.detail__content #tb-m1,
.detail__content #tb-m2 {
    margin-left: 30px;
    font-weight: 600;
}

.detail__content .box__tag ul li a {
    color: var(--color-black);
    font-weight: 600;
    margin-left: 5px;
}

.detail__content .box__desc {
    display: flex;
    justify-content: space-between;
}

.detail__content .box__share {
    display: flex;
}

.detail__content .box__share .socail {
    display: flex;
}

.detail__content .box__share .socail img {
    margin-left: 20px;
    margin-right: 20px;
}

.aside .aside__title {
    font-weight: 600;
    font-size: 26px;
    color: var(--color-title);
    position: relative;
    font-family: "Playfair Display", serif;
    padding-bottom: 50px;
}

.aside .aside__title::before {
    padding-bottom: 40px;
    position: absolute;
    border-bottom: 2px solid var(--color-gray);
    width: 68px;
    content: "";
}

.aside .box__side--item ul li {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid;
}

.aside .box__side--item ul li:last-child {
    border-bottom: none;
}

.aside .box__item {
    display: flex;
    margin-bottom: 10px;
}

.aside .box__item .box--img {
    height: 111px;
    max-width: 130px;
    margin-right: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.aside .box__item .box--img img{
    width:100%;
    height: 100%;
    object-fit: cover;
}


.aside .small__title {
    font-size: 14px;
    color: var(--color-title);
    font-weight: 600;
    margin-bottom: 0;
}

.aside .box__item p {
    font-size: 12px;
    color: var(--color-sv);
}

.aside .box__item .time {
    font-size: 10px;
    color: var(--color-green);
    margin-bottom: 10px;
}

.aside .box__aside--tag a {
    font-size: 12px;
    color: var(--color-sv);
    padding: 10px;
    border: 1px solid var(--color-sv);
    margin-right: 10px;
    margin-top: 10px;
    display: inline-block;
}

.aside .box__aside--tag .top {
    margin-bottom: 30px;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.popup__img {
    width: 100%;
    position: relative;
    height: 100%;
}

.popup__img .box--img {
    height: 100%;
    padding: 0;
}

.popup__img .popup__desc {
    color: var(--color-white);
    position: absolute;
    left: 0;
    top: 50%;
    width: 50%;
    transform: translateY(-50%);
    padding-left: 20px;
}

.popup__img .popup-back {
    position: absolute;
    right: 0;
    top: 0%;
    margin-top: 10px;
    padding-right: 20px;
}

.popup__img .popup-back a {
    color: var(--color-white);
}

.popup__img img {
    width: 100%;
}

.popup__img .box--img img {
    width: 100%;
}

.right,
.left {
    padding-right: 0;
    padding-left: 0;
}

.popup__item .popup__top {
    padding-top: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-sv);
    padding-left: 72px;
    padding-right: 60px;
}

.popup__item .popup__top .box--img {
    margin-bottom: 0;
}

.popup__item .popup__item--content {
    padding-left: 72px;
    padding-right: 60px;
    padding-top: 70px;
}

.popup__item textarea {
    width: 100%;
    padding: 10px 15px;
    margin-top: 20px;
    border-radius: 8px;
    border: 1px solid var(--color-sv);
}

.popup__item .popup__name,
.popup__item .popup__sdt,
.popup__item .popup__email {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid var(--color-sv);
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--color-sv);
}

.popup__item .popup__name:focus,
.popup__item .popup__sdt:focus,
.popup__item .popup__email:focus {
    outline: none;
}

.popup__item textarea {
    width: 100%;
    padding: 10px 15px;
    margin-top: 20px;
}

.popup__item textarea:focus {
    outline: none;
}

.popup__item .secondary__title {
    margin-bottom: 40px;
}

.popup__item .popup__title {
    color: var(--color-sv);
    font-size: 20px;
    font-weight: 600;
}

.popup__item .form-check {
    margin-bottom: 30px;
    margin-top: 30px;
}

.popup__item .max {
    text-align: end;
    font-size: 12px;
}

.popup__item.sucsec .popup__top {
    padding-left: 72px;
    padding-right: 72px;
}

.popup__item.sucsec .popup__bot {
    text-align: center;
    margin-top: 100px;
}

.popup__item.sucsec .popup__title {
    font-size: 26px;
    margin-bottom: 20px;
}

.popup__item.sucsec p {
    font-size: 20px;
    margin-bottom: 30px;
}

.popup__item.sucsec .box--btn {
    padding-bottom: 40px;
}

.popup__item.sucsec .come-sev {
    color: var(--color-title);
    border-bottom: 1px solid var(--color-sv);
}

.popup__item.sucsec {}

.popup__item.sucsec {}

.slick-arrow.slick-prev::before {
    background-image: url(/themes/healing/assets/image/chevron-left-25.svg);
    z-index: 1;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: 50%;
    background-position: center;
    transition: 0.5s;
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    opacity: 0.5;
}

.slick-arrow.slick-next::before {
    background-image: url(/themes/healing/assets/image/chevron-right-24.svg);
    z-index: 1;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: 50%;
    background-position: center;
    transition: 0.5s;
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    opacity: 0.5;
}

.slick-dots li button::before {
    background-image: url(/themes/healing/assets/image/dot.svg);
    z-index: 1;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
    content: "";
    position: absolute;
    width: 30px;
    height: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.slick-dots li {
    margin: 10px;
}

.ceti .box__ceti--mobile {
    display: none;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.sv__item .box--img img {
    width: 100%;
}

.footer .right .fanpage img {
    width: 100%;
}



.box__over--img .box--img img {
    width: 100%;
}

.detail-en .dt-desktop {
    display: block;
}

.detail-en .dt-mobile {
    display: none;
}


/* our team */

.banner.our .wr__banner {
    background-image: url(/themes/healing/assets/image/our-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 345px;
}

.banner.our .wr__banner .box__content--banner {
    margin-top: 0;
}

.banner.our .bg__linear {
    position: absolute;
    z-index: 1;
    height: 345px;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient( 180deg, rgba(13, 21, 8, 0) 65.8%, rgba(13, 21, 8, 0.65) 97.63%);
}

.banner.our {
    position: relative;
}

.banner.our .breadcrumb {
    z-index: 2;
}


/* ========== */


/* our__content */

.our__content {
    padding-top: 70px;
    /* padding-bottom: 70px; */
}

.our__content .secondary__title {
    font-size: 36px;
    text-align: right;
}

.our__content .box__image {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.our__content .box__image img {
    width: 100%;
}

.our__content {}

.our__content {}

.our__content {}

.our__content {}

.our__content {}


/* ============== */

@media screen and (min-width: 1321px) {
    .news-content .top {
        height: 194px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1320px) {
    .sv .sv__item {
        display: none;
    }
    .sv .mobile {
        display: block;
    }
    .sv .mobile .row {
        text-align: center;
        padding-top: 30px;
    }
    .sv .mobile .row p {
        color: var(--color-title);
    }
    .news-content .top {
        height: 194px;
        margin-bottom: 20px;
    }
    .sv .mobile .box--img img {
        width: 200px;
    }
    .our__content .box__image {
        padding-left: 0;
        padding-right: 0;
    }
    .our__content .secondary__title {
        text-align: center;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .news-content .top {
        height: 194px;
        margin-bottom: 20px;
    }
    .course .top .box--btn {
        padding-top: 30px;
        text-align: center;
        padding-bottom: 30px;
        font-size: 12px;
    }
    .course .top.middle .box__desc::before {
        padding-bottom: 115px;
    }
    .course .top.bottom .box__desc::before {
        padding-bottom: 95px;
    }
}

@media screen and (max-width: 996px) {
    .ceti .row.desktop {
        display: none;
    }
    .ceti .box__ceti--mobile {
        display: block;
    }
    .ceti .box__ceti--title {
        text-align: center;
        padding-top: 20px;
        margin-bottom: 30px;
    }
    .cus .box__title {
        padding-top: 0px;
        margin-bottom: 50px;
    }
    .mobile {
        display: block;
    }
    .service {
        padding-top: 20px;
        margin-top: 0;
    }
    .box__dtop--content {
        padding-top: 20px;
    }
    .desktop {
        display: none;
    }
    .service .box__right--content .box__right--item {
        margin-top: 0;
    }
    .wr__banner {
        height: 500px;
    }
    .wr__banner .box__banner--img {
        bottom: 0px;
    }
    .wr__ceti .box--img img {
        width: 100%;
    }
    .ceti .wr__ceti {
        height: auto;
        padding-bottom: 20px;
    }
    .intro__bottom .wr__intro--bottom {
        height: auto;
        background-position-y: 0;
        padding-bottom: 20px;
    }
    .wr__intro--bottom img {
        width: 100%;
    }
    .course .top .line {
        width: 1px;
        border-right: 1px solid var(--color-green);
        height: 228px;
    }
    .course .top.middle .box__desc::before {
        padding-bottom: 80px;
    }
    .detail-en .box__en--content {
        margin-bottom: 20px;
    }
    .intro__bottom .intro__bottom--content {
        padding-left: 0;
        padding-right: 0;
    }
    .sv .box__sv--title {
        padding-left: 0;
        padding-right: 0;
    }
    .footer {
        padding-top: 50px;
        margin-top: 0;
    }
    .contact__content .box--btn {
        padding-bottom: 50px;
    }
    .aside .box__item {
        margin-bottom: 20px;
    }
    .aside .box__item .box--img {
        width: auto;
        margin-right: 20px;
    }
    .box__btn {
        padding-bottom: 50px;
    }
    .blog {
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .box--btn {
        padding-bottom: 50px;
    }
    .ceti .row .desktop {
        display: none;
    }
    .ceti .box__ceti--mobile {
        display: block;
    }
    .intro-content .bg--img {
        position: absolute;
        top: -30px;
        z-index: 0;
    }
    .news-content .top {
        height: 470px;
        margin-top: 20px;
    }
    /* .news-item .news__title::before {
        padding-bottom: 80px;
    } */
    /* .aside .box__item .box--img {
    height: auto;
  }
  .aside .box__item .box--img img {
    width: 100%;
  } */
}

@media screen and (max-width: 767px) {
    .footer {
        padding-top: 70px;
        margin-top: 0px;
    }
    .wr__banner .box__content--banner p {
        width: 100%;
    }
    .wr__banner .box__content--banner {
        width: 100%;
    }
    .slick-arrow {
        display: none !important;
    }
    .news-item .box__news--content .box__news--desc {
        padding-left: 20px;
    }
    .news-item .box__news--content .box__news--desc p {
        width: 100%;
    }
    .detail__content .box__desc {
        display: block;
        padding-bottom: 30px;
    }
    .popup__item.sucsec .popup__bot {
        margin-bottom: 30px;
    }
    .course .top .box--btn {
        text-align: center;
    }
    .box__more--content {
        margin-bottom: 20px;
    }
    .detail-en .dt-desktop {
        display: none;
    }
    .detail-en .dt-mobile {
        display: block;
    }
    .news-content .top {
        height: 470px;
        margin-top: 20px;
    }
    .course .top.middle .box__desc::before {
        padding-bottom: 115px;
    }
    .course .top.bottom .box__desc::before {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 575px) {
    .news-item .news__title {
        /* padding-bottom: 20px; */
        font-size: 22px;
    }
    /* .news-item .news__title::before {
        padding-bottom: 67px;
    } */
    .footer {
        padding-left: 15px;
        padding-right: 15px;
    }
    .news-content .box__news--desc .news__title {
        padding-left: 20px;
    }
    .course .top {
        margin-bottom: 30px;
        display: block;
        text-align: center;
    }
    .course .top.middle .left,
    .course .top .left {
        border-bottom: 1px solid var(--color-green);
        width: 100%;
    }
    .course .top.middle .left,
    .course .top .left {
        border-bottom: 1px solid var(--color-green);
        width: 100%;
    }
    .course .top.top.middle .left {
        width: 100%;
        border-right: none;
    }
    .course .top.middle .mid,
    .course .top .mid {
        width: 100%;
        border-bottom: 1px solid var(--color-green);
    }
    .course .top .right,
    .course .top.middle .right {
        width: 100%;
    }
    .course .top .line {
        display: none;
    }
    .course .top.middle .box__desc::before {
        padding-bottom: 70px;
    }
    .course .top.bottom .box__desc::before {
        padding-bottom: 80px;
    }
    .primary__title {
        font-size: 30px;
    }
    .news-content {
        display: none;
    }
}

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 99999;
    overflow: auto;
}

.popup .popup__item {
    background: var(--color-white);
}

.popup-content {
    position: relative;
    height: 100%;
}

.popup-quest .popup-content {
    text-align: left;
}

.popup .popup-content .close-btn {
    position: absolute;
    right: 15px;
    font-weight: 600;
    padding: 0px 8px;
    top: 20px;
    color: var(--color-white);
    z-index: 9999;
    border: none;
    background: transparent;
}

.popup .popup-content .close-btn:hover {
    cursor: pointer;
}

.popup .popup-content .close-btn:focus {
    outline: none;
}

.popup-btn {
    width: 100%;
    display: inline-flex;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    background: transparent;
    border: none;
}

.popup-btn:focus {
    outline: none;
}

.box__img--bg-2 img{
    width: 100%;
}</pre></body></html>