:root {
  --primary: #EE7F0B;
  --secondary: #003B4A;
  --success: #6e9b3b;
  --info: #2a6f8e;
  --warning: #ff9933;
  --danger: #d63c2e;
  --light: #f5f5f5;
  --dark: #222222;
  --gray: #7a7364;
  --white: #ffffff;
  --border-color: #EEE9F3;
  --headings-font-family: Oswald, sans-serif;
  --body-font-family: Poppins, sans-serif;
  --body-color: #65758b;
  --body-bg: #fff;
  --heading-color: #111111;
}

.theme-pumpkin {
  --primary: #d35400;
  --secondary: #ffcc66;
  --body-bg: #f9f5ef;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

body {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: var(--body-font-family);
  font-weight: 400;
  line-height: 1.6;
  color: var(--body-color);
  background-color: var(--body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar {
  width: 5px;
  opacity: 0;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

a {
  text-decoration: none;
  color: var(--primary);
}

b,
strong {
  font-weight: 600;
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--headings-font-family);
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--heading-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white .title-small {
  color: #FFF;
}

dl, ul, ol {
  list-style-position: outside;
}

ul, ol {
  margin-bottom: 24px;
}

ul li, ol li {
  padding: 0;
}

dl {
  margin-left: 0;
  margin-bottom: 30px;
}

dl dd {
  margin-bottom: 10px;
}

[class=fi],
[class^=fi-] {
  display: inline-flex;
}

p {
  margin-top: 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

.text-primary {
  color: var(--primary);
}

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

.bg-white {
  background-color: #fff;
}

.bg-light {
  background-color: var(--light);
}

.bg-secondary {
  background-color: var(--secondary);
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
}

.container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 591px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -15px;
}

[class^=col] {
  padding-inline: 15px;
  box-sizing: border-box;
  width: 100%;
}

.gap-2 {
  margin-inline: -6px;
}
.gap-2 [class^=col] {
  padding-inline: 6px;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.header {
  --header-height: 73px;
}
@media (max-width: 1599px) {
  .header {
    --header-height: 78px;
  }
}
@media (max-width: 991px) {
  .header {
    --header-height: 60px;
  }
}
.header {
  position: relative;
  z-index: 1040;
}
.header .navbar-brand {
  color: #000;
  width: 160px;
  min-width: 160px;
  font-size: 20px;
  letter-spacing: 20px;
  margin: 0;
  display: flex;
  align-items: center;
}
.header .navbar-brand img {
  height: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .header .navbar-brand {
    padding: 8px 0;
    width: 140px;
    min-width: 140px;
  }
}
@media (max-width: 591px) {
  .header .navbar-brand {
    width: 120px;
    min-width: 120px;
  }
}
.header .navbar-brand .brand-logo-dark {
  display: none;
}
.header::after {
  display: block;
  clear: both;
  content: "";
}
.header .main-navbar {
  background: var(--body-bg);
}
.header .main-navbar .navbar {
  width: 100%;
  position: relative;
  display: flex;
}
.header .main-navbar .navbar::after {
  display: block;
  clear: both;
  content: "";
}
.header .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .header .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1191px) {
  .header .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.header .mobile-toggler {
  align-items: center;
  margin-left: 20px;
  height: var(--header-height);
  display: flex;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header .mobile-toggler {
    display: none;
  }
}
@media (max-width: 591px) {
  .header .mobile-toggler {
    margin-left: auto;
  }
}
.header .navbar-toggler {
  border: 0;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  float: right;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}
.header .navbar-toggler .toggler-line {
  width: 18px;
  height: 2px;
  background-color: var(--primary);
  display: block;
  margin: 4px 0;
}
.header .navbar-toggler .toggler-line:nth-child(2) {
  width: 14px;
}
.header .navbar-toggler.active::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.4;
}

.sticky-header.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07);
  animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  -ms-animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  -webkit-animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  -moz-animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  -o-animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  -khtml-animation: 0.5s ease 0s normal forwards 1 running headerSticky;
}

.screen-fixed {
  overflow: hidden;
}

@-moz-keyframes headerSticky {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-ms-keyframes headerSticky {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes headerSticky {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes headerSticky {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
.navigation-list {
  padding-left: 30px;
  padding-right: 30px;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 400ms;
  transition: all 0.25s;
  transition: all 0.25s;
  flex-basis: auto;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
@media (max-width: 1480px) {
  .navigation-list {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 991px) {
  .navigation-list {
    padding-left: 0;
    padding-right: 0;
    position: fixed;
    width: 265px;
    left: -100%;
    height: 100vh;
    top: 0;
    background-color: var(--body-bg);
    margin: 0;
    z-index: 9999;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    display: block !important;
  }
}
@media (max-width: 991px) {
  .navigation-list.show {
    left: 0;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .navigation-list .navbar-brand {
    display: none;
  }
}
@media (max-width: 991px) {
  .navigation-list .navbar-brand {
    height: auto;
    padding: 20px 20px;
    display: flex;
    text-align: center;
    justify-content: center;
    width: 180px;
    margin: 0 auto 0px;
  }
}
.navigation-list .nav {
  float: right;
  padding: 0;
  margin: 0;
}
.navigation-list .nav > li {
  margin: 0px;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.navigation-list .nav > li.dropdown-nav > a:after {
  content: "\f153";
  font-family: "uicons-regular-rounded";
  font-weight: 500;
  font-size: 15px;
  margin-left: 5px;
  display: inline-block;
  transition: all 0.15s;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .navigation-list .nav > li.dropdown-nav > a:after {
    content: "\f155";
    float: right;
    font-family: "uicons-regular-rounded";
  }
}
.navigation-list .nav > li:hover > a, .navigation-list .nav > li.active > a {
  color: var(--primary);
}
.navigation-list .nav > li.megamenu-down {
  position: inherit;
}
@media (max-width: 991px) {
  .navigation-list .nav > li {
    width: 100%;
    position: static;
  }
}
.navigation-list .nav > li > a {
  color: var(--body-color);
  font-size: 16px;
  padding: 28px 15px;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
  position: relative;
  line-height: 1.1;
}
@media (max-width: 991px) {
  .navigation-list .nav > li > a {
    font-size: 14px;
    padding: 14px 18px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.navigation-list .nav > li .submenu-nav {
  background-color: #fff;
  display: block;
  left: 0;
  list-style: none;
  opacity: 0;
  padding: 15px 0;
  position: absolute;
  visibility: hidden;
  width: 200px;
  z-index: 10;
  margin-top: -3px;
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  border-radius: 6px;
}
.navigation-list .nav > li .submenu-nav li.dropdown-nav > a:after {
  content: "\f105";
  font-family: "fontawesome";
  font-weight: 700;
  font-size: 12px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .navigation-list .nav > li .submenu-nav li.dropdown-nav > a:after {
    right: 18px;
  }
}
.navigation-list .nav > li .submenu-nav li {
  position: relative;
}
.navigation-list .nav > li .submenu-nav li a {
  position: relative;
  color: inherit;
  display: block;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease all;
  padding: 6px 18px;
}
@media (max-width: 991px) {
  .navigation-list .nav > li .submenu-nav li a {
    padding: 10px 20px;
    font-size: 14px;
    display: block;
    border-bottom: 1px solid var(--border-color);
  }
  .navigation-list .nav > li .submenu-nav li a:after {
    font-family: FontAwesome;
    width: auto;
    height: auto;
    top: 1px;
    font-size: 16px;
    position: absolute;
    font-weight: 700;
  }
}
.navigation-list .nav > li .submenu-nav li a span {
  display: inline-block;
  transition: 0.3s ease all;
  position: relative;
}
.navigation-list .nav > li .submenu-nav li a span:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background: var(--heading-color);
  bottom: 2px;
  right: 0;
  transition: 0.3s ease all;
  -moz-transform-origin: right;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  transform-origin: right;
}
.navigation-list .nav > li .submenu-nav li a:hover {
  color: var(--heading-color);
}
.navigation-list .nav > li .submenu-nav li a:hover span:after {
  width: 100%;
  -moz-transform-origin: left;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  left: 0;
  right: auto;
}
.navigation-list .nav > li .submenu-nav li .submenu-nav {
  left: 261px;
}
@media (max-width: 1480px) {
  .navigation-list .nav > li .submenu-nav li .submenu-nav {
    left: 216px;
  }
}
@media (max-width: 991px) {
  .navigation-list .nav > li .submenu-nav li .submenu-nav {
    left: -100%;
  }
}
@media (max-width: 991px) {
  .navigation-list .nav > li .submenu-nav li {
    position: static;
  }
}
@media (max-width: 1480px) {
  .navigation-list .nav > li .submenu-nav {
    width: 215px;
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .navigation-list .nav > li .submenu-nav {
    position: absolute;
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: var(--body-bg);
    box-shadow: none;
    margin: 0;
    padding: 0;
    top: 0;
    left: -100%;
    border: 0;
  }
}
.navigation-list .nav > li .submenu-nav li .fa {
  color: inherit;
  display: block;
  float: right;
  font-size: 16px;
  opacity: 1;
  margin-top: 4px;
}
.navigation-list .nav > li .megamenu-nav {
  display: flex;
  right: 0px;
  width: 100%;
  z-index: 9;
  background-color: var(--body-bg);
  left: 0;
  list-style: none;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  margin-top: -3px;
}
.navigation-list .nav > li .megamenu-nav .megamenu-inner {
  padding: 40px 30px 30px;
}
.navigation-list .nav > li .megamenu-nav > li {
  display: block;
  width: 25%;
  position: relative;
  vertical-align: top;
}
.navigation-list .nav > li .megamenu-nav > li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .navigation-list .nav > li .megamenu-nav > li {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .navigation-list .nav > li .megamenu-nav {
    position: absolute;
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: var(--body-bg);
    box-shadow: none;
    margin: 0;
    padding: 0;
    top: 0;
    left: -100%;
    overflow: hidden;
  }
  .navigation-list .nav > li .megamenu-nav .megamenu-inner {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .navigation-list .nav > li:hover > .megamenu-nav, .navigation-list .nav > li:hover > .submenu-nav {
    opacity: 1;
    visibility: visible;
    margin-top: 1px;
    transition-duration: 0.2s;
    -webkit-transform: perspective(250px) rotateX(0deg);
    -moz-transform: perspective(250px) rotateX(0deg);
    -ms-transform: perspective(250px) rotateX(0deg);
    -o-transform: perspective(250px) rotateX(0deg);
    transform: perspective(250px) rotateX(0deg);
  }
  .navigation-list .nav > li:hover > .megamenu-nav li:hover > .submenu-nav, .navigation-list .nav > li:hover > .submenu-nav li:hover > .submenu-nav {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    top: -1px;
  }
}
.navigation-list .nav > li.open .megamenu-nav,
.navigation-list .nav > li.open .submenu-nav {
  display: block;
  opacity: 1;
}
@media (max-width: 991px) {
  .navigation-list .nav > li.open .megamenu-nav,
  .navigation-list .nav > li.open .submenu-nav {
    position: static;
  }
}
@media (max-width: 991px) {
  .navigation-list .nav > li.open > a:after {
    transform: rotate(90deg);
  }
}
@media (max-width: 991px) {
  .navigation-list .nav {
    float: none;
    width: 100%;
  }
}
.navigation-list .nav-back {
  display: none;
  background-color: var(--dark);
  border: 0;
  padding: 12px 20px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  color: #fff;
}
.navigation-list .nav-back i {
  float: left;
  margin-right: 10px;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: -3px;
}
@media (max-width: 991px) {
  .navigation-list .nav-back {
    display: flex;
    align-items: center;
  }
}

.header .action-nav {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  margin-left: auto;
  height: var(--header-height);
  justify-content: flex-end;
}
.header .action-nav > ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1320px) {
  .header .action-nav > ul {
    gap: 18px;
  }
}
.header .action-nav > ul > li {
  list-style: none;
}
@media (max-width: 591px) {
  .header .action-nav {
    display: none;
  }
}
.header .action-nav-start {
  justify-content: flex-start;
  margin-left: 0;
  margin-right: auto;
}

.footer {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  background-color: var(--secondary);
  font-size: 16px;
  background-position: center;
  background-size: 100%;
  padding: 20px 0;
  text-align: center;
}

.page-banner {
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
  margin: 0 20px;
}
.page-banner .page-inner {
  min-height: 350px;
  background-size: 100%;
  background-position: center;
  overflow: hidden;
  position: relative;
  padding-top: 40px;
  padding-bottom: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: luminosity;
  background-color: var(--secondary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-banner .page-inner::after {
  content: "";
  background-color: #4a2c00;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
}
.page-banner .page-title {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 10px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 5px;
}
.page-banner .container,
.page-banner .container-fluid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 400;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.page-banner .breadcrumb {
  margin: 0;
  padding: 0;
}
.page-banner .breadcrumb .breadcrumb-item {
  color: #fff;
  font-size: 16px;
}
.page-banner .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}
.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  content: "\f152";
  font-family: "uicons-regular-rounded";
  font-size: 8px;
  line-height: 1.2;
  font-weight: 700;
  transform: translateY(-1px);
  margin: 0 6px;
  display: inline-block;
}
@media (max-width: 1280px) {
  .page-banner {
    margin: 0 15px;
  }
  .page-banner .page-inner {
    min-height: 300px;
  }
}
@media (max-width: 1191px) {
  .page-banner .page-title {
    font-size: 48px;
  }
  .page-banner .page-title::after {
    width: 200px;
  }
}
@media (max-width: 991px) {
  .page-banner .page-inner {
    min-height: 280px;
  }
  .page-banner .page-title {
    font-size: 36px;
    margin-bottom: 12px;
    width: 100%;
  }
  .page-banner .page-title::after {
    width: 150px;
  }
  .page-banner p {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
@media (max-width: 591px) {
  .page-banner {
    margin: 0 8px;
  }
  .page-banner .page-inner {
    min-height: 260px;
    border-radius: 10px;
  }
  .page-banner .page-title {
    font-size: 32px;
  }
}

.breadcrumb li {
  display: inline-block;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.overflow-hidden {
  overflow: hidden;
}

.p-a0 {
  padding: 0;
}

.p-a5 {
  padding: 5px;
}

.p-a10 {
  padding: 10px;
}

.p-a15 {
  padding: 15px;
}

.p-a20 {
  padding: 20px;
}

.p-a25 {
  padding: 25px;
}

.p-a30 {
  padding: 30px;
}

.p-a40 {
  padding: 40px;
}

.p-a50 {
  padding: 50px;
}

.p-a60 {
  padding: 60px;
}

.p-a70 {
  padding: 70px;
}

.p-a80 {
  padding: 80px;
}

.p-a90 {
  padding: 90px;
}

.p-a100 {
  padding: 100px;
}

.p-t0 {
  padding-top: 0;
}

.p-t5 {
  padding-top: 5px;
}

.p-t10 {
  padding-top: 10px;
}

.p-t15 {
  padding-top: 15px;
}

.p-t20 {
  padding-top: 20px;
}

.p-t30 {
  padding-top: 30px;
}

.p-t40 {
  padding-top: 40px;
}

.p-t50 {
  padding-top: 50px;
}

.p-t60 {
  padding-top: 60px;
}

.p-t70 {
  padding-top: 70px;
}

.p-t80 {
  padding-top: 80px;
}

.p-t90 {
  padding-top: 90px;
}

.p-t100 {
  padding-top: 100px;
}

.p-b0 {
  padding-bottom: 0;
}

.p-b5 {
  padding-bottom: 5px;
}

.p-b10 {
  padding-bottom: 10px;
}

.p-b15 {
  padding-bottom: 15px;
}

.p-b20 {
  padding-bottom: 20px;
}

.p-b30 {
  padding-bottom: 30px;
}

.p-b40 {
  padding-bottom: 40px;
}

.p-b50 {
  padding-bottom: 50px;
}

.p-b60 {
  padding-bottom: 60px;
}

.p-b70 {
  padding-bottom: 70px;
}

.p-b80 {
  padding-bottom: 80px;
}

.p-b90 {
  padding-bottom: 90px;
}

.p-b100 {
  padding-bottom: 100px;
}

.p-l0 {
  padding-left: 0;
}

.p-l5 {
  padding-left: 5px;
}

.p-l10 {
  padding-left: 10px;
}

.p-l15 {
  padding-left: 15px;
}

.p-l20 {
  padding-left: 20px;
}

.p-l30 {
  padding-left: 30px;
}

.p-l40 {
  padding-left: 40px;
}

.p-l50 {
  padding-left: 50px;
}

.p-l60 {
  padding-left: 60px;
}

.p-l70 {
  padding-left: 70px;
}

.p-l80 {
  padding-left: 80px;
}

.p-l90 {
  padding-left: 90px;
}

.p-l100 {
  padding-left: 100px;
}

.p-r0 {
  padding-right: 0;
}

.p-r5 {
  padding-right: 5px;
}

.p-r10 {
  padding-right: 10px;
}

.p-r15 {
  padding-right: 15px;
}

.p-r20 {
  padding-right: 20px;
}

.p-r30 {
  padding-right: 30px;
}

.p-r40 {
  padding-right: 40px;
}

.p-r50 {
  padding-right: 50px;
}

.p-r60 {
  padding-right: 60px;
}

.p-r70 {
  padding-right: 70px;
}

.p-r80 {
  padding-right: 80px;
}

.p-r90 {
  padding-right: 90px;
}

.p-r100 {
  padding-right: 100px;
}

.p-lr0 {
  padding-left: 0;
  padding-right: 0;
}

.p-lr5 {
  padding-left: 5px;
  padding-right: 5px;
}

.p-lr10 {
  padding-left: 10px;
  padding-right: 10px;
}

.p-lr15 {
  padding-left: 15px;
  padding-right: 15px;
}

.p-lr20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-lr30 {
  padding-left: 30px;
  padding-right: 30px;
}

.p-lr40 {
  padding-left: 40px;
  padding-right: 40px;
}

.p-lr50 {
  padding-left: 50px;
  padding-right: 50px;
}

.p-lr60 {
  padding-left: 60px;
  padding-right: 60px;
}

.p-lr70 {
  padding-left: 70px;
  padding-right: 70px;
}

.p-lr80 {
  padding-left: 80px;
  padding-right: 80px;
}

.p-lr90 {
  padding-left: 90px;
  padding-right: 90px;
}

.p-lr100 {
  padding-left: 100px;
  padding-right: 100px;
}

.p-tb0 {
  padding-bottom: 0;
  padding-top: 0;
}

.p-tb5 {
  padding-bottom: 5px;
  padding-top: 5px;
}

.p-tb10 {
  padding-bottom: 10px;
  padding-top: 10px;
}

.p-tb15 {
  padding-bottom: 15px;
  padding-top: 15px;
}

.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px;
}

.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px;
}

.p-tb40 {
  padding-bottom: 40px;
  padding-top: 40px;
}

.p-tb50 {
  padding-bottom: 50px;
  padding-top: 50px;
}

.p-tb60 {
  padding-bottom: 60px;
  padding-top: 60px;
}

.p-tb70 {
  padding-bottom: 70px;
  padding-top: 70px;
}

.p-tb80 {
  padding-bottom: 80px;
  padding-top: 80px;
}

.p-tb90 {
  padding-bottom: 90px;
  padding-top: 90px;
}

.p-tb100 {
  padding-bottom: 100px;
  padding-top: 100px;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.m-a0 {
  margin: 0;
}

.m-a5 {
  margin: 5px;
}

.m-a10 {
  margin: 10px;
}

.m-a15 {
  margin: 15px;
}

.m-a20 {
  margin: 20px;
}

.m-a25 {
  margin: 25px;
}

.m-a30 {
  margin: 30px;
}

.m-a40 {
  margin: 40px;
}

.m-a50 {
  margin: 50px;
}

.m-a60 {
  margin: 60px;
}

.m-a70 {
  margin: 70px;
}

.m-a80 {
  margin: 80px;
}

.m-a90 {
  margin: 90px;
}

.m-a100 {
  margin: 100px;
}

.m-t0 {
  margin-top: 0;
}

.m-t5 {
  margin-top: 5px;
}

.m-t10 {
  margin-top: 10px;
}

.m-t15 {
  margin-top: 15px;
}

.m-t20 {
  margin-top: 20px;
}

.m-t30 {
  margin-top: 30px;
}

.m-t40 {
  margin-top: 40px;
}

.m-t50 {
  margin-top: 50px;
}

.m-t60 {
  margin-top: 60px;
}

.m-t70 {
  margin-top: 70px;
}

.m-t80 {
  margin-top: 80px;
}

.m-t90 {
  margin-top: 90px;
}

.m-t100 {
  margin-top: 100px;
}

.m-b0 {
  margin-bottom: 0;
}

.m-b5 {
  margin-bottom: 5px;
}

.m-b10 {
  margin-bottom: 10px;
}

.m-b15 {
  margin-bottom: 15px;
}

.m-b20 {
  margin-bottom: 20px;
}

.m-b30 {
  margin-bottom: 30px;
}

.m-b40 {
  margin-bottom: 40px;
}

.m-b50 {
  margin-bottom: 50px;
}

.m-b60 {
  margin-bottom: 60px;
}

.m-b70 {
  margin-bottom: 70px;
}

.m-b80 {
  margin-bottom: 80px;
}

.m-b90 {
  margin-bottom: 90px;
}

.m-b100 {
  margin-bottom: 100px;
}

.m-l0 {
  margin-left: 0;
}

.m-l5 {
  margin-left: 5px;
}

.m-l10 {
  margin-left: 10px;
}

.m-l15 {
  margin-left: 15px;
}

.m-l20 {
  margin-left: 20px;
}

.m-l30 {
  margin-left: 30px;
}

.m-l40 {
  margin-left: 40px;
}

.m-l50 {
  margin-left: 50px;
}

.m-l60 {
  margin-left: 60px;
}

.m-l70 {
  margin-left: 70px;
}

.m-l80 {
  margin-left: 80px;
}

.m-l90 {
  margin-left: 90px;
}

.m-l100 {
  margin-left: 100px;
}

.m-r0 {
  margin-right: 0;
}

.m-r5 {
  margin-right: 5px;
}

.m-r10 {
  margin-right: 10px;
}

.m-r15 {
  margin-right: 15px;
}

.m-r20 {
  margin-right: 20px;
}

.m-r30 {
  margin-right: 30px;
}

.m-r40 {
  margin-right: 40px;
}

.m-r50 {
  margin-right: 50px;
}

.m-r60 {
  margin-right: 60px;
}

.m-r70 {
  margin-right: 70px;
}

.m-r80 {
  margin-right: 80px;
}

.m-r90 {
  margin-right: 90px;
}

.m-r100 {
  margin-right: 100px;
}

.m-lr0 {
  margin-left: 0;
  margin-right: 0;
}

.m-lr5 {
  margin-left: 5px;
  margin-right: 5px;
}

.m-lr10 {
  margin-left: 10px;
  margin-right: 10px;
}

.m-lr15 {
  margin-left: 15px;
  margin-right: 15px;
}

.m-lr20 {
  margin-left: 20px;
  margin-right: 20px;
}

.m-lr30 {
  margin-left: 30px;
  margin-right: 30px;
}

.m-lr40 {
  margin-left: 40px;
  margin-right: 40px;
}

.m-lr50 {
  margin-left: 50px;
  margin-right: 50px;
}

.m-lr60 {
  margin-left: 60px;
  margin-right: 60px;
}

.m-lr70 {
  margin-left: 70px;
  margin-right: 70px;
}

.m-lr80 {
  margin-left: 80px;
  margin-right: 80px;
}

.m-lr90 {
  margin-left: 90px;
  margin-right: 90px;
}

.m-lr100 {
  margin-left: 100px;
  margin-right: 100px;
}

.m-tb0 {
  margin-bottom: 0;
  margin-top: 0;
}

.m-tb5 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.m-tb10 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.m-tb15 {
  margin-bottom: 15px;
  margin-top: 15px;
}

.m-tb20 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.m-tb30 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.m-tb40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.m-tb50 {
  margin-bottom: 50px;
  margin-top: 50px;
}

.m-tb60 {
  margin-bottom: 60px;
  margin-top: 60px;
}

.m-tb70 {
  margin-bottom: 70px;
  margin-top: 70px;
}

.m-tb80 {
  margin-bottom: 80px;
  margin-top: 80px;
}

.m-tb90 {
  margin-bottom: 90px;
  margin-top: 90px;
}

.m-tb100 {
  margin-bottom: 100px;
  margin-top: 100px;
}

/* Section Space */
.section-sp1 {
  padding-top: 100px;
  padding-bottom: 70px;
}
@media (max-width: 1280px) {
  .section-sp1 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .section-sp1 {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
@media (max-width: 591px) {
  .section-sp1 {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

.section-sp2 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1480px) {
  .section-sp2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .section-sp2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 591px) {
  .section-sp2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section-sp3 {
  padding-top: 100px;
}
@media (max-width: 1280px) {
  .section-sp3 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .section-sp3 {
    padding-top: 60px;
  }
}
@media (max-width: 591px) {
  .section-sp3 {
    padding-top: 50px;
  }
}

:root {
  --swiper-navigation-size: 30px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  outline: 0;
  box-shadow: none;
}

.swiper-button-prev {
  left: 20px;
}

.swiper-button-next {
  right: 20px;
}

.overlay-dark {
  position: relative;
}
.overlay-dark::after {
  content: "";
  background-color: #102028;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.overlay-dark .container {
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--body-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 6px;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #fff;
  font-family: var(--body-font-family);
}
.btn i {
  font-size: 18px;
}
@media (max-width: 991px) {
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.btn-sm {
  --btn-line-height: 1.2;
}
@media (max-width: 991px) {
  .btn-sm {
    --btn-font-size: 13px;
    --btn-padding-x: 15px;
    --btn-padding-y: 9px;
  }
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
  }
}

.btn-link {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
}

.btn-pill {
  border-radius: 50rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
}

.btn-secondary {
  background-color: var(--secondary);
}

.btn-dark {
  background-color: var(--dark);
}

.btn-light {
  background-color: var(--light);
  color: var(--dark);
}

.btn-success {
  background-color: var(--success);
}

.btn-warning {
  background-color: var(--warning);
}

.btn-info {
  background-color: var(--info);
}

.btn-danger {
  background-color: var(--danger);
}

.btn-white {
  background-color: #fff;
  color: #000;
}

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

.btn-outline-secondary {
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-outline-secondary:hover {
  background-color: var(--secondary);
  color: #fff;
}

.btn-outline-dark {
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-outline-dark:hover {
  background-color: var(--secondary);
  color: #fff;
}

.btn-outline-light {
  color: var(--light);
  border-color: var(--light);
}
.btn-outline-light:hover {
  background-color: var(--light);
  color: #000;
}

.btn-outline-success {
  color: var(--success);
  border-color: var(--success);
}
.btn-outline-success:hover {
  background-color: var(--success);
  color: #fff;
}

.btn-outline-warning {
  color: var(--warning);
  border-color: var(--warning);
}
.btn-outline-warning:hover {
  background-color: var(--warning);
  color: #fff;
}

.btn-outline-info {
  color: var(--info);
  border-color: var(--info);
}
.btn-outline-info:hover {
  background-color: var(--info);
  color: #fff;
}

.btn-outline-danger {
  color: var(--danger);
  border-color: var(--danger);
}
.btn-outline-danger:hover {
  background-color: var(--danger);
  color: #fff;
}

.btn-outline-white {
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: #000;
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.334;
  color: var(--body-color);
  appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: var(--body-font-family);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
  outline: 0;
}

.form-label {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
  display: block;
  color: var(--heading-color);
  text-transform: uppercase;
  opacity: 0.5;
}

label {
  display: inline-block;
}

.form-control[type=file] {
  overflow: hidden;
}

.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control::file-selector-button {
  padding: 10px 12px;
  margin: -10px -12px;
  margin-inline-end: 12px;
  color: var(--body-color);
  background-color: #f8f9fa;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #e9ecef;
}

.form-text {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 4px;
  opacity: 0.7;
}

.form-select {
  --form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.334;
  color: var(--body-color);
  appearance: none;
  background-color: #fff;
  background-image: var(--form-select-bg-img);
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: 0;
}
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
  outline: 0;
}

.form-check-label {
  font-size: 14px;
}

.input-group {
  margin-bottom: 20px;
}

button.back-to-top {
  border: 0;
  box-shadow: 2px 2px 12px -5px rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  height: 40px;
  margin: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  width: 40px;
  z-index: 99999;
  padding: 0;
  font-size: 24px;
  background-color: var(--primary);
  border-radius: 8px;
  bottom: -60px;
  transition: all 0.3s;
}
button.back-to-top.active {
  bottom: 15px;
}
@media (max-width: 576px) {
  button.back-to-top {
    height: 35px;
    width: 35px;
    bottom: 8px;
    right: 8px;
  }
}

.hero-banner {
  display: block;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 680px;
  padding: 50px;
}
.hero-banner::after {
  content: "";
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.6;
}
.hero-banner .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-banner .hero-inner {
  width: 55%;
  position: relative;
  padding: 100px 0;
}
.hero-banner .hero-title {
  color: #fff;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-banner .hero-subtitle {
  font-size: 20px;
  color: var(--primary);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
  font-family: var(--headings-font-family);
  font-weight: 400;
  text-transform: uppercase;
}
.hero-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 1280px) {
  .hero-banner {
    height: 580px;
  }
  .hero-banner .hero-title {
    font-size: 52px;
  }
}
@media (max-width: 1191px) {
  .hero-banner {
    height: 480px;
  }
  .hero-banner .hero-title {
    font-size: 40px;
  }
  .hero-banner .hero-inner {
    width: 55%;
    padding: 20px 0;
  }
  .hero-banner p {
    font-size: 14px;
  }
  .hero-banner .hero-subtitle {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .hero-banner {
    height: 420px;
  }
  .hero-banner .hero-inner {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .hero-banner {
    height: auto;
    padding: 30px;
  }
  .hero-banner .hero-inner {
    width: 100%;
  }
  .hero-banner .hero-title {
    font-size: 36px;
    margin-bottom: 12px;
  }
}
@media (max-width: 591px) {
  .hero-banner {
    height: auto;
    min-height: 350px;
    padding: 60px 0;
  }
  .hero-banner .hero-inner {
    width: 100%;
    padding: 0;
  }
  .hero-banner .hero-title {
    font-size: 30px;
    margin-bottom: 12px;
  }
}

.page-bnr {
  display: block;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  padding: 50px;
  text-align: center;
}
.page-bnr::after {
  content: "";
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.6;
}
.page-bnr .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-bnr .title {
  color: #fff;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page-bnr .page-breadcrumb {
  display: flex;
  padding: 0;
  margin: 0;
  color: #fff;
  justify-content: center;
  gap: 10px;
}
.page-bnr .page-breadcrumb li {
  display: inline-block;
}
.page-bnr .page-breadcrumb li::after {
  content: "/";
  font-size: 12px;
  margin-left: 10px;
}
.page-bnr .page-breadcrumb li:last-child::after {
  content: none;
}
@media (max-width: 991px) {
  .page-bnr {
    height: 250px;
    padding: 30px;
  }
  .page-bnr .title {
    font-size: 36px;
  }
}
@media (max-width: 591px) {
  .page-bnr {
    height: 200px;
  }
}

.gallery-wrap {
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
}

.gallery-marquee {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: scrollLeft 20s linear infinite;
}
.gallery-marquee.marquee-right {
  animation: scrollRight 20s linear infinite;
}
.gallery-marquee > * {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}
.gallery-marquee .row {
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: -10px;
}
.gallery-marquee .row > * {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}
.gallery-marquee .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-marquee .gallery-item {
  height: 350px;
  min-width: 350px;
  width: 350px;
}
@media (max-width: 1191px) {
  .gallery-marquee .gallery-item {
    height: 250px;
    min-width: 250px;
    width: 250px;
  }
}
@media (max-width: 991px) {
  .gallery-marquee .gallery-item {
    height: 180px;
    min-width: 180px;
    width: 180px;
  }
}
@media (max-width: 591px) {
  .gallery-marquee .gallery-item {
    height: 100px;
    min-width: 100px;
    width: 100px;
  }
  .gallery-marquee > * {
    padding-left: 2px;
    padding-right: 2px;
    margin-bottom: 4px;
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.table-wrapper {
  width: 100%;
}
.table-wrapper .table {
  width: 100%;
  border-collapse: collapse;
}
.table-wrapper .table tr th {
  background-color: var(--primary);
  color: #fff;
  padding: 8px 10px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.table-wrapper .table tr td {
  border: 1px solid var(--border-color);
  padding: 12px 15px;
}
@media (max-width: 767px) {
  .table-wrapper .table th {
    font-size: 14px;
    padding: 12px 10px;
  }
  .table-wrapper .table td {
    padding: 12px 10px;
    font-size: 14px;
  }
}

.section-header {
  margin-bottom: 35px;
}
.section-header .extra-title {
  font-size: 20px;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 5px;
  font-family: var(--headings-font-family);
  margin-top: -15px;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
}
.section-header .extra-title::after {
  content: "";
  height: 2px;
  width: 20px;
  background-color: var(--primary);
  position: absolute;
  top: 50%;
  transform: translateY(50%);
  left: 0;
}
.section-header .extra-title.text-white {
  color: #fff;
}
.section-header .extra-title.text-white::after {
  background-color: #fff;
}
.section-header .title {
  font-size: 42px;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-header .title.text-white {
  color: #fff;
}
@media (max-width: 1191px) {
  .section-header .title {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .section-header .title {
    font-size: 32px;
  }
}
@media (max-width: 591px) {
  .section-header {
    margin-bottom: 25px;
  }
  .section-header .extra-title {
    font-size: 20px;
  }
  .section-header .title {
    font-size: 28px;
  }
}

.auth-form {
  max-width: 500px;
  min-width: 500px;
  background-color: var(--dark);
  border-radius: 12px;
  padding: 40px;
}

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 15px;
  justify-content: center;
}

@media (max-width: 591px) {
  .auth-form {
    max-width: 100%;
    min-width: 100%;
  }
}
.about-media {
  border-radius: 12px;
  overflow: hidden;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .about-media {
    margin-right: 0;
  }
}

.facilitie-card {
  border-radius: 10px;
  padding: 15px 15px 22px;
  background-color: #fff;
  text-align: center;
  height: 100%;
  transition: all 0.5s;
}
.facilitie-card .facilitie-img {
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  height: 200px;
}
.facilitie-card .facilitie-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facilitie-card .facilitie-content {
  padding: 0 5px;
}
.facilitie-card .facilitie-content .title {
  font-size: 20px;
  transition: all 0.5s;
  text-transform: uppercase;
}
.facilitie-card .facilitie-content .text {
  font-weight: 400;
  font-size: 15px;
  transition: all 0.5s;
  margin-bottom: 0;
  line-height: 1.5;
}
.facilitie-card:hover {
  background-color: var(--primary);
}
.facilitie-card:hover .facilitie-content .title {
  color: #fff;
}
.facilitie-card:hover .facilitie-content .text {
  color: rgba(255, 255, 255, 0.8);
}

.services-card {
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  height: 100%;
  transition: all 0.5s;
  position: relative;
}
.services-card .services-img {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  height: 480px;
}
.services-card .services-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-card .services-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.45%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 12px;
}
.services-card .services-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px 30px;
  width: 100%;
}
.services-card .title {
  font-size: 20px;
  transition: all 0.5s;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.services-card .text {
  font-weight: 400;
  font-size: 15px;
  transition: all 0.5s;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
@media (max-width: 1191px) {
  .services-card .services-img {
    height: 400px;
  }
}

.testimonial-bx {
  background-color: #fff;
  border-radius: 12px;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}
.testimonial-bx .testimonial-img {
  border-radius: 50%;
  width: 50px;
  min-width: 50px;
  height: 50px;
  overflow: hidden;
}
.testimonial-bx .testimonial-text {
  margin-top: 20px;
  font-size: 16px;
  font-style: italic;
  margin-bottom: auto;
}
.testimonial-bx .testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.testimonial-bx .testimonial-footer .name {
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .testimonial-bx {
    padding: 30px;
  }
}

.testimonials-wrapper {
  padding: 100px 50px 70px;
  border-radius: 30px;
  margin: 0 50px;
}
.testimonials-wrapper .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}
@media (max-width: 1480px) {
  .testimonials-wrapper {
    margin: 0 20px;
  }
}
@media (max-width: 1280px) {
  .testimonials-wrapper {
    padding: 80px 50px 50px;
  }
}
@media (max-width: 991px) {
  .testimonials-wrapper {
    padding: 60px 0 30px;
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 591px) {
  .testimonials-wrapper {
    padding: 50px 0 20px;
  }
}

.gallery-wrapper {
  display: flex;
  gap: 10px;
  padding: 10px;
  animation: scrollLeft 20s linear infinite;
}
.gallery-wrapper .gallery-item {
  height: 300px;
  width: 300px;
  min-width: 300px;
  overflow: hidden;
}
.gallery-wrapper .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1280px) {
  .gallery-wrapper .gallery-item {
    height: 200px;
    width: 200px;
    min-width: 200px;
  }
}
@media (max-width: 767px) {
  .gallery-wrapper .gallery-item {
    height: 140px;
    width: 140px;
    min-width: 140px;
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.blog-bx {
  border-radius: 10px;
  padding: 20px 50px 20px 20px;
  transition: all 0.5s;
  background-color: #ffffff;
  margin-bottom: 30px;
}
.blog-bx .blog-img {
  border-radius: 12px;
  overflow: hidden;
}
.blog-bx .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-bx .title {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
}
.blog-bx .blog-info {
  padding: 30px;
}
@media (max-width: 1191px) {
  .blog-bx .blog-info {
    padding: 0;
  }
  .blog-bx .title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .blog-bx p {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .blog-bx {
    padding: 20px;
  }
  .blog-bx .blog-info {
    padding: 30px 10px 0;
  }
}
@media (max-width: 591px) {
  .blog-bx {
    padding: 20px 20px 15px;
  }
  .blog-bx .blog-info {
    padding: 20px 0px 0;
  }
  .blog-bx .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.content_widget {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.content_widget i {
  color: var(--primary);
  background-color: #fff1e3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  min-width: 45px;
  height: 45px;
  border-radius: 50px;
  font-size: 20px;
}
.content_widget p {
  margin-bottom: 0;
  color: var(--body-color);
}
.content_widget .title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}

.rooms-card {
  border-radius: 10px;
  background-color: #f5f5f5;
  transition: all 0.5s;
  position: relative;
  padding: 15px;
  margin-top: 30px;
}
.rooms-card .rooms-img {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  height: 300px;
  margin-top: -40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.rooms-card .rooms-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rooms-card .rooms-content {
  padding: 25px 20px 10px;
}
.rooms-card .title {
  font-size: 20px;
  transition: all 0.5s;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.rooms-card .text {
  font-weight: 400;
  font-size: 15px;
  transition: all 0.5s;
  margin-bottom: 0;
}
@media (max-width: 1191px) {
  .rooms-card .rooms-img {
    height: 200px;
  }
}

/*# sourceMappingURL=style.css.map */
