/* top header section start */
.top_header_section_main {
    height: 50px;
    display: flex;
    align-items: center;
      background: linear-gradient(to right, black 70%, #fbbc04 30%);
}

.top_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email_container {
    display: flex;
    gap: 15px;
}

.email_container a {
    color: rgb(255, 255, 255);
    transition: all 0.3s ease;
}

.email_container a:hover {
    color: #e1c1c2;
}

.email_container a i {
    padding-right: 2px;
}

.top_header_social {
    display: flex;
    gap: 5px
}

.top_header_social .top_header_social_icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(to top, #8D2C16, #FB9907);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.top_header_social .top_header_social_icon:hover {
    background-color: #E03A3C;
}

/* top header section end */


/* mid header section start */
.mid_header_section_main {
    /*background: linear-gradient(to top, 20% #8D2C16, white);*/
    position: relative;
    padding: 10px 0px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
}

/*.mid_header_section_main::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 20px;*/
/*    background: linear-gradient(to top, #8D2C16, #FB9907);*/
/*}*/

.mid_header_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mid_header_section .logo {
    width: 100px;
    height: 100px;
}

.mid_header_section .logo img {
    width: 100%;
    height: 100%;
}

.mid_title h1 {
    color: #902B12;
    font-weight: bold;
    font-family: sans-serif;
    margin: 0;
}


/* mid header section start */


/* mai header section start */
.main_header_section {
    position: relative;
    /* Needed for ::after positioning */
    width: 100%;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}



.main_header_btn {
    position: relative;
    overflow: hidden;
    padding: 12px 30px;
    border: none;
    background-color: #902B12 !important;
    color: white;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
        rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.main_header_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background-color: white;

    z-index: 0;
    transition: left 0.4s ease;
}

.main_header_btn:hover::before {
    left: 0;
}

.main_header_btn:hover {
    color: #902B12 !important;
}

.main_header_btn span {
    position: relative;
    z-index: 1 !important;
}


.navmenu li a {
    transition: all 0.3s ease;
}

.navmenu .active {
    color: #902B12 !important;
    font-weight: bold !important;
}

.navmenu li a:hover {
    color: #902B12 !important;
}

/* mai header section end */

/* body page section start */
.member_counted_details .stats-item {
    background: linear-gradient(to top, #8D2C16, #FB9907);
    color: white;
}

.member_counted_details .stats-item span {
    color: white;
}

.member_counted_details i {
    background: linear-gradient(to top, #8D2C16, #FB9907);
    color: white;
}

.team_member_img {
    height: 200px;
    width: 100%;
    border-radius: 5px;
}

.team_member_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 5px;
}

/* body page section end */

/* breadcrum sections start */
.breadcrum_section_main {
    background-image: url('../img/bredcrum.jpg');
    background-size: cover;
    background-position: center;
    height: 350px;
    position: relative;
}

.breadcrum_section_main_overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #00000084;
}

.breadcrum_section_main_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.breadcrum_section_main_content h1 {
    color: white;
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.553);
}

.breadcrum_section_main_content p {
    background-color: #ffffffae;
    margin: 0;
    padding: 4px 10px;
    border-radius: 5px;
    display: inline;
}

.breadcrum_section_main_content p a {
    color: #000;
    transition: all 0.3s ease;
}

.breadcrum_section_main_content p a:hover {
    color: #E13F39;
}

.breadcrum_section_main_content span {
    color: #E13F39;
}

/* breadcrum sections end */

/* foter section start */
.footer {
    background-color: #902B12;
}

.bottom_footer_section {
    background-color: #621d0c;
    display: flex;
    align-items: center;
    height: 70px;
}

.bottom_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom_footer p {
    margin-bottom: 0px !important;
    color: rgb(232, 232, 232) !important;
}

/* foter section end */
.MenuIcon {
    color: white;
    font-size: 25px !important;
}

.main_header_contentet,
.MenuIcon_main {
    display: none;
}

.MenuIcon_main {
    padding-right: 20px;
    width: 50% !important;
    color: red;
}

.main_header_contentet {
    background-color: transparent !important;
    color: #902B12 !important;
    font-weight: bold;
    font-size: 25px !important;

}

/*.main_header_contentet span {*/
/*    margin-right: 50px !important;*/
/*}*/

.main_header_btn_icon {
    display: none;
}

.main_header_contentet_smaill {
    display: none !important;
}

/* media query for resposive */
@media(max-width:1025px) {
    .mid_header_section_main {
        display: none;
    }

    .main_header_section {
        border-radius: 0;
    }

    .header .main_header_btn {
        margin-left: 24px;
    }

    .main_header_btn {
        display: none !important;
    }

    .main_header_contentet,
    .MenuIcon_main {
        display: block;
    }
}

@media(max-width:768px) {
    .main_header_contentet span {
        margin-right: 0px !important;
    }
}

@media(max-width:426px) {
    .top_header_section_main {
        display: none;
    }

    .main_header_btn,
    .main_header_contentet {
        display: none;
    }

    .main_header_btn_icon,
    .main_header_contentet_smaill {
        display: block !important;
    }

    .header .main_header_btn {
        margin: 0;
    }

    .main_header_contentet span {
        margin-right: 10px !important;
    }

    .MenuIcon_main {
        padding-right: 0 !important;
    }

    .main_header_section {
        position: relative;
        width: 100%;
    }
    .breadcrum_section_main {
        height: 250px !important;
    }

    .breadcrum_section_main_content h1 {
        font-size: 30px;
    }

    .bottom_footer {
        display: flex;
        flex-direction: column;
    }
}

@media(max-width:376px) {
    .main_header_contentet span {
        margin: 0 !important;
        margin-right: 10px !important;
    }
    .bottom_footer p{
        font-size: 12px !important;
    }
}

@media(max-width:321px) {
    .heroSection_btn {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}