:root {
  --color-red: #800c15;
  --color-blue:#34419e;
}
body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}

*{
  scroll-behavior: smooth;
}

/* Tiêu đề */
h1 {
  font-size: 36px;
  font-weight: 800;
}

h2 {
  font-size: 28px;
  font-weight: 700;
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

/* Văn bản thông thường */
p {
  font-size: 16px;
  font-weight: 400;
}

/* Chú thích nhỏ */
small {
  font-size: 14px;
  font-weight: 400;
  color: gray;
}
* img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}


a {
  text-decoration: none;
  color: var(--color-blue);
}
.text-upper{
    text-transform: uppercase;
}
.c-blue{
    color: var(--color-blue);
}
.c-red{
    color: var(--color-red);
}
.bg-red{
    background-color: var(--color-red);
    color: white;
}
.c-title{
    border-radius: 15px;
    padding: 5px 10px;
}
p{
    margin: 0;
}
.text-left{
  text-align: left;
}
.text-ceter{
  text-align: center;
}
.text-justify{
  text-align: justify;
}
.text-indent{
  text-indent: 30px;
}
.tab{
  padding-top: 10px;
}
.pl-1{
  padding-left: 10px;
}
.nowrap{
  white-space: nowrap;
}
.flex-center{
  align-items: center;
  justify-content: center;
}
h4>strong{
  text-transform: uppercase;
}
.menu-top {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-top li {
  list-style: none;
  flex: 1 1 auto;
  text-align: center;
}
.menu-top li a {
  padding: 15px 10px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}
.menu-top li a .icon {
  width: 50px;
  height: 50px;
  color: white;
  padding: 5px;
}
.menu-top li a .icon > * {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.logo{
    max-width: 100%;
    max-height: 100%;
}
.logo img{
    max-width: 100%;
    max-height: 100%;
}
.box-info{
    height: 100%;
    width: 100%;
    padding: 20px;
}

#footer {
  background: #00377a;
  color: #ffffff;
  padding-top: 120px;
  padding-bottom: 65px;
}

#footer .address-hanoi p {
  margin-bottom: 5px;
  font-size: 14px;
}

#footer ul.nav .nav-link {
  color: #929eb4;
  font-size: 14px;
  padding-left: 0;
  padding-bottom: 15px;
}

#footer ul.nav h6 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 40px;
}
#footer img.logoft {
  margin-bottom: 20px;
}
#footer .address-hcm ,#footer .address-hanoi{
  margin-bottom: 25px;
}
.header-container{
  display: none !important;
}
.card-img-top{
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-height: unset !important;
  transform: scale(1.25);
}
@media screen and (max-width:992px) {
    .container{
      max-width: 100%;
    }

    .menu-top {
        flex-direction: column;
    }
    .menu-top li{
        text-align: left;
        width: 100%;
    }
    .menu-top li a{
        flex-direction: row;
        justify-content: flex-start;
        border-bottom: 1px solid;
    }
}
