#footer {
    width: 100%;
    margin-top: 80px;
    background-color: #cce7fa;
}

.footer-wraper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 10px;

}

.footer-left {
    display: flex;
    flex-direction: column;
    /* gap: 20px;*/
    width: 40%;
}

.footer-logo {
    margin: 15px 0px;

}

.footer-logo img {
    width: 250px;
    height: 100px;
    object-fit:contain;

}

.footer-left .footer-description {
    font-weight: 400;
    font-size: 18px;
    width: 80%;
    color: #969696;

}

.footer-social {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 15px 0;
    gap: 15px;
}
.footer-social .fa-brands{
    font-size: 24px;
    color: black;
}

/* footer right */
.footer-right{
    display: flex;
    align-items:flex-start;
    justify-content: space-between;
    flex: 1 1 75%;
    /*chiếm 75% theo chiều ngang và co dãn linh hoạt*/
    
}

.footer-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(33% - 50px);
    /*mỗi item chiếm 1/3 chiều rộng, và tất cả dư ra 50px để khoảng trống giữa các item*/
}
.footer-item h4 {
  font-weight: 700;
  font-size: 24px;
  color: #000000;
}


.footer-item ul li {
  margin: 15px 0;
}

.footer-item ul li a {
  text-decoration: none;/*bỏ gạch chân mặc định dưới liên kết */
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}