
:root{
    --gray-color: #EFEDED;
    --dark-gray-color: #808080;
    --white-color: #ffffff;
    --logo-dark-color: #351909;
    --black-color: #000000;
    --light-browne: #caa657;
    --light-light-browne: #faf8f2;
}
html,body{
    width: 100%;
    height: 100%;
}
::selection{
    background-color: var(--light-browne);
    color: var(--black-color);
}
/* Custom Scrollbar section start */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #caa657, #351909);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #351909, #caa657);
}
/* Custom Scrollbar section end */
a{
    text-decoration: none;
}
ul,li{
    list-style: none;
}
.ul_custom, .li_custom{
    list-style: disc;
}
.maxWidth{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    /* border: 1px solid red; */
}

.left_right_padding{
    padding-left: 1rem;
    padding-right: 1rem;
}

.unick_color{
    color: var(--light-browne);
}
.unick_bg_color{
    background-color: var(--light-browne) !important;
}
.btn_bg_color{
    background-color: var(--logo-dark-color) !important;
}
p{
    font-size: 1rem !important; 
    line-height: 1.5rem !important;
}