@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,600,600i,700,700i,900');

/*-------------------------------------------------------------
|| RESET
--------------------------------------------------------------*/
html {
  font-size: 100%;
}

*, 
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input, 
button, 
textarea {
  font: inherit;
}

/*-------------------------------------------------------------
|| VARIABLES
--------------------------------------------------------------*/

:root {
  /* FONTS */
  --FF: "Open Sans", "Cascadia Code Main", sans-serif;
  --HEADINGS-FF: "Raleway", sans-serif; /* font-family for h1-h6 headings */
  --HERO-FF: "Poppins", sans-serif; /* font-family for hero headings */
  --ALT12-FS: 0.75rem; 
  --HEADER14-FS: 0.875rem;
  --ALT15-FS: 0.9375rem;--P18-FS: 1.125rem;
  --ALT20-FS: 1.25rem;
  --ALT21-FS: 1.3125rem;
  --LEAD22-FS: 1.375rem;
  --ALT24-FS: 1.5rem;
  --ALT28-FS: 1.75rem;
  --ALT32-FS: 2rem;
  --ALT37-FS: 2.3125rem;
  --ALT40-FS: 2.5rem;
  --ALT48-FS: 3rem;
  --HERO72-FS: 3.5rem;
  --ALT96-FS: 6rem;

  /* COLORS */
  /* WEBSITE PRIMARY COLORS */
  /* Default (Light Mode) */
  --PURPLE-COLOR: purple;
  --LPURPLE-COLOR: #d301d3;
  --DBLUE-COLOR: #37517e;
  --WHITE-COLOR: white;
  --BLACK-COLOR: black;
  --BODY-BGCOLOR: whitesmoke;
  --BFONT-COLOR: var(--BLACK-COLOR);
  --RED-COLOR: #d40000;
  --BLUE-COLOR: #0000ff;
  --GREEN-COLOR: #00ff66;
  --LINEAR-COLOR: rgba(40, 58, 90, 0.9);
  --SECTION-BGCOLOR: rgb(249, 244, 249);
}

.dark-mode {
  --PURPLE-COLOR: #486581;
  --LPURPLE-COLOR: #829ab1;
  --DBLUE-COLOR: #37517e;
  --WHITE-COLOR: whitesmoke;
  --BLACK-COLOR: #102a43;
  --BODY-BGCOLOR: whitesmoke;
  --BFONT-COLOR: var(--BLACK-COLOR);
  --RED-COLOR: #414c50;
  --BLUE-COLOR: #0000ff;
  --GREEN-COLOR: #bcccdc;
  --LINEAR-COLOR: rgba(40, 58, 90, 0.9);
  --SECTION-BGCOLOR: #e0e4e8;
}


/* Custom Bootstrap 5 color class */
.custom-primary {
  color: #37517e !important;
}

.bg-custom-primary {
  background-color: #37517e !important;
}

.border-custom-primary {
  border-color: #37517e !important;
}

.form-control:focus, .form-select:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.was-validated .form-control:valid,
.was-validated .form-select:valid {
  border-color: #198754;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.checkbox-group.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Your existing toggle switch styles */
.form-switch {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form-check-input {
  width: 50px;
  height: 25px;
  background-color: #d301d3;
  border-radius: 25px;
  position: relative;
  transition: background 0.3s;
  border: none;
  outline: none;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.form-check-input:checked {
  background-color: #37517e;
}

.form-check-input::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 2.5px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.form-check-input:checked::before {
  transform: translateX(25px);
}

.form-check-input:checked {
  box-shadow: 0 0 8px rgba(0, 0, 255, 0.5);
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important; 
}

#google_translate_element {
  color: purple; /* adjust to your site color */
  font-size: var(--ALT12-FS);
  padding: 5px;
}

/*-----------------------------------------------------------
|| UTILITY CLASSES
--------------------------------------------------------------*/

hr {
  border: 1px solid var(--LPURPLE-COLOR);
}

mark {
  background-color: var(--WHITE-COLOR);
  color: var(--PURPLE-COLOR);
  font-weight: 500;
}

.alert-success {
  background-color: var(--LPURPLE-COLOR);
}

.p-outline {
  -webkit-text-stroke: 0.5px var(--LPURPLE-COLOR); 
}

.w-outline {
  -webkit-text-stroke: 0.5px var(--WHITE-COLOR);
  text-shadow: -2px 2px 4px var(--BLACK-COLOR), 1px 1px 0px var(--LINEAR-COLOR); 
}

.display-5 {
  color: var(--LPURPLE-COLOR);
  -webkit-text-stroke: 0.2px var(--WHITE-COLOR);
  text-align: center;
  font-weight: 700;
}  

.active2 {
  border-right: 10px solid var(--PURPLE-COLOR);
  padding-right: 10px;
}

/*-------------------------------------------------------------
|| GENERAL STYLES
--------------------------------------------------------------*/
body {
  font-size: var(--P18-FS);
  font-family: var(--FF);
  background-color: var(--BODY-BGCOLOR);
  color: var(--BFONT-COLOR);
}

/*-------------------------------------------------------------
|| TYPOGRAPHY
--------------------------------------------------------------*/
a {
  color: var(--PURPLE-COLOR);
}

a:visited {
  color: var(--DBLUE-COLOR);
}

a:hover, a:focus {
  color: var(--LPURPLE-COLOR);
}

a:active {
  color: var(--DBLUE-COLOR);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: var(--HEADINGS-FF);
}

h2 {
  font-weight: 900;
  position: relative;
  color: var(--WHITE-COLOR);
}

h5 {
  font-size: var(--ALT20-FS);
}

p {
  font-size: var(--P18-FS);
}

.lead {
  font-size: var(--LEAD22-FS);
}

p, .lead {
  font-weight: 400;
  line-height: 1.5;
}

hr {
  border: 1px solid var(--LPURPLE-COLOR);
}

mark {
  background-color: var(--WHITE-COLOR);
  color: var(--PURPLE-COLOR);
  font-weight: 500;
}

.p-outline {
  -webkit-text-stroke: 0.5px var(--LPURPLE-COLOR);
}

.w-outline {
  -webkit-text-stroke: 0.5px var(--WHITE-COLOR);
}

.img-thumbnail {
  border: 1.5px solid var(--PURPLE-COLOR);
}

.dropdown-width {
  width: 250px;
}

.scrolled-offset {
  margin-top: 4.375em;
}

.b-radius {
  border-top-left-radius: 4px;
}

.lightpurple {
  color: var(--LPURPLE-COLOR);
}

.purple {
  color: var(--PURPLE-COLOR);
}

.bg-purple {
  background-color: var(--PURPLE-COLOR);
}

.bg-lightpurple {
  background-color: var(--LPURPLE-COLOR);
}

.text-bg-purple {
  background-color: var(--PURPLE-COLOR);
}

.text-purple {
  color: var(--PURPLE-COLOR);
}

.text-lightpurple {
  color: var(--LPURPLE-COLOR);
}

.text-justify {
  text-align: justify !important;
}

.table-bordered {
  border: 0.5px solid var(--PURPLE-COLOR);
}

.deepblue {
  color: var(--DBLUE-COLOR);
}

/*-------------------------------------------------------------
|| BUTTONS
--------------------------------------------------------------*/
.bi-file-pdf-fill {
  color: var(--RED-COLOR);
}

.form-control:focus {
  border: 1px solid var(--LPURPLE-COLOR);
}

.btn-outline-success {
  border: 3px solid var(--WHITE-COLOR);
  color: var(--WHITE-COLOR);
  background-color: var(--LPURPLE-COLOR);
}

.btn-outline-success:hover {
  background-color: var(--DBLUE-COLOR);
  border: 3px solid var(--DBLUE-COLOR);
}

.btn-outline-info {
  border: 2.5px solid var(--PURPLE-COLOR);
  color: var(--PURPLE-COLOR);
}

.btn-outline-info:hover {
  background: var(--DBLUE-COLOR);
  color: var(--WHITE-COLOR);
  border: 2.5px solid var(--DBLUE-COLOR);
}

.btn-outline-info.active {
  color: var(--WHITE-COLOR);
  font-weight: 700;
  border: 2.5px solid var(--PURPLE-COLOR);
  background-color: var(--PURPLE-COLOR);
}

a.btn-learn-more, button.submit-btn {
  font-family: var(--HERO-FF);
  font-weight: 300;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: var(--LPURPLE-COLOR);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 0.375em;
  border: 2px solid var(--LPURPLE-COLOR);
  text-decoration: none;
}

a.btn-learn-more {
  font-size: var(--P18-FS);
}

a.btn-learn-more, button.submit-btn:hover {
  background: var(--DBLUE-COLOR);
  color: var(--WHITE-COLOR);
  border: 2px solid var(--DBLUE-COLOR);
}

button.submit-btn {
  font-size: var(--ALT20-FS);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ri-check-double-line {
  content: "\eb79";
  list-style: none;
  padding: 0;
  color: var(--LPURPLE-COLOR);
  margin-right: 0.625em;
  left: 0;
  top: 2px;
  line-height: 1;
}

/* --------------------------------------------------------------
|| CHAT ICONS
--------------------------------------------------------------*/
.whatsapp, 
.telegram, 
.phone, 
.messenger {
  width: 40px;
  height: 40px;
  transition: all 0.4s;
  text-decoration: none;padding-left: 105px;
}

.whatsapp i, 
.telegram i,
.phone i, 
.messenger i {
  font-size: var(--ALT40-FS);line-height: 0;
  padding-right: 5px;
}

.whatsapp i {
  color: var(--GREEN-COLOR);
}

.telegram i {
  color: var(--BLUE-COLOR);
}

.messenger i {
  color: var(--LPURPLE-COLOR);
}

.phone i {
  color: var(--PURPLE-COLOR);
}

.whatsapp p, 
.telegram p,
.phone p,
.messenger p {
  font-size: var(--P18-FS);
  color: var(--DBLUE-COLOR);
  text-decoration: none;
  padding-left: 120px;
  margin-top: -2.5em;
}

.whatsapp p, 
.telegram p,
.messenger p {
  margin-left: 2.5em;
}

.phone p {
  margin-left: 1.875em;
}

.whatsapp p:hover, 
.telegram p:hover,
.phone p:hover, 
.messenger p:hover {
  color: var(--LPURPLE-COLOR);
}

.whatsapp p:active, 
.telegram p:active,
.phone p:active, 
.messenger p:active {
  color: var(--PURPLE-COLOR);
}
.whatsapp.active, 
.telegram.active,
.phone.active, 
.messenger.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
|| TOP BAR
--------------------------------------------------------------*/
#topbar {
  background: var(--PURPLE-COLOR);
  border-bottom: 1px solid var(--PURPLE-COLOR);
  height: 50px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: var(--WHITE-COLOR);
  transition: 0.3s;
  text-decoration: none;
  font-size: var(--HEADER14-FS);
}

#topbar .contact-info a:hover {
  color: var(--DBLUE-COLOR);
}

#topbar .contact-info i {
  color: var(--WHITE-COLOR);
  line-height: 0;
  margin-right: 0.3125em;
}

#topbar .contact-info .phone-icon {
  margin-left: 0.9375em;
  background-color: var(--PURPLE-COLOR);
}

#topbar .contact-info .phone-number {
    margin-top: 1em;
    margin-bottom: 1em;
    color: var(--WHITE-COLOR);
}

#topbar .social-links a {
  color: var(--WHITE-COLOR);
  padding: 12px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: var(--DBLUE-COLOR);
}

input#modeSwitch.form-check-input {
  border: 3px solid var(--WHITE-COLOR);
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--LPURPLE-COLOR) !important;  /* Dark background color when in dark mode */
}

/*-------------------------------------------------------------
|| HEADER
--------------------------------------------------------------*/
#header {
  height: 70px;
  background: linear-gradient(0deg, var(--PURPLE-COLOR), var(--LPURPLE-COLOR));
  z-index: 997;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06);
}

#header .logo img {
  display: block;
  padding: 0;
  margin: 0;
  max-height: 40px;
}

#header .free-downloads {
  background-color: var(--DBLUE-COLOR);
  color: var(--WHITE-COLOR);
  border: 3px solid var(--WHITE-COLOR);
  border-radius: 3px;
  margin-left: 0.5em;
  padding: 7px;
}

#header .free-downloads:hover {
  background-color: var(--WHITE-COLOR);
  color: var(--DBLUE-COLOR);
  border-color: var(--WHITE-COLOR);
}

.scrolled-offset {
  margin-top: 4.375em;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 10px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px;
  font-size: var(--HEADER14-FS);
  font-weight: 500;
  color: var(--WHITE-COLOR);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: var(--HEADER14-FS);
  line-height: 0;
  margin-left: 0.3125em;
}

.navbar>ul>li>a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--DBLUE-COLOR);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--PURPLE-COLOR);
}

.navbar .dropdown ul {
  display: block;
  font-size: var(--HEADER14-FS);
  font-weight: 500;
  position: absolute;
  left: 10px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--LPURPLE-COLOR);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
  text-decoration: none;
}

.navbar .dropdown ul li {
  min-width: 100px;
  border-top: 0.1px solid var(--DBLUE-COLOR);
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: var(--ALT12-FS);
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--PURPLE-COLOR);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*
 Mobile Navigation
*/

.mobile-nav-toggle {
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: purple;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: rgb(211, 1, 211);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  display: flex;
  justify-content: center;
  padding: 10px 0px;
  font-size: 20px;
  color: #222222;
  border-bottom: 0.5px solid purple;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #37517e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgb(211, 1, 211);
  border: 0 1px;
  box-shadow: 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 0px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
} */

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #37517e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.navbar-mobile .form-check, .navbar-mobile .form-switch {
  padding-top: 10px;
  margin-left: 12.5em;
}

/*-----------------------------------------------------------
|| CSS DECLARATIONS FOR MOBILE (@media DECLARATIONS)
--------------------------------------------------------------*/

@media (prefers-color-scheme: light) {
  :root {
    --PURPLE-COLOR: purple;
    --LPURPLE-COLOR: #d301d3;
    --DBLUE-COLOR: #37517e;
    --WHITE-COLOR: white;
    --BLACK-COLOR: black;
    --BODY-BGCOLOR: whitesmoke;
    --BFONT-COLOR: var(--BLACK-COLOR);
    --RED-COLOR: #d40000;
    --BLUE-COLOR: #0000ff;
    --GREEN-COLOR: #00ff66;
    --LINEAR-COLOR: rgba(40, 58, 90, 0.9);
    --SECTION-BGCOLOR: rgb(249, 244, 249);
  }
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (max-width: 992px) {
  #hero,
  #hero .carousel-item {
    height: calc(100vh - 70px); /* Keep the height calculation */
    min-height: 300px; /* Optional: ensures it doesn't collapse too much on smaller screens */
  }

  #hero .carousel-content.container {
    padding: 0 20px; /* Adjust padding to provide more breathing room on smaller devices */
  }

  #hero .carousel-item img {
    object-fit: cover; /* Ensures images scale nicely without distortion */
    width: 100%; /* Ensures full width of the carousel */
    height: 100%; /* Ensures the image fills the carousel item */
  }

  #hero .carousel-caption {
    font-size: 1.2rem; /* Optionally adjust text size for readability on smaller screens */
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: var(--ALT24-FS);
    background: radial-gradient(circle, var(--WHITE-COLOR) 0%, var(--LPURPLE-COLOR) 40%, var(--WHITE-COLOR) 80%, var(--LPURPLE-COLOR) 90%, var(--WHITE-COLOR) 100%);
    background-clip: text;
    color: transparent;
    background-size: 200%;
    animation: gradient 2s linear infinite;
  }
}

@media (max-height: 500px) {

  #hero,
  #hero .carousel-item {
    height: 120vh;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: auto;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: var(--WHITE-COLOR);
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*-------------------------------------------------------------
|| HERO
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background: var(--BLACK-COLOR);
}

#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(13, 30, 45, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content {
  text-align: left;
}

#hero h2 {
  font-size: var(--HERO72-FS);
  background: radial-gradient(circle, var(--WHITE-COLOR) 0%, var(--LPURPLE-COLOR) 40%, var(--WHITE-COLOR) 80%, var(--LPURPLE-COLOR) 90%, var(--WHITE-COLOR) 100%);
  background-clip: text;
  position: relative;
  perspective: 800px;
  color: transparent;
  background-size: 200%;
  animation: gradient 5s linear infinite alternate;
}

@keyframes gradient {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}

#hero h2::before {
  content: attr(data-text);
  position: relative;
  top: 0;
  left: 0;
  color: var(--WHITE-COLOR);
  text-shadow: -2px -2px 2px rgba(0, 0, 0, 0.6);
  transform: rotateY(30deg) translateZ(5px);
  transform-origin: top left;
}

#hero p {
  width: auto;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: var(--WHITE-COLOR);
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: var(--ALT48-FS);
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-family: var(--HERO-FF);
  font-weight: 300;
  font-size: var(--LEAD22-FS);
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: var(--WHITE-COLOR);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: var(--LPURPLE-COLOR);
  text-decoration: none;
}

#hero .btn-get-started:hover {
  background: var(--PURPLE-COLOR);
}

/*--------------------------------------------------------------
|| MISSION STATEMENT BOXES
--------------------------------------------------------------*/
.mission-box {
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: var(--WHITE-COLOR);
  color: var(--PURPLE-COLOR);
  border-radius: 6px;
  border-left: 6px solid var(--LPURPLE-COLOR);
  transform: perspective(800px) rotateY(8deg);
}

.mission-box:hover {
  background-color: var(--DBLUE-COLOR);
  color: var(--WHITE-COLOR);
  border-left: none;
  transform: translateY(-10px);
}

.mission-box p {
line-height: 24px;
font-weight: 700;
margin-bottom: 0;
text-align: justify;
}

.prayers {
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: var(--WHITE-COLOR);
  color: var(--PURPLE-COLOR);
  border-radius: 6px;
}

/*--------------------------------------------------------------
|| ANIMATED (MOVING) TEXT
--------------------------------------------------------------*/
.animated-text {
  display: inline-block;
  padding: 40px 0;
  color: var(--LPURPLE-COLOR);
  text-align: center;
  text-shadow: 0.2px 0.2px var(--BLACK-COLOR);
  position: relative;
  line-height: 1.5;
  animation: fadeInDown;
  animation-duration: 10s;
}

/*--------------------------------------------------------------
|| BREADCRUMBS
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: var(--LPURPLE-COLOR);
  min-height: 40px;
  border-radius: 2px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--P18-FS);
}

.breadcrumbs ol li+li {
  padding-left: 10px;
  color: var(--WHITE-COLOR);
  text-decoration: underline;
  text-decoration-color: var(--DBLUE-COLOR);
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  content: "/";
}

.text-decoration-color {
  text-decoration-color: var(--DBLUE-COLOR);
}

/*--------------------------------------------------------------
|| SECTION
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--SECTION-BGCOLOR);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: var(--ALT32-FS);
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 1.25em;
  padding-bottom: 20px;
  position: relative;
  color: var(--DBLUE-COLOR);
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 2px;
  background: var(--WHITE-COLOR);
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--PURPLE-COLOR);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
|| ABOUT
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: var(--ALT21-FS);
  font-family: var(--font-secondary);
  color: var(--BLUE-COLOR);
}

.about .content ul {
  list-style: none;
  padding: 0;
  font-size: var(--ALT21-FS);
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 2.5em;
}

.about .content ul i {
  flex-shrink: 0;
  margin-right: 1.25em;
  line-height: 0;
}

.about .content ul h5 {
  font-weight: 700;
  color: var(--DBLUE-COLOR);
}

.about .content ul p {
  font-size: var(--ALT15-FS);
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
|| ABOUT ICON
--------------------------------------------------------------*/
.icon-box {
  text-align: center;
}

.icon-box .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background: var(--WHITE-COLOR);
  border-radius: 50%;
  transition: 0.5s;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.icon-box .icon i {
  font-size: var(--ALT96-FS);
  color: var(--PURPLE-COLOR);
}

.icon-box .icon-box:hover .icon {
  box-shadow: 0px 0 50px rgba(66, 139, 202, 0.5);
}

/*--------------------------------------------------------------
|| CALL TO ACTION (CTA)
--------------------------------------------------------------*/
#activities-sec{
	display:block;
	width:100%;
  background: linear-gradient(var(--LINEAR-COLOR), var(--LINEAR-COLOR)), fixed center center;
	background-size: cover;
	background-attachment: fixed;
	background-position: top;
	margin:1.875em 0 3.75em;
	padding:60px 0;
}

#activities-sec h2 {
  font-size: var(--ALT32-FS);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1.25em;
  padding-bottom: 20px;
  position: relative;
  color: var(--WHITE-COLOR);
  text-shadow: -2px 2px 4px var(--BLACK-COLOR), 1px 1px 0px var(--LINEAR-COLOR);
}

#activities-sec h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: var(--WHITE-COLOR);
  bottom: 1px;
  left: calc(50% - 60px);
}

#activities-sec h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--LPURPLE-COLOR);
  bottom: 0;
  left: calc(50% - 20px);
}

#activities-sec h4, #activities-sec h5{
	color: var(--WHITE-COLOR);
  padding-top: 30px;
  text-align: left;
  line-height: 30px;
}

#activities-sec h4{
	text-transform: uppercase;
	font-size: var(--LEAD22-FS);
	line-height: 1.5;
  font-weight: 600;
}

#activities-sec p{
	margin: 0.625em 0 0 0;
	color: var(--WHITE-COLOR);
  padding-bottom: 15px;
  text-align: left;
  font-size: var(--P18-FS);
}
#activities-sec a {
	font-family: var(--HERO-FF);
  font-weight: 300;
  font-size: var(--P18-FS);
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: var(--WHITE-COLOR);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 0.375em;
  border: 2px solid var(--LPURPLE-COLOR);
  text-decoration: none;
}

#activities-sec a:hover{
	background: var(--PURPLE-COLOR);
  color: var(--WHITE-COLOR);
  border: 2px solid var(--PURPLE-COLOR);
}

#activities-sec .top-off{
	margin-top:40px;
}

#activities-sec .top-off:hover .grid-content-left i{
	border-radius:50%;
}

/*--------------------------------------------------------------
|| BACK TO TOP BUTTON
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--PURPLE-COLOR);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.light-dark2 i {
  font-size: var(--ALT24-FS);
  color: var(--WHITE-COLOR);
  line-height: 0;
}

.light-dark2:hover {
  color: var(--WHITE-COLOR);
  font-weight: 700;
}

.light-dark2.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top i {
  font-size: var(--ALT24-FS);
  color: var(--WHITE-COLOR);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--DBLUE-COLOR);
  color: var(--WHITE-COLOR);
  border: 3px solid var(--DBLUE-COLOR);
  font-weight: 700;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
|| FREQUENTLY ASKED QUESTIONS (F.A.Q.)
--------------------------------------------------------------*/
.faq .faq-list ul {
  padding: 0 12px;
  list-style: none;
  font-size: var(--P18-FS);
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: var(--WHITE-COLOR);
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: inline;
  position: relative;
  font-family: var(--HERO-FF);
  font-size: var(--ALT20-FS);
  line-height: 24px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: var(--ALT24-FS);
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--DBLUE-COLOR);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: var(--ALT24-FS);
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list h5 {
  display: block;
  position: relative;
  font-family: var(--FF-HEADINGS);
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  font-size: var(--P18-FS);
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: var(--DBLUE-COLOR);
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: var(--LPURPLE-COLOR);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
|| CONTACT
--------------------------------------------------------------*/
.contact .info-box {
  color: var(--DBLUE-COLOR);
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
  width: 100%;
}

.contact .info-box i {
  font-size: var(--ALT32-FS);
  color: var(--DBLUE-COLOR);
  padding: 2px;
}

.contact .info-box i:hover {
  color: var(--PURPLE-COLOR);
  font-weight: 800;
}

.contact .info-box h3 {
  font-size: var(--ALT20-FS);
  color: var(--LPURPLE-COLOR);
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 1.5;
  font-size: var(--P18-FS);
  margin-bottom: 0;
  color: var(--BLACK-COLOR);
}

.contact .whatsapp i,
.contact .telegram i,
.contact .messenger i {
  display: flex;
  justify-content: center;
  text-decoration: none;
  font-size: var(--ALT37-FS);
  line-height: 0;
}

.contact .telegram p,
.contact .whatsapp p,
.contact .messenger p {
  color: var(--DBLUE-COLOR);
  text-decoration: none;
}

.contact .telegram p:hover,
.contact .whatsapp p:hover,
.contact .messenger p:hover {
  color: var(--LPURPLE-COLOR);
}

.contact .telegram p:active,
.contact .whatsapp p:active,
.contact .messenger p:active {
  color: var(--PURPLE-COLOR);
}

.contact .whatsapp i {
  color: var(--GREEN-COLOR);
}

.contact .telegram i {
  color: var(--BLUE-COLOR);
}

.contact .messenger i {
  color: var(--LPURPLE-COLOR);
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--WHITE-COLOR);
  background: var(--RED-COLOR);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--WHITE-COLOR);
  background: var(--GREEN-COLOR);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--WHITE-COLOR);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--GREEN-COLOR);
  border-top-color: var(--WHITE-COLOR);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: var(--HEADER14-FS);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background-color: var(--DBLUE-COLOR);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--PURPLE-COLOR);
  border: 0;
  padding: 10px 30px;
  color: var(--WHITE-COLOR);
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--DBLUE-COLOR);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*-------------------------------------------------------------
|| FOOTER
--------------------------------------------------------------*/
#footer {
  background: var(--PURPLE-COLOR);
  padding: 0 0 30px 0;
  color: var(--WHITE-COLOR);
}

#footer .footer-top {
  background: linear-gradient(0deg, var(--LPURPLE-COLOR), var(--PURPLE-COLOR));
  padding: 30px 0 30px 0;
  border-top: 1px solid var(--LPURPLE-COLOR);
  border-bottom: 1px solid var(--LPURPLE-COLOR);
}

#footer .footer-top .logo {
  display: block;
  margin-bottom: 15px;
  max-width: 62%;
}

#footer .footer-top .ld-modeswitch {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
  max-width: 62%;
}

#footer .footer-top h3 {
font-family: "Open Sans", "Cascadia Code Main", sans-serif;
  display: inline-block;
  font-size: var(--P17-FS);
  font-weight: 900;
  padding: 3px;
  color: var(--DBLUE-COLOR);
  background-color: var(--WHITE-COLOR);
  border-radius: 4px;
}

#footer .footer-top p {
  font-size: var(--HEADER14-FS);
  font-weight: 500;
  margin-top: 10px;
}

#footer .footer-top .footer-links {
  margin: 5px 0 5px 0;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin-top: 23px;
  font-size: var(--HEADER14-FS);
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--WHITE-COLOR);
  font-size: var(--HEADER14-FS);
  line-height: 0.5;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--WHITE-COLOR);
  transition: 0.3s;
  display: inline-block;
  line-height: 0.5;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--PURPLE-COLOR);
}

#footer .footer-top .footer-links ul a:active {
  border-right: 10px solid var(--DBLUE-COLOR);
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: var(--PURPLE-COLOR);
  color: var(--WHITE-COLOR);
  line-height: 1;
  padding: 10px 0;
  margin: 20px 15px 0 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--DBLUE-COLOR);
  color: var(--WHITE-COLOR);
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  padding-left: 0;
  font-size: var(--HEADER14-FS);
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: var(--HEADER14-FS);
  color: var(--WHITE-COLOR);
}
 
#footer .credits a {
  color: var(--WHITE-COLOR);
}

#footer .credits a:hover {
  color: var(--LPURPLE-COLOR);
}

/* CONTACT FORM CONTAINER */
#contactForm {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

/* HEADINGS */
#contactForm h5,
#contactForm legend {
  color: #37517e;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

/* FIELDSETS */
#contactForm fieldset {
  border: none;
  margin-bottom: 30px;
  padding: 0;
}

/* FORM LABELS */
#contactForm label {
  font-weight: 600;
  color: #37517e;
  margin-bottom: 6px;
  display: block;
}

/* INPUTS, SELECTS, TEXTAREAS */
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm select,
#contactForm textarea {
  width: 100%;
  min-height: 45px;
  border: 2px solid #37517e;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 1rem;
  background-color: #f9f9f9;
  color: #333;
  transition: 0.3s ease;
  box-sizing: border-box;
}

/* FOCUS STATES */
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  border-color: #d301d3;
  box-shadow: 0 0 8px rgba(211, 1, 211, 0.4);
  background-color: #fff;
  outline: none;
}

/* VALIDATION FEEDBACK */
#contactForm .invalid-feedback,
#contactForm .valid-feedback {
  font-size: 0.85rem;
  margin-top: 5px;
}

/* BUTTONS */
#contactForm button[type="submit"],
#contactForm button[type="reset"] {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
}

#contactForm button[type="submit"] {
  background-color: #d301d3;
  color: #fff;
  border: none;
}

#contactForm button[type="submit"]:hover {
  background-color: #37517e;
  box-shadow: 0 5px 15px rgba(55, 81, 126, 0.3);
}

#contactForm button[type="reset"] {
  background-color: #ffffff;
  color: #37517e;
  border: 2px solid #37517e;
}

#contactForm button[type="reset"]:hover {
  background-color: #d301d3;
  color: #ffffff;
  border-color: #d301d3;
}

/* SPACING FOR FIELDS */
#contactForm .mb-3 {
  margin-bottom: 20px;
}

#contactForm .d-flex {
  gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #contactForm {
    padding: 20px;
  }

  #contactForm button {
    width: 100%;
  }
}
