/* Import fonts */
@font-face {
    font-family: "roboto";
    src: url(../fonts/Roboto/Roboto-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "roboto";
    src: url(../fonts/Roboto/Roboto-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "worksans";
    src: url(../fonts/WorkSans/WorkSans-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "worksans";
    src: url(../fonts/WorkSans/WorkSans-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "worksans";
    src: url(../fonts/WorkSans/WorkSans-Bold.ttf);
    font-weight: 700;
}


:root {
    --roboto: "roboto";
    --worksans: "worksans";
    --color-title: #121f38;
    --color-button: #9a563a;
    --color-text: #555555;
    --size: 15px;
	--skin: #fdf5f2;
}

body {
    font-size: 15px;
    font-family: "worksans";
    font-weight: 400;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--color-title);
}

.container {
    margin: auto;
    width: 100%;
}

.text-bold { font-weight:bold!important; }
.text-upper { text-transform:uppercase; }
.text-color-button { color:var(--color-button)!important; }


/* ----------------------------------------stars Header----------------------------------------- */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    transform: translateX(-100%);
    transition: all 0.5s;
}

.overlay.active {
    opacity: 1;
    display: block;
    transition: all 0.5s;
    transform: translateX(0);
}

.header .header-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
	max-width:1520px;
	margin:0 auto;
}

.header .logo img {
    height: 50px;
    width: 100%;
    max-width: 157px;
}

.header #menu-main {
    position: fixed;
    background: #fff;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 80%;
    height: 100%;
    border-right: 1px solid var(--color-button);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: all 0.4s;
}

.header #menu-main.active {
    transform: translateX(0);
}

.header #menu-main .menu {
    list-style: none;
    display: block;
    padding: 0 20px;
    margin-top: 30px;
	text-align:left;
}

.header #menu-main .mobile-logo {
    background-color: #f5eeeb;
    padding: 40px 20px 30px 0;
    position: relative;
}

.header #menu-main .mobile-logo .close {
    border: none;
    background-color: var(--color-button);
    border-radius: 50%;
    padding: 5px 6px;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 15px;
    top: 20px;
}


.header #menu-main .mobile-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 250px;
}

.header #menu-main .menu li {
    list-style: none;
    padding: 12px 10px;
    border-bottom: 1px solid #e7e5e5;
}

.header #menu-main .menu li.item {
    position: relative;
}
.header #menu-main .menu li.item:hover, .header #menu-main .menu li.item.active { background-color:var(--color-button); }

.header #menu-main .menu li.item:hover a, .header #menu-main .menu li.item.active a { color:#FFF; }

.header #menu-main .menu li.item .submenu {
    display: none;
}

.header #menu-main .menu li.item .show-menu {
    position: absolute;
    right: 0;
    top: 8px;
    border-radius: 50%;
    padding: 2px 3px;
    border: none;
	display:none;
}

.header #menu-main .menu li .submenu {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}

.header #menu-main .menu li .submenu li {
    border-bottom: none;
    border-top: 1px solid #e7e5e5;
}

.header #menu-main .menu li:last-child {
    border: none;
}

.header #menu-main .menu li a {
    text-decoration: none;
    color: var(--color-title);
    font-weight: 400;
    font-family: var(--worksans);
    font-size: 16px;
}

.header .cart-icon {
    position: relative;
	display:none;
}

.header .cart-icon span {
    margin-left: 15%;
    display: block;
    top: -10px;
    right: -10px;
    position: absolute;
    padding: 2px 5px 2px 6px;
    color: #fff;
    border-radius: 50%;
    background-color: var(--color-button);
}

.header .menu-toggle {
    padding: 5px 10px;
    background-color: var(--color-button);
    cursor: pointer;
    transition: all 0.5s ease;
}

.header .menu-toggle a {
    display: none;
}

.header .menu-toggle svg {
    display: block;
}

/* Ẩn popup search */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay .popup {
    border-radius: 10px;
    text-align: center;
    transform: scale(0.5);
    transition: transform 0.3s ease;
    width: 50%;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay.active .popup {
    transform: scale(1);
}

.popup-overlay .close-btn-popup {
    background: #fff;
    color: #111;
    border: none;
    padding: 22px 15px;
    margin-top: 10px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    border-radius: 50%;
    font-size: 16px;
    font-family: var(--worksans);
}


.header .total-icon {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header .total-icon .open-btn-popup {
    display: none;
}

.open-btn-popup {
    border: none;
    cursor: pointer;
    background-color: #fff;
}

.popup .search-box {
    position: relative;
    width: 100%;
}

.popup .search-input {
    font-size: 18px;
    height: 70px;
    width: 100%;
    border: 2px solid var(--color-button);
    background-color: transparent;
    padding-left: 30px;
    color: #fff;
    border-radius: 50px;
    font-family: var(--worksans);
    font-weight: 500;
}

.popup .search-input::placeholder {
    color: #fff;
}

.popup .search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* --------------------------------------Banner trang chủ ----------------------------- */


.banner {
    overflow: hidden;
}

.banner .slider-for .box-slide {
    position: relative;
}

.banner .slider-for .box-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .slider-for .slick-arrow {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    outline: none;
    position: absolute;
    z-index: 2;
}

.banner .slider-for .slick-next {
    right: 5%;
    top: 40%;
}

.banner .slider-for .slick-prev {
    left: 5%;
    top: 40%;
	transform:scale(-1);
}

.banner .slider-for .box-slide .content {
    position: absolute;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
	transform:translateY(-47%);
}

.banner .slider-for .box-slide .content h4,
.deription {
    display: none;
}

.banner .slider-for .box-slide .content h2 {
    font-size: 20px;
    font-family: var(--worksans);
    color: var(--color-title);
    font-weight: 500;
    width: 60%;
	text-align:left;
}

/* -----------------------------------------------section-instruct---------------------------- */
.section-instruct {
    overflow: hidden;
	background-color:var(--skin); 
}

.section-instruct .header-box {
    padding: 50px 0px 30px 0px;
}

.section-instruct .title {
    font-size: 14px;
    font-family: var(--worksans);
    font-weight: 400;
    color: var(--color-button);
    text-align: center;
}

.section-instruct .heading {
    font-size: 28px;
    font-family: var(--worksans);
    font-weight: 500;
    color: var(--color-title);
    text-align: center;
    margin-top: 15px;
}

.section-instruct .divider {
    text-align: center;
    padding: 20px 0 30px 0;
}
.section-instruct .divider img { max-width:300px; }

.section-instruct .content-box {
    padding: 40px 30px 40px 30px;
    background-color: #fff;
    margin: 10px 5px 0;
    border: 2px solid #fde7da;
}

.section-instruct.instruct .content-box:hover {
    transition: all 0.5s;
    background-color: var(--color-button);
}

.section-instruct.instruct .content-box:hover .icon {
    background-color: #fff;
}

.section-instruct.instruct .content-box:hover .content-title {
    color: #fff;
}

.section-instruct.instruct .content-box:hover .description {
    color: #fff;
}


.section-instruct .instruct-slider { padding:10px; }

.section-instruct .content-box .content-title {
    font-size: 22px;
    font-family: var(--worksans);
    font-weight: 500;
    color: var(--color-title);
    text-align: center;
    margin: 15px auto;
	max-width:300px;
}

.section-instruct .content-box .description {
    font-size: var(--size);
    font-family: var(--worksans);
    font-weight: 400;
    color: var(--color-text);
    text-align: center;
}

.section-instruct .content-box .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fde7da;
    margin: auto;
	position:relative;
}
.section-instruct .content-box .icon:before { content:""; position:absolute; top:calc(5px / -1); right:calc(5px / -1); bottom:calc(5px / -1); left:calc(5px / -1); border:1px dashed var(--color-button); border-radius:inherit; transition:allease 0.4s; animation:spin 30s linear infinite; }
.section-product .content-box .icon:before { content:unset; }

.section-instruct.section-product { background:unset; }

.view-price .row-service { width:96%; margin:0 auto; }

/* ------------------------------------------------about-home------------------------- */

.about-home {
    padding: 30px 0;
    overflow: hidden;
}

.about-home .img-about {
    background: linear-gradient(to top, #f7e2d5 50%, white 50%);
    padding: 30px;
    overflow: hidden;
}
.about-home .img-about, .about-home .total-about { width:96%; max-width:1520px; margin:0 auto; box-sizing:border-box; }

.about-home .img-about img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-home .img-about .box-img {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.about-home .img-about .box-img img {
    transition: all 0.6s ease-in-out;
}

.about-home .img-about .box-img:hover img {
    transform: scale(1.2);
}

.about-home .top-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--worksans);
    font-size: var(--size);
    color: var(--color-button);
    text-transform: uppercase;
    font-weight: 500;
    padding: 30px 0;
}

.about-home .top-info .badge {
    background-color: #fde6d8;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    color: var(--color-button);
}

.about-home .heading {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-title);
    margin-top: 10px;
    padding-bottom: 10px;
}

.about-home .highlight {
    color: var(--color-button);
}

.about-home .image-container {
    margin: 15px 0;
    position: relative;
}

.about-home .circle-btn {
    position: absolute;
    top: 17px;
    border-radius: 100%;
    width: 80px;
    height: 80px;
	transition: allease 0.4s;
	background-color:var(--color-button);
	color:#FFF;
}
.about-home .circle-btn .btn-icon { display:inline-block; position:absolute; left:50%; top:50%; transform:translate(-50%, -50%); line-height:1; width:53%; height:53%; line-height:1; text-align:center; border:1px solid rgba(154, 86, 58, 0.4); border-radius:inherit; font-size:0.8em; display:flex; justify-content:center; align-items:center; transition:allease 0.4s; z-index:1; border-radius: 100%; border: 1px dashed #FFF; color: #FFF; font-size:1.2em; }
.about-home .circle-btn svg { overflow: initial; animation: spin 27s infinite linear; }
.about-home .circle-btn svg.svg-hidden { position: absolute; width: 0; height: 0; }
.about-home .circle-btn svg path { fill:none; }
.about-home .circle-btn .btn-text { color:#FFF; width: 71%; height: 71%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.about-home .circle-btn .btn-text text { fill:currentColor; font-size:2em; }

.about-home .image-container .description {
    color: #464f56;
    font-size: 16px;
    font-family: var(--worksans);
    font-weight: 500;
    margin-top: 20px;
    line-height: 24px;
    padding: 10px;
    border-top: 1px solid rgba(77, 74, 73, 0.18);
    background-image: linear-gradient(120deg, rgb(253, 230, 216) 0%, rgb(254, 254, 254) 70%);
	 text-align:left;
}

.about-home .image-container .description:nth-child(2) {
    padding: 10px 10px 10px 60px;
	width:90%; box-sizing:border-box; margin-left:10%;
}

.about-home .image-container .description:nth-child(odd) {
    background-image: none;
}

/* -------------------------------------section-service---------------------- */
.section-service {
    overflow: hidden;
}

.section-service .item-service {
    background: linear-gradient(to right, #fff 4%, #fde7da 50%, #fff 96%);
}

.section-service .item-service .img-medicine {
    display: none;
}

.section-service .header-box {
    background-color: #fff;
}

.section-service .item-service .content-box {
    background-color: transparent;
    border: none;
    margin: 0;
}

.section-service .item-service .content-box .icon {
    background-color: var(--color-button);
	position:relative; border-radius:100%; overflow:hidden;
}
.section-service .item-service .content-box .icon img { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; }

.section-service .item-service .content-box .icon:hover {
    background-color: var(--color-title);
    transition: all 0.5s ease-in-out;
}

.section-service .content-box .content-title:hover a {
    color: var(--color-button);
    transition: all 0.5s ease-in-out;
}

/* --------------------------------section-product----------------------------------- */

.section-product {
    padding: 30px 0;
}

.section-product .header-box {
    background-color: #fff;
}

.section-product .content-box {
    padding: 0;
    border: none;
    padding-bottom: 20px;
}

.section-product .content-box a .cart-product {
    border: none;
    background: #fff;
    cursor: pointer;
}

.section-product .content-box a {
    display: block;
    position: relative;
}

.section-product .content-box a:hover .cart-product {
    transition: all 0.4s ease;
    opacity: 1;
}

.section-product .content-box a .cart-product {
    position: absolute;
    top: 40%;
    left: 44%;
    padding: 5px 8px;
    opacity: 0;
}

.section-product .content-box .icon {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 0;
}

.content-box .icon { overflow:hidden; border-radius:100%; }
.content-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-product .content-box .content-title {
    font-size: 16px;
    font-family: var(--worksans);
    font-weight: 400;
    color: var(--color-title);
}

.section-product .content-box .content-title:hover {
    color: rgb(252, 187, 8);
    transition: all 0.5s ease;
}

.section-product .content-box .description {
    font-size: 18px;
    font-family: var(--worksans);
    font-weight: 700;
    color: var(--color-button);
}

.section-product .item-product-home {
    position: relative;
}

.section-product .item-product-home .slick-arrow {
    position: absolute;
    z-index: 5;
    padding: 7px 10px;
    border: 1px solid #e7e5e5;
    background-color: #fff;
}

.section-product .item-product-home .slick-next {
    right: 0;
    top: 50%;
}

.section-product .item-product-home .slick-prev {
    left: 0;
    top: 50%;
}

.section-product .header-box {
    padding: 50px 0 0 0;
}

.section-product .view-all {
    display: block;
    margin: auto;
    text-align: center;
    width: fit-content;
    background-color: var(--color-button);
    color: #fff;
    padding: 20px 30px;
    font-size: 16px;
    font-family: var(--worksans);
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
}

.section-product .view-all:hover {
    background-color: var(--color-title);
    transition: all 0.5s ease;
}

/* ----------------------------------------------view-price----------------------- */
.view-price {
    padding: 30px 0 0 0;
    background-color: #f5d7c5;
	margin-top:50px; 
}

.view-price .title {
    font-size: 28px;
    font-family: var(--worksans);
    font-weight: 500;
    color: var(--color-title);
    margin: 0;
    padding-top: 15px;
}

.view-price .highlight {
    font-size: 14px;
    font-family: var(--worksans);
    font-weight: 400;
    color: var(--color-button);
}

.view-price .service-box .img-shape {
    text-align: center;
}

.view-price .service-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.view-price .sub-title {
    font-size: 14px;
    font-family: var(--worksans);
    font-weight: 400;
    color: var(--color-button);
    text-align: center;
    font-style: italic;
}

.view-price .section-title {
    font-size: 24px;
    font-family: var(--worksans);
    font-weight: 700;
    color: #121f38;
    margin-top: 15px;
    text-align: center;
}

.view-price .section-title {
    font-size: 24px;
    font-family: var(--worksans);
    font-weight: 700;
    color: #121f38;
    margin-top: 15px;
    text-align: center;
}

.view-price .service-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.view-price .service-list li div {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}


.view-price .price {
    font-weight: bold;
    color: #E67E22;
}

.view-price .service-list li span.title {
    font-size: var(--size);
    font-family: var(--worksans);
    font-weight: 500;
    color: var(--color-title);
}

.view-price .service-list li span.price {
    font-size: var(--size);
    font-family: var(--worksans);
    font-weight: 500;
    color: var(--color-button);
}

.view-price .service-list li span.border {
    border-bottom-style: dotted;
    border-bottom-width: 2px;
    border-bottom-color: #000000;
    margin: 6px;
    flex: 1;
}

.view-price .service-list li .derip-price {
    color: #7A7A7A;
    font-style: italic;
    font-family: var(--worksans);
    font-weight: 400;
    font-size: 12px;
    margin: 0;
    line-height: 1.7;
}

.view-price .image-ceo {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.view-price .image-ceo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* -----------------------------------------------section-post---------------------------- */

.section-post .header-box {
    background: #fff;
}

.section-post .content-box .icon {
    overflow: hidden;
	position:relative;
	height:auto;
	min-height:unset;
}
.section-post .content-box .icon:before { content:""; display:block; width:100%; height:auto; padding-top:52.333%; animation:unset; position:relative; }

.section-post .content-box .icon img {
    transition: all 0.5s ease;
	position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover;
}

.section-post .content-box .icon:hover img {
    transform: scale(1.1);
}

.section-post .content-box .content-title {
    font-size: 28px;
    color: var(--color-title);
    font-weight: 500;
	display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

.section-post .content-box .description {
    font-size: var(--size);
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
    border-bottom: 1px solid rgb(189, 186, 186);
    padding-bottom: 20px;
}

.section-post .content-box .bottom {
    display: flex;
    gap: 10px;
    font-size: var(--size);
    font-family: var(--worksans);
    font-weight: 500;
    color: var(--color-text);
}

.section-post .item-blog-home {
    position: relative;
	max-width:1200px;
	margin:0 auto;
}

.section-post .item-blog-home:hover .slick-arrow {
    opacity: 1;
}

.section-post .item-blog-home .slick-arrow {
    position: absolute;
    z-index: 2;
    border: none;
    background-color: #fde6d8;
    padding: 5px 10px;
    top: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    display: none;
}

.section-post .item-blog-home .slick-next {
    right: -35px;
}

.section-post .item-blog-home .slick-prev {
    left: -35px;
}

/* ----------------------------------------------section-advise--------------------------- */
.section-advise {
    padding: 60px 0;
}

.section-advise .title-adsive {
    font-size: 32px;
    text-align: center;
    font-family: var(--worksans);
    font-weight: 500;
    color: #fff;
}

.section-advise .content .btn {
    display: block;
    width: 170px;
    margin: 5px auto;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    font-family: var(--worksans);

}

.section-advise .content .primary {
    background: var(--color-button);
    padding: 23px 37px;
}

.section-advise .content .primary a {
    color: white;
    text-decoration: none;
}

.section-advise .content .secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--color-button);
    font-family: var(--worksans);
    font-weight: 700;
    font-size: 16px;
    padding: 5px 0;
    margin-top: 20px;
}

.section-advise .content .secondary .icon {
    background-color: var(--color-button);
    padding: 7px 10px;
}

.section-advise .content .secondary a {
    color: var(--color-button);
    text-decoration: none;
}


.section-advise .circle-text {
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    margin: auto;
}

.section-advise .circle-text .arrow {
    display: block;
}

/* -------------------------------------------Footer---------------------------------- */

footer.footer {
    background: #232b31;
    color: #bebebe;
}

.footer .top-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #333;
    padding: 60px 20px 60px 20px;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: var(--color-button);
}

.footer .top-footer .social-icons a {
    border: 1px solid #bebebe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: all 0.5s ease;
}

.footer .top-footer .social-icons a:hover {
    border: 1px solid var(--color-button);
}

.footer .top-footer .social-icons {
    display: flex;
    gap: 10px;
}

.footer .top-footer .logo {
    padding: 20px 0;
}

.footer .top-footer .logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer .top-footer .newsletter {
    display: flex;
}

.top-footer .newsletter input {
    padding-bottom: 20px;
    border: none;
    width: 65%;
    background-color: transparent;
    border-bottom: 1px solid #bebebe;
    font-size: var(--size);
    font-family: var(--worksans);
    color: #bebebe;
    font-weight: 400;
    outline: none;
}

.top-footer .newsletter input::placeholder {
    font-size: var(--size);
    font-family: var(--worksans);
    color: #bebebe;
    font-weight: 400;
}

.top-footer .newsletter .chill-letter {
    display: flex;
    width: 100%;
}

.top-footer .newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.top-footer .newsletter h3 {
    font-size: 20px;
    font-family: var(--worksans);
    font-weight: 700;
}


.top-footer .newsletter button {
    background: var(--color-button);
    border: none;
    color: white;
    cursor: pointer;
    width: 35%;
    font-size: var(--size);
    font-family: var(--worksans);
    font-weight: 500;
    transition: all 0.5s ease;
}

.top-footer .newsletter button:hover {
    background: #fff;
    border: none;
    color: var(--color-button);
    cursor: pointer;
    width: 35%;
    font-size: var(--size);
    font-family: var(--worksans);
    font-weight: 500;
}

.footer .main-footer {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 20px;
}

.main-footer .footer-column {
    width: 100%;
    font-family: var(--worksans);
    font-weight: 400;
    font-size: var(--size);

    position: relative;
}

.main-footer .footer-column.cate {
    width: 50%;
}

.main-footer .footer-column p {
    display: flex;
    align-items: center;
    gap: 10px;
	text-align:left;
	line-height:1.5em;
}

.main-footer .footer-column p span.time {
    color: #fff;
}

.main-footer .footer-column p a {
    text-decoration: none;
    color: #bebebe;
    transition: all 0.5s ease;
	text-align:left;
}

.main-footer .footer-column p a:hover {
    color: var(--color-button);
}

.main-footer .footer-column h3 {
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-family: var(--worksans);
    font-weight: 700;
    padding-bottom: 10px;
	text-align:left; 
}

.main-footer .footer-column h3.time {
    position: unset;
    margin-bottom: 0;
    padding-bottom: 0;
}

.main-footer .footer-column h3::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--color-button);
}

.footer-column ul.list-cate {
    list-style: none;
    padding: 0;
	width:90%;
}

.footer-column ul.list-cate li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
	text-align:left;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bebebe;
    font-size: var(--size);
    font-family: var(--worksans);
    font-weight: 400;
    transition: all 0.5s ease;
	width:calc(100% - 16px);
}

.footer-column ul li a:hover {
    color: var(--color-button);
}

.footer-column p svg { display: inline-block; width: 25px; }

.main-footer .news-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.main-footer .news-item div p {
    margin-top: 0;
}

.main-footer .news-item .days {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-footer .news-item img {
    width: 100%;
    max-width: 70px;
    height: auto;
    margin-right: 10px;
    border-radius: 5px;
}

.main-footer .news-item .days {
    color: #bebebe;
    text-decoration: none;
    font-size: 12px;
}

.main-footer .news-item a {
    color: #bebebe;
    font-size: var(--size);
    font-family: var(--worksans);
    font-weight: 700;
}

.bottom-footer {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    background-color: #1d2429;
}

.bottom-footer a {
    text-align: center;
    font-family: var(--worksans);
    font-weight: 700;
    text-decoration: none;
    color: #bebebe;
    font-size: 13px;
}

#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color-button);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
	width: 55px;
    height: 55px;
    padding: 0;
    line-height: 65px;
}

#scrollToTop:hover {
    background: var(--color-title);
    transform: scale(1.1);
}


/* ---------------------------------------------------------Reponsive------------------------- */
@media (min-width: 576px) {

    /* -----------Banner --------------------- */

    .banner .slider-for .box-slide .content {
        left: 11%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 50%;
    }

    .banner .slider-for .box-slide .content h4 {
        display: block;
        margin: 0;
        margin-right: auto;
    }

    .banner .slider-for .box-slide .content h2 {
        margin-right: auto;
        width: 100%;
        font-size: 2.8em;
		margin-top:10px;
    }

}

@media (min-width: 768px) {
	
.section-instruct.instruct .content-box { height:250px; }
/* .section-instruct.instruct .content-box .description { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; } */

    .open-btn-popup {
        display: block;
    }

    .section-instruct .heading {
        font-size: 40px;
    }

    .section-instruct .content-box {
        margin: 10px;
    }

    .about-home .circle-img {
        top: 0;
    }
	
	.about-home .circle-btn { top:-7px; left:10px; }
	
	.about-home .image-container .description:nth-child(2) { font-size:1.2em; padding-left:30px; }

	.about-home .top-info { font-size:1.2em; }
	.about-home .top-info .badge { font-size:1em; }
	
    .section-service .item-service {
        display: grid;
        grid-template-columns: auto auto;
    }

    .view-price .total-service {
        display: grid;
        grid-template-columns: auto auto;
        gap: 20px;
    }

    .footer .top-footer {
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: unset;
    }

    .header .total-icon .open-btn-popup {
        display: block;
    }
}

@media (min-width: 996px) {
.section-instruct.instruct .content-box { height:300px; }

	.banner .slider-for .slick-arrow { width:60px; height:60px; }
	.banner .slider-for .slick-arrow.slick-prev { margin-top:-2px; }
	
	.banner .slider-for .box-slide .content { top:50%; }
	
    .banner .slider-for .box-slide .content .deription {
        display: block;
        font-size: var(--size);
        font-weight: 400;
        font-family: var(--worksans);
        color: rgb(85, 85, 85);
		text-align:left; 
    }

    .banner .slider-for .box-slide .content {
        width: 36%;
		max-width:400px;
    }

    .banner .slider-for .box-slide .content h2 {
        margin: 0;
        padding-top: 20px;
		margin-left:-10px;
		font-size:3em;
    }

    .header .menu-toggle svg {
        display: none;
    }

    .header .menu-toggle a {
        display: block;
        white-space: nowrap;
        padding: 10px 15px;
        color: #fff;
        font-family: var(--worksans);
        font-weight: 500;
    }

    .header .menu-toggle:hover {
        background-color: var(--color-title);
    }

    .header #menu-main {
        height: auto;
        position: unset;
        width: 100%;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .header #menu-main .mobile-logo {
        display: none;
    }

    .header #menu-main .menu {
        display: flex;
        align-items: center;
        gap: 20px;
        border: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        justify-content: center;
    }

    .header .cart-icon {
        margin: 0;
    }

    .header #menu-main .menu li.item .submenu {
        display: block;
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s;
        width: fit-content;
        padding: 0;
        margin: 0;
        min-width: 190px;
        background-color: #fffffe;
        top: 56px;
        left: -20px;
        border-bottom: 2px solid var(--color-button);
    }

    .header #menu-main .menu li a {
        text-transform: uppercase;
        transition: all 0.5s ease;
    }


    .header #menu-main .menu li.item .submenu li {
        white-space: nowrap;
        border: none;
        padding: 12px;
    }

    .header #menu-main .menu li.item .submenu li a {
        white-space: nowrap;
        text-transform: uppercase;
        font-size: 14px;
    }



    .header #menu-main .menu li.item.has-menu:hover .submenu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .header #menu-main .menu li.item {
        border: none;
    }

    .header #menu-main .menu li.item svg {
        display: none;
    }

    .header #menu-main .menu li.item svg {
        display: none;
    }

    .header #menu-main .menu li.item a {
        font-size: 16px;
        font-family: var(--worksans);
        color: var(--color-title);
        font-weight: 500;
    }

    .about-home .container {
        display: flex;
        align-items: flex-start;
        gap: 20px;
		max-width:1520px;
    }

    .overlay {
        display: none;
    }

    .section-service .item-service {
        grid-template-columns: auto auto auto;
    }

    .view-price .title {
        text-align: center;
    }

    .view-price .highlight {
        text-align: center;
    }

    .view-price .row-service {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-end;
		max-width:1520px;
    }

    .view-price .total-service {
        padding-bottom: 30px;
    }

    .section-advise .content .btn-register {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .section-advise .content .btn-register .btn:hover {
        background-color: var(--color-title);
    }

    .section-advise .content .btn-register .secondary:hover a {
        color: #fff;
    }

    .section-advise .content .btn {
        margin: 0;
        transition: all 0.5s ease;
    }

    .section-advise .content .secondary {
        padding: 13px 0;
    }

    .footer .top-footer {
        flex-wrap: unset;
        padding: 0 40px;
    }

    .top-footer .newsletter {
        width: auto;
    }

    .footer .top-footer .social-icons {
        width: 30%;
    }

    .footer .top-footer .logo {
        width: 30%;
        border-left: 1px solid var(--color-button);
        border-right: 1px solid var(--color-button);
        padding: 40px 0;
        text-align: center;
    }

    .footer .top-footer .newsletter {
        width: 30%;
    }

    .footer .main-footer {
        flex-wrap: unset;
        padding: 30px 40px;
    }

    .section-service .item-service .img-medicine {
        display: block;
    }

    .banner .slider-for .box-slide .content h2 {
        font-size: 3.2em;
    }
	
	.about-home .heading { text-align:left; }
	
	.about-home .circle-btn { top:6px; left:0; }
	
	.about-home .image-container .description:nth-child(2) { padding-left:50px; }
	
	.instruct .instruct-slider { max-width:1520px; margin:0 auto; }
	.section-instruct { background:unset; }
	.section-instruct .content-box .description { max-width:300px; margin:0 auto; }
	.section-instruct.section-post .content-box .description { max-width:unset; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; padding-bottom:0; border:0; }
	.section-instruct.section-post .content-box .bottom { border-top:1px solid #DDD; margin-top:10px; }
	
	.section-service .item-service { position:relative; }
	.section-service .item-service .img-medicine { position:absolute; top:0; left:50%; transform:translateX(-50%); z-index:10; }
	.section-service .item-service { display:flex; flex-direction:row; flex-wrap:nowrap; background:unset; }
	.section-service .item-service .service-left, .section-service .item-service .service-right { width:50%; }
	.section-service .item-service .service-left { border-top-right-radius:30%; border-bottom-right-radius:30%; background:linear-gradient(to right, #fff 30%, #fde7da 100%); }
	.section-service .item-service .service-right { border-top-left-radius:30%; border-bottom-left-radius:30%; background:linear-gradient(to right, #fde7da 0%, #fff 70%); }
}

@media (min-width: 1024px) {

    .banner .slider-for .box-slide .content {
        width: 36%;
        left: 13%;
    }

    .section-post .item-blog-home .slick-arrow {
        display: block;
    }
}

@media (min-width:1200px){
	
.section-instruct.instruct .content-box { height:280px; }

	.about-home .img-about .box-img { width:80%; height:auto; margin:0 auto; }
	
	.section-service .item-service { max-width:1520px; margin:0 auto; }
}

@media (min-width:1400px){
	.banner .slider-for .box-slide .content { left:calc(50% - 727px); font-size:1.5em; }
	.banner .slider-for .slick-prev { left:calc(50% - 722px); }
	.banner .slider-for .slick-next { right:calc(50% - 722px); }
	
	.banner .slider-for .box-slide .content .deription { font-size:1.1em; }
	
	.about-home .circle-btn { top:-8px; left:10px; }
	
	.section-service .item-service .content-box { width:100%; max-width:600px; display:inline-block; }
	.section-service .item-service .service-right { text-align:right; }
	.section-service .item-service .service-right { text-align:left; }
}

@media (min-width:1600px){
	.banner .slider-for .slick-prev { left:calc(50% - 800px); }
	.banner .slider-for .slick-next { right:calc(50% - 800px); }
}