
@import url('https://fonts.googleapis.com/css2?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&display=swap');

:root {
    --light--blue: #8ed1fc;
    --dark--blue: #0872ba;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* header {
    position: relative;
    top: -20px;
} */

section {
    margin-top: 50px;
    margin-bottom: 50px;
}

li {
    list-style-type: none;
}


a {
    text-decoration: none;
}






.navbar .navbar-nav .nav-link {
    color: #000000;
    font-size: 1.1em;
}

.navbar .navbar-nav .nav-link:hover {
    color: #808080;
}

.navbar-logo-centered .navbar-nav .nav-link {
    padding: .5em 1em;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .banner-container {
    width: 2160px;
    height: 266px;
} */
/* .banner-img {
    display: block;
    object-fit: cover;
} */

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark--blue);
    font-weight: bold;
}

/* section intro */

#section-intro {
    height: 500px;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url('image/intro-img.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0 !important;
    padding-top: 0;
}

#section-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    /* Đây là màu overlay và độ mờ */
    z-index: 1;
}

#section-intro .intro-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
    /* Đảm bảo nội dung nằm trên lớp overlay */
}

/* section-cert */

.list-cert li>i {
    color: green;
}

/* section-general-info */
.gi-container {
    height: 100%;
}

.gi-content {
    /* border: solid 1px black; */
    padding: 5px 5px 5px 5px;
    background-color: rgb(221, 221, 221);
    border-radius: 5px;
    height: 100%;

    transition: transform 0.3s ease-in-out;
    /* Thời gian chuyển đổi và kiểu chuyển đổi */
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    /* Bóng đổ ban đầu */
}

.gi-content:hover {
    transform: translateY(-5px);
    /* Di chuyển lên trên 10px */
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4);
    /* Bóng đổ khi hover */
}





.blog-container {
    /* max-width: 1120px; */
    width: 90%;
    padding: 40px 0;
}


.blog-card {
    height: 400px;
    /* background: var(--light--blue); */
    /* border-radius: 8px; */
}

.blog-card .image-box {
    max-height: 300px;
    max-width: 400px;
}

.blog-card .image-box img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.blog-card .profile-details {
    max-width: 400px;
    display: flex;
    align-items: center;
    column-gap: 12px;
    border: solid 1px black;
    border-radius: 0 0 8px 8px;
}

.profile-details .name {
    color: var(--dark--blue);

}




.name-question {
    color: var(--dark--blue);
}



.bv-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* product-slide */

.card {
    max-height: 900px;
    
}


/* .card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

} */

/* scroll top */
#myBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--dark--blue);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #555;
}



/* .footer-content{
} */
footer {
    /* left: 0;
    bottom: 0; */
    background-color: var(--dark--blue);
    color: black;
    width: 100%;
    background-image: url(./image/footer-img.jpg) !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footer-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-img img {
    height: 100px;
    width: 100px;
    max-height: 100%;
    max-width: 100%;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    color: white;
    background-color: var(--dark--blue);
}

.footer-nav-item {
    margin: 10px;
}

.footer-nav-item img,
#connect-facbook img {
    height: 100%;
    width: 100%;

}

.googlemap-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#googmap {
    border: 0;

}

.footer-nav-item:hover {
    color: white;
    cursor: pointer;
}