/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
html {
	font-size: 10px;
	overflow-x: hidden;
}

html.is-locked {
	overflow-y: hidden;
}

:root {
	--container: 100%;
	--container-gutter: 10px;
	--gutter: 3px;
	--container-fluid: 100%;
	--heading-1: 2.2rem;
	--heading-2: 2.2rem;
	--heading-3: 3.0rem;
	--heading-4: 1.8rem;
	--heading-5: 1.4rem;
	--heading-6: 1.1rem;
	--font-size-body: 1.4rem;
	--bg-primary: white;
	--bg-second: #444;
	--bg-header-top: #f77b13;
	--bg-1: #f77b13;
	--bg-2: #80b93f;
	--bg-3: #f77b13;
	--bg-4: cornsilk;
	--bg-5: #f77b13;
	--bg-6: #80b93f;
	--bg-7: rgba(189, 165, 136, .1);
	--bg-10: #cccccc;
	--bg-11: #f77b13;
	--color-primary: white;
	--color-second: black;
	--color-main: #80b93f;
	--color-main2: #f77b13;
	--color-1: #f77b13;
	--color-2: #80b93f;
	--color-3: #f77b13;
	--color-4: cornsilk;
	--color-5: #f77b13;
	--color-6: #80b93f;
	--color-7: #a5adb3;
	--color-border: #e6e6e6;
	--color-border-2: #f77b13;
	--font-heading-family:"Inter", sans-serif;
	--font-body-family:"Inter", sans-serif;
	--font-family:"Inter", sans-serif;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {
	:root {
		--container: 830px;
		--gutter: 7px;
	}
}

@media (min-width: 992px) {
	:root {
		--container: 1100px;
		--heading-1: 2.8rem;
		--heading-2: 2.4rem;
		--heading-3: 3.0rem;
		--heading-4: 2.2rem;
		--heading-5: 1.4rem;
		--heading-6: 1.1rem;
		--font-size-body: 1.6rem;
		--container-gutter: 10px;

	}
}

@media (min-width: 1200px) {
	:root {
		--container: 1200px;

	}
}

@media (min-width: 1500px) {
	:root {
		--container: 1280px;
	}
}


/*------------------------------------*/
/* CHANG-DEFAULT */
/*------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	 font-optical-sizing: auto;
	font-size: var(--font-size-body);
	font-family: var(--font-body-family);
	background: var(--bg-primary);
	color: var(--color-second);
	line-height: 1.6;
	font-weight: 400;

}

img {
	max-width: 100%;
	object-fit: cover;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #e27246;
}

a:hover {
	color: var(--color-2);
	text-decoration: none !important;
}

p:not(:last-child) {
	/* margin-bottom: 10px; */
}

input {
	border: 0;
}

label {
	font-weight: bold;
	display: block;
	font-size: 14px;
	margin-bottom: 0.4em;
}

.circle {
	border-radius: 100%;
}

/*------------------------------------*/
/* #CONTAINER */
/*------------------------------------*/
.ctnr {
	padding: 0 var(--container-gutter);
	margin: 0 auto;
	max-width: var(--container);
}

.ctnr-fluid {
	padding: 0 10px;
	margin: 0 auto;
	max-width: var(--container-fluid);
}

/*------------------------------------*/
/* #FONT */
/*------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.healine {
	margin: 0;
	word-break: break-word;
	line-height: 1.3;
	font-weight: 700;
	font-family: var(--font-heading-family);
}

.h1,
h1 {
	font-size: 25px;
}

.h2,
h2 {
	font-size: 20px;
}

.h3,
h3 {
	font-size: 18px;
}

.h4,
h4 {
	font-size: 15px;
}

.h5,
h5 {
	font-size: var(--heading-5);
}

.h6,
h6 {
	font-size: var(--heading-6);
}

.tt-up {
	text-transform: uppercase;
}

.tt-cap {
	text-transform: capitalize;
}

.td-none {
	text-decoration: none;
}

.td-underline {
	text-decoration: underline;
}

.fw-400 {
	font-weight: 400;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

/*------------------------------------*/
/* #BUTTON */
/*------------------------------------*/
.btn,
button {
	cursor: pointer;
	border: 0;
	padding: 10px 20px;
	font-family: var(--font-body-family);
	font-weight: var(--font-heading-weight);
	transition: all .3s ease;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: inherit;
	word-break: break-all;
	font-size: var(--heading-6);
	background-color: transparent;
}

.btn-primary {
	color: var(--color-primary);
	background: var(--bg-second);
	border: 2px solid var(--bg-primary);

}

.btn-second {
	color: var(--color-second);
	background: transparent;
	border: 2px solid var(--bg-second);
}

/*------------------------------------*/
/* #HEIGHT */
/*------------------------------------*/
.h-100 {
	height: 100%;
}

.h-100v {
	height: 100vh;
}

.mah-100 {
	max-height: 100%;
}

.mah-100v {
	max-height: 100vh;
}

.h-500p {
	height: 500px;
}

.h-auto {
	height: auto;
}

/*------------------------------------*/
/* #WIDTH */
/*------------------------------------*/
.w-100 {
	width: 100%;
}

.w-100v {
	width: 100vw;
}

.w-auto {
	width: auto;
}

.maw-100 {
	max-width: 100%;
}

.miw-100 {
	min-width: 100%;
}

/*------------------------------------*/
/* #DISPLAY */
/*------------------------------------*/
.d-block {
	display: block;
}

.d-inline-block {
	display: inline-block;
}

.d-inline-flex {
	display: inline-flex;
}

.d-flex {
	display: flex;
}

.d-grid {
	display: grid;
}

.d-none {
	display: none;
}

/*------------------------------------*/
/* #DISPLAY-FLEX */
/*------------------------------------*/
.flex-1 {
	flex: 1;
}

.fg-1 {
	flex-grow: 1;
}

.fs-0 {
	flex-shrink: 0;
}

.fw-wrap {
	flex-wrap: wrap;
}

.fw-nowrap {
	flex-wrap: nowrap;
}

.fd-row {
	flex-direction: row;
}

.fd-row-reverse {
	flex-direction: row-reverse;
}

.fd-column {
	flex-direction: column;
}

.fd-column-reverse {
	flex-direction: column-reverse;
}

.js-between {
	justify-content: space-between;
}

.js-around {
	justify-content: space-around;
}

.js-center {
	justify-content: center;
}

.js-right {
	justify-content: right;
}

.js-left {
	justify-content: left;
}

.ai-flex-start {
	align-items: flex-start;
}

.ai-flex-end {
	align-items: flex-end;
}

.ai-center {
	align-items: center;
}

.ai-end {
	align-items: end;
}

/*------------------------------------*/
/* #TEXT-ALIGN */
/*------------------------------------*/
.ta-left {
	text-align: left;
}

.ta-right {
	text-align: right;
}

.ta-center {
	text-align: center;
}

/*------------------------------------*/
/* #POSITION */
/*------------------------------------*/
.p-relative {
	position: relative;
}

.p-absolute {
	position: absolute;
}

.p-fixed {
	position: fixed;
}

.p-sticky {
	position: sticky;
}

.top-0 {
	top: 0;
}

.left-0 {
	left: 0;
}

.right-0 {
	right: 0;
}

.bottom-0 {
	bottom: 0;
}

.bottom-16 {
	bottom: 16px;
}

.middle-y {
	top: 50%;
	transform: translateY(-50%);
}

.middle-x {
	left: 50%;
	transform: translateX(-50%);
}

/*------------------------------------*/
/* #BORDER */
/*------------------------------------*/
.border-0 {
	border: 0;
}

.border-1 {
	border: 1px;
}

.border-2 {
	border: 2px;
}

.border-3 {
	border: 3px;
}

/*------------------------------------*/
/* #OVERLAY*/
/*------------------------------------*/
.overlay::after,
.overlay-white::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

}

.overlay::after {
	background-color: black;
	opacity: .3;
}

/*------------------------------------*/
/* #ROW-COLUMN */
/*------------------------------------*/
.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0px calc(-1 * var(--gutter));
}

.clm {
	flex: 1 0 auto;
	padding: 0px var(--gutter);
}

[style*="--w-xs"] {
	width: calc(100%/12 * var(--w-xs));
	max-width: calc(100%/12 * var(--w-xs));
}

/*  */
.white-space-nowrap {
	white-space: nowrap;
}

.overflow-x-auto {
	overflow-x: auto;
}

@media (min-width: 576px) {
	[style*="--w-sm"] {
		width: calc((100%/12) * var(--w-sm));
		max-width: calc((100%/12) * var(--w-sm));
	}
}

@media (min-width: 768px) {
	[style*="--w-md"] {
		width: calc((100%/12) * var(--w-md));
		max-width: calc((100%/12) * var(--w-md));
	}
}

@media (min-width: 992px) {
	[style*="--w-lg"] {
		width: calc((100%/12) * var(--w-lg));
		max-width: calc((100%/12) * var(--w-lg));
	}
}

@media (min-width: 1200px) {
	[style*="--w-xl"] {
		width: calc((100%/12) * var(--w-xl));
		max-width: calc((100%/12) * var(--w-xl));
	}

	.col-xl-2dot4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 1500px) {
	[style*="--w-xxl"] {
		width: calc((100%/12) * var(--w-xxl));
		max-width: calc((100%/12) * var(--w-xxl));
	}

	.col-xl-2dot4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

/*------------------------------------*/
/* #GRID */
/*------------------------------------*/
[style*="--gap-xs"] {
	gap: var(--gap-xs);
}

[style*="--gc-xs"] {
	grid-column: var(--gc-xs);
}

[style*="--gr-xs"] {
	grid-row: var(--gr-xs);
}

[style*="--gtc-xs"] {
	grid-template-columns: repeat(var(--gtc-xs), 1fr);
}

[style*="--gtr-xs"] {
	grid-template-rows: repeat(var(--gtr-xs), 1fr);
}

@media (min-width: 576px) {
	[style*="--gc-sm"] {
		grid-column: var(--gc-sm);
	}

	[style*="--gr-sm"] {
		grid-row: var(--gr-sm);
	}

	[style*="--gtc-sm"] {
		grid-template-columns: repeat(var(--gtc-sm), 1fr);
	}

	[style*="--gtr-sm"] {
		grid-template-rows: repeat(var(--gtr-sm), 1fr);
	}
}

@media (min-width: 768px) {
	[style*="--gap-md"] {
		gap: var(--gap-md);
	}

	[style*="--gc-md"] {
		grid-column: var(--gc-md);
	}

	[style*="--gr-md"] {
		grid-row: var(--gr-md);
	}

	[style*="--gtc-md"] {
		grid-template-columns: repeat(var(--gtc-md), 1fr);
	}

	[style*="--gtr-md"] {
		grid-template-rows: repeat(var(--gtr-md), 1fr);
	}
}

@media (min-width: 992px) {
	[style*="--gap-lg"] {
		gap: var(--gap-lg);
	}

	[style*="--gc-lg"] {
		grid-column: var(--gc-lg);
	}

	[style*="--gr-lg"] {
		grid-row: var(--gr-lg);
	}

	[style*="--gtc-lg"] {
		grid-template-columns: repeat(var(--gtc-lg), 1fr);
	}

	[style*="--gtr-lg"] {
		grid-template-rows: repeat(var(--gtr-lg), 1fr);
	}
}

@media (min-width: 1200px) {
	[style*="--gap-xl"] {
		gap: var(--gap-xl);
	}

	[style*="--gc-xl"] {
		grid-column: var(--gc-xl);
	}

	[style*="--gr-xl"] {
		grid-row: var(--gr-xl);
	}

	[style*="--gtc-xl"] {
		grid-template-columns: repeat(var(--gtc-xl), 1fr);
	}

	[style*="--gtr-xl"] {
		grid-template-rows: repeat(var(--gtr-xl), 1fr);
	}
}

@media (min-width: 1400px) {
	[style*="--gc-xxl"] {
		grid-column: var(--gc-xxl);
	}

	[style*="--gr-xxl"] {
		grid-row: var(--gr-xxl);
	}

	[style*="--gtc-xxl"] {
		grid-template-columns: repeat(var(--gtc-xxl), 1fr);
	}

	[style*="--gtr-xxl"] {
		grid-template-rows: repeat(var(--gtr-xxl), 1fr);
	}
}


/* hidden */
.hidden {
	display: none !important;
}

.hidden-xs {
	display: none !important;
}

@media (min-width: 576px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.hidden-md {
		display: none !important;
	}
}

@media (min-width: 992px) {
	.hidden-lg {
		display: none !important;
	}
}

@media (min-width: 1023px) {
	.hidden-tb {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-xl {
		display: none !important;
	}
}

@media (min-width: 1500px) {
	.hidden-xxl {
		display: none !important;
	}
}

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee__inner {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 12s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

header ul li {
    list-style: none;
}

header ul li a {
    display: flex;
}

.header-nav {
    padding: 5px 0;
    background: #24235c;
    color: #FFF;
}

.header-nav ul li img {
    width: 20px;
}

.header-nav .left {
    font-size: 15px;
}

.header-nav .tt-contact ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
}

.header-nav .tt-contact ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.header-nav .tt-contact ul li strong {
    margin-right: -3px;
}

.social-icon ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.header-nav .right {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: right;
    align-items: center;
}

.header-menu {
    background-color: #e1201f;

    padding: 0;

    @media (min-width: 992px) {
        color: #fff;
    }
}

#page-home .header-menu {
    padding-top: 0;
}

.header-menu ul li {
    list-style: none;
    position: relative;
}

.logo img {
    max-width: 110px;
}

.menu .level1 {
    display: flex;
    gap: 30px;
    align-items: center;
    font-family: var(--font-family2);
}

.menu .item-level1.active .name-level1 {
    background-color: unset;
    color: #fed627;
    font-weight: 600;
}

.menu .item-level1 .name-level1 {
    display: inline-flex;
    padding: 13px 5px;
    border-radius: 4px;

    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;

    @media (min-width: 1250px) {
        color: #fff;
    }
}

.menu .item-level1 .name-level1:hover {
    background-color: unset;
    color: #fed627;
}

.menu .name-level1 {
    color: #333;
    font-size: 18px;
}

.icon-arrow svg {
    width: 19px;
    height: 19px;
}

.name-level1>.icon-arrow svg path {
    stroke: #fff;
}


.header-right ul li img,
.header-right ul li svg {
    width: 15px;
    height: 15px;
}

.header-right ul li a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.062745098);
    border-radius: 50%;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    position: relative;
    z-index: 1;
}

.header-right ul li a::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: #65442b;
    opacity: 0.06;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: -1;
}

.header-right ul li a:hover:after {
    opacity: 1;
    transform: scale(1);
}

.level2 {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* min-width: 200px; */
    padding: 5px 0;
    display: none;
    z-index: 10;
    border-radius: 0;
    width: max-content;
    max-width: 260px;
}

.level2 .item-level2 {
    padding: 5px 10px;
}

.name-level2 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
}

.name-level2 .icon-arrow {
    transform: rotate(-90deg);
}

.level3 {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    z-index: 10;
    background-color: #FFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    min-width: 200px;
    padding: 5px 0;
    border-radius: 5px;
}

.level3 .item-level3 {
    padding: 5px 10px;
}

.header-right ul {
    display: flex;
    gap: 10px;
}

.header-right .icon-menu-m {
    display: none;
}

.header-right .icon-menu-m svg {
    width: 25px;
    height: 25px;
}

.header-right {
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.header-menu .inner {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.title-wrap {
    margin-bottom: 20px;
    text-align: center;
}

.title-wrap .sub-title {
    text-transform: uppercase;
    color: #000;
    margin-bottom: 5px;
    font-weight: 500;
}

.title-page {
    font-size: 32px;
    font-weight: 700;
    color: #24235c;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0;
}

.title-page::before {
    display: none;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 125px;
    height: 3px;
    background-color: #ff3130;
}

.header-menu.affix {
    width: 100%;
    top: 0;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.15);
    animation: slide-down .5s linear forwards;
    z-index: 101;
    padding: 0px 0 !important;
}

.icon-menu-pc svg {
    width: 20px;
    height: 20px;
}

.icon-menu-pc {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #65442b;
    color: #FFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #65442b;
}

.icon-menu-pc:hover {
    background-color: #FFF;
    color: #65442b !important;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #00000080;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 102;
    transition: .3s ease-in-out;
    visibility: hidden;
}

.overlay.active {
    opacity: 1;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    visibility: visible;
}

.box-box {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #7b5734;
    top: 0;
    left: 0;
    z-index: 103;
    transform: translateX(-100%);
    opacity: 0;
    max-width: 470px;
    transition: .3s cubic-bezier(.12, .67, .53, 1);
    visibility: hidden;
}

.box-box.right {
    left: unset;
    right: 0;
    transform: translateX(100%);
}

.box-box.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.box-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
}

.box-title .title {
    font-size: 20px;
    text-transform: uppercase;
    color: #FFF;
}

.box-title .close {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-title .close svg {
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: block;
}

.box-title .close svg path {
    fill: #FFF;
}

#box-content .info-content {
    height: calc(100vh - 72px);
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 32px 40px;
    color: #FFF;
    overflow: auto;
}

#box-content .info-content .top>img {
    display: block;
    margin-bottom: 15px;
}

#box-content .info-content .top .text {
    margin-bottom: 25px;
}

#box-content .info-content .top .text p {
    font-size: 15px;
}

#box-content .info-content .top ul {
    display: flex;
    gap: 15px;
    align-items: center;
}

#box-content .info-content .top ul li {
    list-style: none;
}

#box-content .info-content .contact .icon {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

#box-content .info-content .contact .icon .img-wrap {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff14;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#box-content .info-content .contact .icon img {
    width: 18px;
    object-fit: contain;
}

#box-content .info-content .contact .location img {
    width: 12px;
}

#box-content .info-content::-webkit-scrollbar {
    width: 5px;
}

#box-content .info-content::-webkit-scrollbar-thumb {
    background: #65442b;
    border-radius: 5px;
}

#box-content .header-right {
    gap: 15px;
    margin-top: 20px;
}

#box-content .header-right h3 {
    width: 100%;
    font-size: 16px;
}

.menu .header-right {
    display: none;
}

.icon-arrow {
    display: flex;
}

.modal-overlayyy {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 101;
    justify-content: center;
    align-items: center;
    /* display: flex; */
}

.modal-overlayyy .modal-content {
    background: #fff;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
    animation: fadeIn 0.3s ease;
    position: relative;
}

.modal-overlayyy .modal-content form {
    padding: 50px 25px 25px 25px;
    text-align: center;
}

.modal-overlayyy .modal-content .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.modal-overlayyy .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.modal-overlayyy .modal-content h2 {
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}

.modal-overlayyy .close-btn-modal {
    padding: 0;
    position: absolute;
    top: -40px;
    right: 0px;
    background: #000;
    border-radius: 50%;
    color: #FFF;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-overlayyy .close-btn-modal svg {
    width: 20px;
    height: 20px;
}

.modal-overlayyy .form-group {
    margin-bottom: 15px;
}

.modal-overlayyy input,
.modal-overlayyy select,
.modal-overlayyy textarea {
    color: #333;
    padding: 10px;
    border: 1px solid #ebe6e7;
    height: 46px;
    width: 100%;
    resize: none;
    font-size: 15x;
    font-family: inherit !important;
    border-radius: 5px;
}

.stop-scroll {
    height: 100%;
    overflow: hidden;
}

.logo a {
    display: flex;
}

.header_logo {
    padding: 5px 0;
}

.logo_text {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #24235c
}

.logo_text h2 {
    color: #f00;
    font-size: 27px;
    font-weight: 400;
    font-family: "Anton", sans-serif;
}

.btn_right {
    text-align: center;
}

.header-menu .logo {
    display: none;
}

.header-menu-text {
    flex: 1;
    color: #333;
    font-size: 12px;

    @media (max-width: 767px) {
        text-align: left;
    }

    h2 {
        color: #ed1936;
        font-size: 16px;
    }
}





@keyframes fadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (min-width: 1250px) {

    .close-menu-mb,
    .logo-menu,
    .menu .item-level1 .name-level1 img,
    .svg-icon {
        display: none;
    }

    .item-level1:hover .level2 {
        display: block;
    }

    .item-level2:hover .level3 {
        display: block;
    }

}

@media (min-width: 768px) {
    .header-top {
        display: none;
    }
}

@media (max-width: 1250px) {
    .menu .item-level1.active .name-level1 {
        background-color: transparent;
    }

    .menu .header-right {
        display: block;
        margin-top: 20px;
    }

    .menu .header-right h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .menu .header-right ul {
        display: flex;
    }

    .menu .item-level1 {
        border-bottom: 1px solid #a3a3a324;
        padding: 5px 0;
    }

    .icon-menu-pc {
        display: none;
    }

    .svg-icon {
        width: 18px;
        height: 18px;
        position: absolute;
        top: 14px;
        right: 0px;
    }

    .level2,
    .level3 {
        position: unset;
        background-color: transparent;
        box-shadow: none;
        margin-left: 25px;
        width: calc(100% - 25px);
    }

    .level2 .item-level2 {
        padding: 5px 25px 5px 0px;
        list-style: circle;
    }

    .level2 .item-level2 .svg-icon {
        top: 8px;
        right: 11px;
    }

    .svg-icon.active .icon-plus-x {
        transform: scaleY(0);
    }

    .svg-icon rect,
    .svg-icon path {
        transition: all cubic-bezier(.12, .67, .53, 1) .3s;
        transform-origin: center;
    }

    .icon-arrow {
        display: none;
    }

    .header-right {
        display: flex;
    }

    .header-right .icon-menu-m {
        display: flex;
    }

    .overlay-m {
        background: #000;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .overlay-m.active {
        opacity: .5;
        visibility: visible;
    }

    .menu {
        background: #FFF;
        border-color: rgba(0, 0, 0, 0.1);
        width: 85%;
        max-width: 440px;
        position: fixed;
        z-index: 101;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 15px;
        height: 100vh;
        overflow: auto;
    }

    .menu.active {
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
    }

    .menu .name-level1 {
        color: #65442b;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .menu .name-level1 img {
        width: 22px;
    }

    .menu .level1 {
        display: block;
        text-align: left;
    }

    .menu .item-level1 .name-level1 {
        display: inline-block;
        padding: 5px 0;
    }

    .menu .item-level1.active {
        margin-bottom: 5px;
    }

    .menu .close-menu-mb {
        position: absolute;
        top: 15px;
        right: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .menu .close-menu-mb svg {
        width: 25px;
        height: 25px;
    }

    .logo-menu {
        margin-bottom: 15px;
        text-align: left;
    }

    .logo-menu img {
        max-width: 99px;
        width: 100%;
    }

}

@media (max-width: 992px) {
    .header-nav .right {
        display: none;
    }

    .header-menu {
        background: #fff;
        padding: 5px 0;
    }

    .header_logo {
        display: none;
    }

    .header-menu .logo {
        display: block;
    }
}

@media (max-width: 576px) {
    .menu .item-level1 .name-level1 {
        color: #333;
    }

    .menu .item-level1.active .name-level1 {
        color: #e1201f;
    }

    #page-home .header-menu {
        padding-top: 5px;
    }



    .header-menu .inner {
        justify-content: space-between;
    }



    .title-page {
        font-size: 18px;
        /* padding: 0 10px 10px; */
    }

    .btn_right {
        display: none;
    }

    .section-nhansu .title-page {
        padding: 0 25px 10px;
    }

    .title-wrap {
        margin-bottom: 20px;
    }

    .header-right ul {
        display: none;
    }

    .modal-overlayyy .modal-content .inner {
        grid-template-columns: repeat(1, 1fr);
    }

    .modal-overlayyy .image-wrap {
        display: none;
    }

    .button-web.sm {
        font-size: 13px;
    }

    .header-right {
        gap: 12px;
    }

    .logo img {
        max-width: 75px;
    }
}

.tt-contact li svg{
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.footer {
    position: relative;
}

/* .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
   	width: calc((100% - 1240px) / 2 + (1200px / 3));
    height: 100%;
    background-color: #322d4c;
} */

.footer__newsletter {
    padding: 30px 0;
    position: relative;
    z-index: 1;
    background-color: #3aaa35;
    color: #FFF;
}

.footer__newsletter-container {
    display: grid;
    grid-template-columns: 2fr 4fr;
}

.footer__newsletter-container .inner {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 15px;
}

.footer__newsletter-title {
    font-size: 24px;
    font-weight: 600;
}

.footer__newsletter-form {
    position: relative;
}

.footer__newsletter-input {
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    width: 100%;
    min-width: 350px;
    font-size: 16px;
    outline: none;
}

.footer__newsletter-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3aaa35;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}

.footer__newsletter-button svg {
    width: 22px;
    height: 22px;
}

.footer__newsletter-button svg line {
    stroke: #FFF;
}

.footer__newsletter-button svg path {
    stroke: #FFF;
}

.footer__main {
    padding: 30px 0 30px;
    position: relative;
    z-index: 1;
    font-weight: 300;
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
    gap: 30px;
}

.footer__container h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer__social ul {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-left: 0 !important;
}

.footer__social ul li {
    list-style: none;
}

.footer__social ul li a {
    width: 40px;
    height: 40px;
    background: #ff3130d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* .footer__social ul li a img {
    width: 16px !important;
} */

.footer__container ul {
    margin-left: 18px;
}
.footer__container ul li a {
    color: #fff;
}

.footer__container ul li a:hover {
    color: #fed627;
}

.footer__container ul li:not(:last-child) {
    margin-bottom: 5px;
}


.footer__contact p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.footer__contact img {
    width: 36px !important;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
    object-fit: contain;
}

.footer__bottom {
    background: #0d0c44;
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.2)
}

.footer__bottom a {
    color: #FFF;
}

.backtotop {
    cursor: pointer;
    background: #000;
    bottom: 10px;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    padding: 2px;
    position: fixed;
    right: 20px;
    text-align: center;
    text-transform: uppercase;
    width: 40px;
    z-index: 3;
    border-radius: 4px;
}

.backtotop svg {
    width: 28px;
    height: 22px;
    margin-bottom: -8px;
}

.backtotop svg path {
    stroke: #fff;
}

#button-contact-vr {
    bottom: 55px;
    margin: -10px;
    transform: scale(0.8);
    margin-bottom: 0px !important;
    position: fixed;
    z-index: 3;
    right: 10px;
}

#gom-all-in-one #viber-vr {
    transition: 1.3s all;
    -moz-transition: 1.3s all;
    -webkit-transition: 1.3s all;
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility 0.5s;
    left: 0;
    bottom: 0;
    display: block;
}

.phone-vr-circle-fill {
    width: 70px;
    height: 70px;
    top: 6px;
    left: 6px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #ED1A36;
    background-color: rgba(237, 26, 54, .7);
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 60px;
    height: 60px;
    line-height: 40px;
    top: 12px;
    left: 12px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

#viber-vr .phone-vr-img-circle {
    background-color: #ED1A36;
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px;
}

.phone-vr-img-circle svg {
    fill: #ffffff;
    width: 38px;
    height: 44px;
    margin-top: 8px;
}

.phone-vr-img-circle svg path {
    stroke: #fff;
}

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 transparent;
    }
}

.wrap-button-fixed {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: #f5f6fa;
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 20px 40px 10px 20px;
    display: none;
}

.wrap-button-fixed.active {
    display: block;
}

.wrap-button-fixed .close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.wrap-button-fixed .close svg {
    width: 20px;
    height: 20px;
}

.wrap-button-fixed .link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wrap-button-fixed .link img {
    width: 40px;
    height: 40px;
}

.wrap-button-fixed .link .text {
    font-size: 18px;
}

footer .text-content img {
    height: auto !important;
}

.contact-footer-m {
    position: fixed;
    width: 100%;
    z-index: 90;
    bottom: 0;
}

.contact-footer-m .inner {
    padding-bottom: 10px;
    display: flex;
    position: relative;
    padding-top: 5px;
}

.contact-footer-m .inner .item {
    position: relative;
    display: block;
    width: 25%;
    text-align: center;
    padding: 11px 0 0px 0;
}

.contact-footer-m .inner span {
    display: block;
}

.contact-footer-m .item img {
    height: 30px;
    width: 30px;
}

.contact-footer-m .item .label {
    padding: 0px 2px 0 2px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}

.contact-footer-m .item .icon {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    background-image: linear-gradient(92.83deg, #da112c 0, #ed1a36 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: -28px;
    text-align: center;
    box-shadow: rgb(0 0 0 / 15%) 0 -3px 10px 0px;
    border: 2px solid #fff;
}

.phone-vr-circle-filll {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 #ed1a36;
    border: 2px solid #FFF;
    transition: all .5s;
    animation: zoom 1.3s infinite;
}

@keyframes zoom {
    0% {}

    70% {
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.contact-footer-m .item .icon img {
    max-width: 25px;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-footer-m .item .label.center {
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    padding: 0px 8px;
    background-image: linear-gradient(92.83deg, #da112c 0, #ed1a36 100%);
    border-radius: 30px;
    color: white;
    display: inline-block;
}

.contact-footer-m::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background-image: url('../images/mb-footer-bg.svg');
    background-color: unset;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    box-shadow: unset;
    height: 76px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.contact-footer-m .svg-iconn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ed1936;
    color: #FFF;
    margin: 0 auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo img {
    height: 80px;
}

.footer__contact {
    padding-right: 45px;
}

@media (max-width: 992px) {
    .tag-list ul {
        grid-template-columns: repeat(5, 1fr);
    }

    .footer__newsletter-container {
        grid-template-columns: 1fr;
    }

    .footer__newsletter-container .inner {
        justify-content: left;
        margin-top: 10px;
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .contact-footer-m {
        display: none;
    }
}

@media (max-width: 768px) {
    #button-contact-vr {
        display: none;
    }

    .footer__bottom {
        padding: 20px 0 115px;
        font-size: 13.5px;
    }
}


@media (max-width: 576px) {
    .tag-list ul {
        grid-template-columns: repeat(2, 1fr);
    }

    footer .text-content img {
        width: 250px !important;
    }

    .footer__newsletter-container .inner {
        display: block;
        text-align: center;
    }

    .footer__logo {
        text-align: center;
    }

    .footer__logo img {
        height: 65px;
    }

    .footer__newsletter-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .footer__quick-links,
    .footer__services {
        grid-column: span 1;
    } */

    .footer__about,
    .footer__contact {
        grid-column: 1 / -1;
    }

    .footer__container h3 {
        font-size: 18px;
    }

    .footer::before {
        display: none;
    }

    .footer__main {
        padding: 30px 0 20px;
    }

    .footer__contact {
        padding-right: 0;
    }
}
