.main_header {
    display: flex;
    align-items: center;
    height: 180px;
    background: #ffbc01;
}

.main_header_wrap {
    background: #fff;
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 60px;
}

.main_header_wrap .logo {
    position: relative;
}

.main_header_wrap .logo img {
    width: 150px;
    height: 150px;
    position: absolute;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    top: -75px;
}

.main_header_wrap .nav-menu {
    display: flex;
    list-style: none;
}

.main_header_wrap .nav-menu li {
    display: inline-block;
    margin: 0 15px;
    position: relative;
}

.main_header_wrap .nav-menu li a span {
    font-size: 12px;
}

.main_header_wrap .nav-menu a {
    padding: 20px 1rem;
    color: #333;
    text-transform: uppercase;
    transition: .4s ease-in-out;
}

.main_header_wrap .nav-menu a:hover {
    background: #ffbc01;
    color: #fff;
}

.main_header_wrap .dropdown {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    animation: slideDown 0.3s ease-in-out;
    z-index: 999;
}

.main_header_wrap .dropdown li {
    display: block;
    margin: 0;
}

.main_header_wrap .dropdown li a {
    display: block;
    padding: .5rem 1rem;
    transition: .4s ease-in-out;
}

.main_header_wrap .dropdown li a:hover {
    color: #fff;
}


.main_header_wrap .nav-menu li:hover .dropdown {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: black;
    margin: 6px 0;
    transition: 0.3s;
    user-select: none;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.search-icon {
    padding: 20px 1rem;
    font-size: 20px;
    cursor: pointer;
    background: #fdb813;
    color: #fff;
}

.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 999;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: 5px;
}

.search-box input {
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    border: 1px solid #eee;
    outline: none;
}

.search-box button {
    padding: 10px 15px;
    background: #fdb813;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #fdb813;
    color: #fff;

}

.close-search {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .main_header_wrap .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding-top: 50px;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 0 10px 1px rgba(0, 0, 0, .2);
        z-index: 999;
    }

    .main_header_wrap .nav-menu li {
        margin: 0;
    }

    .main_header_wrap .nav-menu li:first-child a {
        background: #fdb813;
        color: #fff;

    }

    .main_header_wrap .nav-menu a {
        padding: .5rem 1rem;
        display: block;
    }

    .main_header_wrap .nav-menu.active {
        left: 0;
    }
}






/* =============== Footer Css Start ============ */
.footer_top {
    padding: 40px 0;
    background: #1e2746
}

.footer_widget {}

.footer_widget h4 {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    border-bottom: 1px solid #fdb813;
}

.footer_widget ul li strong {
    color: #dbdbdb;
}

.footer_widget ul li a {
    color: #dbdbdb;
    display: block;
    margin: 10px 0;
    transition: .4s ease-in-out;
}

.footer_widget ul li a:hover {
    color: #fdb813;
    margin-left: 2px;
}

.share-container>div {
    margin: 5px;
}

.share-button {
    width: 90%;
    min-height: 30px;
    height: 100%;
    color: white;
    font-size: 12px;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .2);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5px;
}

.share-button i {
    font-size: 2em;
}



/** Social button colors **/
.share-button-twitter {
    background: #00aced;
}

.share-button-twitter:hover,
.share-button-twitter:active {
    background: #0084b4;
}

.share-button-facebook {
    background: #3B5997;
}

.share-button-facebook:hover,
.share-button-facebook:active {
    background: #2d4372;
}

.share-button-googleplus {
    background: #D64937;
}

.share-button-googleplus:hover,
.share-button-googleplus:active {
    background: #b53525;
}

.share-button-whatsapp {
    background: #43d854;
}

.share-button-whatsapp:hover,
.share-button-whatsapp:active {
    background: #009688;
}


.acc_img_item {
    margin-top: 5px;
    padding: .5rem;
    width: 80%;
    height: 50px;
    background: #fff;
}
.associate_wrapper img {
    width: 100%;
    height: 100%;
}


.footer_bottom {
    padding: 1rem;
    text-align: center;
    background: #fdb813;
}

.footer_copyright p {
    margin-bottom: 0;
    color: #ffff;
}

.footer_copyright p a {
    color: #dd0023;
}

/* =============== Footer Css End ============ */