/* import fonts from google font */
/* Css phần Header và Navbar */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Gugi&family=Lato:ital,wght@0,700;1,400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sofia&display=swap');

nav{
    background-color: #1ba8ff;
}
.bg-hd{
    background: rgb(29, 113, 171);
}
.bg-hd1{
    background-color: #3498db;
    padding-top: 5px;
    padding-bottom: 5px;
}
header a{
    text-decoration: none;
    font-size: 16px;
    color: #fff;
}
.navshover:hover{
    margin-left: 5px;
    margin-right: 5px;
    font-weight: bold;
}
.active{
    font-weight: bold;
}
.nav-link{
    color: black;
}
@media only screen and (max-width:375px){
    header a{
        font-size: 12px;
        color: #fff;
    }
    .hrspnb{
        width: 100%;
    }
}
a:link{
    text-decoration: none!important;
}
header a:hover{
    color: #000;
    opacity: 1;
}
.search-txt{
    border: none;
    border-radius: 10px;
    background: none;
    outline: none;
    float: center;
    padding-left: 5px;
    font-size: 16px;
    transition: 0.4s;
    width: 0px;
    height: 35px;
}
.search-box:hover>.search-txt{
    width: 240px;
    background: #fff;
    transition: 1s;
    transition-delay: 0.2s;
}
@media only screen and (max-width:992px){
    .search-box:hover>.search-txt{
        width: 100%;
        background: #fff;
    }
}
.search-txt{
    text-align: center;
}
/* Css phần Footer */
@media only screen and (min-width: 992px) {
    footer .sb{
        margin-top: 10px;
    }
}
@media only screen and (max-width: 992px) {
    footer .dk{
        text-align: center;
    }
}
@media only screen and (max-width: 578px) {
    footer .row .col p a{
        font-size: 16px;
        text-decoration: none;
    }
    footer .m2 {
        text-align: center;
    }
    footer .form-group input{
        text-align: center;
    }
}
footer a{
    font-size: 16px;
    color: #000;
    font-weight: normal;
    text-decoration: none;
    padding-bottom: -10px;
}
footer .ft p{
    font-size: 21px;
    font-weight: bold;
}
footer .pttt img{
    margin-left: 3px;
    margin-bottom: 6px;
}
footer .bq{
    text-align: center;
}



#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #1ba8ff; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: rgb(29, 113, 171); /* Add a dark-grey background on hover */
  }