/**
* https://colorhunt.co/palette/212984
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #5cb874;
  --secondary-color: #166534;
  --text-color: #444444;
  --bg-color: #f8f9fa;
  --white: #ffffff;
  --dark: #2b2b2b;
}

html, body {
  overflow-x: hidden;
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color) !important; /* Added !important to prevent override */
  position: relative;
  overflow-y: auto;
}

/* Container padding consistency fixes */
.container {
  padding-right: 15px !important;
  padding-left: 15px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  width: 100% !important;
  max-width: 1140px !important; /* Bootstrap default */
}

/* Ensure proper padding on mobile */
@media (max-width: 768px) {
  .container {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  
  section {
    padding: 60px 0 !important;
  }
  
  #hero .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Make hero section respect container width */
#hero .container {
  position: relative !important;
  z-index: 2 !important;
  padding-top: 120px !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
}

a {
  color: #1c0303;
  text-decoration: underline;
}

a:hover {
  color: #ffce3a;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

.btn-branded {
  background: #e0e3ea;
  border: 0;
  padding: 10px 30px;
  color: #f5ebeb;  
  border-radius: 25px;
}
/* #320c0c; */
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-transparent {
  background: #ffffff;
}

#header.header-scrolled {
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

#header .logo a {
  color: #222;
  text-decoration: none;
  display: block;
}

#header .logo img {
  max-height: 60px;
  display: block;
  margin: 0;
}

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
  padding: 10px 12px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #555;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-menu a:hover, .nav-menu .active > a {
  color: #5cb874;
}

@keyframes heartbeat {
  0% { color: #ff0000; } /* bright red at start */
  50% { color: #8b0000; } /* dark red at middle */
  70% { color: #0000ff; } 
  100% { color: #ff0000; } /* back to bright red at end */
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative !important;
  width: 100% !important;
  height: 80vh !important;
  background-color: #000 !important;
  overflow: hidden !important;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.video-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  z-index: 0 !important;
}

.overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.4) !important;
  background-color: rgba(0, 0, 0, 0.4) !important;
  z-index: 2 !important;
}

#video-bg {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
}

#hero .container {
  position: relative !important;
  z-index: 3 !important;
  padding-top: 120px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#hero p {
  color: #fff;
  margin: 20px 0 30px;
  font-size: 22px;
  font-weight: 300;
}

/* Hero buttons styling */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.btn-learn-more,
.btn-participant,
.btn-researcher {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  text-decoration: none;
  margin-bottom: 10px; /* Add space between buttons */
}

.btn-learn-more {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
}

.btn-participant {
  color: #fff;
  background: #5cb874;
  border: 2px solid #5cb874;
}

.btn-researcher {
  color: #fff;
  background: #3498db;
  border: 2px solid #3498db;
}

.btn-learn-more:hover {
  background: #fff;
  color: #000;
}

.btn-participant:hover {
  background: #429c5c;
  border-color: #429c5c;
  transform: translateY(-2px);
}

.btn-researcher:hover {
  background: #2980b9;
  border-color: #2980b9;
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 34px;
  }
  #hero h2 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-buttons {
    justify-content: center;
    margin-bottom: 20px; /* Add more bottom margin to the button container */
    flex-direction: column; /* Stack buttons vertically on mobile */
    align-items: center; /* Center the buttons */
    gap: 12px; /* Reduce gap to ensure all buttons are visible */
  }
  
  .btn-learn-more,
  .btn-participant,
  .btn-researcher {
    padding: 10px 20px;
    font-size: 14px;
    width: 80%; /* Make buttons wider on mobile */
    text-align: center;
    margin-bottom: 8px; /* Add more space between stacked buttons */
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #f8f9fa !important;
}

.section-bg {
  background-color: #f8f9fa !important; /* Added !important to ensure consistency */
}

.section-title {
  padding-bottom: 40px;
  text-align: center; /* Explicitly set text alignment to center */
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--text-color);
  text-align: center; /* Ensure heading text is centered */
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title h3 {
  text-align: center; /* Center any h3 elements in section titles */
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 32px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin: 15px 0;
  font-size: 20px;
  position: relative;
  padding-bottom: 15px;
}

.services .icon-box h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: #5cb874;
  bottom: 0;
  left: calc(50% - 20px);
}

.services .icon-box h4 a {
  color: #333;
  text-decoration: none;
}

.services .icon-box p {
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 0;
}

.services .section-title h2 {
  position: relative;
  text-align: center;
}

.services .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #5cb874;
  bottom: 0;
  left: calc(50% - 20px);
}

/*--------------------------------------------------------------
# Signup Sections
--------------------------------------------------------------*/
.signup {
  padding: 80px 0;
  background-color: #fff;
}

.signup-box {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.signup-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.signup-box p {
  color: #666;
  margin-bottom: 25px;
  text-align: center;
}

.signup-form .form-control {
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 15px;
  padding: 10px 15px;
  box-shadow: none;
  transition: border-color 0.3s;
}

.signup-form .form-control:focus {
  border-color: #5cb874;
  box-shadow: 0 0 0 0.2rem rgba(92, 184, 116, 0.15);
}

.signup-btn {
  background: #5cb874;
  border: 0;
  padding: 12px 30px;
  color: #fff;
  transition: all 0.3s;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
}

.signup-btn:hover {
  background: #429c5c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(92, 184, 116, 0.2);
}

.signup .small {
  font-size: 13px;
}

/* Researcher signup styling */
.researcher-signup {
  background-color: #f0f7f3;
}

.researcher-box {
  background: #fff;
}

.researcher-btn {
  background: #3498db;
}

.researcher-btn:hover {
  background: #2980b9;
}

.signup-form textarea.form-control {
  height: auto;
  padding: 15px;
}

/*--------------------------------------------------------------
# Press Section
--------------------------------------------------------------*/
.press {
  padding: 80px 0;
}

.press-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.press-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.press-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.press-box .press-date {
  color: #777;
  font-style: italic;
  margin-bottom: 15px;
  font-size: 14px;
}

.press-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #5cb874;
  margin-bottom: 15px;
}

.press-box p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.video-container-press {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.video-container-press iframe {
  border-radius: 4px;
  transition: all 0.3s ease;
}

.press-box .read-more {
  display: inline-block;
  padding: 8px 20px;
  background: #5cb874;
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.press-box .read-more:hover {
  background: #429c5c;
  color: #fff;
}

/*--------------------------------------------------------------
# Publications Section
--------------------------------------------------------------*/
.publications {
  padding: 80px 0;
}

.publication-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.publication-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.publication-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.publication-box .publication-date {
  color: #777;
  font-style: italic;
  margin-bottom: 15px;
  font-size: 14px;
}

.publication-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #5cb874;
  margin-bottom: 15px;
}

.publication-box p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.publication-box .read-more {
  display: inline-block;
  padding: 8px 20px;
  background: #5cb874;
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.publication-box .read-more:hover {
  background: #429c5c;
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: var(--primary-color);
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #2b2b2b;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #272727;
  padding: 60px 0 30px 0;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
  padding: 80px 0;
  background-color: #fff;
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list ul {
  list-style: none;
  padding: 0;
}

.faq .faq-list li {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq .faq-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq .faq-list .question-container {
  padding: 20px 25px;
  background: #ffffff !important;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  color: #5cb874;
  margin-right: 15px;
}

.faq .faq-list .question {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-decoration: none;
  width: 100%;
  display: block;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #5cb874;
  transition: 0.3s;
}

.faq .faq-list .icon-show {
  display: inline-block;
}

.faq .faq-list .icon-close {
  display: none;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
}

.faq .faq-list p {
  margin: 0;
  padding: 20px 25px;
  background: #f8f9fa;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
#clients {
  padding: 40px 0;
  text-align: center;
}

#clients .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

#clients .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  height: 150px;
}

#clients img {
  max-width: 90%;
  max-height: 80px;
  transition: all 0.3s ease;
  filter: grayscale(30%);
  opacity: 0.8;
  margin: 0 auto; /* Center horizontally with auto margins */
  display: block; /* Make image a block element */
}

#clients img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# CEO Quote Section
--------------------------------------------------------------*/
.ceo-quote {
  padding: 80px 0;
}

.ceo-image-container {
  text-align: center;
  margin-bottom: 30px;
}

.ceo-image-container img {
  max-width: 320px;
  border: 8px solid rgba(92, 184, 116, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ceo-image-container img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.ceo-quote-content {
  padding: 20px;
}

.quote-icon {
  margin-bottom: 20px;
  font-size: 36px;
  color: #5cb874;
}

.ceo-quote-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.ceo-quote-content blockquote {
  font-size: 22px;
  line-height: 1.6;
  font-style: italic;
  color: #444;
  position: relative;
  padding: 0 20px;
  margin-bottom: 30px;
}

.ceo-signature h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  font-size: 20px;
}

.ceo-signature p {
  color: #666;
  margin: 0;
}

@media (max-width: 992px) {
  .ceo-quote-content {
    padding-top: 0;
  }
}

/*--------------------------------------------------------------
# Executive Photo Styling - Enhanced for Mobile
--------------------------------------------------------------*/
.executive-photo {
  width: 280px !important;
  height: 280px !important;
  object-fit: cover !important;
  border: 8px solid rgba(92, 184, 116, 0.2) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  border-radius: 50% !important;
  aspect-ratio: 1/1 !important;
}

@media (max-width: 768px) {
  .executive-photo {
    width: 220px !important;
    height: 220px !important;
    min-width: 220px !important; /* Force minimum width */
    min-height: 220px !important; /* Force minimum height */
    max-width: 220px !important; /* Force maximum width */
    max-height: 220px !important; /* Force maximum height */
  }
  
  .ceo-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    overflow: visible !important; /* Ensure no clipping */
  }
}

/*--------------------------------------------------------------
# Mobile Navigation Fix
--------------------------------------------------------------*/
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9999;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: #5cb874;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  text-decoration: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #5cb874;
  text-decoration: none;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
}

@media (min-width: 992px) {
  .mobile-nav-toggle, .mobile-nav {
    display: none;
  }
}

/*--------------------------------------------------------------
# Critical Color Overrides
--------------------------------------------------------------*/
body, html {
  background-color: #f8f9fa !important;
  color: #444444 !important;
}

section {
  background-color: #f8f9fa !important;
}

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

/*--------------------------------------------------------------
# Video Container & Hero Section Fixes
--------------------------------------------------------------*/
#hero {
  position: relative !important;
  width: 100% !important;
  height: 80vh !important;
  background-color: #000 !important;
  overflow: hidden !important;
}

.video-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  z-index: 0 !important;
}

#video-bg {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
}

/* Fix overlay in hero section to prevent purple tint */
#hero .overlay,
.overlay,
.video-container .overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.4) !important;
  background-color: rgba(0, 0, 0, 0.4) !important;
  z-index: 2 !important;
}

#hero .container {
  position: relative !important;
  z-index: 3 !important;
}

/*--------------------------------------------------------------
# Component Background Colors
--------------------------------------------------------------*/
.icon-box, .publication-box, .press-box, .signup-box, .faq .faq-list .question-container {
  background: #ffffff !important;
}

/*--------------------------------------------------------------
# Logo Styling
--------------------------------------------------------------*/
.logo a {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.logo-text {
  color: #333 !important;
  font-weight: 600 !important;
  font-size: 20px !important;
}

.logo-svg {
  height: 28px !important;
  width: auto !important;
  margin: 0 1px !important;
}

.member-img img {
  width: 400px !important;
  height: 400px !important;
  object-fit: cover !important;
}

/*--------------------------------------------------------------
# Responsive Text Alignment
--------------------------------------------------------------*/
@media screen and (max-width: 600px) {
  p {
    text-align: left !important;
  }
}

/*--------------------------------------------------------------
# Mobile Logo Styling
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .logo-text {
    font-size: 18px !important;
  }
  
  .logo-svg {
    height: 24px !important;
  }
}