       .footer {
       	background: #e4e4e4;
       	color: #d0cccc;
       	padding: 60px 0 0 0;
       	font-size: 14px;
       	line-height: 1.6;
       }

       .footer-content {
       	margin: 0 auto;
       	display: grid;
       	grid-template-columns: 26% 16% 26% 1fr;
       	gap: 30px;
       	padding: 0 0px 40px 0px;
       }

       .footer-section h3 {
       	color: #fff;
       	font-size: 25px;
       	margin-bottom: 20px;
       	font-weight: 500;
       }

       .logo {
       	display: flex;
       	align-items: center;
       	width: 202px;
       	margin-bottom: 10px;
       }

       .logo-icon {
       	width: 30px;
       	height: 30px;
       	background-color: #c4965f;
       	margin-right: 10px;
       	position: relative;
       	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
       }

       .logo-icon::after {
       	content: '';
       	position: absolute;
       	top: 50%;
       	left: 50%;
       	transform: translate(-50%, -50%);
       	width: 12px;
       	height: 12px;
       	background-color: #2c2c2c;
       	border-radius: 50%;
       }

       .brand-name {
       	color: #fff;
       	font-size: 24px;
       	font-weight: 300;
       	letter-spacing: 1px;
       }

       .brand-subtitle {
       	color: #999;
       	font-size: 12px;
       	text-transform: uppercase;
       	letter-spacing: 2px;
       	margin-left: 40px;
       }

       .footer-section ul {
       	list-style: none;
       }

       .footer-section ul li {
       	margin-bottom: 3px;
       }

       .footer-section ul li a {
       	color: #333;
       	text-decoration: none;
       	transition: color 0.3s ease;
       	display: flex;
       	align-items: center;
       }

       .footer-section ul li a:hover {
       	color: #2bce87;
       }

       .footer-section ul li a::before {
       	/* content: ''; */
       	width: 6px;
       	height: 6px;
       	background-color: #c4965f;
       	border-radius: 50%;
       	margin-right: 10px;
       }

       .social-links ul {
       	display: flex;
       	gap: 4px;
       }

       .social-links a {
       	width: 35px;
       	height: 35px;
       	/* background-color: #404040; */
       	border-radius: 50%;
       	display: flex;
       	align-items: center;
       	justify-content: center;
       	color: #999;
       	text-decoration: none;
       	transition: all 0.3s ease;
       }

       .social-links a:hover {
       	color: #fff;
       }

       .contact-info {
       	display: flex;
       	align-items: center;
       	margin-bottom: 15px;
       }

       .contact-info .icon {
       	width: 20px;
       	height: 20px;
       	margin-right: 10px;
       	background-color: #c4965f;
       	border-radius: 50%;
       	display: flex;
       	align-items: center;
       	justify-content: center;
       	font-size: 10px;
       }

       .newsletter-form {
       	margin-top: 10px;
       	position: relative;
       	border: 1px solid transparent;
       }

       .newsletter-form input[type="email"] {
       	width: 100%;
       	padding: 14px;
       	background-color: #ffffff;
       	border: none;
       	border-radius: 4px;
       	color: #fff;
       	font-size: 15px;
       	border: 1px solid #ffffff12;
       }

       .newsletter-form input[type="email"]::placeholder {
       	color: #999;
       }

       .newsletter-form button {
       	/* background-color: #007341; */
        background: linear-gradient(90deg, rgb(0 115 65) 0%, rgb(12 162 97) 50%, rgb(220 175 65) 100%);
       	color: #fff;
       	border: none;
       	padding: 10px 20px;
       	border-radius: 4px;
       	cursor: pointer;
       	font-size: 15px;
       	transition: background-color 0.3s ease;
       	position: absolute;
       	top: 50%;
       	right: 10px;
       	transform: translateY(-50%);
       }

       .newsletter-form button:hover {
       	background-color: #dcaf41;
       }

       .newsletter-form .checkbox-wrapper {
       	display: flex;
       	align-items: center;
       	margin-bottom: 15px;
       }

       .newsletter-form input[type="checkbox"] {
       	margin-right: 10px;
       }

       .newsletter-form label {
       	font-size: 12px;
       	color: #999;
       }

       .footer-bottom {
       	padding: 10px 0;
       	text-align: center;
       	color: #666;
       	font-size: 12px;
       	background: linear-gradient(90deg, rgb(0 115 65) 0%, rgb(12 162 97) 50%, rgb(220 175 65) 100%);
       }

       .footer-bottom-content {
       	padding: 0 20px;
       	font-size: 16px;
       	color: #d0cccc;
       }

       .footer-section h2 {
       	color: #000;
       	margin-bottom: 15px;
       	font-weight: 600;
       }

       .footer-section p {
       	padding-bottom: 3px;
       	color: #333;
       }
.social-links {
    margin-top: 15px;
}
       .footer-section p a {
       	color: #ADADAD;
       	margin-left: 10px;
       	display: inline-block;
       }
.footer-section ul li {
    display: flex;
    gap: 0px 5px;
}

.footer-section ul li a {
    flex: 1;
    display: inline-block;
}
.footer-section.section3 ul li {
    align-items: start;
}

.footer-section.section3 ul li img {
    margin-top: 5px;
}
.footer-section ul li img {object-fit: contain;}

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

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

.backtotop svg path {
    stroke: #fff;
}

#button-contact-vr {
	bottom: 39px;
    margin: -10px;
    transform: scale(0.8);
    margin-bottom: 0px !important;
    position: fixed;
    z-index: 8;
    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 {
    position: relative;
    margin-top: -5px;
}

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

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

.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;
}

#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-img-circle a {
    display: block;
    line-height: 37px;
}

.phone-vr-img-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
}

#gom-all-in-one #zalo-vr {
    transition: 1s all;
    -moz-transition: 1s all;
    -webkit-transition: 1s all;
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: 15px;
}

#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

#gom-all-in-one #phone-vr {
    transition: 0.7s all;
    -moz-transition: 0.7s all;
    -webkit-transition: 0.7s all;
}

#phone-vr .phone-vr-circle-fill {
    opacity: 0.7;
    box-shadow: 0 0 0 0 #dd2223;
}

.phone-bar a,
#phone-vr .phone-vr-circle-fill,
#phone-vr .phone-vr-img-circle,
#phone-vr .phone-bar a {
    background-color: #dd2223;
}

.phone-bar a,
#phone-vr .phone-vr-circle-fill,
#phone-vr .phone-vr-img-circle,
#phone-vr .phone-bar a {
    background-color: #dd2223;
}

#phone-vr .phone-vr-circle-fill {
    opacity: 0.7;
    box-shadow: 0 0 0 0 #dd2223;
}

.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;
}

#zalo-vr .phone-vr-img-circle {
    background-color: #2196f3;
}

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

@-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;
    }
}

@media(max-width:990px) {
	.footer-section .logo img {
		height: 54px;
	}

	.footer {
		padding-top: 30px;
	}
}

@media (max-width: 768px) {
		.footer-content {
			grid-template-columns: 1fr;
			gap: 10px;
		}
	}

.footer-section {
font-size: 16px;
}

.brand-name img {
padding: 0px 20px 0px;
}

.contact-info span {
flex: 1;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 0px 20px 0px;
    }

    .footer-bottom {
        padding: 12px 0;
    }
}