@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-left: 15px;
  padding-right: 15px;
}

:root {
  --body-font-family: "Inter", sans-serif;
  --heading-font-family: "Raleway", sans-serif;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

img {
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a,
a:hover {
  text-decoration: none;
  color: var(--e-global-color-white);
}

.slick-arrow {
  -webkit-transform: translate(0, 0%);
  -ms-transform: translate(0, 0%);
  transform: translate(0, 0%);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: calc(100% - 100px);
  max-width: 1440px;
}

body {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  position: relative;
  color: var(--e-global-dark-color);
  font-family: var(--body-font-family);
  margin: 0;
  padding: 0;
}

.section {
  position: relative;
  padding: 50px 0;
  clear: both;
  width: 100%;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1 {
  font-family: var(--heading-font-family);
}

.only_desktop_view {
  display: block;
}

.only_mobile_view {
  display: none;
}

.button a,
.button button {
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding: 16px 32px;
  border-radius: 40px;
  border: none;
  border: solid 2px transparent;
  color: var(--e-global-color-white);
  background: var(--e-global-theme-color);
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

.button a:hover,
.comprehensive button:hover {
  background: transparent;
  border: 2px solid var(--e-global-theme-color);
  color: var(--e-global-theme-color);
}

.button button:focus {
  outline: none;
  box-shadow: none;
}

.green_button a {
  background: var(--e-global-light-green-color);
  border: 2px solid transparent;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}

.green_button a:hover {
  background: transparent;
  border: 2px solid var(--e-global-light-green-color);
  color: var(--e-global-light-green-color);
}

.white_border_button a {
  background: transparent;
  border-color: var(--e-global-color-white);
}

.theme_border_button a {
  background: var(--e-global-color-white);
  border-color: #ceac5e;
  color: #16100b;
}

.theme_border_button a:hover {
  background: #ceac5e;
  color: var(--e-global-color-white);
}

header {
    position: relative;
    z-index: 96;
}

.header_top {
  width: 100%;
  border-bottom: solid 1px #d4d4d4;
}

.header_top_left {
}

.header_top_left_box {
  border-right: solid 1px #e0e0e0;
  padding: 10px 15px;
}

.header_top_left_box span {
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
}

.header_top_left_box span img {
  margin-right: 5px;
}

.header_top_left_box h4 {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-top: 4px;
}

.header_top_right {
  display: flex;
  justify-content: flex-end;
}

.header_top_right_box {
  padding: 15px 10px;
  display: flex;
  align-items: center;
  border-right: solid 1px #e0e0e0;
}

.header_top_right_box ul {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
}

.header_top_right_box ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #000;
}

.header_top_right_box ul li span {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #4d4d4d;
}

.header_top_right_box select,
.header_top_right_box .goog-te-gadget-simple {
  background: #fff;
  padding: 8px 10px;
  border-radius: 4px;
  border: solid 1px #d1d1d1;
}

.header_bottom {
  width: 100%;
}

.menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu ul li {
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 18.78px;
  text-align: left;
}

.menu ul li a {
  padding: 15px 30px;
  color: #565656;
  display: inline-block;
}

.menu ul li.active a,
.menu ul li a:hover {
  background: rgba(199, 137, 17, 0.2);
  color: #87703d;
}

.header_bottom_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.all_button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.all_button a {
  padding: 10px 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #bf8e27;
  border: solid 1px #bf8e27;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.44px;
}

.all_button a.white_button {
  background: #fff;
  color: #87703d;
  border-color: #fff;
}

.business_lead_sec {
  width: 100%;
  padding: 50px 15px;
  background: #ebebeb;
  position: relative;
}

.business_lead_right_overlay {
  width: 60%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border-radius: 900px 0 0 0;
  background: linear-gradient(254.85deg, #bf8e27 -1.93%, #87703d 151.9%);
}

.business_lead_left {
  font-size: 13px;
  font-weight: 500;
  color: #585858;
  display: flex;
  align-items: center;
}

.business_lead_left h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  text-align: left;
  color: #181818;
  margin-top: 0;
}

.business_lead_right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  float: right;
  margin: 0 0 0 auto;
  padding-left: 100px;
}

.business_lead_right > div {
    height: 80px;
}

.business_lead_right select {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.44px;
  color: #676767;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 3px 0px #00000021;
  width: 190px;
  height: 42px;
  margin: 0;
}

.business_lead_right select:focus {
  outline: none;
  box-shadow: none;
}

.business_lead_right button {
  padding: 5px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #232323;
  border: solid 1px #232323;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.44px;
  width: 190px;
  height: 42px;
}

.business_lead_right button i {
  color: #be8d27;
}

.home_sec3 {
}

.home_sec3_left {
}

.home_sec3_full {
  width: 100%;
  border: 1px solid #dedede;
}

.home_sec3_full_top {
  width: 100%;
  padding: 10px 15px;
  border-bottom: 1px solid #dedede;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.home_sec3_full_top:before {
  width: 4px;
  height: 70%;
  border-radius: 0 10px 10px 0;
  background: #bf8e27;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.home_sec3_full_top h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 23.48px;
  text-align: left;
  color: #2f2d2a;
}

.home_sec3_full_top a {
  padding: 10px 13px;
  background: #c78911;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.44px;
  text-align: left;
  border-radius: 2px;
  color: #fff;
  font-family: var(--heading-font-family);
}

.home_sec3_full_body {
  width: 100%;
  height: 438px;
  padding: 10px 15px;
}

.home_sec3_full_scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.home_sec3_full_scroll::-webkit-scrollbar {
  width: 3px;
}

.home_sec3_full_scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #e9e9e9;
}

.home_sec3_full_scroll::-webkit-scrollbar-thumb {
  background: #6d5a2f;
  border-radius: 10px;
}

.home_sec3_full_content {
  width: 100%;
  padding-right: 15px;
}

.home_sec3_full_content ul li {
  width: 100%;
  padding: 12px 4px;
  border-top: solid 1px #e1e1e1;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  text-align: left;
  color: #3f3f3f;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home_sec3_full_content ul li b {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  text-align: right;
  color: #87703d;
}

.home_sec3_full_content ul li:first-child {
  border-top: none;
}

.home_sec4 {
  width: 100%;
  background: #f3f3f3;
}

.home_sec4 .container {
    position: relative;
}

.home_sec4_box_wrap {
}

.home_sec4_box {
  background: #fff;
  padding: 0 15px 25px;
  border: 1px solid #bf8e27;
}

.home_sec4_box_heading {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid #6d5a2f;
  text-align: center;
  margin-bottom: 15px;
}

.home_sec4_box_heading h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  color: #2f2d2a;
  text-transform: capitalize;
}

.home_sec4_box_image {
  width: 100%;
  height: 150px;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}

.home_sec4_box_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.home_sec4_box_content {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  text-align: left;
  color: #3f3f3f;
}

.home_sec4_box_content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  margin-bottom: 8px;
  color: #000;
}

.home_sec4_box_content a {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  text-align: left;
  color: #3f3f3f;
  text-decoration: underline;
}

.home_sec4_box .all_button {
  margin-top: 20px;
}

.home_sec4_box .all_button a {
  width: 100%;
}

.map_2_overlay {
  width: 35.33%;
  background: #bf8e27;
  border-radius: 0;
}

.map_2_overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.home_sec4_box_map .home_sec4_box {
  background: transparent;
}

.home_sec4_box_map .home_sec4_box .home_sec4_box_heading {
  text-align: center;
  border-color: #fff;
}

.home_sec4_box_map .home_sec4_box .home_sec4_box_heading h4 {
  color: #fff;
}

.home_sec4_box_map .home_sec4_box .home_sec4_box_content,
.home_sec4_box_map .home_sec4_box .home_sec4_box_content a {
  color: #fff;
}

.home_sec4_box_content ul {
  margin-bottom: 20px;
}

.home_sec4_box_content ul li {
  width: 100%;
  padding: 14px 4px;
  border-top: 1px solid #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  text-align: left;
  color: #fff;
}
.home_sec4_box_content ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
}

.home_sec4_box_content ul li .icon {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home_sec4_box_content ul li:first-child {
  border-top: none;
}

.home_sec4_box_scroll {
  width: 100%;
  height: 340px;
  overflow-y: auto;
  padding-right: 10px;
}

.home_sec4_box_scroll::-webkit-scrollbar {
  width: 3px;
}

.home_sec4_box_scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #e9e9e9;
}

.home_sec4_box_scroll::-webkit-scrollbar-thumb {
  background: #6d5a2f;
  border-radius: 10px;
}

.home_sec5 {
}

.home_sec5_left {
  padding-right: 50px;
}

.home_sec5_left nav {
}

.home_sec5_left nav .nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  border: none;
}

.home_sec5_left nav .nav .nav-link {
  background: #f3f3f3;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  text-align: left;
  color: #c78911;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 2px;
  border: solid 1px #f3f3f3;
}

.home_sec5_left nav .nav .nav-link.active {
  border-color: #c78911;
  font-weight: 600;
}

.home_sec5_left nav .nav .nav-link:focus {
  outline: none;
  box-shadow: none;
}

.home_sec5_left .tab-content {
  border: none;
  background: transparent;
  margin-top: 30px;
}

.home_sec5_left .home_sec3_full_top a {
  padding: 0;
  color: #a38032;
  background: transparent;
  font-size: 26px;
}

.home_sec5_left .home_sec3_full {
  border: none;
}

.home_sec5_left .home_sec3_full_body {
  padding: 0 15px 0 0;
}

.home_sec5_left .home_sec3_full_content ul li {
  padding: 0;
}

.home_sec5_left .home_sec3_full_content ul li a {
  width: 100%;
  padding: 12px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3f3f3f;
}

.home_sec5_left .home_sec3_full_content ul li a span img {
  margin-right: 10px;
}

.home_sec5_right {
}

.home_sec5_right_image {
  width: 100%;
  height: 510px;
  border-radius: 4px;
  overflow: hidden;
}

.home_sec5_right_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.footer {
  width: 100%;
  background: #e9e9e9;
  padding: 20px 0;
}

.footer_left {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  text-align: left;
  color: #3f3f3f;
}

.footer_left p {
  margin: 0 0 5px;
}

.footer_right {
}

.footer_right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer_right ul li {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  text-align: right;
  border-right: solid 1px #3f3f3f;
}

.footer_right ul li:last-child {
  border: none;
}

.footer_right ul li a {
  color: #3f3f3f;
  padding: 0 5px;
}





.main_page_header .menu ul li {
    font-size: 12px;
    position: relative;
}

.main_page_header .menu ul li a {
    padding: 10px 12px;
}

.main_page_header .menu ul li ul {
    width: 250px;
    max-height: 400px;
    position: absolute;
    overflow-y: auto;
    background: #bf8e27;
    box-shadow: 0 0 5px #ccc;
    top: 100%;
    right: 0;
    display: none;
}

.main_page_header .menu ul li ul::-webkit-scrollbar {
  width: 4px;
}

.main_page_header .menu ul li ul::-webkit-scrollbar-thumb {
  background: #fff; 
  border-radius: 10px;
}

.main_page_header .menu ul li ul::-webkit-scrollbar-track {
  border-radius: 10px;
}

.main_page_header .menu ul li:hover ul {
    display: block;
}

.main_page_header .menu ul li ul li a {
    width: 100%;
    color: #fff;
}




#fade_data p {
    background: transparent !important;
}

.pageee {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.pageee ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pageee ul li {
    display: flex !important;
}

.pageee ul li a,
.pageee ul li span {
    background: #bf8e27 !important;
    border: solid 1px #bf8e27 !important;
    padding: 8px 15px;
    color: #fff;
    font-weight: 600;
    line-height: 1.25;
}

.pageee ul li a:hover,
.pageee ul li.active span.current {
    color: #fff;
    background: #855a00 !important;
}

.pageee ul li span.ellipse {
    background: transparent !important;
    border: none !important;
    color: #000;
    padding: 8px 4px;
}







.loader_bg {
	width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader {
  border: 10px solid transparent;
  border-radius: 50%;
  border-top: 10px solid #bf8e27;
  border-right: 10px solid #bf8e27;
  border-bottom: 10px solid #bf8e27;
  width: 100px;
  height: 100px;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}