/**
* Template Name: Mentor
* Template URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
* Updated: Jul 07 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}
.page-title {
  background: linear-gradient(to top, #9c7f1ed9 , #000000);
  padding: 80px 0;
  color: white;
  border-radius: 0 0 0px 90px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
 /*--background-color: #b3b2b0;*/
  --default-color: #444444;
  --heading-color: #37423b;

 /* --accent-color: #4d3e0ed9; /* solid color for text */

  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: white;  /* The default color of the main navmenu links */
  --nav-hover-color: #daba09; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #daba09; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #B6771D;
  --surface-color: #8b8b8b;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

:root{
   --footer-gradient: linear-gradient(to bottom, #000000, #4d3e0ed9);
}

.footer{
  background: var(--footer-gradient);
}
.footer-bottom{
  background: var(--footer-gradient);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: whitesmoke;
  font-family: var(--default-font);
  position: relative;
}

/* Decorative background image */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/Mentor/images/body-bg2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 850px 849px;

  opacity: .6;        /* transparency */
  filter: blur(0px);    /* soft blur */
  pointer-events: none; /* allows clicks through it */
  z-index: -1;
}
.navmenu a{
  text-decoration: none;
  color: inherit;
}
.footer a {
  text-decoration: none;
  color: inherit;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
.page-title{
  background-color: #060606;
}
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)

}
.footer .col-lg-4 .list-footer p{
  color: rgb(185, 179, 179);

}
/* Twitter (X) */
.footer .social-links .bi-twitter-x:hover{
  color: #000000;
}

/* Facebook */
.footer .social-links .bi-facebook:hover {
  color: #1877F2;
}

/* Instagram */
.footer .social-links .bi-instagram:hover {
  color: #E4405F;
}

/* LinkedIn */
.footer .social-links .bi-linkedin:hover {
  color: #0A66C2;
}
.footer .col-lg-4 p{
  color: rgb(185, 179, 179);
}
.footer-h1{
  background: linear-gradient(to bottom, #f8f5f5, #896f1cd9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
  
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.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(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: white;
  background-color: black;
  padding: 8px 0;
  transition: all 0.5s;
  z-index: 997;
  /*box-shadow: 1px 2px 25px #ffffff9f;*/
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100%;
  margin-right: 8px;
  
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.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.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    background-color: inherit;
  }

  .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;
  }

  .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);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* 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: 9999;
  }

  .navmenu ul {
  display: none;
  list-style: none;
  position: absolute;
  inset: 0px 0px 20px auto; /* auto on left, fixed on right */
  padding: 15px 0;
  margin: 0;
  width: 250px;
  float: right;
  border-radius: 20px 0px 0px 20px; /* smoother corners */
  background: linear-gradient(
    135deg,
    var(--nav-mobile-background-color),
    color-mix(in srgb, var(--default-color), transparent 40%)
  );
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* subtle shadow */
  overflow-y: auto;
  transition: all 0.5s ease-in-out;
  z-index: 9998;
}

/* Menu items */
.navmenu ul li {
  padding: 1px 7px;
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.navmenu ul li:hover {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color); /* highlight color */
  border-radius: 10px;
}


  .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);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #ffc107;
    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:linear-gradient(
    135deg,
    black,
    color-mix(in srgb, white, transparent 20%)
  );
    transition: 0.3s;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
     z-index: 10000;
    position: relative
  }
  
}

/*--------------------------------------------------------------
/* Global Footer */
.footer {
 color: white;
 font-weight: 500;
 /* background-color: #000; */
  background: linear-gradient(to bottom, #000000 0%, #4d3e0ed9 100%);
  font-size: 14px;
  padding-bottom: 0px;
  position: relative; 

}

.footer .footer-top {
  padding-top: 50px;
}


/* Logo */
.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: white;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: white;
}
.footer .social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 15%;
}

/* Social Links */
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-bottom: 2px solid rgb(112, 109, 109); /* underline */
  font-size: 16px;
  color: rgb(112, 109, 109);
  margin-right: 10px;

  transition: transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.footer .social-links a:hover {
  transform: scale(1.35);
  border: 2px solid rgb(112, 109, 109);
}

/* Headings */
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  color: white;
}

/* Links */
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  color: white;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: #FFD400;
  font-weight: 650;
  font-size: 18px;
}

/* Collapsible Newsletter Input */
.footer .footer-newsletter .newsletter-form {
  margin: 30px auto 15px auto; /* center horizontally */
  padding: 6px 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  background-color: #222;
  transition: width 0.4s ease, border-color 0.4s ease; /* smooth transition */

  width: 180px; /* collapsed size */
  max-width: 100%; /* prevents overflow */
  overflow: hidden;
}

/* Expand on focus */
.footer .footer-newsletter .newsletter-form:focus-within {
  width: 90%; /* expands fully */
  border-color: #d65616;
}

/* Email input */
.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: #222;
  color: white;
}

/* Remove outline */
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

/* Placeholder */
.footer .footer-newsletter .newsletter-form input::placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer .footer-newsletter .newsletter-form:focus-within input::placeholder {
  opacity: 1;
}

/* Submit button */
.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin-left: 5px;
  background: rgb(112, 109, 109);
  color: #000;
  border-radius: 50px;
  transition: 0.3s;
  white-space: nowrap;
}

/* Hover effect */
.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: #e3b11bba;
  color: whitesmoke;
  border: 1px solid #e3b11bba;
}

/* Copyright */
.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
  color: white;
}

/*--------------------------------------------------------------
# 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;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        justify-items: center;
        width: 33.33333333%;
        border-right: 3px solid #ffc3002e;
    }

    .col-lg4:last-child{
      border-right: none;
    }
  }
  @media (min-width: 768px) {
    .col-lg-4 {
        flex: 0 0 auto;
        justify-items: center;
        width: 33.33333333%;
        border-right: 3px solid #ffc3002e;
    }
      .col-lg-4:last-child{
      border-right: none;
    }
  
  }
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: #0000008a;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
  z-index: 0;
}

.page-title nav a {
  color: var(--default-color);
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 900px;
  overflow: clip;
}


#trainers-index .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontal center */
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

#trainers-index .section-title h2 {
  font-size: 50px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: #37423b;
  margin-left: 8rem;
  text-transform: capitalize;
}

#trainers-index .section-title p {
  font-size: 16px;
  color: #666;
  margin-top: 2px;
  letter-spacing: 0.3px;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px; /* keeps it nicely centered like sponsors */
}

/* Fix Guiding Minds on mobile */
@media (max-width: 768px) {
  .why-us h2 {             /* remove flex */
    text-align: center;          /* center properly */
    font-size: 10px;             /* scale down */
              /* prevent overlap */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: auto;
  }

  #trainers-index .section-title p {
    font-size: 14px;
    margin-top: 5px;
    padding: 0 10px;             /* prevent edge touching */
  }
  #trainers-index .section-title h2 {
  font-size: 50px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: #37423b;
  margin: 0 auto;
  margin-bottom: 10px;
  text-transform: capitalize;
}

/*Footer copyright*/
.footer-bottom{
  font-size: 11px;
  text-align: center;
  padding: 20px 0 10px;
  color: white;
  background: blue; /* key */
}

.footer-bottom .all-right {

}
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/* MOBILE: stack items → use bottom border */
@media (max-width: 767px) {
  .col-lg-4 {
    border-right: none; /* remove desktop border */
    border-bottom: 3px solid #ffc3002e;
    width: 100%;
    padding-bottom: 20px;
  }

  
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  color: #2dd46a;
  position: relative;
  padding-bottom: 0;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
  
}

.ss-text {
  font-family: 'Calibri', serif; /* or Friz Quadrata if you have it */
  letter-spacing: 3px;
  text-transform: uppercase;
}

/*Footer copyright*/
.footer-bottom{
  font-size: 11px;
  text-align: center;
  padding: 20px 0 10px;
  color: white;
  background: transparent; /* key */
}