.main-wrapper{
    background-color: black;
}
*{
    font-family: var(--br_Regular);
}
.main-nav ul li > a{
    font-weight: 500;
    font-family: var(--br_Medium);
    color: rgb(0, 0, 0);
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    padding: 18px 18px !important;
    white-space: nowrap;
    position: relative; 
    transition: 0.3s;
}
.header_main ul li.menu-item > a.menu-item-link > span{
    font-family: var(--br_Medium), sans-serif;
}
#search_box{
    top: 50px;
}
.banner{
    position: relative;
}
.banner img{
    border-radius: 40px;
}
.banner .banner_caption{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.banner .banner_caption h1{
    margin-bottom: 0;
    font-size: 40px;
}
.banner .banner_caption .bottom_text{
    width: 300px;
    position: absolute;
    bottom: 10%;
    text-align: end;
    color: red;
}
.banner .banner_caption .right_text{
    width: 100px;
    position: absolute;
    bottom: 40%;
    right: 20%;
    color: rgb(255, 255, 255);
    border-left: 2px solid white;
    padding-left: 30px;
    height: 200px;
    display: flex;
    align-items: center;
}
@media (max-width: 769px){
    .banner .banner_caption h1{
        margin-bottom: 0;
        font-size: 20px;
    }
    .banner .banner_caption .bottom_text{
        width: 100%;
        position: absolute;
        bottom: 10%;
        text-align: end;
        color: red;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .banner .banner_caption .right_text{
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        color: rgb(255, 255, 255);
        border-left: none;
        padding-left: 0;
        height: 200px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.radio_style label input{
    background: transparent;
    user-select: none;
    appearance: none;
    position: relative;
    width: 30px;
}
.radio_style label input::before{
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid red;
}
.radio_style label input:checked:before{
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: red;
    border: 3px solid white;
    outline: 1px solid red;
}

.radio_style label{
    display: flex;
    gap: 10px;
    padding: 5px 0;
    font-weight: bold;
}
.input_table .form-control, .input_table .form-select{
    background: transparent;
    border: none;
    box-shadow: none;
    color: white;
}
.form-select{
    background: black !important;
}