/* Default font: Poppins, sans-serif */
/* Headings font: Georgia, serif */

body {
    font-family: Poppins, sans-serif;
}

div.container {
    max-width: 1150px;
    margin: 0 auto;
}

.btn {
    letter-spacing: 3px;
    padding: 10px 40px !important;
    font-size: 1.6rem !important;
    font-weight: 600;
}

.bg-primary {
    color: white;
    background-color: #92278F !important;
}

.bg-gray {
    background-color: rgb(239, 239, 239) !important;
}

.text-primary {
    color: #92278F !important;
}

.btn-secondary {
    color: black;
    background-color: #F8D613;
    border: 2px solid #F8D613;
    border-radius: 0px;
    font-family: Poppins, sans-serif;
}

.btn-secondary:hover {
    color: black;
    background-color: #caaf10;
    border: 2px solid #caaf10;
}

ul.dashes li {
    font-weight: 500;
    font-size: 1.4rem;
    list-style: '- ';
    list-style-position: inside;
    margin-bottom: 1rem;
}

ul.dashes-bold > li {
    font-size: 1.6rem !important; 
}

p {
    letter-spacing: 1px;
    font-size: 1.4rem;
    line-height: 1.8rem;
}

h1 {
    font-family: Georgia, serif;
    font-weight: 600;
    font-style: italic;
    font-size: 4.5rem;
}

h1.step-number {
    font-size: 3.6em;
    font-weight: 500;
}

h2 {
    font-family: Georgia, serif;
    font-weight: 500;
    font-size: 3.5em;
    font-style: italic;
    margin-bottom: 1rem;
}

h3 {
    font-family: Poppins, sans-serif;
    font-size: 2.7rem;
}

h4 {
    font-family: Georgia, serif;
    font-weight: 600;
    font-size: 2em;
    font-style: italic;
}

h5 {
    color: #92278F;
    font-weight: 600;
    font-size: 2.6rem;
    font-variant-caps: all-small-caps;
    letter-spacing: 10px;
}

h6 {
    font-family: Georgia, serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.6rem;
    margin-top: 10px;
    margin-bottom: 2rem;;
}

div.bar {
    height: 20px;
    border-bottom: 3px solid #F8D613;
    margin: 0px 3rem 1rem 3rem;
}

div.banner-purple > img {
    display: none;
}

/* Hide banner image below 1265px */
@media (min-width: 1265px) {
    div.banner-purple > img {
        display: block;
        width: 100%;
        height: auto;
    }
    div.banner-purple > .container {
        margin-top: -30%;
    }
}

h1 > span.sans {
    font-family: Poppins, sans-serif;
    font-style: normal;
}

h1.heading-responsive {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
}

div.container-video {
    background-image: url('/static/bcl03.jpg');
    background-size: 100% auto; /* scales width to 100%, height auto */
    background-repeat: no-repeat; /* prevents tiling */
    background-position: top left; /* or center center, etc. */
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio = 9 / 16 = 0.5625 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1rem solid #92278F;
  border-radius: 25px;
}

span.highlight {
    background-color: #F8D613;
    padding: 0px 10px;
    font-weight: 600;
}

span.segment-brief {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 800;
    margin-right: 0.4rem;
}

span.segment-case {
    font-style: normal;
    font-family: Poppins, sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    margin-right: 0.4rem;
}

span.segment-lex {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-transform: capitalize;
    font-weight: 800;
}

button.navbar-toggler {
    border: none;
    background-color: transparent;
    font-weight: bold;;
}

/* Logo should be small on small screens */
@media (max-width: 600px) {
    nav.navbar > div.container > a.navbar-brand {
        width: 220px !important;
    }
}