@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@100;300;400&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif; /* Apply Montserrat font to the entire header */
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #042038;
    color: white;
}
.company-name {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.nav__links {
    list-style: none;
    display: flex;
    justify-content: center;
}
.nav__links li {
    padding: 0 20px;
}
.nav__links a {
    text-decoration: none;
    color: white;
}
button {
    border: none;
    background-color: #18A0FB;
    padding: 10px 50px;
    /*border-radius: 20px;*/
    cursor: pointer;
    color: white;
}
.logo {
    margin-right: 5px;
    margin-top: 5px;
    height: 5%;
    width: 40%;
}
.navbar-toggle {
    display: none; /* Initially hide the toggle button */
    cursor: pointer;
}
.bar {
    background-color: #ffffff;
    height: 3px;
    width: 25px;
    margin: 6px 0;
}
.navbar-toggle {
    display: none; /* Initially hide the toggle button */
    cursor: pointer;
    order: 3; /* Display toggle button as the last item */
}
.nav__links {
    list-style: none;
    display: flex;
    justify-content: flex-end; /* Align menu items to the right */
    order: 2; /* Display menu items as the second item */
}
.bar {
    background-color: #ffffff;
    height: 3px;
    width: 25px;
    margin: 6px 0;
}
.sidebar {
    display: none;
    width: 250px;
    left: -250px;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: #333;
    padding-top: 60px;
    z-index: 1;
}
.sidebar.active {
    left: 0;
    transition: left 0.3s ease;
}
.sidebar .nav__links {
    list-style: none;
    padding: 0;
    text-align: center;
}
.sidebar .nav__links li {
    margin-bottom: 20px;
}
.sidebar .nav__links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:active {
    font-weight: bold;
}

@media screen and (max-width: 885px) {
    .navbar-toggle {
        display: block; /* Show the toggle button for tablet-sized screens */
    }
    .nav__links {
        display: none; /* Hide the regular navigation links initially */
        position: fixed;
        top: 0;
        left: -100%; /* Collapse the menu to the left */
        width: 100%;
        height: 100vh;
        background-color: #042038;
        flex-direction: column;
        align-items: center;
        padding-top: 80px; /* Adjust top padding based on your design */
        z-index: 1;
    }

    .nav__linksTest {
        display: block; /* Hide the regular navigation links initially */
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: #042038;
        align-items: center;
        padding-top: 50px; /* Adjust top padding based on your design */
        z-index: 1;
    }

    .nav__linksTest {
        list-style: none;
        padding: 0;
    }

    .nav__linksTest li {
        margin: 10px 0; /* Add some vertical spacing between list items */
        padding: 25px;
        text-align: center;
    }

    .nav__linksTest li a {
        text-decoration: none;
        color: #fff;
        font-size: 18px;
    }

    .nav__links.active {
        display: flex; /* Show the navigation links when the toggle button is clicked */
    }
    .contact-us-btn {
        display: none;
    }
    .sidebar {
        display: block;
        right: -395px; /* Change left to right */
        left: auto; /* Reset left property */
        background-color: #042038;
        z-index: 50;
        transition: right 0.3s ease;
        width: 395px;
    }
    .sidebar.active {
        right: 0; /* Change left to right */
        left: auto; /* Reset left property */
        transition: right 0.3s ease;

    }
    .sidebar button {
        padding-right: 20px;
    }
    .navbar-toggle {
        display: block;
    }
    .nav__links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .close-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 35px;
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 0px;;
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }
    .overlay.active {
        display: block;
    }
    .normal {
        display: none;
    }

    .elfsight-app-fa9aa542-5113-4495-8c41-8a81fc07b594 {
        overflow: hidden;
    }
}





