@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100;200;300;400;500;600;700&family=Gulzar&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --text-color-primary: #fcb814;
    --text-color: #fff;
    --block-height: 190px;
    --color-primary: #04747c;
    --height-header: 80px;
    --color-green: #00A539;
    --color-light-bl: #5795C4;
    --color-blue: #30639A;
    --color-red: #BE4031;
    --color-yellow: #F7C100;

}

.bg_primary {
    background: #fff;
    padding: 30px 0;
}

.bg_ladi {
	background: #f5f5f5;
	padding: 30px 0;
}

html {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
}

.heading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background: #043a3e;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
}

.header__banner {
	margin-top: var(--height-header);
}

.header__banner img {
    width: 100%;
}

.header__nav-with-logo {
	width: 70px;
}

.header__nav-with-logo img {
	width: 100%;
}

.header__contact-link {
    text-decoration: none;
}

.header__nav-contact {
    background: var(--color-primary);
    padding: 4px 20px;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
}

.header__nav-drop-list {
    position: absolute;
    min-width: 230px;
    background: #fff;
    display: none;
    transition: 0.2s;
}

.header__nav-item:hover .header__nav-drop-list {
    display: block;
    animation: sideDown 0.2s linear;
}

.header__nav-with-logo {
    display: flex;
    align-items: center;
}



.header__nav-logo {
    width: 50px;
}

.header__nav-logo-link {
    width: 100%;
}

.header__nav-logo-title {
    margin-left: 8px;
    color: var(--text-color);
}

.header__nav-logo-name {
    text-transform: uppercase;
    border-bottom: 1px solid var(--text-color);
    font-weight: bold;
}

.header__nav-logo-desc {
    font-style: italic;
}

.header__navbar {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}

.header__navbar-list,
.header__navbar-item,
.header__navbar-cart,
.header__nav,
.header__nav-list {
    display: flex;
    align-items: center;
}

.header__nav-list {
	margin: 0;
	padding: 0;
}

.header__navbar-item {
    padding: 0 12px;
}

.header__navbar-item-desc,
.header__navbar-cart-quantity {
    padding: 0 6px;
    font-weight: 500;
    color: var(--text-color);
}


.header__navbar-item-icon,
.header__navbar-cart-icon {
    color: var(--text-color-primary);
}

.header__nav {
    justify-content: space-between;
    padding: 6px 12px;
}


.header__nav-item {
    position: relative;
    list-style: none;
}

.header__nav-list-icon-close {
    display: none;
}

.header__nav-drop-list .header__nav-item {
    padding: 10px 12px;
}

.header__nav-drop-list .header__nav-item-link {
    color: #000;
}

.header__nav-item-link {
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-color);
    line-height: 50px;
    text-decoration: none;
}

.header__nav-item-link:hover {
    color: var(--text-color-primary);
}

.header__nav-item-icon {
    color: var(--text-color);
}

.header__nav-bars {
    display: none;
}

.header__nav-control {
    display: flex;
    align-items: center;
}

.header__nav-control-contact {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    margin: 0 12px;
    display: none;
    justify-content: center;
    align-items: center;
    color: var(--color-primary)
}

.block__wrap-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block__with-title {
    position: relative;
    display: inline-block;
}

.block__title {
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 500;
}

.block__with-title::before {
    position: absolute;
    content: "";
    width: 80%;
    top: 100%;
    left: 0;
    border-bottom: 3px solid var(--text-color-primary);
}

.block__view {
    text-decoration: none;

}

.view__more {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
}

.block__list,
.intro__item-content {
    margin-top: 24px;
}

.block__item {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: 0.2s;
    border-bottom: 1px solid var(--color-primary);
}

.block__item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* .block__list:hover .block__item:not(:hover) {
    transform: scale(0.98);
} */

.block__item-thumb {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.block__item-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block__item-content {
    padding: 12px;
}

.block__item-name {
    color: var(--color-primary);
    font-weight: 500;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.block__item-desc {
    color: #000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    padding-top: 6px;
}

.block__item-name,
.block__item-desc {
    margin: 0;
}

.block__item-link {
    text-decoration: none;
}

.intro__item-thumb {
    width: 50%;
    height: 350px;
    overflow: hidden;
    margin: 0 auto;
    padding: 12px;
    background: #eeeced;
    border-top-left-radius: 130px;
    border-top-right-radius: 130px;
}

.intro__item-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.intro__item-desc {
    margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 12;
	overflow: hidden;
}

.news__item {
    padding: 12px;
    background: #eeeced;
    border-radius: 5px;
    position: relative;
}

.news__item-thumb {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.news__item-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__item-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #eeeced;
    padding: 4px 10px;

}

.news__item-name {
    margin: 0;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.news__item,
.block__item {
    margin-bottom: 12px;
}

.review__item {
    display: grid;
    grid-template-columns: 30% 65%;
    grid-columns: 5%;
    cursor: pointer;
}

.review__item-thumb {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.review__item-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review__item-name {
    color: var(--color-primary);
    margin-bottom: 4px;
    font-weight: 500;
}

.quote__item {
    margin-bottom: 20px;
}

.quote__item-header {
    font-weight: 500;
}

.quote__item-title {
    background: var(--color-primary);
}

.quote__item-title-name {
    text-align: left;
    color: #fff;
    text-transform: uppercase;
}

.main__footer {
    padding: 12px 0 0;
    background: var(--color-primary);
    text-align: center;
}

.footer__item {
	background: #f5f5f5;
	padding: 6px 10px;
}

.footer__item-desc,
.footer__item-link {
    color: #000
}

.footer__ladi {
	text-align: center;
}

.footer__thumb {
	width: 80px;
	margin: 0 auto;
}

.footer__info {
	color: #fff;
}


.footer__thumb img {
	width: 100%;
}

.details__item {
    background: #f5f5f5;
    padding: 15px;
}

.details__item-thumb {
    overflow: hidden;
}


.details__item img {
    width: 60%;
    height: 400px;
    margin: 0 auto;
    object-fit: cover;
}

.details__item-title {
    color: var(--color-primary);
    font-weight: 500;
	text-transform: capitalize;

}

.details__item-content {
    margin: 12px 0 0;
}

.header__nav-bars .icon-close {
	display: none;
}


.contact__with-zalo {
    position: fixed;
    bottom: 32%;
    left: 2%;
    z-index: 90000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact__zalo-link,
.contact__phone-link,
.contact__face-link {
    width: 60px;

}

.contact__zalo-link-icon,
.contact__phone-link-icon,
.contact__face-link-icon {
    width: 100%;
    animation: rotateRight infinite ease 0.9s;
}



.contact__with-move-zalo::before {
    position: absolute;
    content: "";
    z-index: -1;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.5);
    animation: zoomIn infinite 0.9s;
}

.contact__with-move-zalo::after {
    position: absolute;
    content: "";
    z-index: -1;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.2);
    animation: zoomIn2 infinite 0.9s;
}

.contact__with-phone {
    position: fixed;
    bottom: 20%;
    left: 2%;
    z-index: 90000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    border-radius: 50%;
    width: 55px;
    height: 55px;
}

.contact__with-move-phone::before {
    position: absolute;
    content: "";
    z-index: -1;
    border-radius: 50%;
    background: rgba(255, 243, 14, 0.5);
    animation: zoomIn infinite 0.9s;
}

.contact__with-move-phone::after {
    position: absolute;
    content: "";
    z-index: -1;
    border-radius: 50%;
    background: rgba(253, 223, 89, 0.2);
    animation: zoomIn2 infinite 0.9s;
}

.contact__with-facebook {
    position: fixed;
    bottom: 8%;
    left: 2%;
    z-index: 90000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 55px;
    height: 55px;
}



.contact__with-move-face::before {
    position: absolute;
    content: "";
    z-index: -1;
    border-radius: 50%;
    background: rgba(1, 225, 250, 0.5);
    animation: zoomIn infinite 0.9s;
}

.contact__with-move-face::after {
    position: absolute;
    content: "";
    z-index: -1;
    border-radius: 50%;
    background: rgba(45, 251, 248, 0.2);
    animation: zoomIn2 infinite 0.9s;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        width: 60px;
        height: 60px;
    }
    50% {
        opacity: 1;
        width: 80px;
        height: 80px;
    }
    100% {
        opacity: 0;
        width: 60px;
        height: 60px;
    }
}
@keyframes zoomIn2 {
    0% {
        opacity: 0;
        width: 60px;
        height: 60px;
    }
    50% {
        opacity: 1;
        width: 100px;
        height: 100px;
    }
    100% {
        opacity: 0;
        width: 80px;
        height: 80px;
    }
}

@keyframes rotateRight {
    0% {
        transform: rotate(0)
    }
    50% {
        transform: rotate(45deg)
    }
    100% {
        transform: rotate(0)
    }
}

@media (min-width: 1024px) {

    .header__nav-background {
        display: flex;
        width: 80%;
        justify-content: space-between;
    }
    .header__nav-list {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 20%;
    }
}


@media (max-width: 1023px) {
    /* .header__nav-list {
        position: fixed;
        flex-direction: column;
        top: 0;
        left: 0;
        height: 100vh;
        background: #fff;
        animation: sideRightMenu 0.4s ease;
    } */

     .header__nav-background {
        width: 100%;
        display: none;
    } 


    .header__nav {
        flex-direction: column;
    }

    .header__nav-with-tm {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .header__nav-list {
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .header__nav-item-link {
        line-height: 40px
    }


    .header__nav.open_menu .header__nav-background{
        display: block;
    }
	
	
	
	.open_menu .icon-close {
		display: block;
	}
	
	.open_menu .icon-bar {
		display: none;
	}
	

    .header__nav-bars {
        display: block;
    }

    .header__nav-list {
        padding: 0 12px;
    }

    .header__nav-list-icon-close {

    }

    .header__nav-item-link {
        color: #000;
        width: 100%;
    }

    .header__nav-list-icon-close {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        background: var(--color-primary);
    }

    .icon-close {
        color: var(--text-color);
        font-size: 16px;
    }

    .header__nav-bars {
        background: #fff;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        cursor: pointer;
    }

    .header__nav-bars-icon {
        color: var(--color-primary);
    }

    .header__nav-control-contact {
        display: flex;
    }

    .contact__menu {
        display: none;
    }

    .details__item img {
        width: 100%;
    }
	
	
	
	.header__nav-item {
		width: 100%;
	}
	
	.header__nav-item-link {
		color: #fff;
	}

	.intro__item {
		margin-bottom: 12px;
	}
	.intro__item-thumb {
		border-top-left-radius: 170px;
		border-top-right-radius: 170px;
	}
}

@media (min-width: 740px) and (max-width: 1023px) {
    
}

@media (max-width: 739px) { 
    .block__item-thumb {
		height: 180px;
	}
	
	.intro__item-thumb {
		width: 90%;
		height: 400px;
	}
	
	.details__item img {
		height: 500px;
	}
	
}