
.bg-header
{
    background-color: #BB8525;
}
.bg-dark{
    background-color: #181818!important;
}
.text-menu-color{
    color: #8C0E0F!important;
}
@import url("../css/vendor/canela-font.css");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --rt-theme: #09A24F;
  --rt-primary: #BB8525;/*890C25*/
  --rt-primary-1: #D2A63C; /*B71A34*/
  --rt-primary-2: #EECD5C;/*890C25*/
  --rt-secondary: #8C0E0F;
  --rt-tertiary:#08324B;
  --rt-text:#031b2b;
  --rt-footer: #181818;
  --rt-body: #737477;
  --rt-heading: #262626;
  --rt-white:#fff;
  --rt-rating: var(--rt-primary);
  --rt-border: #D9D9D9;
  --rt-line: #eee;
  --rt-hover: #AF0E2E;
  --copyright-border: #242424;
  --rt-radius:3px;
  --rt-radius-none: none;
  --rt-none: none;
  --footer-bg: #181818;
  --light-white: #f6f6f6;
  --color-success: #3EB75E;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --f-light: 300;
  --f-regular: 400;
  --f-medium: 500;
  --f-semi-bold: 600;
  --f-bold: 700;
  --f-extra-bold: 800;
  --f-black: 900;
  --translate: translate(-50%, -50%);
  --transition: all 0.4s ease;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Canela trial";
  --font-hind: "Hind", sans-serif;
  --fontawesome: "fontawesome", sans-serif;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 64px;
  --h2: 48px;
  --h3: 40px;
  --h4: 36px;
  --h5: 24px;
  --h6: 20px;
  --p-l: 24px;
  --p-m: 20px;
  --p-s: 16px;
  --p-xs: 14px;
}

/*==== canela font =======*/
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  font-size: var(--p-s);
  line-height: var(--line-height-b2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-primary);
  color: var(--rt-body);
  font-weight: var(--f-regular);
  position: relative;
  overflow-x: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
  }
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.05;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
  margin: 0;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: var(--font-secondary);
  line-height: 1.2;
  color: var(--rt-heading);
}

h1,
.h1 {
  font-size: var(--h1);
  line-height: 91px;
}

h2,
.h2 {
  font-size: var(--h2);
  line-height: 1.23;
}

h3,
.h3 {
  font-size: var(--h3);
  line-height: 54px;
}

h4,
.h4 {
  font-size: var(--h4);
  line-height: 1.25;
}

h5,
.h5 {
  font-size: var(--h5);
  line-height: 1.24;
}

h6,
.h6 {
  font-size: var(--h6);
  line-height: 1.25;
}

.font-32 {
  font-size: 32px;
  line-height: 40px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
}

.sidebar.sidebar-pills .nav-link.active, .sidebar.sidebar-pills .nav-link{
    color: var(--rt-white)!important;
}

.sidebar.sidebar-pills .nav-link.active, .sidebar.sidebar-pills .nav-link:hover{
    color: var(--rt-primary)!important;
}

.btn-primary{
    color: #FFFFFF;
    background-color: var(--rt-primary);
    border-color: var(--rt-primary);
}
.btn-primary:hover{
    color: #FFFFFF;
    background-color: var(--rt-primary);
    border-color: var(--rt-primary);
}


