:root {
  --theme-color-primary: 242, 98, 0;
  --theme-bg-color-primary: 242, 98, 0;
  --theme-color-second: 245, 236, 219;
  --theme-bg-color-second: 245, 236, 219;

  --theme-color-black: 19, 18, 18;
  --theme-color-black-light: 66, 65, 65;
  --theme-bg-color-black: 19, 18, 18;
  --theme-bg-color-black-light: 66, 65, 65;
  --theme-bg-color-gray-light: 246, 248, 249;
}

body {
  position: relative;
  line-height: 1.6;
  font-weight: 600;
  color: rgb(var(--theme-color-black-light));
  font-size: 16px;
  background: #fff;
  font-family: "Jost", sans-serif;
}

::-moz-selection {
  background: rgb(var(--theme-bg-color-primary));
  color: #fff;
}

::selection {
  background: rgb(var(--theme-bg-color-primary));
  color: #fff;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  text-decoration: none;
  color: rgb(var(--theme-color-primary));
}

a:hover {
  text-decoration: none;
  color: rgba(var(--theme-color-primary), .58);
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  color: rgb(var(--theme-color-black));
}

.bg-black {
  background-color: rgb(var(--theme-bg-color-black));
}
.bg-black-light {
  background-color: rgb(var(--theme-bg-color-black-light));
}
.bg-gray-light {
  background-color: rgb(var(--theme-bg-color-gray-light));
}

/* Header */
header {
  margin-bottom: 0;
  width: 100%;
  padding: 1rem;
  background: rgb(var(--theme-bg-color-second));
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 4px 0 rgba(238,238,238,0.5);
}
body.header-float header{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1999;
  border-bottom: none;
  box-shadow: none;
}

header .toggle-button {
  position: absolute;
  right: 0;
}

header .site-logo {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
}

header .site-logo a {
  text-transform: uppercase;
  color: rgb(var(--theme-color-primary));
}

@media (max-width: 991.98px) {
  header .site-logo {
    float: left;
    position: relative;
  }
}

header .site-navigation.border-bottom {
  border-bottom: 1px solid white !important;
}

header .site-navigation .site-menu {
  margin: 0;
  padding: 0;
}

header .site-navigation .site-menu .active {
  color: rgb(var(--theme-color-black)) !important;
}

header .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

header .site-navigation .site-menu > li {
  display: inline-block;
}

header .site-navigation .site-menu > li > a {
  margin-left: 15px;
  margin-right: 15px;
  padding: 10px 0;
  color: rgba(var(--theme-color-black), .7) !important;
  display: inline-block;
  text-decoration: none !important;
  font-size: 1.1rem;
  font-weight: 400;
}

header .site-navigation .site-menu > li > a:hover {
  color: rgb(var(--theme-color-black)) !important;
}

header .site-navigation .site-menu > li.active > a {
  color: rgb(var(--theme-color-black)) !important;
  font-weight: 600;
}

header .site-navigation .site-menu .has-children {
  position: relative;
}

header .site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 20px;
}

header .site-navigation .site-menu .has-children > a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

header .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #f26200;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

header .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}

header .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  display: none;
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

header .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

header .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: rgb(var(--theme-color-black)) !important;
}

header .site-navigation .site-menu .has-children .dropdown a.active {
  color: rgb(var(--theme-bg-color-primary)) !important;
  background: #f8f9fa;
}

header .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}

header .site-navigation .site-menu .has-children .dropdown > li > a {
  padding: 9px 20px;
  display: block;
}

header .site-navigation .site-menu .has-children .dropdown > li > a:hover {
  background: #f8f9fa;
  color: #ced4da;
}

header .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
  content: "\e315";
  right: 20px;
}

header .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, header .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
  left: 100%;
  top: 0;
}

header .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a, header .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, header .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
  background: #f8f9fa;
  color: #ced4da;
}

header .site-navigation .site-menu .has-children:hover > a, header .site-navigation .site-menu .has-children:focus > a, header .site-navigation .site-menu .has-children:active > a {
  color: rgb(var(--theme-bg-color-primary));
}

header .site-navigation .site-menu .has-children:hover, header .site-navigation .site-menu .has-children:focus, header .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

header .site-navigation .site-menu .has-children:hover > .dropdown, header .site-navigation .site-menu .has-children:focus > .dropdown, header .site-navigation .site-menu .has-children:active > .dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

/* Footer */
footer {
  padding: 4em 0;
  background: rgb(var(--theme-bg-color-second));
}

@media (min-width: 768px) {
  footer {
    padding: 6em 0 2em;
  }
}

footer .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

footer h2, footer h3, footer h4, footer h5 {
  color: rgb(var(--theme-color-black));
}

footer a {
  color: rgba(var(--theme-color-black-light), .5);
}

footer a:hover {
  color: rgb(var(--theme-color-black-light));
}

footer ul li {
  margin-bottom: 10px;
}

footer .footer-heading {
  font-size: 16px;
  color: #fff;
}

footer .site-logo-footer a{
  color: rgb(var(--theme-color-primary));
}

footer .copyright {
  text-align: center;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #ced4da;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: rgb(var(--theme-bg-color-primary));
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li .nav-link.active {
  color: rgb(var(--theme-bg-color-primary));
}

.site-mobile-menu .site-nav-wrap li.active > a {
  color: rgb(var(--theme-bg-color-primary));
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap > li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  font-size: 16px;
  padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
  padding-left: 15px !important;
}

/* Blocks */
.site-section-cover {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background: rgb(var(--theme-bg-color-second));
}

.site-section-cover,
  .site-section-cover .container {
  position: relative;
  z-index: 2;
}

.site-section-cover,
.site-section-cover .container > .row {
  height: calc(100vh - 196px);
  min-height: 677px;
}

@media (max-width: 991.98px) {
  .site-section-cover,
      .site-section-cover .container > .row {
    height: calc(70vh - 196px);
    min-height: 600px;
  }
}

.site-section-cover.overlay {
  position: relative;
}

.site-section-cover.overlay:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.site-section-cover.inner-page,
  .site-section-cover.inner-page .container > .row {
  height: auto;
  min-height: auto;
  padding: 2em 0;
}

.site-section-cover.img-bg-section {
  background-size: cover;
  background-repeat: no-repeat;
}

.site-section-cover h1 {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 900 !important;
  color: rgb(var(--theme-bg-color-primary));
}

@media (max-width: 991.98px) {
  .site-section-cover h1 {
    font-size: 2rem;
  }
}


.sitebar{
  margin-bottom: 20px;
  padding: 30px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  background: #fff;
}
.sitebar .sitebar-title{
  margin-bottom: 10px;
  padding: 0 0 10px;
  font-size: 22px;
  border-bottom: 1px solid #e4e8eb;
  font-weight: 400;
}
.sitebar ul{
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.sitebar ul li{
  height: 36px;
  line-height: 36px;
  border-bottom: 1px dotted #e4e8eb;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sitebar ul li a{
  font-weight: 400;
  color: rgb(var(--theme-color-black-light));
}
.sitebar ul li a:hover{
  color: rgb(var(--theme-color-primary));
}