/**
* Template Name: Sailor - v4.7.0
* Template URL: https://bootstrapmade.com/sailor-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Raleway", "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Raleway",  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: #5d57f4; /* 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. */
}

/* 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: #5d57f4; /* 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: #5d57f4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
 font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #4f6b80;
  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 {
  font-family: "Raleway", sans-serif;
}

h4 {color: #2B499E; font-size: 32px; font-weight: bold }
h3 {color: #aa8f7d; font-size: 40px!important;line-height: 45px!important; text-align: center}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(23, 59, 74, 1);
  color: var(--default-color);
  background-color: var(--background-color);

  padding: 0;
  transition: all 0.5s;
  z-index: 997;

  position: relative;
  height: 110px;   /* navy bar height */
}
@media (min-width: 1200px) {
  .header .container {
    height: 90px;
    display: flex;
    align-items: center;
  }
}
.header .navbar {
    height: 80px;
    display: flex;
    align-items: center;
}

.header .logo {
    position: absolute;
    left: 30px;
    top: -3px;
    z-index: 1000;
}

.header .logo img {
     height: 195px;  
    width: auto;
    max-height: none;
    margin: 0;
  margin-right: 8px;
}

.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: 360px) {
    .header .logo img {
  max-height: 55px;
  margin-right: 8px;
}
}

@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);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
.header .navmenu {
  position: absolute;
  right: 30px;
  top: 0;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0;
}

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 600;
    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: #d8b978;
  }

  .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) {

  .header {
    height: 80px;
    padding: 0;
    position: relative;
  }

  /* Logo */
  .header .logo {
    position: absolute;
    left: 20px;
    top: -20px;
    z-index: 10000;
  }

  .header .logo img {
    height: 160px;
    width: auto;
    max-height: none;
    margin: 0;
  }

  /* Hamburger */
  .mobile-nav-toggle {
    position: absolute !important;
    right: 20px;
    top: -10px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: 36px;
    line-height: 1;
    z-index: 10001;
  }

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

  /* Hidden menu */
  .navmenu ul {
    display: none;
    list-style: none;

    position: fixed;
    top: 110px;
    left: 20px;
    right: 20px;
    bottom: 20px;

    padding: 15px 0;
    margin: 0;
    border-radius: 8px;

    background-color: #173b4a;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;

    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  }

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #8fb3ff;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    margin-left: 5px;
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    padding: 5px 0;
    margin: 0 20px;
    background-color: rgba(255, 255, 255, 0.08);
    border: none;
    box-shadow: none;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

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

  /* Dark overlay */
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    transition: 0.3s;
  }

  /* Show menu */
  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  /* X when menu is open */
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    top: 5px;
    right: 20px;
    font-size: 38px;
    z-index: 10002;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #000000;
  background-color: #D0DDE3;
  font-size: 15px;
  text-align: center
}

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




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

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

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

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

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

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




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 30px 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}

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

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 400;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}
.bolder {
    font-weight: bold !important;
    color: #D8B978 !important;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 1px 0;
    min-height: 25px;
    margin-top: 110px;
    background-image: linear-gradient(white, #f5f5f5);
}
.breadcrumbs h3 {
  padding-top: 50px;font-size: 32px;
  font-weight: 500;
  margin: 0;
color: #ffffff
}
.breadcrumbs h3 a{
  padding-top: 60px;font-size: 32px;
  font-weight: 500;
  margin: 0;
text-shadow: 1px 1px 4px #ffffff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 110px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h2 {
    margin-bottom: 10px;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
#bg-image
--------------------------------------------------------------*/
section#bg-image { padding: 1px 0 1px 0;}
.bg-image {
	padding: 1px 0;
  background: #f8f9fa url(../img/bg-page.jpg) no-repeat center center;
  min-height: 220px;
  margin-top: 1px;
	background-size: cover}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:flex-start;

max-width:1100px;

margin:auto;

padding:25px 0;

}



.footer-copy{

text-align:left;

font-size:14px;

color:#666;

}

.searchbox{

max-width:300px;

padding:10px 14px;

border-radius:6px;

border:1px solid #d7d7d7;

}


footer h6{

font-weight:600;

color:#243b72;

}


footer .btn-primary{

background:#243b72;

border-color:#243b72;

}


footer .btn-primary:hover{

background:#1d315e;

border-color:#1d315e;

}

/* ==============================
   MIRACLE MILE HOMEPAGE
   ============================== */

.home-intro {
  padding: 80px 0 75px;
  background: #fff;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #2B499E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.intro-copy h1 {
  color: #263d76;
  font-size: 44px;
  line-height: 1.12;
  margin-bottom: 22px;
}

.intro-copy .lead {
  color: #444;
  font-size: 19px;
  line-height: 1.7;
  max-width: 650px;
}

.intro-copy p {
  color: #666;
  line-height: 1.75;
}

.intro-photo {
  height: 390px;
  overflow: hidden;
 
}

.intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}



/* Featured community section */

.community-feature {
  background: #eef2f7;
}

.feature-photo {
  height: 470px;
  overflow: hidden;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  height: 100%;
  padding: 75px 9%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.feature-copy h2 {
  color: #263d76;
  font-size: 35px;
  margin-bottom: 20px;
}

.feature-copy p {
  color: #555;
  max-width: 550px;
  line-height: 1.8;
  font-size: 17px;
}

.feature-link {
  margin-top: 12px;
  color: #2B499E;
  font-weight: 700;
  text-decoration: none;
}

.feature-link:hover {
  color: #172d68;
}


/* Cards */

.association-links {
  padding: 80px 0;
  background: #f7f8fa;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading h2 {
    color: #263d76;
    font-size: 34px;
    margin-bottom: 10px;
}
.section-heading.light-heading h2 {
    color: #ffffff !important;
}

.section-heading.light-heading .eyebrow {
    color: rgba(255, 255, 255, 0.75) !important;
}

.section-heading.light-heading p {
    color: rgba(255, 255, 255, 0.75) !important;
}


.section-heading p {
  color: #666;
  line-height: 1.7;
}

.info-card {
  display: block;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 5px 20px rgba(0,0,0,.07);
  transition: all .3s ease;
}

.info-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0,0,0,.14);
}

.card-photo {
  height: 180px;
  overflow: hidden;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.info-card:hover .card-photo img {
  transform: scale(1.06);
}

.card-body {
  padding: 27px 28px 30px;
}

.card-icon {
  color: #2B499E;
  font-size: 28px;
  margin-bottom: 12px;
}

.card-body h3 {
  color: #263d76;
  font-size: 22px;
  margin-bottom: 12px;
}

.card-body p {
  color: #666;
  line-height: 1.65;
  margin-bottom: 18px;
}

.card-body span {
  color: #2B499E;
  font-weight: 700;
}


/* Gallery */

.photo-gallery-preview {
  padding: 85px 0;
  background: #263d76;
}

.light-heading .eyebrow,
.light-heading h2,
.light-heading p {
  color: #fff;
}

.light-heading p {
  opacity: .82;
}

.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 190px 190px;
  gap: 12px;
}

.gallery-photo {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-photo:hover img {
  transform: scale(1.06);
}

.gallery-large {
  grid-row: 1 / 3;
}

.gallery-button {
  text-align: center;
  margin-top: 32px;
}

.gallery-button a {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.gallery-button a:hover {
  background: #fff;
  color: #263d76;
}


/* Mobile */

@media (max-width: 991px) {
  .intro-copy h1 {
    font-size: 36px;
  }

  .feature-photo {
    height: 360px;
  }

  .feature-copy {
    padding: 55px 30px;
  }
}

@media (max-width: 767px) {
  .home-intro {
    padding: 55px 0;
  }

  .intro-copy h1 {
    font-size: 31px;
  }

  .intro-copy .lead {
    font-size: 17px;
  }

  .intro-photo {
    height: 280px;
  }

  .feature-photo {
    height: 280px;
  }

  .feature-copy {
    padding: 45px 25px;
  }

  .feature-copy h2 {
    font-size: 29px;
  }

  .association-links,
  .photo-gallery-preview {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 170px 170px 170px;
  }

  .gallery-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    padding: 0 !important;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    z-index: 0;
}

/* Put anything sitting over the video above it */
.hero .container {
    position: relative;
    z-index: 2;
}

.video-overlay {
    position: absolute;
    background-color: rgba(0,0,0,0);
    top: 0;
    left: 0;
    bottom: 7px;
    width: 100%;
}
/* =========================================
   BOARD PAGE HERO
========================================= */

.board-hero {
    background: linear-gradient(
        135deg,
        #132b52 0%,
        #1f4788 55%,
        #244c91 100%
    );
    padding: 110px 0 75px;
    color: #fff;
}

.board-hero-content {
    max-width: 850px;
}

.board-hero .eyebrow {
    color: rgba(255,255,255,0.65);
}

.board-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    margin: 12px 0 18px;
    letter-spacing: -1px;
}

.board-hero p {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin: 0;
}


/* =========================================
   EYEBROW
========================================= */

.eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8c7748;
}


/* =========================================
   BOARD SECTION
========================================= */

.board-section {
    padding: 80px 0;
}

.advisors-section {
    background: #f6f7f9;
    border-top: 1px solid #e5e7eb;
}

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #1d3557;
    margin: 10px 0 12px;
}

.section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #687385;
    line-height: 1.7;
}


/* =========================================
   BOARD TABLE
========================================= */

.board-table {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #d9dde3;
}

.board-row {
    display: grid;
    grid-template-columns: 1fr 220px;
    align-items: center;
    min-height: 76px;
    padding: 0 25px;
    border-bottom: 1px solid #d9dde3;
    transition: background-color 0.2s ease;
}

.board-row:hover {
    background-color: rgba(30, 60, 100, 0.03);
}

.board-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: #243b5a;
}

.board-role {
    font-size: 0.8rem;
    color: #8c7748;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    text-align: right;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .board-hero {
        padding: 60px 0;
    }

    .board-section {
        padding: 60px 0;
    }

    .board-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 20px 10px;
    }

    .board-role {
        text-align: left;
    }

}