footer{
    background-color: #FFF;
}
footer .container-custom{
    padding: 45px 10px 25px;
    display: flex;
    justify-content: space-between;
}
footer .container-custom .logo-info .black-logo{
    width: 225px;
}

footer .container-custom .logo-info .info .phone{
    margin-top: 5px;
    margin-bottom: -5px;
    font-size: 25px;
    text-align: center;
}
footer .container-custom .logo-info .info .time{
    font-size: 14px;
    text-align: center;
}
footer .container-custom .nav-footer{
    display: flex;
    width: calc(100% - 460px);
}
footer .container-custom .nav-footer .nav-link{
    display: flex;
    flex-wrap: wrap;
    width: 66%;
    justify-content: center;
}
footer .container-custom .nav-footer .nav-link li{
    width: 38%;
}
footer .container-custom .nav-footer a{
    padding: 4px 30px 2px;
    display: contents;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}
footer .container-custom .nav-footer a:hover{
    color: #A0A0A0;
}
footer .container-custom .nav-footer .nav-menu{
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 33%;
    border-left: 2px solid #707070;
}
footer .container-custom .footer-action{
    margin-top: auto;
    padding-left: 10px;
    width: 225px;
}
footer .container-custom .footer-action .nav-action{
    display: flex;
}
footer .container-custom .footer-action .nav-action .nav-item{
    margin-right: 30px;
}
footer .container-custom .footer-action .nav-action .nav-item a{
	display: inline-flex;
	position: relative;
}
footer .container-custom .footer-action .nav-action .nav-item a .nv-text{
	padding: 2px 4px;
	position: absolute;
	top: -32px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	color: #9A2829;
	border: 1px solid #9A2829;
	border-radius: 5px;
	background-color: #FFF;
}
footer .container-custom .footer-action .nav-action .nav-item a .nv-text::before{
	position: absolute;
	content: '';
	top: 20px;
	left: 50%;
	width: 10px;
	height: 10px;
	background-color: #FFF;
	border-bottom: 1px solid #9A2829;
	border-right: 1px solid #9A2829;
	transform: translateX(-50%) rotate(45deg);
}
footer .container-custom .footer-action .nav-action .nav-item a img{
	width: 100%;
}
footer .container-custom .footer-action .nav-action .nav-item a:hover .nv-text{
	display: block;
	white-space: nowrap;
}
footer .container-custom .footer-action .nav-action .nav-item a .nv-count{
    position: absolute;
    top: -5px;
    right: -10px;
    padding: 2px;
    width: 20px;
    height: 20px;
    background-color: #FFF;
    color: #9A2829;
    border: 1px solid #9A2829;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
	text-align: center;
}
@media only screen and (max-width: 1150px){
	footer .container-custom .nav-footer .nav-link li {
        width: 48%;
    }
}
@media only screen and (max-width: 1024px){
    footer .container-custom .logo-info .black-logo {
        width: 145px;
    }
    footer .container-custom .logo-info .info .phone{
        font-size: 16px;
    }
    footer .container-custom .logo-info .info .time{
        font-size: 12px;
    }
    footer .container-custom .nav-footer{
        width: calc(100% - 295px);
    }
    footer .container-custom .nav-footer a{
        font-size: 12px;
    }
    footer .container-custom .nav-footer .nav-link{
        width: 71%;
    }
    footer .container-custom .nav-footer .nav-menu{
        padding-left: 8px;
        width: 30%;
    }
    footer .container-custom .footer-action {
        width: 150px;
    }
    footer .container-custom .footer-action .nav-action .nav-item{
        margin-right: 16px;
    }
}
@media only screen and (max-width: 768px) {
    footer .container-custom{
        padding: 20px 10px 25px;
    }
    footer .container-custom .logo-info{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 60px;
        background-color: #E8E8E8;
    }
    footer .container-custom .logo-info .info{
        display: none;
    }
    footer .container-custom .logo-info .black-logo {
        padding: 15px 0 15px 15px;
        width: 175px;
    }
    footer .container-custom .footer-action{
        padding: 15px 15px 15px 0;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 40%;
        height: 60px;
        background-color: #E8E8E8;
    }
    footer .container-custom .footer-action .nav-action{
        justify-content: end;
    }
    footer .container-custom .footer-action .copyright{
        display: none;
    }
    footer .container-custom .nav-footer{
        margin-bottom: 60px;
        padding: 0px 7vw;
        flex-direction: column;
        width: 100%;
    }
    footer .container-custom .nav-footer .nav-link{
        width: 100%;
    }
    footer .container-custom .nav-footer .nav-link li {
        padding: 5px 0;
    }
    footer .container-custom .nav-footer .nav-menu {
        padding-top: 15px;
        margin-top: 15px;
        width: 100%;
        border-top: 2px solid #707070;
        border-left: unset;
        flex-direction: row;
        flex-wrap: wrap;
    }
    footer .container-custom .nav-footer .nav-menu .nav-item{
        padding: 5px 0;
        width: 50%;
    }
    footer .container-custom .nav-footer .nav-menu .nav-item.full{
        width: 100%;
    }
}