/* ====== ABOUT PAGE ADVANCED LAYOUT & DESIGN ====== */
.about-hero {
  background: linear-gradient(120deg, #fffbe6 60%, #ffe066 100%);
  padding: 3.5rem 1.5rem 2.2rem 1.5rem;
  text-align: center;
  border-radius: 1.5rem;
  margin-bottom: 2.5rem;
}
.about-hero h1 {
  font-family: 'Poppins', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #b8860b;
  margin-bottom: 0.7rem;
}
.about-hero h2 {
  font-family: 'Poppins', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #a97c2f;
  margin-bottom: 0;
}

.about-mandate.card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px #b8860b11;
  border-left: 6px solid #ffd700;
  padding: 2.2rem 2rem 1.5rem 2.5rem;
  margin-bottom: 2.2rem;
  font-size: 1.13rem;
  color: #6d5c2c;
  font-family: 'Poppins', Arial, sans-serif;
}
.about-mandate .highlight-gold {
  color: #ffd700;
  font-weight: 700;
}
.about-mandate .pillars span {
  color: #b8860b;
  font-weight: 600;
  margin-right: 0.5em;
}
.about-mandate em {
  color: #a97c2f;
  font-size: 1rem;
  font-style: italic;
}

.about-transformation {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.about-transformation .callout {
  flex: 1 1 320px;
  background: #fffbe6;
  border-left: 5px solid #ffd700;
  border-radius: 1.1rem;
  padding: 1.5rem 1.2rem 1.2rem 1.7rem;
  font-size: 1.09rem;
  color: #6d5c2c;
  font-family: 'Poppins', Arial, sans-serif;
  box-shadow: 0 2px 12px #b8860b0a;
}
.about-transformation .callout em {
  color: #a97c2f;
  font-size: 0.98rem;
  font-style: italic;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.about-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px #b8860b13;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-card:hover {
  box-shadow: 0 8px 32px #ffd70033;
  transform: translateY(-4px) scale(1.025);
}
.about-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px #b8860b11;
}
.about-card p {
  color: #6d5c2c;
  font-size: 1.08rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-hero h1 { font-size: 2rem; }
  .about-hero h2 { font-size: 1.1rem; }
  .about-mandate.card { padding: 1.5rem 1rem 1rem 1.2rem; font-size: 1.01rem; }
  .about-transformation { flex-direction: column; gap: 1.2rem; }
  .about-cards { gap: 1.2rem; }
}
@media (max-width: 600px) {
  .about-hero { padding: 2rem 0.5rem 1.2rem 0.5rem; }
  .about-hero h1 { font-size: 1.3rem; }
  .about-hero h2 { font-size: 0.98rem; }
  .about-mandate.card { padding: 1rem 0.5rem 0.7rem 0.7rem; font-size: 0.97rem; }
  .about-transformation .callout { padding: 1rem 0.7rem 0.7rem 1rem; font-size: 0.97rem; }
  .about-card { padding: 1rem 0.7rem 0.7rem 0.7rem; }
  .about-card img { max-height: 120px; }
}
/* ====== END ABOUT PAGE ADVANCED LAYOUT & DESIGN ====== */
.gold-section::before,
.gold-section::after {
  /* ...existing code... */
}

/* White out the non-brushy parts of the borders */
.gold-section::before {
  /* ...existing code... */
}
.gold-section::before.white-mask {
  background: #fff;
  z-index: 3;
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0,
    95% 70%, 90% 90%, 85% 60%, 80% 100%, 75% 70%, 70% 90%, 65% 60%, 60% 100%, 55% 70%, 50% 90%, 45% 60%, 40% 100%, 35% 70%, 30% 90%, 25% 60%, 20% 100%, 15% 70%, 10% 90%, 5% 60%, 0 80%);
}
.gold-section::after {
  /* ...existing code... */
}
.gold-section::after.white-mask {
  background: #fff;
  z-index: 3;
  clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%,
    95% 30%, 90% 10%, 85% 40%, 80% 0, 75% 30%, 70% 10%, 65% 40%, 60% 0, 55% 30%, 50% 10%, 45% 40%, 40% 0, 35% 30%, 30% 10%, 25% 40%, 20% 0, 15% 30%, 10% 10%, 5% 40%, 0 20%);
}

/* Add these with JS or HTML: <div class="gold-section-white gold-section::before white-mask"></div> and <div class="gold-section-white gold-section::after white-mask"></div> if needed for more precise masking. */
/* Brushy/sketchy gold section borders using only CSS */

/* Modern wavy borders for gold section */
.gold-section {
  position: relative;
  background: #ffd700;
  color: #1a1a1a;
  overflow: hidden;
}
.gold-section::before,
.gold-section::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  background: #fff;
}
.gold-section::before {
  top: 0;
  /* Soft top wave */
  clip-path: path('M0,60 Q480,0 960,40 T1920,60 V0 H0 Z');
}
.gold-section::after {
  bottom: 0;
  /* Soft bottom wave */
  clip-path: path('M0,0 Q480,60 960,20 T1920,0 V60 H0 Z');
}
.gold-section .gold-row {
  position: relative;
  z-index: 3;
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #ffd700;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #ffd700;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

 figcaption, figure, footer, header, main, nav, section {
  display: block; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff; }

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important; }

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

b,
strong {
  font-weight: bolder; }

small {
  font-size: 80%; }

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent; }
  a:hover {
    color: #0056b3;
    text-decoration: underline; }

a:not([href]) {
  color: inherit;
  text-decoration: none; }
  a:not([href]):hover {
    color: inherit;
    text-decoration: none; }

pre,
code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em; }

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle;
  border-style: none; }

svg {
  overflow: hidden;
  vertical-align: middle; }

table {
  border-collapse: collapse; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: inherit; }

label {
  display: inline-block;
  margin-bottom: 0.5rem; }

button {
  border-radius: 0; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

[role="button"] {
  cursor: pointer; }

select {
  word-wrap: normal; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none; }

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

textarea {
  overflow: auto;
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal; }

progress {
  vertical-align: baseline; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

output {
  display: inline-block; }

template {
  display: none; }

[hidden] {
  display: none !important; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2; }

h1, .h1 {
  font-size: 2.5rem; }

h2, .h2 {
  font-size: 2rem; }

h3, .h3 {
  font-size: 1.75rem; }

h4, .h4 {
  font-size: 1.5rem; }

h5, .h5 {
  font-size: 1.25rem; }

h6, .h6 {
  font-size: 1rem; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

small,
.small {
  font-size: 80%;
  font-weight: 400; }

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.figure {
  display: inline-block; }

code {
  font-size: 87.5%;
  color: #ffd700;
  word-wrap: break-word; }
  a > code {
    color: inherit; }

pre {
  display: block;
  font-size: 87.5%;
  color: #212529; }
  pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  @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: 1140px; } }

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

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

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

 .col, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-12, .col-lg-3, .col-lg-4, .col-lg-8 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%; }

@media (min-width: 768px) {
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; } }

@media (min-width: 992px) {
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; } }

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529; }
  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6; }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6; }
  .table tbody + tbody {
    border-top: 2px solid #dee2e6; }

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .form-control {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057; }
  .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  .form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control::placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1; }

input[type="date"].form-control,
input[type="time"].form-control,
input[type="month"].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff; }

select.form-control[size], select.form-control[multiple] {
  height: auto; }

textarea.form-control {
  height: auto; }

.form-group {
  margin-bottom: 1rem; }

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-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;
  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;
  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, -webkit-box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .btn {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }
  .btn:hover {
    color: #212529;
    text-decoration: none; }
  .btn:focus, .btn.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  .btn.disabled, .btn:disabled {
    opacity: 0.65; }
  .btn:not(:disabled):not(.disabled) {
    cursor: pointer; }

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none; }

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }
  .btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); }
  .btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf; }
    .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-primary.dropdown-toggle:focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
      box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); }

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent; }
  .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
  .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
    .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-primary.dropdown-toggle:focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
      box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }

.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
  display: none; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative; }

.dropdown-toggle {
  white-space: nowrap; }
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent; }
  .dropdown-toggle:empty::after {
    margin-left: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }

.dropdown-menu-right {
  right: 0;
  left: auto; }

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem; }

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent; }

.dropup .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem; }

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid; }

.dropright .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropright .dropdown-toggle::after {
  vertical-align: 0; }

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem; }

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: ""; }

.dropleft .dropdown-toggle::after {
  display: none; }

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent; }

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropleft .dropdown-toggle::before {
  vertical-align: 0; }

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }
  .dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa; }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff; }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent; }

.dropdown-menu.show {
  display: block; }

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
  padding: 0.5rem 1rem; }
  .nav-link:hover, .nav-link:focus {
    text-decoration: none; }
  .nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default; }

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem; }
  .navbar .container,
  .navbar .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .navbar-nav .dropdown-menu {
    position: static;
    float: none; }

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem; }
  .navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none; }

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
    .navbar-expand-lg .navbar-collapse {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; } }

.navbar-dark .navbar-brand {
  color: #fff; }
  .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75); }
  .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff; }

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1); }

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem; }

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem; }

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit; }
  .list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit; }
  .list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff; }
  .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .list-group-item + .list-group-item {
    border-top-width: 0; }
    .list-group-item + .list-group-item.active {
      margin-top: -1px;
      border-top-width: 1px; }

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5; }
  .close:hover {
    color: #000;
    text-decoration: none; }
  .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    opacity: .75; }

button.close {
  padding: 0;
  background-color: transparent;
  border: 0; }

a.close.disabled {
  pointer-events: none; }

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem; }
  .toast:not(:last-child) {
    margin-bottom: 0.75rem; }
  .toast.showing {
    opacity: 1; }
  .toast.show {
    display: block;
    opacity: 1; }
  .toast.hide {
    display: none; }

.modal-open {
  overflow: hidden; }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px); }
    @media (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
  .modal.show .modal-dialog {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02); }

.modal-dialog-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem); }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem); } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0; }
  .tooltip.show {
    opacity: 0.9; }
  .tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem; }
    .tooltip .arrow::before {
      position: absolute;
      content: "";
      border-color: transparent;
      border-style: solid; }

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem; }
  .popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem; }
    .popover .arrow::before, .popover .arrow::after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid; }

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529; }

.carousel {
  position: relative; }

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  -o-transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-item {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block; }

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none; }
  .carousel-indicators li {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    -webkit-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease; }
    @media (prefers-reduced-motion: reduce) {
      .carousel-indicators li {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
  .carousel-indicators .active {
    opacity: 1; }

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.bg-primary {
  background-color: #007bff !important; }

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important; }

.bg-secondary {
  background-color: #6c757d !important; }

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important; }

.bg-light {
  background-color: #f8f9fa !important; }

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important; }

.bg-dark {
  background-color: #343a40 !important; }

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important; }

.border {
  border: 1px solid #dee2e6 !important; }

.rounded {
  border-radius: 0.25rem !important; }

.d-block {
  display: block !important; }

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

@media (min-width: 768px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; } }

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important; }

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important; }

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important; }

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important; }

@media (min-width: 768px) {
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; } }

.position-static {
  position: static !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.w-100 {
  width: 100% !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mr-2 {
  margin-right: 0.5rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.mt-4 {
  margin-top: 1.5rem !important; }

.mr-4 {
  margin-right: 1.5rem !important; }

.mb-4 {
  margin-bottom: 1.5rem !important; }

.mt-5 {
  margin-top: 3rem !important; }

.mr-5 {
  margin-right: 3rem !important; }

.mb-5 {
  margin-bottom: 3rem !important; }

.p-0 {
  padding: 0 !important; }


.py-2 {
  padding-top: 0.5rem !important; }


.px-2 {
  padding-right: 0.5rem !important; }


.py-2 {
  padding-bottom: 0.5rem !important; }


.px-2 {
  padding-left: 0.5rem !important; }


.py-3 {
  padding-top: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }


.py-4 {
  padding-top: 1.5rem !important; }


.px-4 {
  padding-right: 1.5rem !important; }


.py-4 {
  padding-bottom: 1.5rem !important; }


.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5 {
  padding-top: 3rem !important; }

.pb-5 {
  padding-bottom: 3rem !important; }

.ml-auto {
  margin-left: auto !important; }

@media (min-width: 576px) {
  .mb-sm-0 {
    margin-bottom: 0 !important; } }

@media (min-width: 768px) {
  .mb-md-0 {
    margin-bottom: 0 !important; }
  .mr-md-2 {
    margin-right: 0.5rem !important; }
  .mt-md-5 {
    margin-top: 3rem !important; }
  
  .px-md-0 {
    padding-right: 0 !important; }
  
  .px-md-0 {
    padding-left: 0 !important; }
  
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  
  .px-md-5 {
    padding-right: 3rem !important; }
  
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; } }

@media (min-width: 992px) {
  .ml-lg-2 {
    margin-left: 0.5rem !important; }
  .pl-lg-5 {
    padding-left: 3rem !important; } }

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

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; } }

.font-weight-bold {
  font-weight: 700 !important; }

.visible {
  visibility: visible !important; }

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  a:not(.btn) {
    text-decoration: underline; }
  pre {
    white-space: pre-wrap !important; }
  pre {
    border: 1px solid #adb5bd;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  @page {
    size: a3; }
  body {
    min-width: 992px !important; }
  .container {
    min-width: 992px !important; }
  .navbar {
    display: none; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; } }

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #fff;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  color: #4d4d4d;
  color: #40415e; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #ffd700; }
  a:hover, a:focus {
    text-decoration: none;
    color: #ffd700;
    outline: none !important; }

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400; }

.container {
  max-width: 1300px; }

.wrap {
  background: transparent;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .wrap .location {
    z-index: 1;
    color: #fff;
    font-weight: 300; }
    .wrap .location span {
      color: #fff; }
    .wrap .location a {
      color: #fff;
      font-size: 12px; }

.social-media {
  display: inline-block; }
  .social-media p a {
    width: 44px;
    height: 44px;
    border-left: 1px solid rgba(255, 255, 255, 0.1); }
    .social-media p a span {
      color: #fff; }
    .social-media p a:hover {
      background: #ffd700;
      border-color: #ffd700; }
      .social-media p a:hover span {
        color: #fff; }

.ftco-navbar-light {
  background: transparent !important;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 3; }
  @media (max-width: 991.98px) {
    .ftco-navbar-light {
      background: #000000 !important;
      position: relative;
      top: 0; } }
  .ftco-navbar-light .navbar-brand {
    color: #fff; }
    .ftco-navbar-light .navbar-brand span {
      color: #fff; }
    @media (max-width: 991.98px) {
      .ftco-navbar-light .navbar-brand {
        color: #fff; } }
  @media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav {
      padding-bottom: 10px; } }
  .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    font-size: 14px;
    padding-top: .9rem;
    padding-bottom: .9rem;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 1 !important; }
    .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
      color: #ffd700; }
    @media (max-width: 991.98px) {
      .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        color: #fff; } }
  .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu {
    border: none;
    background: #fff;
    -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41); }
  .ftco-navbar-light .navbar-nav > .nav-item.cta > a {
    color: #fff;
    border: 1px solid #ffd700;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 4px;
    background: #ffd700;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    border-radius: 40px; }
    .ftco-navbar-light .navbar-nav > .nav-item.cta > a span {
      display: inline-block;
      color: #fff; }
    .ftco-navbar-light .navbar-nav > .nav-item.cta > a:hover {
      background: #ffd700;
      border: 1px solid #ffd700; }
  .ftco-navbar-light .navbar-nav > .nav-item.active > a {
    color: #ffd700; }
  @media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav > .nav-item.active > a {
      color: #ffd700; } }
  .ftco-navbar-light .navbar-toggler {
    border: none;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    padding-right: 0;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .1em; }
    .ftco-navbar-light .navbar-toggler:hover, .ftco-navbar-light .navbar-toggler:focus {
      text-decoration: none;
      color: #ffd700;
      outline: none !important; }

.navbar-brand {
  font-weight: 900;
  font-size: 20px; }

.hero-wrap {
  width: 100%;
  height: 100%;
  position: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  background-attachment: fixed;
  overflow: hidden;
  height: 700px; }
  @media (max-width: 1199.98px) {
    .hero-wrap {
      background-position: center center !important; } }
  .hero-wrap .overlay {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: '';
    opacity: .4;
    background: #00043c; }
  .hero-wrap.hero-wrap-2 {
    height: 600px; }
    .hero-wrap.hero-wrap-2 .overlay {
      opacity: .4;
      background: #00043c; }
    .hero-wrap.hero-wrap-2 .slider-text {
      height: 600px; }
      .hero-wrap.hero-wrap-2 .slider-text h1 {
        font-weight: 400;
        font-size: 40px; }
  .hero-wrap .slider-text {
    height: 700px; }
    .hero-wrap .slider-text h1 {
      color: #fff;
      line-height: 1.4;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 45px; }
      @media (max-width: 991.98px) {
        .hero-wrap .slider-text h1 {
          font-size: 40px; } }
      .hero-wrap .slider-text h1 span {
        border: 2px dashed #ffd700;
        color: #ffd700;
        padding: 0 5px; }
    .hero-wrap .slider-text .subheading {
      font-size: 15px;
      color: #ffd700;
      text-transform: uppercase;
      font-family: "Poppins", Arial, sans-serif;
      font-weight: 700;
      letter-spacing: 2px; }
    .hero-wrap .slider-text p {
      font-size: 18px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.7); }
      .hero-wrap .slider-text p strong {
        font-weight: 700; }
        .hero-wrap .slider-text p strong a {
          color: #000000; }
    .hero-wrap .slider-text .breadcrumbs {
      font-size: 16px;
      font-weight: 400;
      margin-bottom: 20px;
      z-index: 99;
      text-transform: capitalize !important; }
      .hero-wrap .slider-text .breadcrumbs span {
        color: rgba(255, 255, 255, 0.5); }
        .hero-wrap .slider-text .breadcrumbs span i {
          color: rgba(255, 255, 255, 0.3); }
        .hero-wrap .slider-text .breadcrumbs span a {
          color: rgba(255, 255, 255, 0.7); }
          .hero-wrap .slider-text .breadcrumbs span a:hover, .hero-wrap .slider-text .breadcrumbs span a:focus {
            color: #ffd700; }
            .hero-wrap .slider-text .breadcrumbs span a:hover i, .hero-wrap .slider-text .breadcrumbs span a:focus i {
              color: #ffd700; }
    .hero-wrap .slider-text .bread {
      text-transform: capitalize;
      font-weight: 700 !important; }

.owl-carousel {
  position: relative; }
  .owl-carousel .owl-item {
    opacity: 1; }
    .owl-carousel .owl-item.active {
      opacity: 1; }
  .owl-carousel .owl-dots {
    text-align: center; }
    .owl-carousel .owl-dots .owl-dot {
      width: 10px;
      height: 10px;
      margin: 5px;
      border-radius: 50%;
      background: #e6e6e6;
      position: relative; }
      .owl-carousel .owl-dots .owl-dot:after {
        position: absolute;
        top: -2px;
        left: -2px;
        right: 0;
        bottom: 0;
        width: 14px;
        height: 14px;
        content: '';
        border: 1px solid #4d4d4d;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%; }
      .owl-carousel .owl-dots .owl-dot:hover, .owl-carousel .owl-dots .owl-dot:focus {
        outline: none !important; }
      .owl-carousel .owl-dots .owl-dot.active {
        background: #b3b3b3; }
        .owl-carousel .owl-dots .owl-dot.active:after {
          border-color: #fff; }
  .owl-carousel.home-slider {
    position: relative;
    height: 700px;
    z-index: 0; }
    .owl-carousel.home-slider .slider-item {
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      height: 700px;
      position: relative;
      z-index: 0;
      overflow: hidden; }
      .owl-carousel.home-slider .slider-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        opacity: .3;
        z-index: 0;
        background: #00043c; }
      @media (max-width: 1199.98px) {
        .owl-carousel.home-slider .slider-item {
          background-position: center center !important; } }
      .owl-carousel.home-slider .slider-item .slider-text {
        height: 700px;
        position: relative; }
        .owl-carousel.home-slider .slider-item .slider-text .text {
          z-index: 0;
          color: rgba(255, 255, 255, 0.9); }
        .owl-carousel.home-slider .slider-item .slider-text h1 {
          font-size: 56px;
          font-weight: 600;
          color: #fff;
          line-height: 1.3;
          text-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1);
          text-transform: uppercase;
          letter-spacing: 3px; }
          @media (max-width: 991.98px) {
            .owl-carousel.home-slider .slider-item .slider-text h1 {
              font-size: 40px;
              letter-spacing: 3px; } }
        .owl-carousel.home-slider .slider-item .slider-text h2 {
          font-size: 20px;
          text-transform: uppercase;
          letter-spacing: 1px;
          font-family: "Poppins", Arial, sans-serif;
          font-weight: 700;
          color: #ffd700;
          display: inline-block;
          position: relative;
          letter-spacing: 4px;
          z-index: 0; }
          .owl-carousel.home-slider .slider-item .slider-text h2:before, .owl-carousel.home-slider .slider-item .slider-text h2:after {
            position: absolute;
            content: '';
            background: rgba(255, 255, 255, 0.2);
            z-index: -1; }
          .owl-carousel.home-slider .slider-item .slider-text h2:before {
            width: 130px;
            height: 1px;
            top: -20px;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
          .owl-carousel.home-slider .slider-item .slider-text h2:after {
            width: 1px;
            height: 150px;
            left: 50%;
            top: -60px;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
    .owl-carousel.home-slider .owl-nav {
      position: absolute;
      top: 50%;
      width: 100%; }
      .owl-carousel.home-slider .owl-nav .owl-prev,
      .owl-carousel.home-slider .owl-nav .owl-next {
        position: absolute;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        outline: none !important;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
        opacity: 0; }
        .owl-carousel.home-slider .owl-nav .owl-prev span:before,
        .owl-carousel.home-slider .owl-nav .owl-next span:before {
          font-size: 30px;
          color: rgba(255, 255, 255, 0.5);
          -moz-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          -webkit-transition: all 0.3s ease;
          -ms-transition: all 0.3s ease;
          transition: all 0.3s ease; }
        .owl-carousel.home-slider .owl-nav .owl-prev:hover span:before, .owl-carousel.home-slider .owl-nav .owl-prev:focus span:before,
        .owl-carousel.home-slider .owl-nav .owl-next:hover span:before,
        .owl-carousel.home-slider .owl-nav .owl-next:focus span:before {
          color: #fff; }
      .owl-carousel.home-slider .owl-nav .owl-prev {
        left: 0;
        margin-left: 0; }
      .owl-carousel.home-slider .owl-nav .owl-next {
        right: 0;
        margin-right: 0; }
    .owl-carousel.home-slider:hover .owl-nav .owl-prev,
    .owl-carousel.home-slider:hover .owl-nav .owl-next {
      opacity: 1; }
    .owl-carousel.home-slider:hover .owl-nav .owl-prev {
      margin-left: 50px; }
    .owl-carousel.home-slider:hover .owl-nav .owl-next {
      margin-right: 50px; }
    .owl-carousel.home-slider .owl-dots {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 40px;
      width: 100%;
      text-align: center; }
      @media (max-width: 767.98px) {
        .owl-carousel.home-slider .owl-dots {
          bottom: 5px; } }
      .owl-carousel.home-slider .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        margin: 5px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4); }
        .owl-carousel.home-slider .owl-dots .owl-dot.active {
          background: #fff; }

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.bg-light {
  background: #f4f4f4 !important; }

.bg-primary {
  background: #ffd700 !important; }

.bg-secondary {
  background: #ffd700 !important; }

.bg-tertiary {
  background: #ffd700 !important; }

.bg-quarternary {
  background: #ffd700 !important; }

.btn {
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 40px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700; }
  .btn:hover, .btn:active, .btn:focus {
    outline: none; }
  .btn.btn-primary {
    background: #ffd700;
    border: 2px solid #ffd700;
    color: #fff; }
    .btn.btn-primary:hover {
      border: 2px solid #ffd700;
      background: transparent;
      color: #ffd700; }
    .btn.btn-primary.btn-outline-primary {
      border: 2px solid #ffd700;
      background: transparent;
      color: #ffd700; }
      .btn.btn-primary.btn-outline-primary:hover {
        border: 2px solid transparent;
        background: #ffd700;
        color: #fff; }

.img-video {
  background-position: center center;
  position: relative; }
  @media (max-width: 767.98px) {
    .img-video {
      height: 400px; } }

.services-2 {
  width: 100%;
  padding: 50px 40px 50px 0; }
  .services-2 .icon {
    margin-bottom: 0;
    line-height: 1.2; }
    .services-2 .icon span {
      font-size: 60px;
      color: #000000; }
  .services-2 .text {
    width: 100%; }
    .services-2 .text h4 {
      font-size: 20px;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 0; }
    .services-2 .text span.subheading {
      display: block;
      margin-bottom: 30px;
      color: #ffd700;
      position: relative; }
      .services-2 .text span.subheading:after {
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 40px;
        height: 1px;
        content: '';
        background: #ffd700; }
  .services-2.services-block {
    background: #ffd700;
    padding: 100px 40px 50px 40px; }
    @media (min-width: 992px) {
      .services-2.services-block {
        margin-top: -50px; } }
    .services-2.services-block .text {
      color: rgba(255, 255, 255, 0.8); }
      .services-2.services-block .text h4 {
        color: #fff;
        text-transform: capitalize;
        margin-bottom: 40px;
        font-size: 24px; }

.sermon-wrap .img {
  width: 100%; }

@media (max-width: 991.98px) {
  .sermon-wrap .btn-customize a {
    display: block;
    margin-bottom: 5px; } }

@media (max-width: 767.98px) {
  .sermon-wrap .text {
    padding: 20px; } }

.sermon-wrap .text h2 {
  font-weight: 700;
  font-size: 32px; }
  .sermon-wrap .text h2 a {
    color: #ffd700; }

.sermon-wrap .meta span {
  display: block;
  margin-bottom: 15px;
  font-weight: 700; }

.gallery {
  width: 100%;
  height: 350px;
  display: block;
  position: relative;
  z-index: 0; }
  .gallery:before, .gallery:after, .gallery .overlay {
    position: absolute;
    content: '';
    background: white;
    z-index: -1;
    opacity: 0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .gallery .overlay {
    background: #000000;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -2; }
  .gallery:before {
    width: 130px;
    height: 1px;
    top: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .gallery:after {
    width: 1px;
    height: 150px;
    left: 50%;
    top: 60px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .gallery:hover .overlay {
    opacity: .5; }
  .gallery:hover:after, .gallery:hover:before {
    opacity: 1; }

#section-counter {
  position: relative;
  z-index: 0; }

.ftco-counter {
  overflow-x: hidden;
  position: relative;
  padding: 5em 0; }
  @media (max-width: 1199.98px) {
    .ftco-counter {
      background-position: center center !important; } }
  .ftco-counter .block-18 {
    display: block;
    width: 100%; }
    @media (max-width: 991.98px) {
      .ftco-counter .block-18 {
        margin-bottom: 2em; } }
  .ftco-counter .text {
    position: relative; }
    @media (max-width: 767.98px) {
      .ftco-counter .text {
        width: 100%; } }
    .ftco-counter .text .number {
      line-height: 1;
      font-weight: 600;
      font-size: 30px;
      color: #fff;
      display: block;
      margin-bottom: 5px; }
    .ftco-counter .text span {
      font-size: 14px;
      color: #fff;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 3px; }
  @media (max-width: 767.98px) {
    .ftco-counter .counter-wrap {
      margin-bottom: 20px; } }

.form-control {
  height: 52px;
  background: #fff !important;
  color: #000000 !important;
  font-size: 14px;
  border-radius: 5px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }
  .form-control:focus, .form-control:active {
    border-color: #000000; }

textarea.form-control {
  height: inherit !important; }

.ftco-animate {
  opacity: 0;
  visibility: hidden; }

.about-author .desc h3 {
  font-size: 24px; }

.ftco-section {
  padding: 9em 0;
  position: relative; }
  @media (max-width: 767.98px) {
    .ftco-section {
      padding: 6em 0; } }

.ftco-no-pt {
  padding-top: 0 !important; }

.ftco-no-pb {
  padding-bottom: 0 !important; }

.footer {
  background: #1a1a1a;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 7em 0; }
  .footer a {
    color: #ffd700; }
  .footer p {
    color: rgba(255, 255, 255, 0.6); }
  .footer .copyright {
    color: rgba(255, 255, 255, 0.3);
    color: #999999; }
  .footer .footer-heading {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    position: relative; }
  .footer ul.list-unstyled li a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7); }
  .footer .block-21 .img {
    display: block;
    height: 80px;
    width: 80px; }
  .footer .block-21 .text {
    width: calc(100% - 100px); }
    .footer .block-21 .text .heading {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.4; }
      .footer .block-21 .text .heading a {
        color: #fff; }
        .footer .block-21 .text .heading a:hover, .footer .block-21 .text .heading a:active, .footer .block-21 .text .heading a:focus {
          text-decoration: none; }
    .footer .block-21 .text .meta > div {
      display: inline-block;
      font-size: 12px;
      margin-right: 5px; }
      .footer .block-21 .text .meta > div a {
        color: gray; }
  .footer .block-23 ul li {
    color: rgba(255, 255, 255, 0.6); }
    .footer .block-23 ul li a {
      color: rgba(255, 255, 255, 0.6); }
    .footer .block-23 ul li .icon {
      color: rgba(255, 255, 255, 0.4); }
  .footer .ftco-footer-social li a {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700; }

.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block; }
  .ftco-footer-social li a {
    height: 40px;
    width: 40px;
    display: block;
    float: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: relative; }
    .ftco-footer-social li a span {
      position: absolute;
      font-size: 20px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .ftco-footer-social li a:hover {
      color: #fff; }

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(206, 15, 61, 0.4);
    -webkit-box-shadow: 0 0 0 0 rgba(206, 15, 61, 0.4);
    box-shadow: 0 0 0 0 rgba(206, 15, 61, 0.4); }
  70% {
    -moz-box-shadow: 0 0 0 30px rgba(206, 15, 61, 0);
    -webkit-box-shadow: 0 0 0 30px rgba(206, 15, 61, 0);
    box-shadow: 0 0 0 30px rgba(206, 15, 61, 0); }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(206, 15, 61, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(206, 15, 61, 0);
    box-shadow: 0 0 0 0 rgba(206, 15, 61, 0); } }

.heading-section {
  position: relative;
  z-index: 0; }
  .heading-section .subheading {
    font-size: 12px;
    display: inline-block;
    font-weight: 800;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 0;
    margin-bottom: 10px; }
    .heading-section .subheading:before, .heading-section .subheading:after {
      position: absolute;
      content: '';
      background: #ffd700;
      z-index: -1;
      opacity: .4; }
    .heading-section .subheading:before {
      width: 130px;
      height: 1px;
      top: -20px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
    .heading-section .subheading:after {
      width: 1px;
      height: 150px;
      left: 50%;
      top: -60px;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
  .heading-section h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    z-index: 0;
    position: relative;
    color: #000000; }
    @media (max-width: 767.98px) {
      .heading-section h2 {
        font-size: 28px; } }
  .heading-section.heading-section-white .subheading {
    color: #fff; }
  .heading-section.heading-section-white h2 {
    color: #fff; }
  .heading-section.heading-section-white p {
    color: rgba(255, 255, 255, 0.9); }

.img,
.blog-img,
.user-img {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }

.testimony-section {
  position: relative;
  background: #ffd700; }
  .testimony-section .owl-carousel {
    margin: 0; }
  .testimony-section .owl-carousel .owl-stage-outer {
    padding: 20px 0 2em 0;
    position: relative; }
  .testimony-section .owl-nav {
    position: absolute;
    top: 100%;
    width: 100%; }
    .testimony-section .owl-nav .owl-prev,
    .testimony-section .owl-nav .owl-next {
      position: absolute;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      margin-top: -10px;
      outline: none !important;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      opacity: 0; }
      .testimony-section .owl-nav .owl-prev span:before,
      .testimony-section .owl-nav .owl-next span:before {
        font-size: 30px;
        color: rgba(0, 0, 0, 0.5);
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease; }
      .testimony-section .owl-nav .owl-prev:hover span:before, .testimony-section .owl-nav .owl-prev:focus span:before,
      .testimony-section .owl-nav .owl-next:hover span:before,
      .testimony-section .owl-nav .owl-next:focus span:before {
        color: #fff; }
    .testimony-section .owl-nav .owl-prev {
      left: 50%;
      margin-left: -80px; }
    .testimony-section .owl-nav .owl-next {
      right: 50%;
      margin-right: -80px; }
  .testimony-section:hover .owl-nav .owl-prev,
  .testimony-section:hover .owl-nav .owl-next {
    opacity: 1; }
  .testimony-section:hover .owl-nav .owl-prev {
    left: 50%;
    margin-left: -80px; }
  .testimony-section:hover .owl-nav .owl-next {
    right: 50%;
    margin-right: -80px; }
  .testimony-section .owl-dots {
    text-align: center; }
    .testimony-section .owl-dots .owl-dot {
      width: 10px;
      height: 10px;
      margin: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3); }
      .testimony-section .owl-dots .owl-dot:after {
        border-color: rgba(255, 255, 255, 0.3); }
      .testimony-section .owl-dots .owl-dot.active {
        background: #fff; }
        .testimony-section .owl-dots .owl-dot.active:after {
          border-color: #fff; }

.testimony-wrap {
  display: block;
  position: relative;
  padding: 40px;
  border-radius: 5px;
  z-index: 0;
  background: #fff; }
  .testimony-wrap .user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative; }
  .testimony-wrap .text {
    width: calc(100% - 80px);
    position: relative; }
    @media (max-width: 767.98px) {
      .testimony-wrap .text {
        width: 100%;
        padding-top: 10px; } }
    .testimony-wrap .text p {
      color: #000000; }
  .testimony-wrap .quote {
    position: absolute;
    top: -60px;
    left: 25px;
    opacity: 1;
    width: 40px;
    height: 40px;
    background: #ffd700;
    border-radius: 50%; }
    @media (max-width: 767.98px) {
      .testimony-wrap .quote {
        top: -140px; } }
    .testimony-wrap .quote i {
      font-size: 20px;
      color: #fff; }
  .testimony-wrap .name {
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 0;
    color: #000000; }

.staff {
  width: 100%;
  margin-bottom: 30px; }
  .staff .img {
    background-position: top center;
    width: 100%;
    display: block;
    height: 300px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .staff .text {
    padding: 10px 20px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top: -40px;
    border-radius: 4px;
    background: #ffd700;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .staff .text h3 {
      color: #fff;
      font-size: 18px;
      margin-bottom: 0;
      font-weight: 700; }
    .staff .text span {
      color: rgba(255, 255, 255, 0.7); }
  .staff:hover .text {
    width: 90%; }

.image-popup {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1; }

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8; }

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0; }

.ministry {
  margin-bottom: 30px;
  width: 100%; }
  @media (max-width: 767.98px) {
    .ministry {
      margin-bottom: 60px; } }
  .ministry .img {
    width: 100%;
    display: block;
    height: 350px; }
    @media (max-width: 767.98px) {
      .ministry .img {
        width: 100%;
        height: 300px; } }
  .ministry .text {
    width: 100%;
    background: #f7e8f0; }
    @media (max-width: 767.98px) {
      .ministry .text {
        width: 100%; } }
    .ministry .text h2 {
      font-size: 24px;
      font-weight: 600; }
      .ministry .text h2 a {
        color: #000000; }

.event-wrap {
  margin-bottom: 30px;
  width: 100%; }
  @media (max-width: 767.98px) {
    .event-wrap {
      margin-bottom: 60px; } }
  .event-wrap .img {
    width: 100%;
    display: block;
    height: 430px; }
    @media (max-width: 767.98px) {
      .event-wrap .img {
        width: 100%;
        height: 300px;
        margin-bottom: 20px; } }
  .event-wrap .text {
    width: 100%;
    background: #f7e8f0; }
    @media (max-width: 767.98px) {
      .event-wrap .text {
        width: 100%; } }
    .event-wrap .text h2 {
      font-size: 30px;
      margin-bottom: 22px;
      font-weight: 600; }
      .event-wrap .text h2 a {
        color: #000000; }
    .event-wrap .text .meta p {
      font-weight: 600;
      font-size: 17px; }
      .event-wrap .text .meta p span {
        display: block;
        margin-bottom: 10px; }

.block-20 {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 300px;
  position: relative;
  display: block;
  width: 100%; }

.blog-entry {
  display: block;
  width: 100%; }
  @media (min-width: 768px) {
    .blog-entry {
      margin-bottom: 40px; } }
  @media (max-width: 767.98px) {
    .blog-entry {
      margin-bottom: 30px; } }
  .blog-entry .text {
    position: relative;
    border-top: 0;
    border-radius: 2px;
    width: 100%;
    border: 1px solid #f7e8f0;
    z-index: 0;
    border-radius: 0 0 10px 10px;
    background: #f7e8f0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .blog-entry .text:after {
      position: absolute;
      bottom: -4px;
      left: 20px;
      right: 20px;
      content: '';
      height: 4px;
      background: #ffd700;
      border-radius: 0 0 6px 6px;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .blog-entry .text .tag {
      color: #b3b3b3; }
    .blog-entry .text .heading {
      font-size: 20px;
      margin-bottom: 16px;
      font-weight: 600; }
      .blog-entry .text .heading a {
        color: #000000; }
        .blog-entry .text .heading a:hover, .blog-entry .text .heading a:focus, .blog-entry .text .heading a:active {
          color: #ffd700; }
    .blog-entry .text .meta-chat {
      color: #ffd700; }
    .blog-entry .text .read {
      color: #000000;
      font-size: 14px; }
  .blog-entry .meta > div {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px; }
    .blog-entry .meta > div a {
      color: #ffd700;
      font-weight: 500; }
      .blog-entry .meta > div a:hover {
        color: #333333; }
  .blog-entry:hover .text:after {
    background: #ffd700;
    bottom: -5px;
    height: 5px;
    border-radius: 0 0 5px 5px; }

.block-23 ul {
  padding: 0; }
  .block-23 ul li, .block-23 ul li > a {
    display: table;
    line-height: 1.5;
    margin-bottom: 15px; }
  .block-23 ul li span {
    color: rgba(255, 255, 255, 0.7); }
  .block-23 ul li .icon, .block-23 ul li .text {
    display: table-cell;
    vertical-align: top; }
  .block-23 ul li .icon {
    width: 40px;
    font-size: 18px;
    padding-top: 2px;
    color: white; }

.block-27 ul {
  padding: 0;
  margin: 0; }
  .block-27 ul li {
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 400; }
    .block-27 ul li a, .block-27 ul li span {
      color: gray;
      text-align: center;
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 50%;
      border: 2px solid #e6e6e6; }
    .block-27 ul li.active a, .block-27 ul li.active span {
      background: #ffd700;
      color: #fff;
      border: 1px solid transparent; }

.wrapper {
  width: 100%; }

.contact-wrap {
  background: #ffd700; }
  .contact-wrap h3 {
    color: #fff; }

@media (max-width: 767.98px) {
  .info-wrap {
    height: 400px; } }

.dbox {
  width: 100%;
  margin-bottom: 25px; }
  @media (max-width: 767.98px) {
    .dbox {
      margin-bottom: 25px !important;
      padding: 0 20px; } }
  .dbox p {
    margin-bottom: 0; }
    .dbox p span {
      font-weight: 700;
      color: #000000;
      display: block;
      font-size: 16px; }
    .dbox p a {
      color: #ffd700; }
  .dbox .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffd700;
    margin: 0 auto;
    margin-bottom: 20px; }
    .dbox .icon span {
      font-size: 40px;
      color: #fff; }
  .dbox .text {
    width: 100%; }

.contactForm .label {
  color: #fff !important;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600; }

.contactForm .form-control {
  border: none;
  padding: 10px; }

.contactForm .form-control {
  height: 50px;
  background: #fff !important;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  border-radius: 4px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-bottom: none; }
  .contactForm .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.5) !important; }
  .contactForm .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.5) !important; }
  .contactForm .form-control:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.5) !important; }
  .contactForm .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.5) !important; }
  .contactForm .form-control:focus, .contactForm .form-control:active {
    border-color: #ffd700 !important; }

.contactForm textarea.form-control {
  height: inherit !important; }

#map {
  height: 500px;
  width: 100%; }
  @media (max-width: 767.98px) {
    #map {
      height: 300px; } }

.block-21 .blog-img {
  display: block;
  height: 80px;
  width: 80px; }

.block-21 .text {
  width: calc(100% - 100px); }
  .block-21 .text .heading {
    font-size: 16px;
    font-weight: 400; }
    .block-21 .text .heading a {
      color: #000000; }
      .block-21 .text .heading a:hover, .block-21 .text .heading a:active, .block-21 .text .heading a:focus {
        color: #ffd700; }
  .block-21 .text .meta > div {
    display: inline-block;
    font-size: 12px;
    margin-right: 5px; }
    .block-21 .text .meta > div a {
      color: gray; }

/* Blog*/

.tagcloud a {
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 7px;
  margin-right: 4px;
  border-radius: 4px;
  color: #000000;
  border: 1px solid #ccc;
  font-size: 11px; }
  .tagcloud a:hover {
    border: 1px solid #000; }

.comment-form-wrap {
  clear: both; }

.comment-list {
  padding: 0;
  margin: 0; }
  .comment-list .children {
    padding: 50px 0 0 40px;
    margin: 0;
    float: left;
    width: 100%; }
  .comment-list li {
    padding: 0;
    margin: 0 0 30px 0;
    float: left;
    width: 100%;
    clear: both;
    list-style: none; }
    .comment-list li .vcard {
      width: 80px;
      float: left; }
      .comment-list li .vcard img {
        width: 50px;
        border-radius: 50%; }
    .comment-list li .comment-body {
      float: right;
      width: calc(100% - 80px); }
      .comment-list li .comment-body h3 {
        font-size: 20px; }
      .comment-list li .comment-body .meta {
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: .1em;
        color: #ffd700; }
      .comment-list li .comment-body .reply {
        padding: 5px 10px;
        background: #ffd700;
        color: #fff;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: .1em;
        font-weight: 400;
        border-radius: 4px; }
        .comment-list li .comment-body .reply:hover {
          color: #fff;
          background: black; }

.search-form .form-group {
  position: relative; }
  .search-form .form-group input {
    padding-right: 50px;
    font-size: 14px; }

.search-form .fa {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.sidebar-box {
  margin-bottom: 40px;
  font-size: 15px;
  width: 100%;
  float: left;
  background: #fff; }
  .sidebar-box *:last-child {
    margin-bottom: 0; }
  .sidebar-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700; }

.categories li {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dee2e6;
  list-style: none; }
  .categories li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0; }
  .categories li a {
    display: block;
    color: #1a1a1a; }
    .categories li a span {
      position: absolute;
      right: 0;
      top: 0;
      color: #ccc; }
    .categories li a:hover, .categories li a:focus {
      outline: none;
      color: #ffd700; }
  .categories li.active a {
    color: #ffd700; }
    .categories li.active a span {
      color: #ffd700; }

#ftco-loader {
  position: fixed;
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
  -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
  transition: opacity .2s ease-out, visibility 0s linear .2s;
  z-index: 1000; }

#ftco-loader.fullscreen {
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }

#ftco-loader.show {
  -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
  -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
  transition: opacity .4s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1; }

#ftco-loader .circular {
  -webkit-animation: loader-rotate 2s linear infinite;
  animation: loader-rotate 2s linear infinite;
  position: absolute;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  display: block;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

#ftco-loader .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: loader-dash 1.5s ease-in-out infinite;
  animation: loader-dash 1.5s ease-in-out infinite;
  stroke-linecap: round; }

@keyframes loader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -136px; } }
									.animated-quote-text .word {
										opacity: 0;
										display: inline-block;
										transform: translateY(40px) scale(0.8) skewY(8deg);
										animation: wordFadeIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
									}
									.animated-quote-text .word:nth-child(1) { animation-delay: 0.1s; }
									.animated-quote-text .word:nth-child(2) { animation-delay: 0.3s; }
									.animated-quote-text .word:nth-child(3) { animation-delay: 0.5s; }
									.animated-quote-text .word:nth-child(4) { animation-delay: 0.7s; }
									.animated-quote-text .word:nth-child(5) { animation-delay: 0.9s; }
									.animated-quote-text .word:nth-child(6) { animation-delay: 1.1s; }
									.animated-quote-text .word:nth-child(7) { animation-delay: 1.3s; }
									.animated-quote-text .word:nth-child(8) { animation-delay: 1.5s; }
									.animated-quote-text .word:nth-child(9) { animation-delay: 1.7s; }
									.animated-quote-text .word:nth-child(10) { animation-delay: 1.9s; }
									.animated-quote-text .word:nth-child(11) { animation-delay: 2.1s; }
									.animated-quote-text .word:nth-child(12) { animation-delay: 2.3s; }
									.animated-quote-text .word:nth-child(13) { animation-delay: 2.5s; }
									@keyframes wordFadeIn {
										0% {
											opacity: 0;
											transform: translateY(40px) scale(0.8) skewY(8deg);
											color: #fffbe6;
											filter: blur(4px);
										}
										60% {
											opacity: 1;
											color: #ffd700;
											filter: blur(0px);
										}
										100% {
											opacity: 1;
											transform: translateY(0) scale(1) skewY(0deg);
											color: #ffd700;
											filter: blur(0px);
											text-shadow: 0 2px 16px #fffbe6, 0 0px 2px #ffd700;
										}
									}
									.animated-quote-footer {
										opacity: 0;
										animation: footerFadeIn 1s 2.7s forwards;
									}
									@keyframes footerFadeIn {
										from { opacity: 0; transform: translateY(20px); }
										to { opacity: 1; transform: translateY(0); }
									}

                  .modern-welcome {
										padding: 1.5rem 0 1rem 0;
										background: rgba(0,0,0,0.18);
										border-radius: 1.5rem;
										box-shadow: 0 4px 32px 0 rgba(255,215,0,0.08);
										display: inline-block;
										animation: fadeInUpModern 1.2s cubic-bezier(0.23, 1, 0.32, 1);
									}
									.welcome-animated .welcome-word {
										opacity: 0;
										display: inline-block;
										transform: translateY(40px) scale(0.8) skewY(8deg);
										animation: wordFadeIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
									}
									.welcome-animated .welcome-word:nth-child(1) { animation-delay: 0.1s; }
									.welcome-animated .welcome-word:nth-child(2) { animation-delay: 0.3s; }
									.welcome-animated .welcome-word:nth-child(3) { animation-delay: 0.5s; }
									.welcome-animated .welcome-word:nth-child(4) { animation-delay: 0.7s; }
									.welcome-animated .welcome-word:nth-child(5) { animation-delay: 0.9s; }
									.welcome-animated .welcome-word:nth-child(6) { animation-delay: 1.1s; }
									.welcome-animated-sub .welcome-word-sub {
										opacity: 0;
										display: inline-block;
										animation: subFadeIn 1.2s 1.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
									}
									@keyframes wordFadeIn {
										0% {
											opacity: 0;
											transform: translateY(40px) scale(0.8) skewY(8deg);
											color: #fffbe6;
											filter: blur(4px);
										}
										60% {
											opacity: 1;
											color: #ffd700;
											filter: blur(0px);
										}
										100% {
											opacity: 1;
											transform: translateY(0) scale(1) skewY(0deg);
											color: #ffd700;
											filter: blur(0px);
											text-shadow: 0 2px 16px #fffbe6, 0 0px 2px #ffd700;
										}
									}
									@keyframes subFadeIn {
										0% {
											opacity: 0;
											transform: translateY(30px);
											color: #fffbe6;
											filter: blur(4px);
										}
										60% {
											opacity: 1;
											color: #fff;
											filter: blur(0px);
										}
										100% {
											opacity: 1;
											transform: translateY(0);
											color: #fff;
											filter: blur(0px);
											text-shadow: 0 2px 16px #ffd700, 0 0px 2px #fffbe6;
										}
									}
									@keyframes fadeInUpModern {
										from { opacity: 0; transform: translateY(40px) scale(0.95); }
										to { opacity: 1; transform: translateY(0) scale(1); }
									}
								
                  .video-dark-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.45);
		z-index: 1;
		pointer-events: none;
	}
  .gold-section {
			background: #ffd700;
			color: #1a1a1a;
			padding: 4rem 0 3rem 0;
			position: relative;
		}
		.gold-section .gold-row {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: flex-start;
			gap: 2rem;
		}
		.gold-feature {
			background: #fffbe6;
			border-radius: 1.5rem;
			padding: 2.5rem 2rem 2rem 2rem;
			flex: 1 1 300px;
			max-width: 350px;
			min-width: 260px;
			text-align: center;
			margin: 1rem 0;
			box-shadow: none;
		}
		.gold-feature .gold-icon {
			display: flex;
			justify-content: center;
			align-items: center;
			margin-bottom: 1.2rem;
		}
		.gold-feature .gold-icon svg {
			width: 64px;
			height: 64px;
			stroke: #ffd700;
			fill: none;
			stroke-width: 3;
		}
		.gold-feature .gold-title {
			font-family: 'Poppins', sans-serif;
			font-size: 1.5rem;
			font-weight: 700;
			color: #1a1a1a;
			margin-bottom: 1rem;
		}
		.gold-feature .gold-desc {
			font-size: 1.08rem;
			color: #333;
			margin-bottom: 1.2rem;
		}
		.gold-feature .gold-link {
			color: #b8860b;
			font-weight: 600;
			text-decoration: underline;
			font-size: 1.08rem;
			transition: color 0.2s;
		}
		.gold-feature .gold-link:hover {
			color: #1a1a1a;
		}
		@media (max-width: 991px) {
			.gold-section .gold-row {
				flex-direction: column;
				align-items: stretch;
			}
		}
						.live-indicator {
							display: inline-flex;
							align-items: center;
							font-weight: 700;
							color: #d32f2f;
							margin-right: 0.5em;
						}
						.live-dot {
							width: 14px;
							height: 14px;
							border-radius: 50%;
							background: #d32f2f;
							margin-right: 0.3em;
							box-shadow: 0 0 0 0 #d32f2f;
							animation: live-pulse 1.2s infinite cubic-bezier(0.66,0,0,1);
						}
						@keyframes live-pulse {
							0% { box-shadow: 0 0 0 0 #d32f2f; }
							70% { box-shadow: 0 0 0 10px rgba(211,47,47,0); }
							100% { box-shadow: 0 0 0 0 rgba(211,47,47,0); }
						}
						.live-text {
							font-size: 0.95em;
							letter-spacing: 1px;
							color: #d32f2f;
						}
						
            .about-tabs-nav {
  background: #fff;
  border-bottom: 2px solid #ffd700;
  position: sticky;
  top: 0;
  z-index: 10;
}
.about-tabs-nav .about-tab {
  display: inline-block;
  padding: 1.1em 2.2em;
  font-weight: 700;
  color: #b8860b;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 4px solid transparent;
  background: transparent;
  transition: background 0.2s, border-bottom 0.2s, color 0.2s;
  margin: 0 0.2em;
  border-radius: 0.7em 0.7em 0 0;
}
.about-tabs-nav .about-tab.active,
.about-tabs-nav .about-tab:focus,
.about-tabs-nav .about-tab:hover {
  background: #fffbe6;
  border-bottom: 4px solid #ffd700;
  color: #ff6a00;
}
.about-section {
  padding: 4rem 0 3rem 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}
@media (max-width: 991px) {
  .about-tabs-nav .about-tab {
    padding: 0.8em 0.8em;
    font-size: 1rem;
    margin: 0 0.1em;
  }
}
@media (max-width: 767px) {
  .about-tabs-nav .d-flex {
    flex-direction: column;
    align-items: stretch;
  }
  .about-tabs-nav .about-tab {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-bottom: 2px solid #ffd700;
  }
  .about-section {
    padding: 2.2rem 0 1.5rem 0;
  }
}
  body { background: #f7f8fa; font-family: 'Poppins', Arial, sans-serif; }
        .shop-hero {
            background: url('images/bg_1.jpg') center/cover no-repeat;
            min-height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .shop-hero .overlay {
            background: rgba(24,24,24,0.7);
            position: absolute;
            width:100%; height:100%; top:0; left:0;
        }
        .shop-hero .content {
            position: relative;
            z-index:2;
            color:#fff;
            text-align:center;
        }
        .shop-section { padding: 2em 0; }
        .shop-categories {
            text-align:center;
            margin-bottom:2em;
        }
        .shop-categories .btn-cat {
            background: #fff;
            color: #181818;
            border: 2px solid #b8860b;
            border-radius: 2em;
            font-weight: 700;
            font-size: 1em;
            padding: 0.5em 1.5em;
            margin: 0 0.3em;
            cursor: pointer;
            transition: background 0.2s, color 0.2s, border 0.2s;
        }
        .shop-categories .btn-cat.active,
        .shop-categories .btn-cat:hover {
            background: #ffd700;
            color: #181818;
            border-color: #ffd700;
        }
        .shop-search {
            text-align:center;
            margin-bottom:1em;
        }
        .shop-search input {
            padding:0.7em 1.2em;
            border-radius:2em;
            border:1px solid #ccc;
            width:60%;
            max-width:320px;
            font-size:1em;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap:2em;
            justify-content:center;
            margin-bottom:2em;
        }
        .product-card {
            background: #fff;
            border-radius: 1.5em;
            box-shadow: 0 4px 24px rgba(24,24,24,0.10);
            padding: 1.5em 1em 1em 1em;
            text-align: left;
            position: relative;
            transition: box-shadow 0.2s, transform 0.2s;
            display: flex;
            flex-direction: column;
            min-height: 410px;
        }
        .product-card:hover {
            box-shadow: 0 8px 32px rgba(255,215,0,0.18);
            transform: translateY(-4px) scale(1.02);
        }
        .product-card img {
            width:100%;
            height:260px; /* Increased height for better visibility */
            object-fit:cover;
            border-radius:1em;
            margin-bottom:1em;
            box-shadow: 0 2px 12px #ffd70022;
        }
        .product-title {
            font-weight:700;
            font-size:1.18em;
            margin-bottom:0.3em;
            color:#181818;
        }
        .product-price {
            color:#ffd700;
            font-size:1.15em;
            font-weight:700;
            margin-bottom:0.7em;
        }
        .product-desc {
            display: none; /* Hide details in card, show only in modal */
        }
        .product-actions {
            display: flex;
            gap: 0.7em;
            align-items: center;
            justify-content: flex-end;
        }
        .btn-buy, .btn-details {
            border: none;
            border-radius: 2em;
            font-weight: 700;
            font-size: 1em;
            padding: 0.6em 1.7em;
            cursor: pointer;
            transition: background 0.2s, color 0.2s, box-shadow 0.2s;
            box-shadow: 0 2px 8px #ffd70022;
        }
        .btn-buy {
            background: linear-gradient(90deg,#ffd700 60%,#b8860b 100%);
            color: #181818;
        }
        .btn-buy:hover {
            background: linear-gradient(90deg,#b8860b 60%,#ffd700 100%);
            color: #fff;
        }
        .btn-details {
            background: #fffbe6;
            color: #b8860b;
            border: 2px solid #ffd700;
        }
        .btn-details:hover {
            background: #ffd700;
            color: #181818;
        }
        /* Cart icon styling */
        .cart-float {
            position: fixed;
            top: 32px;
            right: 0;
            transform: translateX(-32px); /* Move to edge but keep visible */
            background: #fff;
            color: #ffd700;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            box-shadow: 0 4px 24px rgba(24,24,24,0.18);
            z-index: 999;
            transition: background 0.2s, color 0.2s, transform 0.2s;
            text-decoration: none;
        }
        .cart-float:hover {
            background: #ffd700;
            color: #181818;
            transform: scale(1.08);
        }
        @media (max-width:600px) {
            .product-grid { grid-template-columns: 1fr; gap:1em; }
            .cart-float {
                top: 12px;
                right: 0;
                transform: translateX(-12px);
                width: 44px;
                height: 44px;
                font-size: 1.2em;
            }
        }
        /* Modal styling */
        #productModal {
            display:none;
            position:fixed;
            top:0; left:0; width:100vw; height:100vh;
            background:rgba(24,24,24,0.7);
            z-index:9999;
            align-items:center;
            justify-content:center;
        }
        #productModal .modal-content {
            background:#fff;
            border-radius:1.5em;
            max-width:380px;
            width:90%;
            padding:2em 1.2em;
            position:relative;
            box-shadow:0 8px 32px rgba(24,24,24,0.18);
            text-align:center;
        }
        #modalClose {
            position:absolute;
            top:12px;
            right:18px;
            font-size:1.5em;
            color:#b8860b;
            cursor:pointer;
        }
        #modalImg {
            width:100%;
            height:320px; /* Larger modal image for full view */
            object-fit:cover;
            border-radius:1em;
            margin-bottom:1em;
            box-shadow: 0 2px 12px #ffd70022;
        }
        #modalTitle {
            font-weight:700;
            font-size:1.18em;
            margin-bottom:0.3em;
            color:#181818;
        }
        #modalPrice {
            color:#ffd700;
            font-size:1.15em;
            font-weight:700;
            margin-bottom:0.7em;
        }
        #modalDesc {
            font-size:1em;
            color:#444;
            margin-bottom:1em;
        }
        #modalBuy {
            background: linear-gradient(90deg,#ffd700 60%,#b8860b 100%);
            color: #181818;
            border: none;
            border-radius: 2em;
            font-weight: 700;
            font-size: 1em;
            padding: 0.6em 1.7em;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
            box-shadow: 0 2px 8px #ffd70022;
        }
        #modalBuy:hover {
            background: linear-gradient(90deg,#b8860b 60%,#ffd700 100%);
            color: #fff;
        }
         .hero-give {
            background-image: url('images/bg_2.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-give .overlay {
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: rgba(24,24,24,0.85);
            z-index:1;
        }
        .hero-give .content {
            position: relative;
            z-index:2;
            text-align: center;
            color: #ffd700;
        }
        .section-title {
            font-family: 'Poppins', serif;
            font-size: 2.5em;
            font-weight: 900;
            color: #181818;
            margin-bottom: 0.5em;
        }
        .container {
            max-width: 1200px;
            margin: auto;
            padding-left: 1em;
            padding-right: 1em;
        }
        .give-section {
            padding: 3em 0;
        }
        .give-card {
            background: #fff;
            border-radius: 1.2em;
            box-shadow: 0 4px 24px rgba(24,24,24,0.08);
            padding: 2em;
            margin-bottom: 2em;
            text-align: center;
            transition: box-shadow 0.2s;
        }
        .give-card:hover {
            box-shadow: 0 8px 32px rgba(255,215,0,0.18);
        }
        .give-card h4 {
            color: #ffd700;
            font-family: 'Poppins', serif;
            font-weight: 700;
            margin-bottom: 0.5em;
        }
        .give-card p {
            color: #181818;
        }
        .impact-quote {
            background: #fffbe6;
            border-left: 4px solid #ffd700;
            padding: 1em;
            border-radius: 1em;
            margin-bottom: 1em;
        }
        .btn-black-custom {
            background: #181818;
            color: #ffd700;
            border: none;
            border-radius: 1.2em;
            font-weight: 700;
            font-size: 1.15em;
            padding: 0.7em 2em;
            box-shadow: 0 4px 16px rgba(24,24,24,0.18);
            transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-black-custom:hover, .btn-black-custom:focus {
            background: #ffd700;
            color: #181818;
            box-shadow: 0 8px 32px rgba(255,215,0,0.18);
            transform: scale(1.05);
            outline: none;
        }
        /* Typewriter caret animation */
        #give-typewriter, #scripture-typewriter {
            font-family: 'Courier New', Courier, monospace;
            border-right: 2px solid #ffd700;
            white-space: nowrap;
            overflow: hidden;
            animation: blink-caret 0.8s step-end infinite;
        }
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #ffd700; }
        }
        .scripture-encouragement {
            animation: fadeInUp 1.2s;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px);}
            to { opacity: 1; transform: translateY(0);}
        }
        .floating-home-btn {
            position: fixed;
            bottom: 32px;
            right: 32px;
            background: #181818;
            color: #ffd700;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            box-shadow: 0 4px 24px rgba(24,24,24,0.18);
            z-index: 999;
            transition: background 0.2s, color 0.2s, transform 0.2s;
            text-decoration: none;
        }
        .floating-home-btn:hover, .floating-home-btn:focus {
            background: #ffd700;
            color: #181818;
            transform: scale(1.08);
            outline: none;
        }
        /* Responsive grid for give cards */
        .give-row {
            display: flex;
            flex-wrap: wrap;
            gap: 2em;
            justify-content: center;
        }
        .give-col {
            flex: 1 1 320px;
            max-width: 420px;
            min-width: 260px;
            box-sizing: border-box;
        }
        @media (max-width: 900px) {
            .give-row {
                gap: 1em;
            }
            .give-col {
                max-width: 100%;
            }
        }
        @media (max-width: 600px) {
            .give-section {
                padding: 1.5em 0;
            }
            .give-card {
                padding: 1em;
                margin-bottom: 1em;
            }
            .give-row {
                flex-direction: column;
                gap: 1em;
            }
        }
        /* Responsive for images/icons */
        .give-card img,
        .give-card .fa {
            max-width: 80px;
            width: 100%;
            height: auto;
        }
        @media (max-width: 600px) {
            .give-card img,
            .give-card .fa {
                max-width: 56px;
            }
            .section-title {
                font-size: 1.5em;
            }
        }
        /* Floating home button responsive */
        .floating-home-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #181818;
            color: #ffd700;
            border-radius: 50%;
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7em;
            box-shadow: 0 4px 24px rgba(24,24,24,0.18);
            z-index: 999;
            transition: background 0.2s, color 0.2s, transform 0.2s;
            text-decoration: none;
        }
        @media (max-width: 600px) {
            .floating-home-btn {
                width: 44px;
                height: 44px;
                font-size: 1.2em;
                bottom: 12px;
                right: 12px;
            }
        }/ *   P a g e   L o a d e r   C S S   * / 
 # s i t e - p a g e - l o a d e r   { 
     p o s i t i o n :   f i x e d ; 
     t o p :   0 ; 
     l e f t :   0 ; 
     w i d t h :   1 0 0 v w ; 
     h e i g h t :   1 0 0 v h ; 
     b a c k g r o u n d :   # 1 8 1 8 1 8 ; 
     z - i n d e x :   9 9 9 9 9 9 ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     t r a n s i t i o n :   o p a c i t y   0 . 6 s   e a s e - o u t ,   v i s i b i l i t y   0 . 6 s   e a s e - o u t ; 
 } 
 # s i t e - p a g e - l o a d e r . f a d e - o u t   { 
     o p a c i t y :   0 ; 
     v i s i b i l i t y :   h i d d e n ; 
 } 
 . l o a d e r - s p i n n e r   { 
     w i d t h :   6 0 p x ; 
     h e i g h t :   6 0 p x ; 
     b o r d e r :   5 p x   s o l i d   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 2 ) ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     b o r d e r - t o p - c o l o r :   # f f d 7 0 0 ; 
     a n i m a t i o n :   s p i n   1 s   l i n e a r   i n f i n i t e ; 
 } 
 @ k e y f r a m e s   s p i n   { 
     0 %   {   t r a n s f o r m :   r o t a t e ( 0 d e g ) ;   } 
     1 0 0 %   {   t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ;   } 
 }  
 /* --- Premium Shop UI Upgrade --- */
.product-card {
    background: #fff;
    border-radius: 1.5em;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(184,134,11,0.15);
    border-color: rgba(255,215,0,0.3);
}
.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover img {
    transform: scale(1.05);
}
.product-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #181818;
    margin: 1em 1em 0.2em;
}
.product-price {
    font-size: 1.4em;
    font-weight: 800;
    color: #b8860b;
    margin: 0 1em;
}
.product-desc {
    color: #666;
    margin: 0.8em 1.2em;
    font-size: 0.95em;
    line-height: 1.5;
    flex-grow: 1;
}
.product-actions {
    display: flex;
    gap: 0.5em;
    padding: 1.2em;
    background: #fcfcfc;
    border-top: 1px solid #f0f0f0;
}
.btn-buy {
    flex: 2;
    background: linear-gradient(135deg, #181818 0%, #333 100%);
    color: #ffd700;
    border: none;
    border-radius: 0.8em;
    padding: 0.8em;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}
.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-details {
    flex: 1;
    background: #fff;
    color: #181818;
    border: 2px solid #ddd;
    border-radius: 0.8em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-details:hover {
    border-color: #b8860b;
    color: #b8860b;
    background: #fffbe6;
}

/* Modal Upgrade */
#productModal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(24,24,24,0.8);
    backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: #fff;
    border-radius: 1.5em;
    max-width: 500px;
    width: 90%;
    padding: 2.5em;
    position: relative;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    border-top: 5px solid #ffd700;
}
#modalClose {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2em;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
#modalClose:hover {
    color: #e60000;
}
#modalImg {
    width: 100%;
    border-radius: 1em;
    margin-bottom: 1.5em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
#modalTitle {
    font-size: 1.8em;
    font-weight: 700;
    color: #181818;
    margin-bottom: 0.2em;
}
#modalPrice {
    font-size: 1.6em;
    font-weight: 800;
    color: #b8860b;
    margin-bottom: 1em;
}
#modalDesc {
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1.5em;
}
#modalBuy {
    width: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    color: #181818;
    border: none;
    border-radius: 1em;
    padding: 1em;
    font-size: 1.2em;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}
#modalBuy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,134,11,0.3);
}

.shop-categories { /* Center categories */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
    margin-bottom: 2em;
}
.btn-cat {
    background: #fff;
    border: 2px solid #ddd;
    padding: 0.6em 1.5em;
    border-radius: 2em;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.2s;
}
.btn-cat:hover, .btn-cat.active {
    background: #181818;
    color: #ffd700;
    border-color: #181818;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5em;
}
.shop-search {
    text-align: center;
    margin-bottom: 3em;
}
#shopSearch {
    width: 100%;
    max-width: 500px;
    padding: 1em 1.5em;
    border-radius: 2em;
    border: 2px solid #ddd;
    outline: none;
    font-size: 1.1em;
    transition: border-color 0.2s, box-shadow 0.2s;
}
#shopSearch:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 4px rgba(255,215,0,0.15);
}
