@charset "UTF-8";
:root {
  --primary: #C78618;
  --secondary: #003B4A;
  --success: #6e9b3b;
  --info: #2a6f8e;
  --warning: #ff9933;
  --danger: #d63c2e;
  --light: #f8f9fa;
  --dark: #222222;
  --gray: #7a7364;
  --white: #ffffff;
  --border-color: #EEE9F3;
  --headings-font-family: Playfair Display, sans-serif;
  --body-font-family: Poppins, sans-serif;
  --body-color: #65758b;
  --body-bg: #fdf5e8;
  --heading-color: #262626;
}

.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-white {
  background-color: #fff;
}

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;
}
.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 {
  color: var(--body-color);
}
footer p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 15px;
}
footer .footer_widget ul {
  list-style: none;
  margin-top: -10px;
  padding: 0;
}
footer ul.social-link {
  padding: 0;
  margin-left: 0;
  display: flex;
  gap: 10px;
}
footer ul.social-link li {
  display: inline-block;
}
footer ul.social-link li a {
  font-size: 16px;
  padding: 0px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: transparent;
  border-radius: 30px;
  color: #fff;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer ul.social-link li a i {
  display: flex;
}
footer ul.social-link li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.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%;
}
@media (max-width: 591px) {
  .footer {
    font-size: 15px;
  }
}
.footer .footer-logo {
  width: 150px;
}
.footer .footer-logo img {
  width: 100%;
}
@media (max-width: 591px) {
  .footer .footer-logo {
    width: 140px;
  }
}
.footer .footer-top {
  padding: 90px 0 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1191px) {
  .footer .footer-top {
    padding: 70px 0 10px;
  }
}
@media (max-width: 591px) {
  .footer .footer-top {
    padding: 50px 0 10px;
  }
}
.footer .footer_widget ul li a span::after {
  background-color: var(--primary);
}
.footer .widget {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .footer .widget {
    margin-bottom: 40px;
  }
}

.footer-title {
  margin-bottom: 28px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.footer-top {
  padding: 100px 0 50px;
  position: relative;
}
.footer-top::after {
  content: "";
  background-color: #4a2c00;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.95;
}
.footer-top .container {
  position: relative;
  z-index: 1;
}
.footer-top .widget {
  margin-bottom: 40px;
}
.footer-bottom {
  padding: 15px 0;
  color: #fff;
  position: relative;
  z-index: 1;
  background-color: var(--primary);
}
.footer-bottom a {
  color: #fff;
}
.footer-bottom p {
  color: #fff;
}

.footer_widget ul li a {
  padding: 5px 0 5px 5px;
  display: block;
  line-height: 1.4;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  position: relative;
}
.footer_widget ul li a::before {
  content: "\f19e";
  font-family: "uicons-regular-rounded";
  transform: scaleX(0);
  transition: transform 0.3s ease;
  font-weight: 500;
  position: relative;
  left: -6px;
  font-size: 17px;
  top: 4px;
}
@media (max-width: 1480px) {
  .footer_widget ul li a {
    font-size: 15px;
  }
}

.footer_contact h6 {
  color: #fff;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 5px;
}
.footer_contact .info-bx {
  margin-bottom: 30px;
}

.foote-links {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.foote-links li {
  display: inline-block;
}
.foote-links li a {
  color: rgba(255, 255, 255, 0.7);
}
.foote-links li a:hover {
  color: #fff;
}

.widget_getintuch ul {
  margin: 0;
  padding: 0;
}
.widget_getintuch ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 15px;
  display: block;
}
.widget_getintuch ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: var(--primary);
}

.widget_about {
  padding-right: 60px;
}

.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;
}

.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: 14px;
  font-weight: 500;
  display: block;
}

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;
}

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: 12px;
  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;
  }
}

.testimonial-card {
  background-color: var(--body-bg);
  border-radius: 12px;
  display: flex;
  overflow: hidden;
}
.testimonial-card .testimonial-media {
  height: auto;
  width: 300px;
  min-width: 300px;
  background-color: #003B4A;
}
.testimonial-card .testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.testimonial-card .testimonial-content {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card .testimonial-content .testimonial-title {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}
.testimonial-card .testimonial-content .testimonial-info {
  display: flex;
  align-items: center;
}
.testimonial-card .testimonial-content .testimonial-info .quotes {
  margin-right: 16px;
}
.testimonial-card .testimonial-content .testimonial-info .quotes i {
  color: var(--primary);
  font-size: 44px;
  display: flex;
}
.testimonial-card .testimonial-content .testimonial-info .testimonial-name {
  margin-bottom: 0;
  font-size: 20px;
}
.testimonial-card .testimonial-content .testimonial-info .testimonial-position {
  font-size: 14px;
  display: block;
  line-height: 1.4;
}
.testimonial-card .testimonial-content .testimonial-text {
  margin-bottom: 30px;
}
.testimonial-card .testimonial-content .testimonial-text a {
  color: var(--primary);
  text-decoration: underline;
}
.testimonial-card .testimonial-content::after {
  content: "";
  position: absolute;
  left: -25px;
  top: 50px;
  border-left: 25px solid transparent;
  border-top: 30px solid var(--body-bg);
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .testimonial-card .testimonial-media {
    width: 200px;
    min-width: 200px;
  }
  .testimonial-card .testimonial-content {
    padding: 20px;
  }
  .testimonial-card .testimonial-content .testimonial-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .testimonial-card .testimonial-content .testimonial-text {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .testimonial-card .testimonial-content .testimonial-info .testimonial-name {
    font-size: 18px;
  }
  .testimonial-card .testimonial-content .testimonial-info .quotes i {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-card .testimonial-media {
    width: 180px;
    min-width: 180px;
  }
}
@media only screen and (max-width: 575px) {
  .testimonial-card {
    display: block;
  }
  .testimonial-card .testimonial-media {
    width: 80px;
    min-width: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px 20px -5px;
  }
}

.testimonial-wrapper {
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}
.testimonial-wrapper .swiper-prev,
.testimonial-wrapper .swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  opacity: 0.5;
}
.testimonial-wrapper .swiper-prev i,
.testimonial-wrapper .swiper-next i {
  display: flex;
}
.testimonial-wrapper .swiper-prev:hover,
.testimonial-wrapper .swiper-next:hover {
  opacity: 1;
}
.testimonial-wrapper .swiper-prev {
  left: 0;
}
.testimonial-wrapper .swiper-next {
  right: 0;
}
@media only screen and (max-width: 767px) {
  .testimonial-wrapper {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media only screen and (max-width: 591px) {
  .testimonial-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .testimonial-wrapper .swiper-prev,
  .testimonial-wrapper .swiper-next {
    display: none;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.service-card::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.287578) 57.52%, rgba(0, 0, 0, 0.5) 100%), url(57.jpg);
}
.service-card .service-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.service-card .service-info {
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 24px;
  z-index: 1;
  width: 100%;
  transition: 300ms ease;
  transform: translateY(30px);
}
.service-card .service-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}
.service-card p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card:hover p {
  opacity: 0.7;
  position: static;
}
.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-card:hover .service-info {
  transform: translateY(0);
}

.hero-banner {
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  height: 700px;
  background-blend-mode: luminosity;
  background-color: var(--secondary);
  padding: 50px;
}
.hero-banner::after {
  content: "";
  background-color: #4a2c00;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
}
.hero-banner .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-banner .hero-inner {
  width: 45%;
  position: relative;
  padding: 100px 0;
}
.hero-banner .hero-title {
  color: #fff;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-banner .hero-subtitle {
  font-size: 32px;
  color: #F7CF47;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 5px;
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
}
.hero-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 400;
}
@media (max-width: 1280px) {
  .hero-banner {
    height: 580px;
  }
  .hero-banner .hero-title {
    font-size: 52px;
  }
}
@media (max-width: 1191px) {
  .hero-banner {
    height: 480px;
    margin: 0 5px;
  }
  .hero-banner .hero-title {
    font-size: 45px;
  }
  .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: 380px;
    padding: 30px;
  }
  .hero-banner .hero-inner {
    width: 80%;
  }
  .hero-banner .hero-title {
    font-size: 36px;
    margin-bottom: 12px;
  }
}
@media (max-width: 591px) {
  .hero-banner {
    height: auto;
    min-height: 350px;
    padding: 18px 0;
  }
  .hero-banner .hero-inner {
    width: 100%;
    padding: 10px;
  }
  .hero-banner .hero-title {
    font-size: 30px;
    margin-bottom: 12px;
  }
}

.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);
  }
}
.donate-form {
  padding: 50px;
  background-color: var(--body-bg);
  border-radius: 8px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.02);
}
.donate-form .form-label {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  display: block;
  color: var(--heading-color);
}
@media (max-width: 591px) {
  .donate-form {
    padding: 25px;
  }
}

.amount-btn {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
}
.amount-btn.active {
  background-color: var(--primary);
  color: #ffffff;
}

.amount-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.notic-bx {
  border-radius: 6px;
  padding: 15px 20px;
  background-color: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.notic-bx ul {
  margin-bottom: 0;
  padding-left: 20px;
  margin-top: 0;
}
.notic-bx ul li {
  margin-bottom: 2px;
  font-size: 14px;
  color: var(--body-color);
}
.notic-bx .title {
  margin-bottom: 5px;
  font-size: 15px;
}

/* RIGHT SIDE - IMPORTANCE BOX */
.importance-box {
  background: var(--body-bg);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.02);
  height: 100%;
}
.importance-box .title {
  margin-bottom: 20px;
  color: #7a4b00;
}
.importance-box .use-list {
  list-style: none;
  padding: 0;
}
.importance-box .use-list li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.importance-box .use-list li::before {
  content: "🐄";
  position: absolute;
  left: 0;
}
@media (max-width: 591px) {
  .importance-box {
    padding: 25px;
  }
}

.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;
  }
}

.timeline {
  position: relative;
  margin: 40px 0;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--primary);
  transform: translateX(-50%);
}
.timeline li {
  position: relative;
  width: 50%;
  padding: 30px 40px;
  box-sizing: border-box;
}
.timeline li:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline li:nth-child(odd) .content {
  flex-direction: row-reverse;
}
.timeline li:nth-child(even) {
  left: 50%;
}
.timeline li::before {
  content: "";
  position: absolute;
  top: 50px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  z-index: 1;
}
.timeline li:nth-child(odd)::before {
  right: -10px;
}
.timeline li:nth-child(even)::before {
  left: -10px;
}
.timeline .content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.timeline h3 {
  margin-top: 0;
}
.timeline p {
  margin: 10px 0 0 0;
}
.timeline .icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: inline-block;
  width: 60px;
  min-width: 60px;
}
@media (max-width: 991px) {
  .timeline::before {
    left: 0;
  }
  .timeline li:nth-child(odd) .content {
    flex-direction: inherit;
  }
  .timeline li:nth-child(odd) {
    text-align: start;
  }
  .timeline li:nth-child(odd) {
    left: 0;
  }
  .timeline li:nth-child(even) {
    left: 0;
  }
  .timeline li {
    width: 100%;
    padding: 10px 0 10px 30px;
  }
  .timeline li:nth-child(odd)::before {
    right: auto;
    left: -10px;
  }
}
@media (max-width: 767px) {
  .timeline {
    margin: 20px 0;
  }
}
@media (max-width: 591px) {
  .timeline .icon {
    width: 50px;
    min-width: 50px;
  }
}

.service-box {
  background: var(--body-bg);
  padding: 40px 50px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.02);
}
.service-box .service-icon {
  height: 60px;
  margin-bottom: 20px;
}
.service-box p {
  margin-bottom: 0;
}
@media (max-width: 1191px) {
  .service-box {
    padding: 20px 20px;
  }
  .service-box .service-icon {
    height: 45px;
  }
}

.service-box2 {
  padding: 40px 50px;
  text-align: center;
}
.service-box2 .service-icon {
  height: 60px;
  margin-bottom: 20px;
}
.service-box2 p {
  margin-bottom: 0;
}
@media (max-width: 1191px) {
  .service-box2 {
    padding: 20px 20px;
  }
}

.service-box3 {
  padding: 40px 30px;
  text-align: center;
}
.service-box3 .service-icon {
  height: 60px;
  margin-bottom: 20px;
}
.service-box3 p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
}
.service-box3 .title {
  color: #fff;
}
@media (max-width: 1191px) {
  .service-box3 {
    padding: 25px 5px;
  }
  .service-box3 p {
    font-size: 14px;
  }
}

.service-box4 {
  padding: 40px 30px;
  text-align: center;
}
.service-box4 .service-icon {
  height: 60px;
  margin-bottom: 20px;
}
.service-box4 p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .service-box4 {
    padding: 10px 15px;
  }
}

.service-box5 {
  background: var(--primary);
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.02);
  height: 100%;
}
.service-box5 .service-icon {
  margin-bottom: 15px;
  height: 65px;
  width: 65px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.service-box5 .service-icon img {
  width: 45px;
}
.service-box5 p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.service-box5 .title {
  color: #fff;
  font-size: 16px;
}

.custom-pagination {
  text-align: center;
}
.custom-pagination > div {
  width: 200px !important;
  text-align: center !important;
  padding: 10px !important;
  margin: 10px auto !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  font-size: 15px !important;
  border-radius: 6px !important;
}
.custom-pagination .page-nav {
  margin: 0;
}
.custom-pagination .page-nav a li {
  background-color: #fff;
  color: var(--primary);
  font-size: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 5px;
}
.custom-pagination .page-nav > a > li:hover,
.custom-pagination .page-nav > a > li.active {
  background-color: var(--primary);
  box-shadow: none;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 5px;
}

div.glob-err {
  position: fixed;
  left: auto !important;
  right: 20px;
  bottom: 20px !important;
  padding: 8px 14px;
  border-radius: 6px;
  width: 280px;
  background-color: var(--danger);
  color: #fff;
  z-index: 9999;
}
div.glob-err .dismiss {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.7;
  font-weight: 500;
  padding: 4px;
  cursor: pointer;
  float: right;
}
@media (max-width: 591px) {
  div.glob-err {
    right: 50%;
    transform: translateX(50%);
  }
}

div.glob-notice {
  position: fixed;
  left: auto !important;
  right: 20px;
  bottom: 20px !important;
  padding: 8px 14px;
  border-radius: 6px;
  width: 280px;
  background-color: var(--success);
  color: #fff;
  z-index: 9999;
}
div.glob-notice .dismiss {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.7;
  font-weight: 500;
  padding: 4px;
  cursor: pointer;
  float: right;
}
@media (max-width: 591px) {
  div.glob-notice {
    right: 50%;
    transform: translateX(50%);
  }
}

.section-header {
  margin-bottom: 35px;
}
.section-header .extra-title {
  font-size: 24px;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 30px;
  font-family: "Amatic SC", sans-serif;
}
.section-header .title {
  font-size: 52px;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 20px;
}
@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;
  }
}

.about-media {
  position: relative;
  padding-left: 100px;
  padding-top: 100px;
}
.about-media .about-media-img1 {
  border-radius: var(--border-radius-base);
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  position: relative;
  clip-path: polygon(50% 0%, 100% 0, 100% 80%, 85% 100%, 51% 100%, 0 100%, 0 0);
}
.about-media .about-media-img2 {
  position: absolute;
  left: 0;
  top: 0;
  border: 15px solid #fff;
  width: 50%;
}
@media (max-width: 1191px) {
  .about-media {
    padding-left: 60px;
    padding-top: 60px;
  }
  .about-media .about-media-img2 {
    border: 7px solid #fff;
  }
}
@media (max-width: 591px) {
  .about-media {
    padding-left: 30px;
    padding-top: 30px;
  }
  .about-media .about-media-img2 {
    border: 5px solid #fff;
    width: 45%;
  }
}

.about-content {
  padding-left: 50px;
}
@media (max-width: 1191px) {
  .about-content {
    padding-left: 0;
  }
}

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

.donors-marquee {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: scrollLeft 20s linear infinite;
  gap: 10px;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.donors-member {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  z-index: 1;
  padding: 10px;
  background-color: #fff;
  display: flex;
  gap: 10px;
  transition: all 0.25s;
  min-width: 320px;
  max-width: 320px;
}
.donors-member .donors-media {
  height: 100px;
  width: 100px;
  min-width: 100px;
  border-radius: 8px;
  overflow: hidden;
}
.donors-member .donors-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.donors-member .donors-amount {
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--body-bg);
  color: var(--dark);
  padding: 4px 12px;
  transition: all 0.25s;
  font-weight: 600;
  margin-top: 8px;
  width: max-content;
}
.donors-member .time {
  font-size: 13px;
  transition: all 0.25s;
  display: block;
}
.donors-member .donors-name {
  font-size: 20px;
  margin-bottom: 2px;
  transition: all 0.25s;
}
.donors-member .donors-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
}
.donors-member:hover {
  background-color: var(--dark);
}
.donors-member:hover .donors-name {
  color: #fff;
}
.donors-member:hover .donors-amount {
  background-color: var(--primary);
  color: #fff;
}

.qr-iframe {
  border-radius: 6px;
  box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  padding: 10px 10px 12px;
  position: fixed;
  z-index: 99998;
  bottom: 20px;
  left: 20px;
  width: 160px;
  text-align: center;
  transition: opacity 0.3s ease;
}
.qr-iframe img {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 2px;
}
.qr-iframe .qr-title {
  font-size: 14px;
  margin-bottom: 5px;
}
.qr-iframe p {
  font-size: 12px;
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
  opacity: 0.8;
}
.qr-iframe .qr-remove {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50px;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  line-height: 18px;
  top: -10px;
  right: -10px;
}

.contact-form {
  background-color: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .contact-form {
    padding: 30px;
  }
}

.services-wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.services-wrapper .swiper-prev,
.services-wrapper .swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  opacity: 0.5;
}
.services-wrapper .swiper-prev i,
.services-wrapper .swiper-next i {
  display: flex;
}
.services-wrapper .swiper-prev:hover,
.services-wrapper .swiper-next:hover {
  opacity: 1;
}
.services-wrapper .swiper-prev {
  left: 0;
}
.services-wrapper .swiper-next {
  right: 0;
}

.team-bx1 .team-media {
  overflow: hidden;
  border-radius: 6px;
}
.team-bx1 .team-info {
  padding-top: 15px;
}
.team-bx1 .name {
  font-size: 20px;
  font-family: var(--body-font-family);
  margin-bottom: 0;
}
.team-bx1 .team-social {
  display: flex;
  margin: 10px 0 0;
  padding: 0;
  gap: 6px;
}
.team-bx1 .team-social li {
  display: inline-block;
}
.team-bx1 .team-social li a {
  display: flex;
  height: 32px;
  width: 32px;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.5s;
}
.team-bx1 .team-social li a i {
  display: flex;
}
.team-bx1 .team-social li a:hover {
  color: #fff;
  background-color: var(--primary);
}

.cta-wrapper {
  background: var(--primary);
  padding: 50px 0;
  color: #fff;
}
.cta-wrapper .btn-bx {
  float: right;
  gap: 20px;
  display: flex;
}
.cta-wrapper .title {
  color: #fff;
  font-size: 36px;
  margin-bottom: 10px;
}
.cta-wrapper p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cta-wrapper {
    text-align: center;
  }
  .cta-wrapper .btn-bx {
    float: unset;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cta-wrapper {
    padding: 35px 0;
  }
  .cta-wrapper .title {
    font-size: 24px;
  }
  .cta-wrapper p {
    font-size: 14px;
  }
  .cta-wrapper .btn-bx {
    margin-top: 20px;
  }
}

.donate-form-wrapper {
  background-color: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .donate-form-wrapper {
    padding: 30px;
  }
}

.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%;
  }
}
.error-wrapper {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-wrapper .error-status {
  font-size: 200px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1;
}
.error-wrapper .error-title {
  margin-bottom: 12px;
}
.error-wrapper p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .error-wrapper .error-status {
    font-size: 150px;
  }
}
@media (max-width: 591px) {
  .error-wrapper .error-status {
    font-size: 100px;
  }
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 10px;
}
.blog-meta li {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  position: relative;
  margin-right: 20px;
}
.blog-meta li i {
  font-size: 15px;
  color: var(--primary);
  margin-right: 8px;
  transform: translateY(-1px);
  display: flex;
}
.blog-meta .blog-author img {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  margin-right: 10px;
}

.blog-catogery a {
  background-color: var(--primary);
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 13px;
}

.blog-card {
  padding: 0;
  transition: all 0.25s;
  background: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.02);
  border-radius: 15px;
  padding: 10px;
}
.blog-card .post-title {
  font-size: 20px;
  font-weight: 600;
}
.blog-card .post-info {
  padding: 15px 15px 10px;
}
.blog-card .post-tag {
  background: var(--primary);
  padding: 5px 10px;
  border-radius: 25px;
  color: #000;
  line-height: 1.2;
  font-size: 14px;
}
.blog-card .post-date {
  position: absolute;
  color: #fff;
  background-color: var(--primary);
  top: 10px;
  left: 10px;
  z-index: 1;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1.3;
}
.blog-card .post-meta {
  margin-bottom: 12px;
  padding: 0;
}
.blog-card .post-meta li {
  display: inline-flex;
  font-size: 14px;
  align-items: center;
  font-weight: 500;
  margin-right: 10px;
  line-height: 1.25;
}
.blog-card .post-header {
  padding-bottom: 12px;
}
.blog-card .post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card p {
  margin-bottom: 0;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card .post-media {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.25s;
  z-index: 1;
}
.blog-card .post-media img {
  transition: all 0.25s;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.details-post-image {
  overflow: hidden;
  border-radius: 6px;
  margin: 0 0 20px;
}
.details-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s;
}
.details-post-image figcaption {
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
}

.blog-details {
  font-size: 16px;
  margin-bottom: 60px;
}
.blog-details .blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}
.blog-details h2,
.blog-details h3,
.blog-details h4,
.blog-details h5,
.blog-details h6 {
  margin-top: 35px;
  margin-bottom: 8px;
}
.blog-details .blog-tags {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 12px;
  margin-top: 25px;
  font-size: 15px;
}
.blog-details .blog-tags a {
  margin-left: 5px;
}
.blog-details figure {
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 6px;
}

.comment-form .widget-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: var(--body-font-family);
}

.comments-area {
  margin-bottom: 50px;
}
.comments-area .widget-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: var(--body-font-family);
}

.comment-list {
  margin-bottom: 15px;
  padding: 20px 20px 0px;
  border-radius: 6px;
  background-color: #fff;
}
.comment-list .comment-wrap {
  display: flex;
}
.comment-list .comment-info .user {
  font-size: 15px;
  color: var(--heading-color);
  line-height: 1.2;
  font-weight: 500;
}
.comment-list .comment-info .date {
  font-size: 13px;
  display: inline-block;
  line-height: 12px;
  margin-left: 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 7px;
  text-transform: uppercase;
}
.comment-list .comment-info p {
  font-size: 15px;
  line-height: 1.5;
}
.comment-list .comment-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px 0;
}
.comment-list .comment-user {
  overflow: hidden;
  border-radius: 50px;
  height: 65px;
  width: 65px;
  min-width: 65px;
  margin-right: 15px;
  border: 2px solid white;
}
.comment-list .comment-user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment-list .btn-reply {
  color: var(--primary);
  font-size: 14px;
  display: inline-block;
  font-weight: 500;
  text-decoration: underline !important;
  margin-bottom: 20px;
}
.comment-list .comment-list {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: 0;
  padding-left: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.blog-wrapper {
  max-width: 980px;
}

.blockquote {
  position: relative;
  padding-left: 55px;
  font-style: italic;
  font-size: 20px;
  margin: 25px 0;
}
.blockquote::before {
  content: "﫾";
  font-family: uicons-regular-straight;
  position: absolute;
  left: 0;
  font-size: 32px;
  color: var(--bs-primary);
  line-height: 1.2;
  font-style: normal;
}

.reply-form {
  display: none;
  margin-bottom: 20px;
}

.service-banner .page-title {
  font-weight: 700;
}

.service-header {
  margin-bottom: 20px;
}
.service-header .title {
  font-size: 36px;
}
@media (max-width: 991px) {
  .service-header .title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .service-header .title {
    font-size: 28px;
  }
}

.section-menu {
  background: #fff;
  padding: 15px 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: -25px 100px 0;
  border-radius: 12px;
}
.section-menu a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

.service-list {
  padding-left: 30px;
  margin-bottom: 15px;
  margin-top: 12px;
}
.service-list li {
  display: block;
  padding: 2px 0;
  position: relative;
}
.service-list li::before {
  content: "\f3c9";
  position: absolute;
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
  font-family: uicons-bold-rounded !important;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.media-frame1 {
  position: relative;
  text-align: center;
  margin-right: 30px;
}
.media-frame1 .img1 {
  border: 20px solid #fff;
  margin: 0;
  width: 85%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  clip-path: polygon(2% 0%, 6% 1%, 10% 0%, 14% 1%, 18% 0%, 22% 1%, 26% 0%, 30% 1%, 34% 0%, 38% 1%, 42% 0%, 46% 1%, 50% 0%, 54% 1%, 58% 0%, 62% 1%, 66% 0%, 70% 1%, 74% 0%, 78% 1%, 82% 0%, 86% 1%, 90% 0%, 94% 1%, 98% 0%, 100% 4%, 99% 8%, 100% 12%, 99% 16%, 100% 20%, 99% 24%, 100% 28%, 99% 32%, 100% 36%, 99% 40%, 100% 44%, 99% 48%, 100% 52%, 99% 56%, 100% 60%, 99% 64%, 100% 68%, 99% 72%, 100% 76%, 99% 80%, 100% 84%, 99% 88%, 100% 92%, 99% 96%, 98% 100%, 94% 99%, 90% 100%, 86% 99%, 82% 100%, 78% 99%, 74% 100%, 70% 99%, 66% 100%, 62% 99%, 58% 100%, 54% 99%, 50% 100%, 46% 99%, 42% 100%, 38% 99%, 34% 100%, 30% 99%, 26% 100%, 22% 99%, 18% 100%, 14% 99%, 10% 100%, 6% 99%, 0% 96%, 1% 92%, 0% 88%, 1% 84%, 0% 80%, 1% 76%, 0% 72%, 1% 68%, 0% 64%, 1% 60%, 0% 56%, 1% 52%, 0% 48%, 1% 44%, 0% 40%, 1% 36%, 0% 32%, 1% 28%, 0% 24%, 1% 20%, 0% 16%, 1% 12%, 0% 8%, 1% 4%);
}
@media (max-width: 1191px) {
  .media-frame1 {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .media-frame1 .img1 {
    width: 100%;
  }
}

.media-frame2 {
  position: relative;
  width: 80%;
  margin: auto;
}
.media-frame2 img {
  border-radius: 6px;
}
.media-frame2::after, .media-frame2::before {
  content: "";
  position: absolute;
  height: 180px;
  width: 120px;
  background-color: #000;
  z-index: -1;
}
.media-frame2::before {
  top: -10px;
  left: -10px;
  background-color: var(--primary);
  border-radius: 4px;
}
.media-frame2::after {
  bottom: -10px;
  right: -10px;
  background-color: var(--secondary);
  border-radius: 4px;
}
@media (max-width: 767px) {
  .media-frame2 {
    width: 100%;
  }
}

.media-frame3 {
  margin-right: 30px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .media-frame3 {
    margin-right: 0;
  }
}

.media-frame4 {
  position: relative;
  margin-right: 30px;
}
.media-frame4 .text {
  text-align: center;
  font-size: 80px;
  font-style: italic;
  opacity: 0.1;
  margin-bottom: -20px;
  z-index: -1;
  position: relative;
  font-weight: 700;
}
.media-frame4 img {
  border-radius: 6px;
}
@media (max-width: 1191px) {
  .media-frame4 {
    margin-right: 0;
  }
  .media-frame4 .text {
    font-size: 50px;
    margin-bottom: -10px;
  }
}
@media (max-width: 1191px) {
  .media-frame4 .text {
    font-size: 35px;
    margin-bottom: -5px;
  }
}

.gallery-post {
  border: 10px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  clip-path: polygon(2% 0%, 6% 1%, 10% 0%, 14% 1%, 18% 0%, 22% 1%, 26% 0%, 30% 1%, 34% 0%, 38% 1%, 42% 0%, 46% 1%, 50% 0%, 54% 1%, 58% 0%, 62% 1%, 66% 0%, 70% 1%, 74% 0%, 78% 1%, 82% 0%, 86% 1%, 90% 0%, 94% 1%, 98% 0%, 100% 4%, 99% 8%, 100% 12%, 99% 16%, 100% 20%, 99% 24%, 100% 28%, 99% 32%, 100% 36%, 99% 40%, 100% 44%, 99% 48%, 100% 52%, 99% 56%, 100% 60%, 99% 64%, 100% 68%, 99% 72%, 100% 76%, 99% 80%, 100% 84%, 99% 88%, 100% 92%, 99% 96%, 98% 100%, 94% 99%, 90% 100%, 86% 99%, 82% 100%, 78% 99%, 74% 100%, 70% 99%, 66% 100%, 62% 99%, 58% 100%, 54% 99%, 50% 100%, 46% 99%, 42% 100%, 38% 99%, 34% 100%, 30% 99%, 26% 100%, 22% 99%, 18% 100%, 14% 99%, 10% 100%, 6% 99%, 0% 96%, 1% 92%, 0% 88%, 1% 84%, 0% 80%, 1% 76%, 0% 72%, 1% 68%, 0% 64%, 1% 60%, 0% 56%, 1% 52%, 0% 48%, 1% 44%, 0% 40%, 1% 36%, 0% 32%, 1% 28%, 0% 24%, 1% 20%, 0% 16%, 1% 12%, 0% 8%, 1% 4%);
}
@media (max-width: 591px) {
  .gallery-post {
    border-width: 7px;
  }
}

.gallery-post2 {
  overflow: hidden;
  border-radius: 6px;
}

.gallery-wrapper {
  position: relative;
  padding-top: 80px;
  padding-bottom: 70px;
}
.gallery-wrapper::before, .gallery-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 50px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 6' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='%23ffffff' points='0,0 100,0 100,4 98,5 96,4 94,5 92,4 90,5 88,4 86,5 84,4 82,5 80,4 78,5 76,4 74,5 72,4 70,5 68,4 66,5 64,4 62,5 60,4 58,5 56,4 54,5 52,4 50,5 48,4 46,5 44,4 42,5 40,4 38,5 36,4 34,5 32,4 30,5 28,4 26,5 24,4 22,5 20,4 18,5 16,4 14,5 12,4 10,5 8,4 6,5 4,4 2,5 0,4'/%3E%3C/svg%3E");
}
.gallery-wrapper::before {
  top: 0px;
}
.gallery-wrapper::after {
  bottom: 0px;
  transform: rotate(180deg);
}
@media (max-width: 591px) {
  .gallery-wrapper {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

.service-row > *:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 591px) {
  .service-row > *:not(:last-child) {
    border-right: 0;
  }
}

.service-box-wrapper {
  background-color: var(--primary);
  border-radius: 15px 15px 0 0;
  margin-top: 50px;
}
.service-box-wrapper .row > *:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.service-box-wrapper .row {
  margin: 0;
}
@media (max-width: 591px) {
  .service-box-wrapper {
    margin-top: 10px;
  }
  .service-box-wrapper .row > *:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.stats-wrapper {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 50px 20px;
  margin: 60px 80px -80px;
  box-shadow: 0 0 60px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}
.stats-wrapper .stat-box {
  text-align: center;
  margin-bottom: 20px;
}
.stats-wrapper .stat-box .number {
  color: var(--primary);
  font-size: 45px;
  font-weight: 600;
  font-family: var(--body-font-family);
  margin-bottom: 0;
}
.stats-wrapper .stat-box p {
  margin-bottom: 0;
}
@media (max-width: 1191px) {
  .stats-wrapper {
    margin: 60px 0 -80px;
  }
}
@media (max-width: 591px) {
  .stats-wrapper {
    padding: 30px 20px 20px;
    margin: 20px 0 -80px;
  }
  .stats-wrapper .stat-box .number {
    font-size: 32px;
  }
  .stats-wrapper .stat-box p {
    font-size: 14px;
    display: block;
    line-height: 1.2;
  }
}

.section-sp4 {
  padding-top: 175px;
  padding-bottom: 70px;
}
@media (max-width: 591px) {
  .section-sp4 {
    padding-top: 125px;
  }
}

.date-bx {
  background-color: var(--primary);
  color: #fff;
  display: inline-block;
  margin: 10px auto 0;
  padding: 6px 20px;
  border-radius: 6px;
  font-size: 14px;
}

.policies-card {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
}
.policies-card .title {
  font-size: 28px;
  font-family: var(--body-font-family);
  margin-bottom: 25px;
}
.policies-card .sub-title {
  font-size: 16px;
  font-family: var(--body-font-family);
  margin-bottom: 5px;
}
@media (max-width: 591px) {
  .policies-card {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .policies-card .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.faq-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  transition: 0.4s ease;
}
@media (max-width: 591px) {
  .faq-wrapper {
    padding: 24px;
  }
}

.accordion {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 500;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  background: none;
  font-size: 18px;
  transition: 0.3s;
}
.accordion.active, .accordion:hover {
  color: var(--primary);
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 15px;
  opacity: 0.9;
}
.panel .accordion-body {
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-item:last-child {
  border-bottom: 0;
}

.level-head {
  text-align: center;
  margin-bottom: 30px;
}

.level-title {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  background-color: var(--primary);
  padding: 5px 20px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
}
.level-title::before, .level-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  height: 1px;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.2;
}
.level-title::before {
  left: -50px;
}
.level-title::after {
  right: -50px;
}

.level-wrapper {
  margin-bottom: 20px;
}

.org-card {
  text-align: center;
  margin-bottom: 30px;
}
.org-card img {
  border-radius: 50%;
  height: 80px;
  width: 80px;
  min-width: 80px;
  object-fit: cover;
  margin-bottom: 12px;
}
.org-card .title {
  font-family: var(--body-font-family);
  font-size: 16px;
  margin-bottom: 0px;
}
.org-card .position {
  margin-bottom: 0;
  font-size: 14px;
}

.volunteer-form {
  background-color: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .volunteer-form {
    padding: 30px;
  }
}

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