@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-column {
    float: left;
    width: 200px;
    padding: 15px;
}

.dropdown-column a {
    display: block;
    color: #333;
    padding: 10px;
    text-decoration: none;
}

.dropdown-column a:hover {
    background-color: #ddd;
}

.sub-dropdown {
    display: none;
    background-color: #f9f9f9;
    position: absolute;
    top: 15px;
    left: 80%;
    width: 200px;
}

.dropdown-column:hover .sub-dropdown {
    display: block;
}

/* Dropdown menu styling */
.dropdown-content {
    display: none;

    /* Hide the dropdown content by default */
    position: absolute;

    /* Position the dropdown content absolutely */
    background-color: #fff;

    /* Background color */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);

    /* Box shadow */
    z-index: 1;

    /* Ensure the dropdown appears above other content */
    width: 240px;

    /* Adjust the width as needed */
}

.dropdown-content a {
    color: rgb(1, 1, 1);

    /* Link color */
    padding: 10px;

    /* Add padding to the links */
    display: block;

    /* Display links as blocks */
    text-decoration: none;

    /* Remove default underline */
}

.dropdown-content a:hover {
    background-color: #abacae;

    /* Background color on hover */
}

/* Show dropdown content on hover */
.nav-item:hover .dropdown-content {
    display: block;

    .text-lawname {
        font-size: 24px;

        /* Adjust the size as needed */
        font-weight: bold;
        color: red;
    }
}

/* Add your CSS styles here */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.678);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 5px;
    text-align: center;
}

.modal-content p {
    margin-bottom: 30px;
}

.btn {
	width: 120px;
	Height:40px;
    padding: 3px;
    background-color: #1a3560;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn2 {
	width: 300px;
	Height:40px;
    padding: 5px;
    background-color: #1a3560;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust min-width and max-width as needed */
    gap: 20px;
}

.info {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.info h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.responsive1-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* To center the image horizontally */
}

.ul-privacy {
    color: #666; /* Light color */
    font-weight: normal; /* Normal font weight */
}