.navbarSection {
    top: 0;
    width: 100%;
    height: 100px;
    display: flex;
    z-index: 10000;
    position: fixed;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}
.navbarContainer {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.navbarLeft {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.navLogo {
    height: 60px;
}
.navitems {
    display: flex;
    align-items: center;
    gap: 20px;
}
.navitems a:hover {
    color: #003d7f;
}
.navbarRight {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.searchBtn {
    background: none;
    border: none;
}
.searchBtn img {
    height: 36px;
    width: 36px;
}
.menuBtn {
    border: none;
    background: none;
    display: none;
}
.menuBtn i {
    font-size: 2rem;
    color: #003d7f;
}
.navBtnReg {
    border: none;
    background-color: #237c3a;
    color: #ffffff;
    border-radius: 50px;
    height: 40px;
    width: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #237c3a;
    transition: 0.3s;
}
.navBtnLog {
    border: none;
    background-color: #ffffff;
    color: #000;
    border-radius: 50px;
    height: 40px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #102f25;
    transition: 0.3s;
}
.navBtnLog:hover {
    color: #ffffff;
    background-color: #237c3a;
    border: 1px solid #237c3a;
    transition: 0.3s;
}
.moreBtn {
    display: none;
}
/* ----------------- */

.navpopup {
    top: 99px;
    width: 100%;
    z-index: 999;
    display: none;
    max-width: 900px;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 0;
}
.navpopup.show {
    display: block;
}
.navpopup h6 {
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    padding-bottom: 6px;
}
.navpopup ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}
.navpopup ul li {
    margin-bottom: 10px;
}
.navpopup ul li a {
    text-decoration: none;
    font-family: "Source Sans Pro", sans-serif;
}
.navpopup ul li a:hover {
    color: #00704a;
    text-decoration: underline;
}

@media screen and (max-width: 1900px) {
    .hide1900 {
        display: none;
    }
    .show1900 {
        display: block;
    }
    .moreBtn {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .moreBtn:hover {
        color: #003d7f;
    }
}
@media screen and (max-width: 1800px) {
    .hide1800 {
        display: none;
    }
    .show1800 {
        display: block;
    }
}
@media screen and (max-width: 1550px) {
    .navbarLeft {
        gap: 3rem;
    }
    .hide1550 {
        display: none;
    }
    .show1550 {
        display: block;
    }
}
@media screen and (max-width: 1400px) {
    .hide1400 {
        display: none;
    }
    .show1400 {
        display: block;
    }
}
@media screen and (max-width: 1300px) {
    .navbarSection {
        height: 80px;
    }
    .navbarLeft {
        gap: 2rem;
    }
    .navLogo {
        height: 40px;
    }
    .hide1300 {
        display: none;
    }
    .show1300 {
        display: block;
    }
    .firstSection {
        margin-top: 80px !important;
    }
    .navpopup {
        top: 79px;
        max-width: 900px;
        padding: 1.5rem;
    }
}
@media screen and (max-width: 1080px) {
    .navbarContainer {
        width: 95%;
    }
    .navitems {
        display: none;
    }
    .menuBtn {
        display: flex;
    }
    .navpopup {
        display: none !important;
    }
}
@media screen and (max-width: 768px) {
    .navbarSection {
        height: 70px;
    }
    .navLogo {
        height: 35px;
    }
    .navBtnReg {
        height: 35px;
        display: none;
    }
    .navBtnLog {
        height: 35px;
    }
    .searchBtn img {
        height: 30px;
        width: 30px;
    }
    .firstSection {
        margin-top: 70px !important;
    }
}
