/*reset start*/
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraLight.woff2') format('woff2'),
        url('../fonts/Montserrat-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
        url('../fonts/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




html {
    position: relative;
    min-height: 100%;
}

body {
    color: var(--black-color);
    font-size: 62.5% !important;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -font-smoothing: antialiased;
    font-family: var(--font-rg), sans-serif !important;
    overflow-x: hidden;
}

.container{
    max-width: 1220px;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

img {
    border: none;
    outline: none;
    -moz-user-select: none;
    user-select: none;
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    outline: none;
    background: transparent;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

p {
    font-size: 1.8em;
    color: var(--gray-color);
    font-family: var(--font-rg);
    line-height: 1.4;
    word-break: break-word;
}

input:focus,
.input {
    outline: 0;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
select,
textarea {
    font-family: var(--font-rg);
    font-size: 1.8em;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-bd);
    /* word-spacing: 0.2em; */
    word-break: break-word;
    margin-bottom: 0;
    color: var(--black-color);
    margin-top: 0 !important;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.3rem;
}

h3 {
    font-size: 2.1em;
}

h4 {
    font-size: 1.8em;
}

h5 {
    font-size: 1.5em;
}

h6 {
    font-size: 1.3em;
}

main,
section,
header,
nav,
footer,
aside,
figure,
figcaption,
article,
hgroup {
    display: block;
}

textarea {
    resize: none;
    outline: none;
}

select {
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clear {
    clear: both;
}

.clear:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

p:empty {
    display: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
    padding: 1em 0;
}

::selection {
    background: var(--black-color);
    color: #fff;
    text-shadow: none;
}

::-webkit-input-placeholder {
    color: #6a6969 !important;
}

::-moz-placeholder {
    color: #6a6969 !important;
    opacity: 1;
}

:-moz-placeholder {
    color: #6a6969 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #6a6969 !important;
}

input:-moz-placeholder {
    box-shadow: none !important;
}

select::-ms-expand {
    display: none;
}

button,
button:active,
button:focus {
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active,
input:-webkit-autofill:focus {
    background-color: transparent !important;
    --webkit-box-shadow: 0 0 0 1000px white inset !important;
    --webkit-text-fill-color: #555555 !important;
}

select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:active,
select:-webkit-autofill:focus {
    background-color: transparent !important;
    --webkit-box-shadow: 0 0 0 1000px white inset !important;
    --webkit-text-fill-color: #555555 !important;
}
.btn{
        cursor: pointer;
    border: 0;
    padding: 10px 40px;
    border-radius: 50px;
    background: linear-gradient(129.11deg, #a77041, #673821);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    color: #fff;
    font-size: 20px;
     cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.btn:hover{     
    color: #fff;
    background: linear-gradient(to right, #5c331d, #a47148); /* Reverse gradient */
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3); /* Glow */
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(227, 44, 39, 1);
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-decoration: none;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s ease;
    text-align: center;
    color: #fff;
    z-index: 100;
}

.section-py-50{
    padding-top: 70px;
    padding-bottom: 70px;
}

.scroll-top i {
    line-height: 40px;
}

.mr-top {
    margin-top: 50px;
}

.mr-bottom {
    margin-bottom: 50px;
}

.mrtop-mrbot {
    margin: 50px 0;
}

.square-shap-thumbs{
     background: linear-gradient(90deg, #673821 36.81%, rgba(241, 241, 241, 0.1) 106.22%);
     border-radius: 0 var(--br-51xl) 0 var(--br-101xl);
     padding: 5px;
}
.square-radius-shap{

    border-radius: 0 var(--br-51xl) 0 var(--br-101xl);
    /* border: 5px solid var(--primary-color); */
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
        border: transparent;
    
}
.square-radius-icon {
    cursor: pointer;
    border: 0;
    padding: 0;
    background-color: var(--color-saddlebrown-100);
    height: 77px;
    width: 78px;
    position: relative;
    border-radius: var(--br-8xs);
}
.text-primary{
color: var(--primary-color) !important;
}

.bg-primary{
background-color: var(--primary-color) !important;
}


.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    background: transparent !important;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible,
button[type="button"]:focus{
    border:none;
    background: transparent;
    box-shadow: none !important;
}
/*===============================================================
reset ends
=================================================================*/
