﻿
        .logo-1 img {
            width: 50px;
            height: 50px;
            margin-left: 40px;
            animation: slide-in 1s ease-in-out;
        }
        @keyframes slide-in {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(0);
            }
        }
        .tab-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 70px;
            background-color: #6e6d6dba;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
        }
        .i {
            background-color: #fdfdfd;
        }
        .logo img {
            width: 55px;
            height: auto;
        }
        .menu {
            list-style: none;
            display: flex;
            align-items: center;
            margin-left: auto;
            margin-right: 20px;
        }
        .menu li {
            margin-right: 10px;
        }
        .menu li:last-child {
            margin-right: 0;
        }
        .menu li a {
            color: #fff;
            text-decoration: none;
        }
        .home-link {
            margin-right: 20px;
            color: #fff;
            text-decoration: none;
        }
        .home-link i {
            margin-right: 5px;
        }
        .logo {
            font-size: 20px;
            font-weight: bold;
        }
        .logo {
            font-size: 20px;
            font-weight: bold;
            margin-right: 20px;
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
        }
        .container {
            max-width: 2500px;
            width: auto;
            height: 200vh;
            margin: 0 auto;
            padding: 10px;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 0 10px rgb(0 0 0 / 40%);
            background-image: url(../themes/porto/images/landing/bg_landing.jpg);
            background-size: cover;
        }
        @media only screen and (max-width: 767px) {
            .container {
                height: 495vh;
                max-width: 100%;
                padding: 5px;
            }
        }
        h1 {
            text-align: center;
            color: #333;
        }
        h2 {
            margin-top: 20px;
            color: #666;
        }
        p {
            line-height: 1.5;
            color: #555;
            text-align: left;
        }
        ul {
            list-style-type: disc;
            padding-left: 20px;
            color: #555;
        }
        .image {
            max-width: 100%;
            height: auto;
            margin-top: 20px;
            margin-bottom: 20px;
            /* Thuộc tính CSS mới */
            
            width: 100%;
            /* Kích thước của hình ảnh */
            
            object-fit: cover;
            /* Đảm bảo hình ảnh không bị méo khi thay đổi kích thước */
            
            border: 2px solid #fff;
            /* Viền xung quanh hình ảnh */
            
            border-radius: 10px;
            /* Góc bo viền */
            
            box-shadow: 0 0 10px rgba(0 0 0 / 35%);
            /* Hiệu ứng bóng đổ */
        }
        .cta-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #333;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            margin-bottom: 20px;
            margin-right: 10px;
        }
        .back-button {
            /* Các thuộc tính hiện tại */
            
            display: inline-block;
            padding: 10px 20px;
            background-color: #333;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            margin-bottom: 20px;
            /* Các thuộc tính di chuyển các hướng */
            
            position: absolute;
            /* Đặt vị trí tuyệt đối */
            
            top: 20px;
            /* Đặt khoảng cách từ phía trên */
            
            left: 20px;
            /* Đặt khoảng cách từ phía trái */
            
            transition: transform 0.3s ease;
            /* Hiệu ứng chuyển đổi */
        }
        .footer {
            background-color: #f2f2f2;
            padding: 20px;
            text-align: center;
        }
        .footer p {
            margin: 0;
            color: #888;
            text-align: center;
        }
        .section.video {
            border: 1px solid #ccc;
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .video {
            min-height: 20vh;
            position: relative;
            overflow: hidden;
            text-align: center;
            color: #fff;
            z-index: 0;
        }
        .video video {
            width: 100%;
            height: auto;
            object-fit: cover;
            box-shadow: 0 0 10px rgba(0 0 0 / 35%);
            border-radius: 10px;
        }
        .video footer {
            position: absolute;
            bottom: 0;
            width: 100%;
        }