/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Open Sans", sans-serif;
  --nav-font: "Open Sans", sans-serif;
}

/* 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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #a6140c; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --page-title-bgcolor:#a6140c; /* Page Title Background color */
}

/* 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: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color: #a6140c; /* 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: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #a6140c; /* 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: #f9f9f9;
  --surface-color: #f2f2ed;
  --footer-bg-color: #3a3939;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* 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);
}


.default-fcolor{
	color: var(--accent-color);
}

.section h2
{
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 42px;
}

.text-justify
{
    text-align: justify;
}

.btn-dod {
  background-color: var(--accent-color);
  color: var(--contrast-color)!important;
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.btn-dod:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%)!important;
}

.btn-acad {
    background-color: #eadec6;
    color: #a6140c !important;
    padding: 8px 30px 10px 30px;
    border-radius: 4px;
}

.btn-acad:hover {
    background-color: color-mix(in srgb, #eadec6, transparent 10%)!important;
}


.btn-get-started {
    background-color: var(--accent-color);
    color: var(--contrast-color)!important;
    padding: 8px 30px 10px 30px;
    border-radius: 4px;
}

.btn-get-started:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 10%)!important;
}




/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* Slider */
.carousel-item {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width:1024px){
.carousel-item {
    height: auto;
}
}

.blog-head {
    color: var(--default-color);
    background-color: var(--background-color);
    /* padding: 50px 0; */
    scroll-margin-top: 80px;
    overflow: clip;
}

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  width: 240px;
  max-height: 100%;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  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 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  /*--background-color: rgba(255, 255, 255, 0);*/
  /* background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0)); */
  --heading-color: #ffffff;
  --nav-color: #3a3939;
  --nav-hover-color: #a6140c;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  background: rgba(255,255,255,1);
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #a6140c;
}

/*--------------------------------------------------------------
# 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 li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.1em;
    bottom: 0;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 15px 10px;
    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);
	/* background-color:#DDD; */
  }

  .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: 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: 5px 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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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: #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: var(--default-color);
  background-color: var(--footer-bg-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  color: #fff;
}



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



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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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

.footer .footer-logo{
    position: absolute;
    bottom: 0;
    right: 0;
}

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  color: #fff!important;
  background-color: var(--page-title-bgcolor);
  padding: 40px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  color: #fff!important;
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.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);
  padding: 50px 0;
  scroll-margin-top: 50px;
  overflow: clip;
  min-height: 95vh;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 50px;
	padding: 30px 0;
  height: auto;
  }
}

@media (max-width: 767px) {
	section, .section {
   
    padding: 30px 0;
}}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 25px;
  position: relative;
}

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

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

@media (max-width:992px) {
  .section-title h2:before,
.section-title h2:after {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}
  
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.home.section{
    display: flex;
    align-items: center;
}

.home.section h1{
  text-transform: uppercase;
  font-size: 3.5vw;
  font-weight: 600;

}
.home.section h4{
  font-size: 1.5vw;
  font-weight: 400;
color: #a6140c;
}

.home.section h4.mdes{
  font-size: 1.5vw;
  font-weight: 400;
color: #000;
}


.home .img-container{
	height: auto;	
}

.home .img-container img{ 
	width:100%;
}

.home .home-left .content-left-bg{
  position: relative;
  height: 100%;
	background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 2rem;
  align-content: center;
}

.home .home-left .content-left-bg p{
  font-size: 1.4vw;
  margin-bottom: 0px;
line-height:1.5;
}

.home .home-left .content-left-bg p.small{
  font-size: 1rem;
  margin-bottom: 0px;
}


.home .home-left .content-left-bg a{
  position: absolute;
  bottom: 50px;
  right: 50px;
}

/* .home .home-left{
  
    max-width: 120px;
    width: 50%;
    max-height:150px;
    height:calc((84vh - 8px)/4);
    border: 1px solid #1D1E18;

} */

.home .home-right img{
   width:100%;
   height:100%;
}

@media (min-width: 1582px) {
.home .home-left .content-left-bg p{
  font-size: 18px; 
}
}

@media (max-width: 991px) {
  .home.section h1 {
    font-size: 6vw;
}
.home.section h4 {
  font-size: 4vw;
}
.home.section h4.mdes{
font-size: 4vw;

}
.home .home-left .content-left-bg{
    padding: 1.5rem;
}
.home .home-left .content-left-bg p{
  font-size: 1.8vw;
}
.home .home-left .content-left-bg p.small{
  font-size: 14px;
}


}

@media (max-width: 768px) {
  .home.section h1 {
    font-size: 6vw; 
}
.home.section h4 {
  font-size: 4.5vw;
}
.home.section h4.mdes{
font-size: 4.5vw;
}
.home .home-left .content-left-bg{
    padding: 1.5rem;
  /* min-height: auto; change on 23-04-2025*/
	min-height: 380px;
}
.home .home-left .content-left-bg p{
  font-size: 20px;
}
.home .home-left .content-left-bg p.small{
  font-size: 13px;
}

.home .home-left .content-left-bg a{
  position: absolute;
  bottom: 20px;
  right: 20px;
}
}

/* Join Us------------------------------
========================================== */

.join-us .card-body img , .about-us .card-body img, .people .card-body img{
  max-height: 100px; 
  max-width: 150px; 
  height: 100px; 
  width: 100px;

}



/* --------------------------------------------------------
# Team Member CSS
----------------------------------------------------------*/

.team-member img{
  max-height: 150px;
  max-width: 150px; 
  margin: 0 auto 0 auto;
  border-radius: 50%;
}

.team-member .cardhover .wtk-links{
  font-size: 18px;
}

.team-member .member-name{
  color: var(--accent-color);
}

@media (max-width: 768px) {
    .team-member img {
        float: right;
        margin-left: 15px;
        height: 120px !important;
        width: 120px;
    }
   .cardhover {
        min-height: auto!important;
    }
}


/*------------------------------------------------------------
# Card Hover CSS
-------------------------------------------------------------*/

.card{
	border-color: #A9A9A9;
	transition: all ease .25s;
	height:100%;
	
}

.card-auto .card{
	height:auto!important;
}

.card:hover
{
border-color: var(--accent-color);
/* transform: scale(1.005); */
}

.cardhover{
	background: var(--contrast-color);
	min-height:170px;
}

.cardhover:hover {
	border-color: var(--accent-color);
    /* color: white; */
    cursor: pointer;
	-webkit-box-shadow: 10px 10px 15px -10px rgb(0 0 0 / 80%);
	-moz-box-shadow: 10px 10px 15px -10px rgb(0 0 0 / 80%);
	box-shadow: 10px 10px 15px -10px rgb(0 0 0 / 80%);
}
.cardhover:hover h4{
	color:#fff;
}


.cardhover-button{
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.cardhover:hover #cardborder
{
	background: var(--wtk-secondary);
	/* color:#fff; */
	/* border: 1px solid var(--wtk-white)!important; */
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  display:inline;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}


/*--------------------------------------------------------------
# People Section
--------------------------------------------------------------*/



.people .section-title {
    text-align: center;
    padding: 0 0 30px 0;
    position: relative;
}

.people .member {
  position: relative;
  padding-bottom:40px;
}

.people .member .member-img {
  margin: 20px 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .people .member .member-img {
    margin: 0 60px;
  }
}

.people .member .member-img img {
  position: relative;
  z-index: 1;
}

.people .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.people .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.people .member .member-img .social a:hover {
  color: var(--accent-color);
}

.people .member .member-info {
  margin-top: 12px;
}

.people .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.people .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.people .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.people .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
  background-color: #fff;
}
