/**
* Template Name: LIVING FAITH CHURCH
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Inclusive Sans", sans-serif;
  --nav-font: "Inclusive Sans", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #FDFDFD;
  --default-color: #555555;
  --heading-color: #0d3035;
  --accent-color: #DA0000;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #FDFDFD;
  --nav-hover-color: #ff2c2c;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #555555;
  --nav-dropdown-hover-color: #DA0000;
}

.light-background {
  --background-color: #f8f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: rgb(6, 6, 6, 0.1);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
  /* opacity: 0.8; */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.text-red {
  color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: rgba(24, 0, 0, 0.8);
  padding: 18px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
  font-family: 'Inter', sans-serif;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.2);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: #000;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    /* About Us */
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    font-weight: 700;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  background: #000000 url('../img/bg-footer.png');
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 20px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  border-bottom: 1px solid #DA0000;
  width: fit-content;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  color: #FFFFFF;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 96px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Global Pagination
--------------------------------------------------------------*/

.pagination .page-link {
  border-radius: 6px;
  margin: 0 8px;
}

.pagination .page-link {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.05em;
  color: #000000;
  border: 1px solid #D9D9D9;
  padding: 9.5px 14px;
  min-width: 40px;
  box-shadow: none;
}

.pagination .active>.page-link {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}

.pagination .page-item:last-child .page-link {
  background-color: #DA0000;
  border: 1px solid #DA0000;
  color: #fff;
  padding: 9.5px 24px;
}

.pagination .page-item:not(:first-child) .page-link {
  margin-left: 8px;
}

@media (max-width: 768px) {
  .pagination .page-link {
    margin: 0 4px;
  }

  .pagination .page-item:not(:first-child) .page-link {
    margin-left: 4px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  padding-top: 60px;
  background-color: #000000;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  animation: fadeInDown 1s both;
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero .carousel-container {
    inset: 40px 34px 64px 34px;
  }

  .hero h2 {
    font-size: 30px;
    line-height: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #FFFFFF;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-our-services,
.upcoming .btn-register-now {
  color: var(--contrast-color);
  background: transparent;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 41px;
  border: 1px solid #fff;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-our-services:hover,
.upcoming .btn-register-now:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border: 1px solid var(--accent-color);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
  margin-bottom: 90px;
}

.hero .carousel-indicators li {
  cursor: pointer;
  width: 15px;
  height: 4px;
  background: #fff;
  border-radius: 12px;
  opacity: 1;
  border: 0;
}

.hero .carousel-indicators li.active {
  background-color: var(--accent-color);
}

.hero .icon-boxes {
  background: #fff;
  padding-bottom: 60px;
  z-index: 4;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: var(--default-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.hero .icon-box {
  padding: 36px 25px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  width: 100%;
  text-align: center;
  margin-top: -60px;
  background: #FFFFFF;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
}

.hero .icon-box.first {
  border-radius: 8px 0px 0px 8px;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
}

.hero .icon-box.last {
  border-radius: 0px 8px 8px 0px;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
}

.hero .icon-box.red {
  background: var(--accent-color);
}

.hero .icon-box .title {
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  margin-bottom: 12px;
}

.hero .icon-box p {
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: justify;
  letter-spacing: -0.05em;
  color: #1E1E1E;
  max-width: 100%;
}

@media (max-width: 1199px) {
  .hero .icon-box {
    margin-top: 0px;
  }

  .hero .icon-box.first {
    margin-top: 60px;
    border-radius: 8px 8px 0px 0px;
  }

  .hero .icon-box.last {
    border-radius: 0px 0px 8px 8px;
  }
}

@media (max-width: 576px) {}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-image: url('../img/DSC_8913.jpg');
  background-size: cover;
  background-position: center;
  /* min-height: 665px; */
  padding-top: 100px;
}

.about h2 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: #FFFFFF;
  max-width: 460px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 20px 30px;
}

.about .about-content {
  background: rgba(255, 25, 25, 0.15);
  backdrop-filter: blur(26px);
  border-radius: 16px;
  color: #fff;
  margin-bottom: 88px;
  padding: 70px 40px;
  width: 530px;
}

.about .about-content h3 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  color: #FFFFFF;
}

.about .about-content ul p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  color: #FFFFFF;
}

@media (max-width: 991px) {
  .about h2 {
    font-weight: 500;
    font-size: 38px;
    line-height: 48px;
    color: #FFFFFF;
    max-width: 100%;
    text-align: center;
  }

  .about .about-content {
    margin-bottom: 48px;
    padding: 70px 40px;
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Quick Links Section
--------------------------------------------------------------*/
.quick-links {
  background-image: url('../img/bg-quick-links.png');
  background-size: cover;
  background-position: center;
}

.quick-links h2 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  text-align: justify;
  color: #000000;
  margin-bottom: 36px;
}

.quick-links .quick-link {
  overflow: hidden;
  border-radius: 16px;
  height: 430px;
  position: relative;
}

.quick-links .quick-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-links .card-title {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 25px;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
}

/*--------------------------------------------------------------
# Upcoming Events Section
--------------------------------------------------------------*/
.upcoming {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bg-upcoming-events.png');
  background-size: cover;
  background-position: center;
}

.upcoming .nav-link {
  background: transparent;
  border: none;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  margin: 3px 0;
}

.upcoming .nav-link:hover,
.upcoming .nav-link.active {
  background: rgba(255, 0, 0, 0.15);
  backdrop-filter: blur(2px);
}

.upcoming .nav-link span:last-child {
  display: none;
}

.upcoming .nav-link:hover span:last-child,
.upcoming .nav-link.active span:last-child {
  display: block;
}

.upcoming h3 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 26px;
  text-align: justify;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.upcoming p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
  color: #FFFFFF;
}

/*--------------------------------------------------------------
# About Winners Section
--------------------------------------------------------------*/
.about-winners {
  background-image: url('../img/bg-about-us.png');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 96px;
}

.about-winners h1 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #000000;
}

.about-winners h2 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #000000;
}

.about-winners h3 {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}

.about-winners p {
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.05em;
  color: #1E1E1E;
  margin-top: 56px;
}

.about-winners h2+p,
.about-winners h2+p+p,
.about-winners h3+p {
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: justify;
  letter-spacing: -0.05em;
  color: #1E1E1E;
  margin-top: 30px;
  margin-bottom: 0;
}

.about-winners img {
  border-radius: 16px;
}

.about-winners .mandate {
  margin-top: 78px;
}

.about-winners .set-man {
  margin-top: 150px;
}

.about-winners .pillars {
  margin-top: 100px;
}

.about-winners .pillars .item {
  background: #F4F4F4;
  border-radius: 4px;
  margin-right: 12px;
  margin-bottom: 25px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: justify;
  color: #000000;
  padding: 4px 12px 4px 40px;
}

@media (max-width: 991px) {
  .about-winners h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    text-align: center;
  }

  .about-winners .set-man {
    margin-top: 90px;
  }

  .about-winners .pillars {
    margin-top: 90px;
  }
}

/*--------------------------------------------------------------
# Testimonies Section
--------------------------------------------------------------*/
.testimonies {
  background-image: url('../img/bg-about-us.png');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 96px;
}

.testimonies h1 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #000000;
}

.about-winners p {
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.05em;
  color: #1E1E1E;
  margin-top: 56px;
}

.testimonies .btn-share-testimony,
.testimonies .btn-share-testimony:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 15.5px 32px;
  border: 1px solid var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.testimonies .btn-share-testimony:hover,
.testimonies .btn-share-testimony:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.testimonies .testimony-card {
  border-radius: 0px;
  padding: 36px 24px 28px;
  background: #FFFFFF;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
}

.testimonies .testimony-card h3 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: justify;
  color: #000000;
  display: flex;
  align-items: center;
}

.testimonies .testimony-card p {
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: justify;
  letter-spacing: -0.05em;
  color: #1E1E1E;
}

.testimonies .testimony-card .link-learn-more {
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  letter-spacing: -0.05em;
  color: #DA0000;
}

.testimonies .testimony-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.testimonies .testimony-card-footer .profile-icon {
  background-color: black;
  color: white;
  border-radius: 20%;
  padding: 10px 15px;
  font-weight: bold;
}

.testimonies .testimony-card-footer h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  text-align: justify;
  letter-spacing: -0.05em;
  color: #000000;
  margin-bottom: 0;
}

.testimonies .testimony-card-footer h4+small {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: justify;
  color: #000000;
}

.testimonies .testimony-card-footer div+small {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #332F2F;
}

/* Modals */

.testimony form h2 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 19px;
  color: #000000;
}

.testimony form .form-label {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #332F2F;
}

.testimony form .form-control,
.testimony form .form-select {
  border: 1px solid #D9D9D9;
  border-radius: 8px;
}

.testimony form .btn-primary {
  min-height: 48px;
  border-radius: 40px;
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  --bs-btn-color: #fff;
  --bs-btn-bg: #DA0000;
  --bs-btn-border-color: #DA0000;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #404145;
  --bs-btn-hover-border-color: #404145;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #404145;
  --bs-btn-active-border-color: #404145;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #62646a;
  --bs-btn-disabled-border-color: #62646a;
}

.testimony form .text-muted {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.05em;
  color: #8D8D8D;
}

.testimony form ::placeholder {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #CACACA;
}

.testimony-detail .testimony-card h3 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 19px;
  color: #000000;
  display: flex;
  align-items: center;
}

.testimony-detail .testimony-card p {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  text-align: justify;
  color: #332F2F;
}

.testimony-detail .testimony-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.testimony-detail .testimony-card-footer .profile-icon {
  background-color: black;
  color: white;
  border-radius: 20%;
  padding: 10px 15px;
  font-weight: bold;
}

.testimony-detail .testimony-card-footer h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  text-align: justify;
  letter-spacing: -0.05em;
  color: #000000;
  margin-bottom: 0;
}

.testimony-detail .testimony-card-footer h4+small {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: justify;
  color: #000000;
}

.testimony-detail .testimony-card-footer div+small {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #332F2F;
}


/*--------------------------------------------------------------
# Ministries Section
--------------------------------------------------------------*/
.ministries {
  margin-top: 96px;
}

.ministries .sending {
  background-image: url('../img/bg-about-us.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.ministries h1 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #000000;
}

.ministries h2 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #000000;
}

.ministries p {
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.05em;
  color: #1E1E1E;
}

.ministries .sending {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  /* or 136% */
  text-align: justify;
  color: #1E1E1E;
}

.ministries .ministry-link {
  overflow: hidden;
  border-radius: 16px;
  /* width: 403px; */
  height: 457px;
  position: relative;
}

.ministries .ministry-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ministries .ministry-link h5 {
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.ministries .carousel {
  width: 100%;
  min-height: 1100px;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

@media (max-width: 991px) {
  .ministries h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 48px;
  }

  .ministries .carousel {
    min-height: 3000px;
  }
}

.ministries .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.ministries .carousel-container {
  position: absolute;
  inset: 0 0 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.ministries .carousel-indicators {
  list-style: none;
  margin-bottom: 10px;
}

.ministries .carousel-indicators li {
  cursor: pointer;
  width: 40px;
  height: 10px;
  background: #000;
  border-radius: 12px;
  opacity: 1;
  border: 0;
}

.ministries .carousel-indicators li.active {
  background-color: var(--accent-color);
}

.ministries .btn-join-us,
.ministries .btn-join-us:focus {
  color: var(--contrast-color);
  background: #000;
  padding: 15px 58px;
  border: 1px solid #000;
  border-radius: 50px;
  transition: 0.3s;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}

.ministries .btn-join-us:hover,
.ministries .btn-join-us:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  border: 1px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Resources Section
--------------------------------------------------------------*/

.giving .nav-link,
.resources .nav-link,
.registrations .nav-link {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 19px;
  /* identical to box height, or 79% */
  text-align: center;
  letter-spacing: -0.05em;
  color: #000000;
  padding: 14px 20px;
  border: none;
}

.giving .nav-link.active,
.resources .nav-link.active,
.registrations .nav-link.active {
  background: #F8F8F8;
  border-radius: 4px;
  color: #DA0000;
}

.search-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  display: flex;
  transition: 0.3s;
  background: #F3F3F3;
}

.search-form input[type=text] {
  border: 0;
  padding: 4px;
  width: 100%;
  height: 48px;
  background: #F3F3F3;
  color: var(--default-color);
}

.search-form input[type=text]:focus-visible {
  outline: none;
}

.search-form button[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  transition: 0.3s;
  border-radius: 50px;
}

.search-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.resources .quick-link {
  overflow: hidden;
  border-radius: 16px;
  height: 197px;
  position: relative;
}

.resources .quick-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resources .quick-link span {
  padding: 20px 25px;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: right;
  color: #FFFFFF;
}

.resources .table .result {
  background: #FFFFFF;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  /* backdrop-filter: blur(2px); */
  border-radius: 8px;
  padding: 10px 25px;
  vertical-align: middle;
  min-width: 1100px;
  min-height: 53px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.resources .table .result div:nth-child(1) {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 19px;
  /* text-align: center; */
  color: #000000;
}

@media (max-width: 991px) {
  .resources .table .result div:nth-child(1) {
    font-weight: 500;
    font-size: 18px;
  }
}

.btn-play {
  --bs-btn-color: #fff;
  --bs-btn-bg: #DA0000;
  --bs-btn-border-color: #DA0000;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #404145;
  --bs-btn-hover-border-color: #404145;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #404145;
  --bs-btn-active-border-color: #404145;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #62646a;
  --bs-btn-disabled-border-color: #62646a;
  border-radius: 6px;
  padding-top: 6px;
  padding-bottom: 10px;
}

.btn-download {
  --bs-btn-color: #DA0000;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #DA0000;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #DA0000;
  --bs-btn-hover-border-color: #DA0000;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #DA0000;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #DA0000;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
  border-radius: 6px;
  padding-top: 6px;
  padding-bottom: 10px;
  border: 1.5px solid #DA0000;
}

/*--------------------------------------------------------------
# Players
--------------------------------------------------------------*/
.player {
  font-family: 'Instrument Sans';
  font-style: normal;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}

.player h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 19px;
}

.player h2+div {
  color: #8D8D8D;
}

.player span {
  line-height: 19px;
}

.player .progress {
  height: 6px;
  background-color: #D9D9D9;
}

.player .progress .progress-bar {
  background-color: #DA0000;
}

.player .player-controls {
  max-width: 432px;
}

.player .player-controls .btn {
  background-color: #F8F8F8;
}

.player .video {
  /* background: url(../img/player/player-bg.png); */
  /* background-size: cover;
  background-repeat: no-repeat; */
  /* min-height: 667px; */
  width: 100%;
}

.player .modal-lg,
.modal-xl {
  --bs-modal-width: 992px;
}

.player .btn-play-large {
  background: rgba(218, 0, 0, 0.44);
  border-radius: 50%;
  padding: 0px;
  border: 0;
  width: 112px;
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.player .btn-play-large img {
  width: 56px;
  height: 56px;
  margin-left: 10px;
}

.player .close-btn {
  color: #F24822;
  padding: 0;
}

.player .custom-play-pause-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.player .custom-play-pause-btn .btn-img-container {
  background: rgba(218, 0, 0, 0.44);
  border-radius: 50%;
  min-width: 112px;
  min-height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.player .custom-play-btn img {
  width: 60px;
}

@media (max-width: 991px) {
  .player .video {
    min-height: 420px;
  }

  .player .btn-play-large {
    width: 82px;
    height: 82px;
  }

  .player .btn-play-large img {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 768px) {
  .player .video {
    min-height: 220px;
  }

  .player .btn-play-large {
    width: 82px;
    height: 82px;
  }

  .player .btn-play-large img {
    width: 46px;
    height: 46px;
  }
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/

.swiper {
  padding-right: 50px;
}

.swiper-button-prev {
  color: #DA0000;
}

.swiper-button-next {
  color: #DA0000;
  font-size: 18px;
  margin-top: -50px;
  margin-right: -10px;
  z-index: 9999;
}

.swiper-button-next::after {
  font-size: 24px;
  font-weight: bold;
}

.swiper-wrapper {
  height: auto;
}

.swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 1199px) {
  .swiper {
    padding-right: 0px;
  }

  .swiper-button-next {
    display: none;
  }
}

@media (min-width: 992px) {
  .swiper-slide-active {
    border: 5px solid #DA0000;
    background: #fff;
    z-index: 1;
    transform: scale(1.25);
    border-radius: 20px;
  }
}

.products-list .product-item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background: #F8F8F8;
  border-radius: 16px;
  padding: 14px;
}

.products-list .product-item h4 {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #000000;
  margin-top: 16px;
}

.main-img {
  background: #fff;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
  border-radius: 15px;
  padding: 27px 47px;
}

.main-img img {
  width: 100%;
}

.previews .preview-card {
  background: #fff;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
  border-radius: 8px;
  width: 70px;
  height: 80px;
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-description .product-title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 19px;
  letter-spacing: -0.05em;
  color: #000000;
}

.product-mata-data .card {
  background: #FAFAFA;
  border: none;
  border-radius: 4px;
  padding: 7px 26px;
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.05em;
  color: #000000;
}

.product-mata-data div.card+div {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.product-mata-data .isbn-text {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2em;
  color: #000000;
}

.details-title {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.05em;
  color: #000000;
}

.description {
  background: #FAFAFA;
  padding: 20px 24px;
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: justify;
  color: #1E1E1E;
}

.similar-products .display-5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.05em;
  color: #000000;
}

.similar-product {
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Giving Section
--------------------------------------------------------------*/

.giving .account-card {
  background: #FFFFFF;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
  padding: 10px;
}

.giving h1 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #000000;
}

.giving .account-card h4 {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}

.giving .account-card .img-container {
  min-height: 163px;
  max-height: 163px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.giving .account-card .img-container img {
  /* height: 100%; */

}

.giving .bg-gray {
  background: #FAFAFA;
  border-radius: 8px;
  padding: 14px 20px;
  margin-top: 8px;
}

.giving .account-name {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.giving .account-number {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.2em;
  color: #DA0000;
}

@media (max-width: 991px) {
  .giving .account-name {
    font-weight: 400;
    font-size: 16px;
  }

  .giving .account-number {
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0.2em;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
  margin-top: 96px;
}

.contact .contact-us h1 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #000000;
}

.contact .contact-us p {
  font-family: 'Inclusive Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.05em;
  color: #1E1E1E;
  margin-top: 44px;
}

.contact .contact-row {
  background: #FFFFFF;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
  border-radius: 12px;
  margin-top: 85px;
  padding: 24px 12px;
}

@media (max-width: 991px) {
  .contact .contact-row {
    margin-top: 45px;
  }
}

.contact .contact-row h2 {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.contact .contact-form {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
  border-radius: 6px;
}

.contact .address-detail {
  border-bottom: 1px solid #D9D9D9;
}

.contact .address-detail p {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
  margin-bottom: 57px;
}

.contact .address-detail svg {
  color: #DA0000;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.contact .svg+span,
.contact .img+span {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
}

.contact .contact-form p {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
}

.contact .contact-form .form-label {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #332F2F;
}

.contact .contact-form .btn-primary {
  border: 1px solid #D9D9D9;
  border-radius: 6px;
}

.contact .contact-form .btn-primary {
  background-color: #000;
  border-color: #000;
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  border-radius: 6px;
  height: 42px;
}


/*--------------------------------------------------------------
# Registrations And Forms
--------------------------------------------------------------*/

.registrations .left-col {
  background: #FFFFFF;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
  border-radius: 8px;
  padding: 20px;
}

.registrations .left-col ul {
  list-style: none;
  padding: 0;
}

.registrations .left-col li {
  height: 48px;
}

.registrations .left-col ul li a {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000000;
  margin: 5px auto;
  padding: 11px 22px;
  transition: 0.3s;
}

.registrations .left-col ul li.active a,
.registrations .left-col ul li a:hover {
  background: #000000;
  color: #fff;
  border-radius: 8px;
}

.registrations .left-col ul li.active a img,
.registrations .left-col ul li a:hover img {
  content: url('../img/logo-white-small.svg');
}

.registrations .right-col {
  background: url('../img/logo-gray-large.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 55% 55%;
  border: 1px solid #DCDCDC;
  box-shadow: 0px 4px 25px -6px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
  border-radius: 12px;
}

.registrations .right-col h2 {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 34px;
}

.registrations .right-col .badge {
  padding: 8px 26px;
  background: #DA0000;
  border-radius: 4px;
  margin-right: 10px;
}

.registrations .right-col span.badge+span {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #332F2F;
}

.registrations form {
  background-color: rgba(255, 255, 255, 0.7);
}

.registrations form .form-label {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #332F2F;
}

.registrations form .form-control,
.registrations form .form-select {
  border: 1px solid #D9D9D9;
  border-radius: 8px;
}

.registrations form .btn-primary {
  min-height: 48px;
  border-radius: 8px;
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  --bs-btn-color: #fff;
  --bs-btn-bg: #000;
  --bs-btn-border-color: #000;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #404145;
  --bs-btn-hover-border-color: #404145;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #404145;
  --bs-btn-active-border-color: #404145;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #62646a;
  --bs-btn-disabled-border-color: #62646a;
}

.registrations form .text-muted {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.05em;
  color: #8D8D8D;
}
