body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.header-container {
    background-color: #FFFFFF;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    z-index: 20;
    position: sticky;
    top: 0;
    /* position: fixed; */
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.header-container > .navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    background: none;
    height: 82px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1440px;
}

.navbar a {
    text-decoration: none;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 0.14px;
    border-radius: 25px;
    background: #1C60DD;
    display: flex;
    /* height: 40px; */
    padding: 10px 24px;
    align-items: center;
    gap: 10px;
}

.navbar a:hover {
    background: #1b58c9;
}

.header-bumper {
    height: 82px;
}

.dropdown {
    /* position: relative; */
    display: flex;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;

    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 0.14px;
}

.dropdown-toggle img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.dropdown-toggle .arrow {
    margin-left: 8px;
    transition: transform 0.3s;
    width: 12px;
}

.dropdown-toggle .arrow.open {
    transform: rotate(-180deg);
}

.dropdown-content {
    position: absolute;
    margin-top: 50px;
    background-color: white;
    box-shadow: 0 -5px 10px #418efa28, 0 5px 10px #418efa28;
    z-index: 1;
    border-radius: 12px;
}

.dropdown-content div {
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.dropdown-content .divider {
    height: 1px;
    background: rgba(168, 183, 202, 0.50);
    padding: 0px;
    width: 90%;
    margin: 0 auto;
}

.dropdown-content div a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    background-color: transparent;
    /*Font*/
    color: #1E2F47;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px; 
    letter-spacing: 0.14px;
}

.dropdown-content div a:hover {
    background-color: transparent;
}

.dropdown-content div a img {
    width: 24px;
    height: 24px;
    /* margin-right: 8px; */
}

.dropdown-content div:hover {
    background-color: #F7F8FB;
}

.dropdown-content.hide {
    display: none;
}

.dropdown-content.show {
    display: block;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.hide {
    display: none;
}

.no-scroll {
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    box-shadow: 0 -5px 10px #418efa28, 0 5px 10px #418efa28;
    margin: 15% auto;
    padding: 50px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.modal-content h3 {
    margin: 0px;
    color: #418EFA;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
}

.modal-content p {
    margin: 0px;
    color: #1E2F47;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #418EFA;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #2981fd;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width:768px) { 
    .navbar a {
        display: none;
    }
    .dropdown-content {
        right: 15px;
    }
}

@media only screen and (max-width:467px) { 
    .header-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .dropdown-toggle span {
        display: none;
    }
    .dropdown-toggle img {
        margin-right: 2px;
    }
    .modal-content {
        max-width: 320px;
        padding: 40px 20px 40px 20px;
        gap: 10px;
    }
    .modal-content h3 {
        font-size: 20px;
    }
    .modal-content p {
        font-size: 16px;
    }
}
