@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;800;900&display=swap);

:root {
    --brown: #ac8054;
    --gray: #484848;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
  font-family: 'Montserrat', Arial;
  color: var(--brown);
  overflow-y: hidden;
}

.container {
    max-width: 1280px!important;
}
/* Loader styles */
.loader {
    width: 48px;
    height: 48px;
    border: 6px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 0.9s linear infinite;
}

@keyframes rotation {
    0% {
        transform: translate(-50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%) rotate(360deg);
    }
} 
.loader ~ .opacity {
    background-color: rgba(0, 0, 0, 0.547);
    z-index: 99;
    position: fixed!important;
    backdrop-filter: blur(3px);
}

.main {
    height: 400px!important;
}

ul, ol {
    padding-left: 0!important;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--gray);
    display: inline-block;
    cursor: pointer;
}
a:hover {
    color: inherit;
}
.button {
    width: 250px;
    font-size: 1.125rem;
    color: #fff!important;
    border: 0!important;
    border-radius: 5px!important;
    padding: 0.75rem 2rem!important;
    font-weight: 500!important;
    transition: all ease-in-out 0.2s!important;
}
.btn-brown {
    background-color: var(--brown);
}
.btn-warning {
    background-color: rgb(255, 191, 0);
}
.btn-brown:hover,
.btn-brown:focus,
.btn-warning:hover {
    background-color: #ffcf3f;
}

/* Scrollbar style */
::-webkit-scrollbar {
    width: 7px!important;
    height: 7px!important;
}
::-webkit-scrollbar-thumb {
    background: var(--brown);
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    background: #fff;
}
::selection {
    background: var(--brown);
    color: #fff;
}
.text-style {
    color: var(--gray);
    font-size: 0.9375rem;
}
.section-text {
    color: var(--gray);
    font-size: 1.125rem;
    line-height: 1.875rem;
}
.text-brown {
    color: var(--brown)!important;
}
.text-gray {
    color: var(--gray)!important;
}
.title-style {
    color: var(--brown);
    font-size: 2.5625rem;
    font-weight: 600;
    margin: 2.5rem 0;
}
.section-title > .section-title__border {
    background-color: #000;
    width: 60px;
    height: 4px;
    margin-top: 10px;
}
.section-title__text {
    font-size: 2.125rem;
    font-weight: 600;
    color: #363636;
}
.dropdown-menu {
    width: 40px!important;
    padding: 0.75rem 0!important;
    transition: all ease 0.2s;
    border: 0!important;
    border-radius: 0;
    border-radius: 1rem 0 1rem 0;
    -webkit-box-shadow: 0px 0px 48px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 48px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 48px -2px rgba(0, 0, 0, 0.2);
}
.dropdown-menu > li {
    padding: 0.5rem 0;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}
.dropdown-menu > li:hover {
    color: #000;
}
img {
    pointer-events: none;
}