/* ================================================= */
/* ------------------ General CSS ------------------ */
/* ================================================= */

* {
    box-sizing: border-box;
}

body {
    color: #666;

    font-weight: 400;
    background: #ffffff;
}

a {
    color: #e78e45;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

p {
    color: #666;
    font-size: 18px;
    line-height: 24px;
    padding: 20;
    margin: 0 0 15px 0;

}

h1 {
    margin: 0;
    padding: 0;
    color: #666;
    font-family: 'BE-Bold';
    font-weight: 700;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    /* Canh giữa */
    color: #dca91c;
    /* Màu chính */
    text-shadow:
        0 0 5px #cf48a2,
        0 0 10px #d6e92a,
        0 0 20px #e4ecef,
        0 0 40px #eef0f1;
    font-size: 100px;
    /* Kích thước rất lớn */
    font-family: 'Playfair Display', serif;
    color: rgba(0, 0, 0, 0.1);
    /* Làm mờ chữ với độ trong suốt */
    text-align: center;
    /* Căn giữa */
}

h2,
h3,
h4,
h5,
h6 {
    margin: 18px;
    padding: 0;
    color: #666;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;

}


.section-header {
    max-width: 1200px;
    /* Giới hạn chiều rộng của nội dung */
    margin: 0 auto;
    /* Căn giữa nội dung trong trang */
    padding: 0 20px;
    /* Thêm khoảng cách bên trái và phải */
}

h2 {
    text-align: center;
    /* Căn giữa tiêu đề */
    font-size: 36px;
    /* Kích thước chữ */
    font-weight: bold;
    margin-bottom: 20px;
    /* Khoảng cách dưới tiêu đề */
    font-size: 100px;
    /* Kích thước rất lớn */
    font-family: 'Playfair Display', serif;
    color: rgba(0, 0, 0, 0.1);
    /* Làm mờ chữ với độ trong suốt */
    text-align: center;
    /* Căn giữa */
}

p {
    text-align: justify;
    /* Căn đều hai lề đoạn văn */
    line-height: 1.8;
    /* Tăng khoảng cách giữa các dòng để dễ đọc */
    font-size: 18px;
    /* Kích thước chữ của đoạn văn */
    color: #555;
    /* Màu chữ xám nhạt */
    margin: 0 0 20px 0;
    /* Khoảng cách trên và dưới của đoạn văn */
}

.container {
    max-width: 1400px;
}

@media (max-width: 767.98px) {
    h2 {
        font-size: 26px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    h2 {
        font-size: 18px;
        font-weight: 400;
    }
}

.popover-body .radio label {
    margin-bottom: 0;
}

.popover-body button {
    display: inline-block;
    padding: 5px 10px;
    background: #e78e45;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    border: none;
}

.popover-body button:hover {
    color: #e78e45;
    background: #222222;
}

.popover-body button i {
    margin-right: 5px;
}

/* ================================================= */
/* ---------------- Top Header CSS ----------------- */
/* ================================================= */

.top-header {
    display: table;
    position: relative;
    background-image: url(../img/banner1.jpg);
    background-size: cover;
    color: #fff;
    width: 100%;
    /* height: 100vh; */
}
.top-header.banner {
    max-height: 400px;
    background-image: url(../img/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.top-header:after {
    content: '';
    z-index: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.top-header .container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.top-header .brand {
    margin-bottom: 75px;
    display: inline-block;
}

.top-header .brand:hover {
    opacity: .75;
}

.top-header h1 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.top-header h1 a {
    color: #ffffff;
}

.top-header h1 a:hover {
    color: #0f2439;
}

.top-header .btn {
    background-color: #e78e45;
    font-weight: 700;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
}

.top-header .btn:hover {
    background-color: #e78e45;
    color: #fff;
}

.top-header .btn:focus {
    color: #fff;
}

.top-header .btn i {
    margin-right: 10px;
}

@media (max-width: 61.9em) {
    .top-header {
        padding: 75px 0;
    }

    .top-header .brand {
        margin-bottom: 35px;
    }
}

#headerSlider {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

#headerSlider img {
    width: 100%;
}

.top-header.banner h2 {
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .top-header.banner {
        max-height: 300px;
        padding: 60px;
    }
}

@media (max-width: 575.98px) {
    .top-header.banner {
        max-height: 200px;
        padding: 45px;
    }

    .top-header .btn {
        font-size: 14px;
        font-weight: 400;
        padding: 5px 15px;
    }
}

/* ================================================= */
/* ---------------- Nav Header CSS ----------------- */
/* ================================================= */

#header {

    height: 70px;
    background: radial-gradient(112.42% 263.12% at 114.97% 146.06%, #435665cc 0.08%, #0e395bf2 52.51%, #040404 100%);
}

#header #logo {
    margin: 14px 25px 0 0;
}

#header #logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 2px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
}

#header #logo img {
    padding: 0;
    margin: 0;
    max-height: 53px;
}

@media (max-width: 768px) {
    #header {
        height: 50px;
    }

    #header #logo {
        margin: 10px 0 0 0;
    }

    #header #logo h1 {
        padding: 2px 0;
        font-size: 26px;
    }

    #header #logo img {
        max-height: 30px;
    }
}

#header .social-nav {
    margin-top: 15px;
}

#header .social-nav a {
    display: inline-block;
    font-size: 18px;
    margin-left: 15px;
    color: #fff;
    width: 40px;
    height: 40px;
    padding: 3px 10px;
    border: 3px solid #ffffff;
    border-radius: 40px;
}

#header .social-nav a:hover {
    color: #666;
}

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu>li {
    float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

#nav-menu-container {
    margin: 0;
}

@media (max-width: 768px) {
    #nav-menu-container {
        display: none;
    }
}

.nav-menu a {
    padding: 23px 15px 17px 15px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    outline: none;
}

.nav-menu a:hover,
.nav-menu li:hover>a,
.nav-menu .menu-active>a {
    color: #fff;
    transform: translateY(-2px);
    transition: transform 0.2s ease-in-out;
}

.nav-menu ul {
    margin: 4px 0 0 15px;
    -webkit-box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
}

.nav-menu ul li {
    background: #fff;
    border-top: 1px solid #f4f4f4;
}

.nav-menu ul li:first-child {
    border-top: 0;
}

.nav-menu ul li:hover {
    background: #103049;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: white;
}

.nav-menu ul li a {
    color: #333;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    padding: 10px 15px;
}

.nav-menu ul li a:hover {
    color: #fff;
}

.nav-menu ul ul {
    margin: 0;
}

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 8px 10px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: inline;
    }

    #logo {
        width: 100%;
        text-align: center;
    }
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #e78e45;
}

#mobile-nav ul .menu-item-active {
    color: #e78e45;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/* ================================================= */
/* -------------- Section Header Style ------------- */
/* ================================================= */

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 55px;
    font-weight: 700;
}

.section-header::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 200px;
    bottom: -10px;
    left: calc(50% - 100px);
    background: #666;
}

.section-header::after {
    position: absolute;
    content: '\f030';
    font-family: FontAwesome;
    height: 22px;
    width: 36px;
    bottom: -31px;
    left: calc(50% - 18px);
    color: #666;
    font-size: 14px;
    line-height: 19px;
    background: #ffffff;
    border: 1px solid #666;
    border-radius: 0 0 40px 40px;
    transition: all .3s;
}

#about:hover .section-header::after,
#portfolio:hover .section-header::after,
#booking:hover .section-header::after,
#subscribe:hover .section-header::after,
#client:hover .section-header::after,
#call-us:hover .section-header::after,
#contact:hover .section-header::after,
#login:hover .section-header::after {
    color: #103049;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 25px;
        font-weight: 600;
    }
}

/* ================================================= */
/* ------------------ About Style ------------------ */
/* ================================================= */

#about {
    position: relative;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
}

#about .section-header::after {
    background: #f2f2f2;
}

#about .img-col img {
    width: 100%;
    border-radius: 6px;
}

#about .img-col,
#about .content-col {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#about .content-col h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 767.98px) {
    #about .content-col {
        text-align: center;
    }

    #about .content-col h3 {
        margin-top: 15px;
    }
}

#about .content-col p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
    margin-bottom: 20px;
}

#about .content-col a {
    display: inline-block;
    background-color: #103049;
    font-weight: 700;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    text-transform: uppercase;
}

#about .content-col a:hover {
    background-color: #878f97b0;
    color: #101f2fbd;
}

#about .content-col a:focus {
    color: #fff;
}

/* ================================================= */
/* ---------------- Portfolio Style ---------------- */
/* ================================================= */

#portfolio {
    position: relative;
    padding: 50px 0 60px 0;
}

.port-item {
    overflow: hidden;
    padding: 0px;
}

.port-item img {
    height: 100%;
    width: 100%;
}

.modal .modal-header button {
    margin: 0 auto;
    padding: 0px 8px 5px 8px;
    font-size: 25px;
    border-radius: 20px;
    background: #103049;
    color: #fff;
}

.modal .modal-body img {
    height: 100%;
    width: 100%;
}

.modal .modal-body h2 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal .modal-body .download-content {
    font-size: 14px;
}

.custom-control-label:before {
    background: #e78e45;
    border: none;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background: #222222;
    border: none;
}

.custom-radio .custom-control-input:focus~.custom-control-label::before,
.custom-checkbox .custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
    border: none;
}

.modal .modal-body .download-content button {
    display: inline-block;
    padding: 8px 15px;
    background: #e78e45;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    border: none;
}

.modal .modal-body .download-content button:hover {
    color: #e78e45;
    background: #222222;
}

.modal .modal-body .download-content button i {
    margin-right: 5px;
}

.modal .port-slider-nav .slick-track {
    padding: 30px 0 15px 0;
}

.modal .port-slider-nav .slick-center img {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.box3:hover:before {
    border-top: 3px solid #e78e45;
    border-bottom: 3px solid #e78e45
}

.box:hover:after {
    border-left: 3px solid #e78e45;
    border-right: 3px solid #e78e45
}

.box3 .title {
    font-weight: 700;
    color: #e78e45;
}

.box3 .icon li a {
    margin-top: 10px;
    background: #e78e45;
}

/* ================================================= */
/* ----------------- Booking Style ----------------- */
/* ================================================= */
#booking {
    position: relative;
    padding: 0 0 50px 0;
}

#booking .container {
    max-width: 990px;
}

#booking .form-control {
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 20px;
    line-height: 24px;
    padding: 5px 20px;
    background-color: transparent;
    color: #222222;
    font-size: 16px;
    font-weight: 300;
}

#booking .form-control:focus {
    box-shadow: none;
    outline: 0 none;
}

#booking .button button {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    padding: 10px 30px;
    border-radius: 30px;
    background: #103049;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
}

#booking .button button:hover {
    background-color: #878f97b0;
    color: #101f2fbd;
}

#booking .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* ================================================= */
/* ---------------- Subscribe Style ---------------- */
/* ================================================= */
#subscribe {
    position: relative;
    text-align: center;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
}

#subscribe .section-header::after {
    background: #f2f2f2;
}

#subscribe .subscribe-form {
    position: relative;
    max-width: 525px;
    width: 100%;
    margin: auto;
}

#subscribe .subscribe-form input[type="email"] {
    width: 100%;
    border: 1px solid #666;
    border-radius: 30px;
    height: 50px;
    line-height: 24px;
    padding: 12px 30px;
    background-color: transparent;
    color: #666;
    font-size: 16px;
}

#subscribe .subscribe-form input[type="email"]:focus {
    box-shadow: none;
    outline: 0 none;
}

@media only screen and (max-width: 479px) {
    #subscribe .subscribe-form input[type="email"] {
        text-align: center;
    }
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder {
    color: white;
}

#subscribe .subscribe-form button {
    font-size: 22px;
    color: #ffffff;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1px;
    padding: 5px 30px 8px 30px;
    margin-right: -1px;
    border-radius: 0 30px 30px 0;
    background: #103049;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
}

#subscribe .subscribe-form button:hover {
    background-color: #878f97b0;
    color: #101f2fbd;
}

#subscribe .subscribe-form button:focus {
    box-shadow: none;
    outline: 0 none;
}


@media only screen and (max-width: 479px) {
    #subscribe .subscribe-form button {
        position: static;
        margin-top: 15px;
        width: 100%;
        border-radius: 30px;
    }
}

/* ================================================= */
/* ------------------ Client Style ----------------- */
/* ================================================= */

#client {
    position: relative;
    padding: 45px 0 40px 0;
}

#client .client-cols {
    position: relative;
}

#client .client-col {
    background: #f2f2f2;
    border-radius: 6px;
    margin-bottom: 20px;
}

#client .client-col .img {
    position: relative;
    border-radius: 6px 6px 0 0;
    transition: .3s;
    overflow: hidden;
}

#client .client-col img {
    border-radius: 6px 6px 0 0;
    transition: .3s
}

#client .client-col:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#client .client-col .photo {
    width: 180px;
    height: 48px;
    padding-top: 10px;
    text-align: center;
    position: absolute;
    background: #f2f2f2;
    text-align: center;
    border-radius: 30px 30px 0 0;
    left: calc(50% - 90px);
    bottom: -4px;
    transition: 0.3s;
}

#client .client-col .photo a {
    font-size: 24px;
    line-height: 1;
    color: #666;
    transition: 0.3s;
    font-weight: 700;
}

#client .client-col:hover .photo {
    background: #103049;
}

#client .client-col:hover a {
    color: #FFFFFF;
}

#client .client-col h3 {
    text-align: center;
    margin: 15px 0 10px 0;
    font-size: 16px;
}

#client .client-col p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    margin-bottom: 0;
    padding: 0 30px 25px 30px;
}

/* ================================================= */
/* ----------------- Call Us Style ----------------- */
/* ================================================= */

#call-us {
    position: relative;
    text-align: center;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
}

#call-us .section-header::after {
    background: #f2f2f2;
}

#call-us a {
    display: inline-block;
    padding: 15px 45px;
    background: #103049;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    border-radius: 50px;
    letter-spacing: 1px;
}

#call-us a:hover {
    background-color: #878f97b0;
    color: #101f2fbd;
}

/* ================================================= */
/* ------------------ Contact Style ---------------- */
/* ================================================= */

#contact {
    position: relative;
    padding: 45px 0;
}

#contact .container {
    max-width: 800px;
}

#contact .contact-info {
    margin-bottom: 30px;
}

#contact .contact-info .info-item {
    position: relative;
    padding: 20px 15px;
    margin-bottom: 15px;
    background: #f2f2f2;
    border-radius: 6px;
    text-align: center;
}

#contact .contact-info .info-item i {
    color: #e78e45;
    font-size: 22px;
    margin-bottom: 12px;
}

#contact .contact-info .info-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

#contact .contact-info .info-item p {
    margin: 0;
}

#contact .contact-form {
    position: relative;
}

#contact .contact-form input[type="text"],
#contact .contact-form input[type="email"] {
    height: 35px;
    font-size: 16px;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 20px;
}

#contact .contact-form textarea {
    font-size: 16px;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 10px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

    textarea:focus,
    input:focus {
        font-size: 16px;
        background: #fff;
    }
}

#contact .contact-form button {
    display: inline-block;
    padding: 5px 30px 8px 30px;
    background: #e78e45;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 15px;
}

#contact .contact-form button:hover {
    background-color: #878f97b0;
    color: #101f2fbd;
}

#contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* ================================================= */
/* ------------------- Login Style ----------------- */
/* ================================================= */

#login {
    position: relative;
    padding: 45px 0;
}

#login .login-form {
    position: relative;
}

#login .login-form input[type="text"],
#login .login-form input[type="email"],
#login .login-form input[type="password"] {
    height: 35px;
    font-size: 16px;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 20px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    input:focus {
        font-size: 16px;
        background: #fff;
    }
}

#login .login-form button {
    display: inline-block;
    padding: 5px 30px 8px 30px;
    background: #e78e45;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 15px;
}

#login .login-form button:hover {
    color: #e78e45;
    background: #222222;
}

/* ================================================= */
/* ------------------ Footer Style ----------------- */
/* ================================================= */

#footer {
    position: relative;
    padding: 30px 0 25px 0;
    text-align: center;
    background: #222222;
}

#footer .social {
    position: relative;
    text-align: right;
}

#footer .social a {
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    padding: 4px 10px;
    background: #e78e45;
    border-radius: 20px;
    color: #ffffff;
    font-size: 20px;
}

#footer .social a:hover {
    background: #ffffff;
    color: #e78e45;
}

#footer p {
    margin: 5px 0 0 0;
    font-size: 11px;
    text-align: left;
}

@media (max-width: 757.98px) {
    #footer p {
        margin: 0;
        text-align: center;
    }

    #footer .social {
        text-align: center;
        margin-top: 25px;
    }
}

.content-port {

    display: flex;
    justify-content: center;
    /* Căn giữa theo chiều ngang */
    align-items: center;
    /* Căn giữa theo chiều dọc */
    margin-top: 30px;



}

#map {
    width: 100%;
    height: 200px;
    border: none;
}

.floating-contact {
    position: fixed;
    bottom: 60px;
    /* Cách lề dưới 200px */
    right: 45px;
    /* Cách lề phải 20px */
    display: flex;
    flex-direction: column;
    /* Hiển thị theo cột */
    gap: 10px;
    /* Khoảng cách giữa các nút */
    z-index: 999;
    /* Đảm bảo hiển thị trên các thành phần khác */
}

.contact-icon {
    width: 50px;
    /* Giảm kích thước chiều rộng */
    height: 50px;
    /* Giảm kích thước chiều cao */
    border-radius: 50%;
    /* Bo tròn nút */
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    /* Giảm kích thước icon */
    color: #333;
    /* Màu icon mặc định */
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    /* Bỏ gạch chân */
}

.contact-icon:hover {
    transform: scale(1.1);
    /* Phóng to nhẹ khi hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Màu sắc cho từng nút */
.contact-icon.call {
    background-color: #e53935;
    /* Màu đỏ */
    color: white;
}

.contact-icon.zalo {
    background-color: #1565c0;
    /* Màu xanh Zalo */
    color: white;
}

.contact-icon.messenger {
    background-color: #0078ff;
    /* Màu xanh Facebook Messenger */
    color: white;
}

.contact-icon.location {
    background-color: #ffca28;
    /* Màu vàng */
    color: white;
}

.contact-icon:hover {
    animation: pulse 1s infinite;
}

.contact-icon:hover {
    animation: pulse-hover 0.5s ease-in-out forwards;
}

@keyframes pulse-hover {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    }

    100% {
        transform: scale(1);
    }
}

#section-header .h2 {
    padding: 20;
}

.box3 {
    display: grid;
    /* Hoặc dùng flexbox */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Cột linh hoạt */
    gap: 20px;
    /* Khoảng cách giữa các ảnh */
    margin: 5px;
    /* Tạo khoảng cách bên ngoài gallery */
}

.box3 img {
    width: 100%;
    /* Đảm bảo ảnh co giãn theo cột */

}

.animated-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInLeft 1.5s ease;
    /* Hiệu ứng fade-in từ trái */
}

.img-col {
    flex: 1;
    text-align: center;
}








/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;

}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

/* Grid Container */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Cột trái 2 phần, cột phải 1 phần */
    grid-template-rows: repeat(2, 1fr);
    /* 2 hàng, đều nhau */
    gap: 20px;
    /* Khoảng cách giữa các phần tử */
    align-items: start;
    /* Căn chỉnh các mục theo hàng đầu */
}

.news-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: scale(1.02);
}

.news-item img {
    width: 100%;
    height: 100%;
    /* Đảm bảo ảnh phù hợp với kích thước lưới */
    object-fit: cover;
    /* Cắt ảnh để phù hợp với khung */
}

/* Tin lớn (bên trái) */
.news-item.large {
    grid-row: span 2;
    /* Chiếm 2 hàng dọc */
    height: 100%;
    /* Chiều cao tự động khớp với các hàng */
}

/* Tin nhỏ (bên phải) */
.news-item.small {
    height: 100%;
    /* Chiều cao tự động */
}

/* Văn bản tin tức */
.news-text {
    padding: 15px;
    text-align: center;
}

.news-text h2 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}

.news-text p {
    font-size: 14px;
    color: #666;
}

/* Responsive cho màn hình nhỏ */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        /* Một cột trên màn hình nhỏ */
        grid-template-rows: auto;
        /* Hàng tự động điều chỉnh */
    }

    .news-item.large {
        grid-row: auto;
        /* Reset lại để chỉ chiếm 1 hàng */
    }
}

/*hiệu ứng*/

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: -4px;
    /* Khoảng cách giữa các ảnh */
}

.port-item {
    transform: translateY(50px);
    opacity: 0;
    /* Ẩn ban đầu */
    transition: transform 1.6s ease-out, opacity 2.6s ease-out;
}

.port-item.show {
    transform: translateY(0);
    opacity: 1;
}

.box3 {
    position: relative;
    overflow: hidden;
}

.box3 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.box-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Nền đen trong suốt */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.box3:hover .box-content {
    opacity: 1;
    /* Hiển thị nội dung khi hover */
}