/* jubilat and roboto-condensed font */
@import url("https://use.typekit.net/rtd0xra.css");
/* oswald font */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/* Adobe Fonts */
@import url("https://use.typekit.net/gfh4svy.css");

:root {
    /* Colors */
    --purple: 70,29,124;
    --purple-light: 125, 112, 145;
    --purple-200: #9C7DC5;
    --purple-700: #271145;
  
    --gold: 253, 208, 35;
    --gold-light: 217, 182, 78;
    --light-gold-100: #F9F8F0;
    --gold-dark: 202, 165, 59;
    
    --grey-light: 240, 240, 240;
    --gray-300: #D6D6D6;
    --grey: 118, 118, 118;
    --grey-dark: 71,71,71;
    
    --error: 251, 129, 129;
    --error-light: 255, 250, 250;
    
    /* Font Families */
    --font-primary: roboto, sans-serif;
    --font-heading: jubilat, serif;
    --font-button: proxima-nova, sans-serif;
    
    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-transform: transform var(--transition-base);
  }
/* Global */
html {
  scroll-behavior: smooth;
}
body{
  font-size: 16px;
  color: rgba(var(--grey-dark), 1);
  background-color: #fff;
  overflow-x: hidden;
}
h1{
  font-size: 2.5rem;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 5px;
}
#pageHeader h1 span.filter-name{
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 10px 0;
}
h2.custom-filter{
  font-size: 1.2rem;
  font-weight: 500;
}
@media only screen and (max-width: 500px) {
  h2.custom-filter{
    font-size: 1rem;
    font-weight: 500;
  }
}
h2{ font-size: 2rem; }
h3{ font-size: 1.8rem; }

@media only screen and (max-width: 991px) {
  h1{ font-size: 2.2rem; }
  h2{ font-size: 1.8rem; }
  h3{ font-size: 1.6rem; }
}
@media only screen and (max-width: 767px) {
  h1{ font-size: 2rem; }
  h2{ font-size: 1.4rem; }
  h3{ font-size: 1.2rem; }
}
img{
  max-width: 100%;
  height: auto;
  display: block;
}
a, a:link, a:visited, a:active {
  text-decoration: none;
  color: rgba(var(--purple), 1);
}
a:hover{
  color: rgba(var(--purple), 0.8);
  text-decoration: underline;
}
.btn{ 
  border: 2px solid transparent; 
  font-size: 16px;
  font-weight: 700;
  min-width: 180px;
  padding: 10px 12px;
  border-radius: 4px;
}
.btn.btn-outline-dark,
.btn.btn-outline-dark:active,
.btn.btn-outline-dark:visited{
  color: rgba(var(--purple), 1);
  border-color: rgba(var(--purple), 1);
}
.btn.btn-outline-dark:hover{
  color: #fff;
  border-color: rgba(var(--purple), 0.8);
  background-color: rgba(var(--purple), 0.8);
}
.btn.btn-solid,
.btn.btn-solid:active,
.btn.btn-solid:visited{
  color: #fff;
  background-color: rgba(var(--purple), 1);
  border-color: rgba(var(--purple), 1);
}
.btn.btn-solid:hover{
  background-color: rgba(var(--purple), 0.8);
  border-color: rgba(var(--purple), 0.8);
}
.btn.btn-primary,
.btn.btn-primary:active,
.btn.btn-primary:visited{
  color: #fff;
  background-color: rgba(var(--purple), 1);
  border-color: rgba(var(--purple), 1);
}
.btn.btn-primary:hover{
  background-color: rgba(var(--purple), 0.8);
  border-color: rgba(var(--purple), 0.8);
}
.btn.btn-secondary,
.btn.btn-secondary:active,
.btn.btn-secondary:visited{
  color: #fff;
}
.btn.btn-gold,
.btn.btn-gold:active,
.btn.btn-gold:visited{
  color: rgba(var(--purple), 1);
  font-weight: 600;
  background-color: rgba(var(--gold), 1);
  border-color: rgba(var(--gold), 1);
}
.btn.btn-gold:hover{
  background-color: rgba(var(--gold), 1);
  border-color: rgba(var(--gold), 1);
}
.btn.btn-outline-gold,
.btn.btn-outline-gold:active,
.btn.btn-outline-gold:visited{
  color: rgba(var(--gold), 1);
  border-color: rgba(var(--gold), 1);
  text-transform: uppercase;
}
.btn.btn-outline-gold:hover{
  color: rgba(var(--purple), 0.8);
  border-color: rgba(var(--gold), 0.8);
  background-color: rgba(var(--gold), 0.8);
}
.btn.btn-outline-gold-purple,
.btn.btn-outline-gold-purple:active,
.btn.btn-outline-gold-purple:visited{
  /* color: rgba(var(--gold), 1); */
  color: rgba(var(--purple), 1);
  border-color: rgba(var(--gold), 1);
  text-transform: uppercase;
}
.btn.btn-outline-gold-purple:hover{
  color: rgba(var(--purple), 0.8);
  border-color: rgba(var(--gold), 0.8);
  background-color: rgba(var(--gold), 0.8);
}


/* Container */
@media only screen and (min-width: 1440px) {
  .container{ 
    /* max-width: 1340px; */
    max-width: 1430px;
  }  
}
@media only screen and (max-width: 575px) {
  .container{
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* D1 Overrides */
#requiredFieldInstruction{ 
  display: none; 
}
#mainContent{ margin: 4rem 0; }
#contentHeader {
  border-bottom: none;
  padding-bottom: 0;
}
#pageHeaderActions{
  display: none;
}
#courseSearchResult_container .nav{
  display: none;
}
#courseSearchResult{
  margin-top: 1rem;
}
.tableGridTabPaneGrid .hiddenOnTabPaneGrid{
  display: block;
}
.nav-tabs,
.badge-info{
  display: none;
}
.hiddenOnTabPaneGrid{
  display: block !important;
}
ul.grid{
  margin-top: 2rem;
}
.variable-content{
  margin-bottom: -1px;
}
#footer2Sub3 > div{
  margin-top: 3rem;
}
.card.panel-default,
.card.card-info{
  margin: 1rem 0;
}
#contentModule1 h5{
  display: none;
}
.story-intro{
  margin: 1.5rem 0 3rem 0;
}
.story-image{
  max-width: 600px;
}
#contentModule1 h3{
  display: none;
}
.fullStoryLinkContainer{
  text-align: left;
  margin: -2rem 0 2rem 0;
}
.fullStoryLinkContainer a:link,
.fullStoryLinkContainer a:active,
.fullStoryLinkContainer a:visited,
.fullStoryLinkContainer a:hover{
  color: #ffffff;
}
#buttonCourseInquiry{
  margin-top: 1rem;
}
/* #cartCount {
  font-size: 10px;
  margin-top: 0;
} */
.cartItemFeaturedImageContainer {
  display: none;
}
.modal-dialog{
  margin-top: 300px;
}
#homeHighlightsSection + div{
  display: none;
}
.programStream{
  padding-left: 3rem !important;
}
.modal-footer #buttonConfirm{
  margin: 0 0 20px 10px;
}
#buttonBacktoHeadlines{
  display: none; 
}
#variableContentBlockPG0034{
  display: none;
}

#certificateBundleInfo > div,
#certificateStreams > div,
#courseProfileSections > div{
  background-color: #FAF6E5;
}
#certificateBundleInfo > div > h2,
#certificateStreams > div > h2{
  color: rgba(var(--purple), 1);
  font-size: 1.6rem;
}
#certificateBundleInfo > div > h2 span,
#certificateStreams > div > h2 span{
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 10px;
  color: rgba(var(--grey-dark), 1);
}

.cta-form-bar{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background:rgba(var(--purple), 1);
  margin-bottom: 2rem;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cta-form-bar h3{
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0;
}
.cta-form-bar .btn{
  min-width: 0;
}
.cta-form-bar .btn.btn-outline-light{
  border: 2px solid #fff;   
}
.section .sectionScheduleType .labelSpanStyle{
  display:none
  }
#contentModule7 > div > div > div{
  width: 50%;
}
@media only screen and (max-width: 991px) {
  #contentModule7 > div > div > div{
    width: 100%;
  }
}
.cc-message a,
.cc-message a:hover,
.cc-message a:visited{
  color:#EEC12A;
}
.certificateNumRequired{
  display: none;
}


#loginNameWrapper{
  display: none;
}
#logoutLinkWrapper {
  max-width: 100%;
}

@media only screen and (max-width: 991px) {
  
  #logoutLinkWrapper:before, .conferenceLogoutButtonWrapper:before {
    content: " ";
    display: none !important;
  }
  .loginInfo.d-none{
    display: block !important;
  }
  #logoutLinkWrapper{
    margin-bottom: 20px;
  }
  #loginInfo{
    text-align: left;
    margin-bottom: 20px !important;
  }
}

/* Chatbot z-index */
._2ChX4GFAl1-UBiWknYZyEQ {
  z-index: 900 !important;
}


/* utility */
.embed-responsive{
  max-width: 600px;
}
.accordion .card{
  margin-bottom: 0;
}
.registration-message{
  background-color: rgb(226, 99, 99);
  color: black;
  padding: 1rem;
  text-align: center;
}
/* .alert{
  background-color: red;
  color: #fff;
  position: fixed;
  top: 0;
  z-index: 100;
}
.alert a{
  color: #fff;
}
.alert a:hover{
  color: #fff;
} */
.form-row.buttons.shoppingCartButtonsTop{
  display: none;
}
.labelSpanStyle{
  font-weight: bold;
}
.certBundleApplyContainer > button.btn.btn.btn-primary,
.courseSectionEnrollmentActions > button.btn.btn.btn-primary{
  color: #fff;
  background-color: blue !important;
  border-color: blue !important;
}
#pageHeader h1{
  position: relative;
  border: none;
  margin-bottom: 1rem;
}
#pageHeader h1 span.courseCode{
  display: block;
  font-size: 1.2rem;
  padding-top: 10px;
}
#pageHeader h1 span.nameAndCodeSeparator{
  display: none;
}
#searchBreadcrumb{
  display: none;
}
#courseProfileInstructionMethods{
  display: none;
}
#certificateProfileCategory{
  display: none;
}
/* Cart properties */
#cartInfo{
  margin-right: 10px;
}
.glyphicon-shopping-cart {
  color: rgba(var(--grey-dark), 1);
}
/* Login dropdown properties */
#loginDropdownMenuLink {
  color: rgba(var(--grey-dark), 1);
}
/* Main page background */
#pageContainer {
  background-color: #fff;
}
#mainContentWrapper {
  background-color: #fff;
}


/* HEADER & NAV */
#header1Wrapper{
  background-color: #f5f5f5 !important;
}
#header1{
  background-color: #f5f5f5 !important;
  padding: 0 !important;
}
.navbar{
  padding: 0;
}
.navbar a{
  font-size: 16px;
  font-weight: 700;
  font-family: proxima-nova, sans-serif;
  font-style: normal;  
}
.navbar a:hover {
  text-decoration: none;
}
.navbar.navbar-dark.bg-dark {
  background: #f5f5f5 !important;
}
.main-logo{
  /* outline: solid green 1px; */
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  padding: 15px 0 15px 15px;
}
.main-logo-img{
  width: auto;
  height: 22px;
}
.main-logo-title{
  margin: 0;
  padding: 0;
}
.main-logo-title a{
  font-family: "roboto-condensed", sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
.main-logo-title a:hover{
  opacity: 0.8;
}
.main-logo-title.desktop{
  display: none;
}
.main-logo-title-divider{
  display: none;
}
.main-nav{
  background-color: #fff;
  padding: 20px;
}
.main-sub-nav{
  display: none;
}
.pipe-divider{
  display: none;
}
.navbar {
  position: relative;
}
.navbar-toggler {
  order: 3;
  padding: 15px 15px 15px 0;
  margin-left: 20px;
}
.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 8px;
  margin-left: 6px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212%22%20height%3D%228%22%20viewBox%3D%220%200%2012%208%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M5.66527%207.14234L0.247925%201.725L1.64027%200.332655L5.66527%204.35766L9.69027%200.332655L11.0826%201.725L5.66527%207.14234Z%22%20fill%3D%22%23461D7C%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
}
.nav-link.dropdown-toggle::after, .dropdown-toggle::after, .search-button.dropdown-toggle::after, .headerStudentLoginDropdownLink.dropdown-toggle::after {
  transition: transform 0.2s ease;
  display: inline-block;
}
.dropdown.show > .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}
.browse-catalog-dropdown.show > .dropdown-toggle::after, .search-menu-dropdown.show > .search-button.dropdown-toggle::after, .headerStudentLoginContainer.show > .headerStudentLoginDropdownLink.dropdown-toggle::after {
  transform: rotate(180deg);
}
.navbar-collapse {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
}
.navbar-collapse.show {
  display: block;
}
.navbar > .navbar-toggler{
  position: relative;
  z-index: 1001;
}
.navbar-dark .nav-link,
.navbar-dark a {
  color: rgba(70, 29, 124, 1) !important;
}
.navbar-dark .nav-link:hover,
.navbar-dark a:hover {
  color: rgba(70, 29, 124, .8);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(70, 29, 124)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}
.navbar-dark .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(70, 29, 124, 0.25);
}
.nav-item.dropdown .dropdown-menu{
  background: #F8F2FF;
  border: none;
  border-radius: 0;
  padding: 15px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.nav-item.dropdown.show .dropdown-menu {
  display: flex;
}
.nav-item.dropdown .dropdown-menu .dropdown-item{
  padding: 0;
}
nav .dropdown-menu a.dropdown-item {
  font-weight: normal;
}
.nav-link {
  padding: 9px 25px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
  display: inline-block;
}
.navbar .nav-link:hover {
  color: #9383ad;
}
.search-menu-dropdown .search-button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
}
.search-menu-dropdown .search-button::after {
  margin-left: 0.25rem;
  border-top-color: var(--purple);
}
.search-menu-dropdown .search-icon {
  width: 25px;
  height: 25px;
}
.search-menu-dropdown .search-button:hover,
.search-menu-dropdown .search-button:focus {
  background: none;
  box-shadow: none;
}
.search-menu-dropdown .search-button:focus {
  outline: none;
}
.search-menu-dropdown .search-button:hover::after,
.search-menu-dropdown .search-button:focus::after {
  border-top-color: var(--purple);
}
.search-menu-dropdown .btn-secondary.dropdown-toggle {
  color: var(--purple) !important;
}
.browse-catalog-dropdown .dropdown-toggle {
  background-color: rgb(var(--purple));
  font-family: proxima-nova, sans-serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .15em;
  border: none;
  padding: 0.8rem 1rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.browse-catalog-dropdown .dropdown-toggle .browse-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.browse-catalog-dropdown .dropdown-toggle:hover,
.browse-catalog-dropdown .dropdown-toggle:focus {
  background-color: rgba(var(--purple), 0.9);
  color: #fff;
  box-shadow: none;
}
.browse-catalog-dropdown .dropdown-toggle::after {
  margin-left: 0.5rem;
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M10.5 13.6423L5.08264 8.225L6.47499 6.83266L10.5 10.8577L14.525 6.83266L15.9173 8.225L10.5 13.6423Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.search-menu-dropdown .dropdown-menu {
  right: 0;
  left: auto;
  margin-top: 10px;
}
.browse-catalog-dropdown .dropdown-menu,
.search-menu-dropdown .dropdown-menu{
  padding: 20px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  border: 1px solid #F5F5F5;
  background: #FFF;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
}
.browse-catalog-dropdown.show .dropdown-menu,
.search-menu-dropdown.show .dropdown-menu{
  display: flex;
}
.browse-catalog-dropdown .dropdown-menu .dropdown-item,
.search-menu-dropdown .dropdown-menu .dropdown-item{
  padding: 5px;
}
.browse-catalog-dropdown .dropdown-menu {
  width: 100%;
}
#cart-source{
  display: none;
}
#cartInfo {
  margin: 10px 0 0 0;
}
#cartInfo .glyphicon-shopping-cart {
  font-size: 20px;
}
#cartInfo .glyphicon-shopping-cart:before {
  content: "\f07a";
  color: rgba(var(--purple), 1);
}
.moodle-link::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 18px;
  margin-left: 3px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='18' viewBox='0 0 19 18' fill='none'%3E%3Cpath d='M3.96907 15.9024C3.49682 15.9024 3.09438 15.7361 2.76175 15.4035C2.42913 15.0709 2.26282 14.6684 2.26282 14.1962V3.80381C2.26282 3.33156 2.42913 2.92912 2.76175 2.5965C3.09438 2.26387 3.49682 2.09756 3.96907 2.09756H9.16526V3.80381H3.96907V14.1962H14.3614V9H16.0677V14.1962C16.0677 14.6684 15.9014 15.0709 15.5688 15.4035C15.2361 15.7361 14.8337 15.9024 14.3614 15.9024H3.96907ZM7.57919 11.775L6.39025 10.5861L13.1725 3.80381H10.6653V2.09756H16.0677V7.5H14.3614V4.99275L7.57919 11.775Z' fill='%23AA9BC1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center -2px;
}
.dropdown-item:hover, .dropdown-item:focus, .dropdown-menu .subMenu > li > a:hover, .dropdown-menu .subMenu > li > a:active, .dropdown-menu .subMenu > li > a:focus {
  background-color: #F8F2FF !important;
}
.mobile-logo-title-container{
  position: relative;
  flex: 0 0 100%;
  order: 4;
  padding: 10px 15px;
  border-top: 1px solid #dee2e6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: #fff;
  border-bottom: 1px solid #CACACA;
}
.mobile-logo-title-container-right{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

@media (min-width: 992px) {
  .main-logo{
    padding: 0;
  }
  .main-logo-title{
    display: block;
    margin: 0;
    padding: 0;
  }
  .main-logo-title.desktop{
    display: block;
  }
  .main-logo-title-divider{
    display: block;
    width: 2px;
    height: 22px;
    background-color:#999;
    opacity: 0.6;
    margin: 0 10px;
  }
  .mobile-logo-title-container{
    display: none;
  }
  .main-logo-title a{
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
  }
  .main-sub-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    order: 2;
    margin-left: auto;
  }
  .navbar {
    max-width: 1430px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 20px 15px;
  }
  .navbar > .main-logo,
  .navbar > .main-sub-nav,
  .navbar > .navbar-toggler {
    flex: 0 0 auto;
  }
  .navbar > .collapse.navbar-collapse.main-nav {
    flex: 0 0 100%;
    order: 3;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
  }
  .main-nav{
    position: relative;
    margin-top: 20px;
    margin-bottom: -20px;
    padding: 20px 0;
  }
  .main-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background-color: #fff;
    transform: translateX(-50%);
    z-index: -1;
    border-bottom: 1px solid #CACACA;
  }
  .main-nav .navbar-nav {
    flex-direction: row;
    width: 75%;
    justify-content: space-between;
  }  
  .main-nav .navbar-nav .nav-item {
    margin-right: 10px;
  }
  .navbar-dark .nav-link:hover,
  .navbar-dark a:hover {
    color: rgba(70, 29, 124, 1);
  }
  /* a.nav-link{
    padding: 0 !important;
  } */
  .nav-link:hover {
    background-color: #F8F2FF;
    color: rgb(var(--purple));
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .9em;
    padding-left: .9em;
  }
  .nav-item.dropdown .dropdown-menu{
    background: #fff;
    border-radius: 5px;
    border: 1px solid #F5F5F5;
    background: #FFF;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
  }
  .pipe-divider{
    display: block;
    width: 1px;
    height: 45px;
    background-color: #CACACA;
  }
  .header-login-link {
    display: flex;
    padding: 5px 22px;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    border: 1px solid #461D7C;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  #loginInfo .dropdown-menu {
    margin-top: 10px;
    padding: 10px;
    text-align: left;
  }
  .header-login-link:hover {
    background-color: #f8f2ff;
  }
  
  .header-login-link:hover a {
    text-decoration: none;
  }
  .header-login-link .dropdown-menu .dropdown-item {
    color: rgb(var(--purple)) !important;
    background-color: white !important;
    border-radius: 5px;
  }
  
  .header-login-link .dropdown-menu .dropdown-item:hover {
    background-color: #F8F2FF !important;
  }
  .header-login-link a {
    color: rgb(var(--purple));
    text-decoration: none;
  }
  .header-login-link:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M5.66527 7.14234L0.247925 1.725L1.64027 0.332655L5.66527 4.35766L9.69027 0.332655L11.0826 1.725L5.66527 7.14234Z' fill='white'/%3E%3C/svg%3E");
  }
  .search-menu-dropdown .search-icon {
    width: 30px;
    height: 30px;
  }
  .browse-catalog-dropdown .dropdown-menu,
  .search-menu-dropdown .dropdown-menu
  {
    padding: 15px;
  }
  .nav-item.dropdown .dropdown-menu .dropdown-item,
  .browse-catalog-dropdown .dropdown-menu .dropdown-item,
  .search-menu-dropdown .dropdown-menu .dropdown-item
  {
    padding: 5px;
  }
  .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
  .browse-catalog-dropdown .dropdown-menu .dropdown-item:hover,
  .search-menu-dropdown .dropdown-menu .dropdown-item:hover{
    background: #F8F2FF;
    border-radius: 5px;
  }
  .browse-catalog-dropdown .dropdown-menu {
    right: 0;
    left: auto;
    margin-top: 10px;
    width:auto;
  }
}
/* END HEADER & NAV */

/* FOOTER */
footer {
  background-color: rgba(var(--purple), 1) !important;
  color: rgba(var(--grey-light), 1);
  padding: 0;
}
.footer-logo img{
  width: 360px;
  margin: 0 auto 4rem auto;
}
.footer-box{
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  grid-template-areas: 'col-1 col-2 col-3 col-4 col-5 col-6';
  grid-gap: 2rem;
  color: rgb(217, 217, 217);
}
.footer-box h4{
  margin: 0 0 1rem 0;
  color: #fff;
  font-size: 1rem;
}
.footer-box p{
  margin: 0 0 0.5rem 0;
}
.footer-box a:link,
.footer-box a:active,
.footer-box a:visited{
  color:rgb(217, 217, 217);
}
.footer-box a:hover{
  color: rgba(var(--gold), 1);
}


.footer-col-1{ grid-area: col-1; }
.footer-col-2{ grid-area: col-2; }
.footer-col-3{ grid-area: col-3; }
.footer-col-4{ grid-area: col-4; }
.footer-col-5{ grid-area: col-5; }
.footer-col-6{ grid-area: col-6; }

.footer-col-1 p,
.footer-col-2 p,
.footer-col-3 p,
.footer-col-4 p,
.footer-col-5 p,
.footer-col-6 p{
  margin: 0 0 1rem 0;
}
#footerNav .copyright{
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.8;
}



@media only screen and (max-width: 991px) {
  .footer-box{
    grid-template-areas: 
      'col-1 col-2 col-3'
      'col-4 col-5 col-6';
  }
}
@media only screen and (max-width: 767px) {
  .footer-box{
    grid-template-areas: 
      'col-1 col-2'
      'col-3 col-4'
      'col-5 col-6';
      grid-gap: 3rem;
  }
}


/*********************/
/* Main Image Banner */
/*********************/
.main-image-container {
  height: 440px;
  position: relative;
}
.main-image-container img {
  width: 100%;
}
.cropped-main-image{
  height: 440px;
  object-fit: cover;
  object-position: top center;
}
.main-image-overlay{
  position: absolute;
  width: 100%;
  height: 440px;
  top:0;  
  display: flex;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}
.main-image-overlay.home-page{
  border-bottom: 5px solid rgba(var(--gold), 1);
}
.main-image-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}
.main-image-text h1{
  font-size: 3.2rem;
  color: #fff;
  text-shadow: 2px 2px rgba(0,0,0,0.25);
  letter-spacing: 1px;
  width: 80%;
  text-align: center;
  border: none;
  padding: 0;
}
.main-image-text h1 span{
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .main-image-text h1{
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 991px) {
  .main-image-container,
  .cropped-main-image,
  .main-image-overlay{
    height: 360px;
  }
  .main-image-text h1{
    font-size: 2.5rem;
  }
  .main-image-text h1 span{
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 767px) {
  .main-image-container,
  .cropped-main-image,
  .main-image-overlay{
    height: 300px;
  }
  .main-image-text h1{
    width: 100%;
    font-size: 2rem;
  }
  .main-image-text h1 span{
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .main-image-text h1{
    font-size: 1.5rem;
  }
  .main-image-text h1 span{
    font-size: 0.9rem;
  }
}

/*********************/
/*   Homepage        */
/*********************/

/* Main Image */
.main-image-container-2 {
  height: 240px;
  position: relative;
}
.main-image-container-2 img {
  width: 100%;
}
.cropped-main-image-2{
  height: 240px;
  object-fit: cover;
  object-position: center right;
}
.main-image-overlay-2{
  position: absolute;
  width: 100%;
  height: 240px;
  top:0;  
  display: flex;
  background-color: rgba(var(--purple), 0.85);
}
.main-image-overlay-2.home-page{
  border-bottom: 5px solid rgba(var(--gold), 1);
}
.promo-100{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  
  padding: 0;
}
.promo-100 .text-box {
  /* outline: solid red 1px; */
  text-align: center;
}
.promo-100 .text-box h1{
  font-family: "Oswald", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 50px;
  color: #fff;
  text-transform: uppercase;
  border-bottom: none;
  padding: 0;
}
.promo-100 .text-box h1 span{
  background-color: rgb(var(--gold));
  color: rgb(var(--purple));
  display: block;
  width: fit-content;  
  padding: 5px 10px 10px 10px;
  margin: 0 auto;  
  line-height: 50px;
}


@media only screen and (min-width: 768px) {
  .promo-100{
    flex-direction: row;
  }
  .promo-100 .text-box h1{
    font-size: 60px;
  }
  .promo-100 .text-box h1 span{
    display: inline-block;
    padding: 10px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .main-image-container-2,
  .cropped-main-image-2,
  .main-image-overlay-2 {
    height: 300px;
  }
  .promo-100 .text-box h1{
    font-size: 80px;
  }
  .promo-100 .text-box h1 span{
    display: inline-block;
    padding: 5px 10px 10px 10px;
    line-height: 80px;
  }
}

/* Home Intro */
.home-intro-box{
  padding: 3rem 1rem;
  text-align: center;
}
.home-intro-box h2{
  font-size: 40px;
  font-weight: 700;
  color: rgba(var(--purple), 1);
  margin-bottom: 1rem;
}
.home-intro-box .button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 1rem;
}
.home-intro-box .button-container .btn.btn-gold{
  width: 100%;
  max-width: 260px;
}

@media only screen and (min-width: 768px) {
  .button-container {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 992px) {
  .home-intro-box{
    padding: 4rem 1rem;
  }
  .button-container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}




/* Info Blocks */
.info-block{
  display: flex;
  flex-direction: column;
}
.info-block .image-box{
  height: auto;
  overflow: hidden;
}
.info-image-cropped{
  object-fit: contain;
  object-position: top center;
}
.info-block .content-box{
  background-color: #fff;
  padding: 3rem 2rem;
}
.info-block .content-box h3{
  font-size: 1.8rem;
  color: rgba(var(--purple), 1);
}
.info-block .content-box p{
  font-size: 20px;
  padding: 10px 0;
}
.info-block .content-box .button-box{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.info-block .content-box .button-box .btn{
  width: 100%;
  max-width: 260px;
}
.info-block .content-box .button-box .btn .btn-primary{
  float: none !important;
}
@media only screen and (min-width: 768px) {
  .info-block{
    flex-direction: row;    
  }
  .info-block.reverse{
    flex-direction: row-reverse;
  }
  .info-block .image-box{
    width: 50%;
  }
  .info-block .content-box{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
  }
  .info-block.reverse .content-box{
    padding: 0 2rem;
  }
  .info-block .content-box .btn{
    max-width: 200px;
  }
}
@media only screen and (min-width: 1340px) {
  .info-block{
    padding: 0 15px;
    max-width: 1340px;
    margin: 0 auto;
  }
  .info-block .content-box{
    padding: 0 0 0 5rem;
  }
  .info-block.reverse .content-box{
    padding: 0 5rem 0 0;
  }
}

/* Science Fair Block */
.science-fair-block{
  height: 640px;
  position: relative;
  text-align: center;
}
.science-fair-block h2{
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  max-width: 600px;
  margin: 72px 1rem 2rem 1rem;
}
.science-fair-block .cropped-image{
  height: 640px;
  object-fit: cover;
  object-position: top center;
}
.science-fair-block .overlay{
  position: absolute;
  background-color: rgba(var(--purple), 0.5);
  width: 100%;
  height: 640px;
  top:0;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .science-fair-block,
  .science-fair-block .cropped-image,
  .science-fair-block .overlay{
    height: 500px;
  }
  .science-fair-block h2{
    font-size: 42px;
  }
}
@media only screen and (max-width: 619px) {
  .science-fair-block h2{
    font-size: 32px;
  }
}

/* Tiger Stripe Boxes */
.tiger-block{
  width: 100%;
  min-height: 200px;
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  padding: 4rem 0;
  overflow: hidden;
  text-align: center;
}
.tiger-block h2{
  font-size: 40px;
  font-weight: 700;
}
.tiger-block h3{
  font-size: 24px;
  padding-top: 1rem;
}
.tiger-block p{
  font-size: 22px;
  max-width: 800px;
  margin: 1rem auto 2rem auto;
}
.tiger-block .buttons{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem auto;
  padding: 0 2rem;
}
.tiger-block .btn{
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .tiger-block .buttons{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .tiger-block .buttons .btn{
    width: 260px;
  }
}

.tiger-block.purple{
  background-color: rgba(var(--purple), 1);
  background-image: linear-gradient(rgba(var(--purple), .9), rgba(var(--purple), .9)),
  url("/srs/upload/home-stripes-vert.png");
  color: #fff;
  opacity: .95;
}
.tiger-block.gold{
  background-color: rgba(var(--purple), 1);
  background-image: linear-gradient(rgba(var(--gold), .9), rgba(var(--gold), .9)),
  url("/srs/upload/home-stripes-vert.png");
  opacity: .95;
}
@media only screen and (min-width: 768px) {
  .tiger-block.purple{
    background-image: linear-gradient(rgba(var(--purple), .9), rgba(var(--purple), .9)),
    url("/srs/upload/home-stripes-horz.png");
  }.tiger-block.gold{
    background-image: linear-gradient(rgba(var(--gold), .9), rgba(var(--gold), .9)),
    url("/srs/upload/home-stripes-horz.png");
  }
}
.image-grid{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}
.image-grid img{
  width: 100%;
}
.image-grid > div{
  margin: 0 auto;
}
/* .image-grid > div > a,
.image-grid > div > a:link,
.image-grid > div > a:active,
.image-grid > div > a:visited{
  color: #fff !important;
}
.image-grid > div > a:hover{
  color: rgb(var(--gold)) !important;
  text-decoration: none !important;
} */
.image-grid > div > h3 > a,
.image-grid > div > h3 > a:link,
.image-grid > div > h3 > a:active,
.image-grid > div > h3 > a:visited{
  color: #fff !important;
}
.image-grid > div > h3 > a:hover{
  color: rgb(var(--gold)) !important;
  text-decoration: none !important;
}
@media only screen and (min-width: 768px) {
  .image-grid{
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }
  .image-grid > div{
    max-width: 240px;
  }
}
@media only screen and (min-width: 992px) {
  .image-grid{
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Partners */
.partners{
  text-align: center;
  padding: 3rem 2rem;
}
.partners h2{
  font-size: 48px;
  font-weight: 700;
  color: rgba(var(--purple), 1);
  margin-bottom: 2rem;
}
.partners .logos-box{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.partners .logos-box .logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.partners .logos-box .logo img{
  width: 200px;
}








/*******************************/
/*        Form                 */
/*******************************/
.dropdown-form-box{
  position: relative;
}
.show-form-button-area{
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-form-button-container{
  background-color: rgb(var(--gold), 1);
  width: 200px;
  height: 50px;
  color: rgba(var(--grey-dark), 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-form-button-container > button{
  border: none;
  background-color: rgb(var(--gold), 0);
  color: rgba(var(--grey-dark), 1);
  font-weight: 500;
  font-size: 1.3rem;
  width: 200px;
  height: 50px;
  text-align: center;
  position: relative;
}
.show-form-button-container > button::after{
  content: "\f078";
  color: rgba(var(--grey-dark), 1);
  font-size: 1.4rem;
  font-weight: 800;
  top: 8px;
  right: 20px;
  position: absolute;
  font-family: "Font Awesome 5 Free";
}
.show-form-button-container.open > button::after{
  content: "\f077";
  color: rgba(var(--grey-dark), 1);
  font-size: 1.4rem;
  font-weight: 800;
  top: 8px;
  right: 40px;
  position: absolute;
  font-family: "Font Awesome 5 Free";
}
.show-form-button-container::before{
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent rgba(var(--gold), 1) transparent transparent;  
  position: absolute;
  left: -50px;
  top: 0;
}
.show-form-button-container::after{
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 50px 50px 0 0;
  border-color: rgba(var(--gold), 1) transparent transparent transparent;
  position: absolute;
  right: -50px;
  top: 0;
}
.show-form-button-container:hover{
  background-color: rgba(var(--gold), 0.7) !important;
}
.show-form-button-container:hover::before{
  border-color: transparent rgba(var(--gold), 0.7) transparent transparent;
}
.show-form-button-container:hover::after{
  border-color: rgba(var(--gold), 0.7) transparent transparent transparent;
}
.form-panel{
  display: flex;
  background-color: rgba(var(--grey), 0.2);
  max-height: 0;
  transition: all .5s ease-out;
  overflow: hidden;
}
.form-panel.show{
  max-height: 800px;
  transition: all .5s ease-in;
  overflow: hidden;
}
.info-form{
  width: 50%;
  padding: 2rem 0 4rem 4rem;
}
.modal-form{
  text-align: left;
}
.info-form label,
.modal-form label{
  display: block;
  color: rgba(var(--grey-dark), 1);
  margin: 0 0 2px 0;
  font-size: 1rem;
}
.info-form input, 
.info-form select,
.modal-form input{
  width: 100%;
  height: 2rem;
}
.info-form input[type=checkbox],
.modal-form input[type=checkbox]{
  width: 16px;
  height: 16px;
  margin-bottom: 1.5rem;
}
.info-form .privacy-text span,
.modal-form .privacy-text span{
  color: rgba(var(--grey-dark), 1);
  font-size: 1rem;
  margin-left: 10px;
}
.info-form input[type=submit],
.modal-form input[type=submit]{
  background-color: rgba(var(--purple), 1);
  border-color: rgba(var(--purple), 1);
  border-radius: 0.25rem;
  color: rgba(var(--gold), 1);
  width: 100%;
  max-width: 250px;
  font-weight: 500;
  font-size: 20px;
  height: auto !important;
  padding: 0.5rem;
  margin-bottom: 0;
}
.info-form input[type=submit]:hover,
.modal-form input[type=submit]:hover {
  background-color: rgba(var(--purple), 0.8) !important;
  border-color: rgba(var(--purple), 0.8) !important;
  color: rgba(var(--gold), 1);
}
.info-form input[type=submit].form-processing,
.modal-form input[type=submit].form-processing {
  background-color: rgb(221, 221, 221) !important;
  border-color: rgb(221, 221, 221) !important;
  color: rgba(var(--grey-dark), 0.6);
  pointer-events: none;
  cursor: not-allowed;
}
.form-input{
  position: relative;
  margin-bottom: 0.8rem;
}
.form-input .invalid {
  border: 2px solid rgb(var(--error));
  background-color: rgb(var(--error-light));
}
input[type=checkbox].invalid{
  outline: 2px solid rgb(var(--error));
}
.form-input .error-msg{
  margin-left: auto;
  color: rgb(var(--error));
  position: absolute;
  top: 0;
  right:0;
}
.form-input.privacy-text .error-msg{
  margin-left: auto;
  color: rgb(var(--error));
  position: absolute;
  top: 20px;
  left:0;
}
.form-input .hide{
  opacity: 0;
}
.form-input.privacy-text{
  margin-top: 30px;
}
.privacy-text span{
  color: #fff;
  font-size: 1rem;
  margin-left: 10px;
}
.form-dropdown{
  display: none;
}
.form-dropdown.show{
  display: block;
}
.info-coach{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.info-coach img{
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.125);
  width: 100%;
  max-width: 300px;
}
.info-coach p{
  width: 100%;
  max-width: 300px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .info-form{
    padding: 2rem 0 4rem 2rem;
  }
  .info-coach img,
  .info-coach p{
    width: 80%
  }
}
@media only screen and (max-width: 767px) {
  .form-panel{
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .info-form{
    width: 100%;
    padding: 0 2rem 3rem 2rem;
  }
  .info-coach{
    width: 100%;
    flex-direction: row;
    padding: 2rem;
  }
  .info-coach img{
    width: 30%
  }
  .info-coach p{
    width: 70%;
    text-align: left;
    padding-left: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .info-coach img{
    display: none;
  }
  .info-coach p{
    width: 100%;
    padding-left: 0;
  }
  /* .show-form-button-container{
    width: 100%;
    margin: 0 50px;
  }
  .show-form-button-container > button{
    width: 100%;
    font-size: 1.2rem;
  }
  .show-form-button-container > button::after{
    font-size: 1.2rem;
    top: 10px;
  }
  .show-form-button-container.open > button::after{
    font-size: 1.2rem;
    top: 10px;
    right: 25px;
  } */
  .info-form input[type=submit],
  .modal-form input[type=submit]{
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 430px) {
  /* .show-form-button-container > button{
    font-size: 1rem;
  }
  .show-form-button-container > button::after{
    font-size: 1rem;
  }
  .show-form-button-container.open > button::after{
    font-size: 1rem;
  } */
}

/*******************/
/* Page Components */
/*******************/

/* Certificate Contact CTA */
.certificate-form-box{
  background-color: rgba(var(--gold), 0.1);
  padding: 2rem;
  margin: 3rem 0;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.25rem;
  font-size: 1rem;
  color: rgba(var(--grey-dark), 1);
  text-align: center;
}
.certificate-form-box h2{
  font-size: 1.6rem;
  padding-bottom: .5rem;
}

/* Popup Modal */
.modal-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 100;
}
.modal-box .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 90%;
  max-width: 24rem;
  border-radius: 0.5rem;
}
.modal-box .modal-content .modal-header{
  background-color: #fff;
  height: 40px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.modal-box .modal-content .modal-text{
  padding: 1rem 1.5rem;
}
.close-button {
  width: 2rem;
  color:rgba(0, 0, 0, 0.6);
  font-size: 1.6rem;
  line-height: 1.7rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;       
}
.modal-box .modal-content .modal-header.success,
.modal-box .modal-content .modal-header.success .close-button{
  background-color: rgb(120, 210, 135);
}
.modal-box .modal-content .modal-header.warning,
.modal-box .modal-content .modal-header.warning .close-button{
  background-color: rgb(226, 99, 99);
}
.close-button:hover {
  color:rgba(0, 0, 0, 1);
}
.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.modal-privacy-statement{
  position: relative;
  display: none;
  background-color: rgba(var(--grey-light), 1);
  font-size: 0.9rem;
  padding: 10px;
  min-height: 350px;
  margin-top: -350px;
  z-index: 100;
}
.modal-privacy-statement h3{
  font-size: 1.4rem;
}
.modal-privacy-statement.show{
  display: block;
}


/* Gold message box */
.message-box-gold{
  background-color: rgba(var(--gold), 0.2);
  color: rgba(var(--purple), 1);
  padding: 3rem;
  margin: 3rem 0;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.25rem;
  font-size: 1.2rem;
  text-align: center;
}
.message-box-gold h2{
  font-size: 1.6rem;
  padding-bottom: .5rem;
}
.message-box-gold.olli{
  font-size: 2rem;
}
.message-box-gold.olli h2{
  font-size: 3rem;
  padding-bottom: .5rem;
}
.message-box-gold.olli .btn{
  font-size: 1.6rem;
  padding: 0.5rem 1rem !important;
  min-width: 200px;
}
@media only screen and (max-width: 767px) {
  .message-box-gold{
    padding: 2rem;
    font-size: 1rem
  }
  .message-box-gold h2{
    font-size: 1.4rem;
  }
  .message-box-gold.olli{
    font-size: 1.5rem;
  }
  .message-box-gold.olli h2{
    font-size: 2rem;
    padding-bottom: .5rem;
  }
  .message-box-gold.olli .btn{
    font-size: 1.5rem;
  }
}


/* Grey Intro Box */
.intro-box{
  background-color: rgba(var(--grey-dark), 0.7);
  color: #fff;
  padding: 3rem 10%;
  text-align: center;
  font-size: 1.2rem;
}
.intro-box.full-bleed{
  box-shadow: 0 0 0 100vmax rgba(var(--grey-dark), 0.7);
  clip-path: inset(0 -100vmax);
}
.intro-box h2{
  border-bottom: 3px solid rgb(var(--gold));
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 1rem;
}

/* Department Highlights */
.dept-highlights-box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
  background-color: rgba(var(--grey-dark), 0.7);
  padding: 50px 5%;
  border-bottom: 5px solid rgba(var(--gold), 1);
}
.dept-highlights-box.full-bleed{
  box-shadow: 0 0 0 100vmax rgba(var(--grey-dark), 0.7);
  clip-path: inset(0 -100vmax);
  border-bottom: none;
}
.dept-highlight{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  padding: 0 30px;
  color: rgb(var(--purple));
  border-right: 1px solid rgba(var(--grey-light), 0.3);
}
.dept-highlight:nth-child(4){
  border-right: none;
}
.dept-highlight img{
  width: 80px;
}
.dept-highlight h3{
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(var(--gold), 1);
  margin: 1rem 0;
}
.dept-highlight p{
  margin: 0;
  font-weight: 300;
  color: #fff;
}
@media only screen and (max-width: 1152px) {
  .dept-highlights-box{
    padding: 50px 0;
  }
}
@media only screen and (max-width: 991px) {
  .dept-highlight{
    width: 50%;
  }
  .dept-highlight:nth-child(1),
  .dept-highlight:nth-child(2){
    border-bottom: 1px solid rgba(var(--grey-light), 0.3);
    padding-bottom: 30px;
  }
  .dept-highlight:nth-child(2){
    border-right: none;
  }
  .dept-highlight:nth-child(3),
  .dept-highlight:nth-child(4){
    padding-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .dept-highlight{
    width: 80%;
    margin: 0 auto;
    border-bottom: 1px solid rgba(var(--grey-light), 0.3);
    border-right: none;
    padding: 30px 0 ;
  }
  .dept-highlight:nth-child(1){
    padding-top: 0;
  }
  .dept-highlight:nth-child(4){
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* Section Tiles */
.home-programs-box{
  margin: 2rem 0 6rem 0;
}
.home-programs-box h2{
  text-align: center;
  padding-bottom: 1rem;
}
.section-tiles{
  padding: 5rem 0;
}
.section-tiles.top{
  padding: 5rem 0 0 0;
}
.section-tiles h2{
  margin: 0 0 1rem 0;
}
.tiles-container,
.home-tiles-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 2.5rem;
}
.tile{
  position: relative;
  border: none;
  border-radius: 0.25rem;
  border: 1px solid rgba(0,0,0,.125);
}
.tile:hover a > div > h3{
  color: rgb(var(--purple));
}
.tile:hover a > div {
 background-color: rgba(var(--gold), 0.8);
}
.tile img{
  width: 100%;
  border-radius: 0.25rem;
}
.tile-overlay{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(var(--purple), 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px; 
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.tile-overlay h3{
  display: block !important;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .tiles-container,
  .home-tiles-container{
    grid-gap: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .tiles-container,
  .home-tiles-container{
    grid-template-columns: repeat(2, 1fr);
  }
  .tile-overlay h3{
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .tiles-container,
  .home-tiles-container{
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
  }
  .tile{
    height: 140px;
    overflow: hidden;
  }
  .tile-overlay{
    width: 100%;
    height: 140px;
  }
  .tile-overlay h3{
    font-size: 1.2rem;
  }
}

/* Video */
.video-box{
  display: flex;
  flex-direction: row;
  padding: 4rem 0;
  background-color: rgb(var(--grey-light));
  margin-bottom: 80px;
}
.video-box.full-bleed{
  box-shadow: 0 0 0 100vmax rgb(var(--grey-light));
  clip-path: inset(0 -100vmax);
}
.video-box.full-bleed.last{
  margin-bottom: -80px;
}
.video-box > div{
  width: 50%;
}
.video-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}
@media only screen and (max-width: 991px) {
  .video-box{
    display: flex;
    flex-direction: column-reverse;
  }
  .video-box > div{
    width: 100%;
  }
  .video-text{
    padding-right: 40px;
  }
  .video-text h3{
    margin: 20px 0 10px 0;
    font-size: 1.4rem;
  }
}

/* Home - Announcements */
.announcements-box{
  background-color: rgba(var(--grey-light), 1);
}
.announcements-box.hide{
  display: none;
}
.announcements-box.full-bleed{
  box-shadow: 0 0 0 100vmax rgba(var(--grey-light), 1);
  clip-path: inset(0 -100vmax);
}
#homeAnnouncementsSection{
  background-color: rgba(var(--grey-light), 1);
  border: solid 3px rgb(var(--purple));
  padding: 2rem 4rem;
  margin: 8rem 0;
}
#homeAnnouncementsSection h2{
  display: none;
}
#homeAnnouncementsSection h3 > a{
  font-size: 1.6rem;
  color: rgb(var(--purple));
}
@media only screen and (max-width: 767px) {
  #homeAnnouncementsSection{
    padding: 2rem;
  }
}
@media only screen and (max-width: 575px) {
  #homeAnnouncementsSection{
    padding: 1rem;
  }
}

/* Home - Highlights */
#homeHighlightsSection{
  margin: 50px 0;
}
#homeHighlightsSection img{
  width: 100%;
}
#homeHighlightsSection h2{
  text-align: center;
  border-bottom: solid 3px rgb(var(--purple));
  margin-bottom: 60px;
  padding-bottom: 10px;
}
#homeHighlightsSection .newsItemSummary .story-intro{
  margin: 0;
}
#homeHighlightsSection h3.newsItemHeader{
  display: none !important;
}
#homeHighlightsSection .newsItemSummary:nth-child(3),
#homeHighlightsSection .newsItemSummary:nth-child(7),
#homeHighlightsSection .newsItemSummary:nth-child(11){
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
  margin-bottom: 60px;
}
#homeHighlightsSection .newsItemSummary:nth-child(3) > div:nth-child(1),
#homeHighlightsSection .newsItemSummary:nth-child(7) > div:nth-child(1),
#homeHighlightsSection .newsItemSummary:nth-child(11) > div:nth-child(1){
  width: 46%;
}
#homeHighlightsSection .newsItemSummary:nth-child(3) > div:nth-child(2),
#homeHighlightsSection .newsItemSummary:nth-child(7) > div:nth-child(2),
#homeHighlightsSection .newsItemSummary:nth-child(11) > div:nth-child(2){
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 46%;
}
#homeHighlightsSection .newsItemSummary:nth-child(6),
#homeHighlightsSection .newsItemSummary:nth-child(10),
#homeHighlightsSection .newsItemSummary:nth-child(14){
  display: flex;
  flex-direction: row;
  gap: 8%;
  margin-bottom: 60px;
}
#homeHighlightsSection .newsItemSummary:nth-child(6) > div:nth-child(1),
#homeHighlightsSection .newsItemSummary:nth-child(10) > div:nth-child(1),
#homeHighlightsSection .newsItemSummary:nth-child(14) > div:nth-child(1){
  width: 46%;
}
#homeHighlightsSection .newsItemSummary:nth-child(6) > div:nth-child(2),
#homeHighlightsSection .newsItemSummary:nth-child(10) > div:nth-child(2),
#homeHighlightsSection .newsItemSummary:nth-child(14) > div:nth-child(2){
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 46%;
}
@media only screen and (max-width: 767px) {
  #homeHighlightsSection .newsItemSummary:nth-child(3),
  #homeHighlightsSection .newsItemSummary:nth-child(7),
  #homeHighlightsSection .newsItemSummary:nth-child(11){
    flex-direction: column;
    margin-bottom: 40px;
  }
  #homeHighlightsSection .newsItemSummary:nth-child(3) > div:nth-child(1),
  #homeHighlightsSection .newsItemSummary:nth-child(7) > div:nth-child(1),
  #homeHighlightsSection .newsItemSummary:nth-child(11) > div:nth-child(1){
    width: 100%;
    padding-left: 0;
  }
  #homeHighlightsSection .newsItemSummary:nth-child(3) > div:nth-child(2),
  #homeHighlightsSection .newsItemSummary:nth-child(7) > div:nth-child(2),
  #homeHighlightsSection .newsItemSummary:nth-child(11) > div:nth-child(2){
    width: 100%;
    padding-right: 0;
    margin-top: 20px;
  }
  #homeHighlightsSection .newsItemSummary:nth-child(6),
  #homeHighlightsSection .newsItemSummary:nth-child(10),
  #homeHighlightsSection .newsItemSummary:nth-child(14){
    flex-direction: column;
    margin-bottom: 40px;
  }
  #homeHighlightsSection .newsItemSummary:nth-child(6) > div:nth-child(1),
  #homeHighlightsSection .newsItemSummary:nth-child(10) > div:nth-child(1),
  #homeHighlightsSection .newsItemSummary:nth-child(14) > div:nth-child(1){
    width: 100%;
    padding-right: 0;
    margin-top: 20px;
  }
  #homeHighlightsSection .newsItemSummary:nth-child(6) > div:nth-child(2),
  #homeHighlightsSection .newsItemSummary:nth-child(10) > div:nth-child(2),
  #homeHighlightsSection .newsItemSummary:nth-child(14) > div:nth-child(2){
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}

/* Home - News */
.news-box{
  background-color: rgba(var(--grey-light), 1);
  padding: 50px 0;
  margin: 50px 0;
}
.news-box.full-bleed{
  box-shadow: 0 0 0 100vmax rgba(var(--grey-light), 1);
  clip-path: inset(0 -100vmax);
}
#homeNewsSection h2{
  text-align: center;
  border-bottom: solid 3px rgb(var(--purple));
  margin-bottom: 60px;
  padding-bottom: 10px;
}
#homeNewsSection h3.newsItemHeader{
  display: none !important;
}
#homeNewsSection .newsItemSummary{
  display: flex;
  margin-bottom: 4rem;
}
#homeNewsSection .newsItemSummary .story-image{
  width: 30%;
}
#homeNewsSection .newsItemSummary .story-image img{
  width: 100%;
}
#homeNewsSection .newsItemSummary .story-intro{
  display: flex;
  flex-direction: column;
  width: 70%;
  padding-left: 2rem;
  margin: 0;
}
#homeNewsSection .newsItemSummary .story-intro h3{
  font-size: 1.4rem;
}
@media only screen and (max-width: 991px) {
  #homeNewsSection .newsItemSummary .story-image{
    width: 50%;
    padding-right: 1rem;
  }
  #homeNewsSection .newsItemSummary .story-intro{
    width: 50%;
    padding-left: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  #homeNewsSection .newsItemSummary{
    flex-direction: column;
  }
  #homeNewsSection .newsItemSummary .story-image{
    width: 100%;
    padding-right: 0;
  }
  #homeNewsSection .newsItemSummary .story-intro{
    width: 100%;
    padding-left: 0;
    margin-top: 1.5rem;
  }
}

/* Home Partner Logos */
.partner-logo-box{
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}
.partner-logo-box img{
  height: 140px;
  width: auto;
}

/* Certificate Grid Display */
.tableGridTabPaneGrid ul {
  padding-left: 0;
  list-style: none;
  position: relative;
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 2.5rem;
}
.tableGridTabPaneGrid ul li {
  float: none;
  width: 100%;
  padding-left: 0 !important;
  position: relative;
  height: auto !important;
  background-color: rgba(var(--grey-light), 1);
  border-radius: 0.25rem;
  border: 1px solid rgba(0,0,0,.125);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.tableGridTabPaneGrid ul li > a span.certificateName{
  margin: 10px;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 400;
  padding-bottom: 1rem;
}
.certificateCategory{
  margin: 10px;
  font-weight: 200;
  position: absolute;
  bottom: 0;

}
.catalogSearchResults .tableGridTabPaneGrid .featuredImage {
  border: none;
}
.catalogSearchResults .tableGridTabPaneGrid img{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  border: none;
}
@media only screen and (max-width: 1199px) {
  .tableGridTabPaneGrid ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  .tableGridTabPaneGrid ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .tableGridTabPaneGrid ul li {
      float: none;
      width: 100%;
      padding-left: 0;
      margin-bottom: 0;
      position: relative;
  }
}
@media only screen and (max-width: 575px) {
  .tableGridTabPaneGrid ul {
      grid-template-columns: repeat(1, 1fr);
      grid-auto-rows: auto;
      gap: 1.5rem;
  }
  .tableGridTabPaneGrid ul li.even,
  .tableGridTabPaneGrid ul li.odd{
    height: auto !important;
  }
  .catalogSearchResults .tableGridTabPaneGrid .featuredImage {
    display: none;
  }
  .tableGridTabPaneGrid ul li > a span.certificateName{
    font-size: 1.2rem;
    line-height: 1.4rem;
    padding-bottom: 24px;
  }
  .certificateCategory{
    margin: 0 10px 10px 10px;
  }
}

/* learner support */
.learner-support-box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 40px;
  margin: 1rem 0 4rem 0;
}

.learner-support-box .card{
  display: flex;
  flex-direction: row;
}
.learner-support-box .card img{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}
.learner-support-box .card .card-img-top,
.learner-support-box .card .card-body{
  width: 50%;
  background-color: rgba(0,0,0,.03)
}
.learner-support-box .card .card-body h3{
  font-size: 1.2rem;
}
@media only screen and (max-width: 991px) {
  .learner-support-box .card{
    display: flex;
    flex-direction: column;
  }
  .learner-support-box .card .card-img-top,
  .learner-support-box .card .card-body{
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .learner-support-box{
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Policicies buttons */
.policy-buttons{
  display: flex;
  gap: 2rem;
  margin: 4rem 0;
}
.policy-buttons .btn{
  width: 300px;
  min-width: 200px;
}
@media only screen and (max-width: 991px) {
  .policy-buttons{
    flex-direction: column;
  }
}

/* Accordion */
/* #accordion-headings {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 1.2rem;
  color: rgba(var(--grey-dark), 1);
  text-decoration: none;
} */
.accordion-headings > span{
  display: block;
  font-size: .9rem;
  font-weight: 200;
  margin-top: 5px;
}
h3.accordion-headings {
  margin: 0;
  color: rgba(var(--purple), 1);
  font-size: 1.2rem;
}
#accordion.panel {
  margin-bottom: 20px;
}
#accordion .panel-title {
  position: relative;
  background-color: rgba(0,0,0,.03);
  border-bottom: 1px solid rgba(0,0,0,.125);
}
#accordion a {
  text-decoration: none;
}
#accordion .panel-title:hover {
  background-color: rgba(0,0,0,.05);
}
#accordion .panel-title::after {
  content: "\f107";
  color: rgba(var(--grey-dark), 1);
  font-size: 1.4rem;
  font-weight: 800;
  top: 0.5rem;
  right: 1rem;
  position: absolute;
  font-family: "Font Awesome 5 Free";
}
#accordion .panel-title[aria-expanded="true"]::after {
  content: "\f106";
}
#accordion .card-body {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}


@media only screen and (min-width: 768px) {
  #course-accordion a.panel-title {
    font-size: 18px !important;
  }
}

/***********************************/
/* mindedge and greenfig overrides */
/***********************************/
.mindedge-certificate-image{
  border-radius: 0.25rem;
}
.mindedge-certificate-block{
  background-color: #FAF6E5;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.25rem;
  margin: 2rem 0;
}
.mindedge-certificate-register-block{
  padding: 20px;
}
.mindedge-certificate-register-block h2{
  color: rgba(var(--purple), 1); 
  font-size: 1.6rem;
}
.mindedge-certificate-register-block > a{
  display: block;
  margin: 1rem auto 0 auto;
}
.mindedge-certificate-register-block .btn.btn-primary{
  width: 200px !important; 
  background: blue !important; 
  border-color:blue !important; 
  color:#fff; 
  float: none;
}
.mindedge-certificate-info-block{
  background-color: #fff;
  padding: 20px;
}
.mindedge-certificate-info-block h3,
.greenfig-quick-facts h3{
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px #656565;
}
.mindedge-certificate-info-block .quick-facts,
.greenfig-quick-facts .quick-facts{
  display: flex;
  justify-content: space-between;
}
.mindedge-certificate-info-block .quick-facts p,
.greenfig-quick-facts .quick-facts p{
  margin: 0;
}
.mindedge-certificate-info-block .quick-facts span,
.greenfig-quick-facts .quick-facts span{
  display: block;
  font-size: 1.6rem;
}

.greenfig-certificate-image{
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}
.greenfig-register .btn.btn-primary{
  width: 200px !important; 
  background: blue !important; 
  border-color:blue !important; 
  color:#fff; 
  float: none;
  margin: 0 !important;
}
.greenfig-certificate-block{
  border: 1px solid rgba(0,0,0,.125);
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  background-color: #FAF6E5;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas:
    "greenfig-quick-facts"
    "greenfig-register";
} 
.greenfig-quick-facts{ 
  grid-area: greenfig-quick-facts; 
  padding: 1rem;
  border-bottom: 1px solid rgba(0,0,0,.125);
}
.greenfig-register { 
  grid-area: greenfig-register; 
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .greenfig-certificate-block{  
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
      "greenfig-quick-facts greenfig-quick-facts greenfig-register";
  }
  .greenfig-quick-facts{ 
    padding: 1rem;
    border-bottom: none;
    /* border-right: 1px solid rgba(0,0,0,.125); */
  }

  .greenfig-register { 
    padding: 2rem 1rem 1rem 1rem;
    margin: 0 auto;
  }
}

/***********************/
/* Promo Landing Pages */
/***********************/

 /* promo header block */
 .promo-header-block,
 .promo-image-overlay,
 .promo-header-content,
 .promo-background-image{
   height: 400px;
 }
 .promo-header-block{
   overflow: hidden;
   position: relative;
 }
 .promo-background-image{
   width: 100%;
   object-fit: cover;
   object-position: center center;
 }
 .promo-image-overlay{
   position: absolute;
   background: rgba(250,243,215, 0.5);
   width: 100%;
   top: 0;
 }
 .promo-header-content{      
   display: flex;
   flex-direction: row;
 }
 .promo-header-headline{
   width: 65%;
   display: flex;
   align-items: center;
 }
 .promo-header-headline h1{
  font-size: 2rem;
  font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
   font-weight: 700;
   color: #461E7C;
   border-bottom: none;
   padding-bottom: 0;
 }
 .promo-header-image{
   align-self: flex-end;
   width: 35%;  
 }
 .promo-header-image img{
   max-width: 500px;
 }
 @media only screen and (max-width: 991px) {
   .promo-header-headline{
     width: 65%;
   }
   .promo-header-image{
     width: 35%;
   }
 }

 @media only screen and (max-width: 767px) {
   .promo-header-block,
   .promo-image-overlay,
   .promo-header-content,
   .promo-background-image{
     height: 500px;
   }
   .promo-header-content{
     flex-direction: column;
     justify-content: flex-end;
     text-align: center;
   }
   .promo-header-headline{
     width: 100%;
     height: 35%;
   }
   .promo-header-image{
     width: 100%;
     height: 65%;
   }
   .promo-header-image img{
     max-width: 300px;
     max-height: none;
     margin: 0 auto;
   }
 }

/* promo highlights block */
.promo-highlights-block{
  background: #656565;
  padding: 2rem;
}
.promo-highlights{

  display: grid;
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 2rem;

  color: #fff;
  text-align: center;
}

.promo-highlights h3{
  color: #EEC12A;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .promo-highlights{
    grid-template-columns: 1fr; 
    grid-template-rows: 1fr 1fr 1fr; 
  }
}

/* promo programs block */
.promo-programs-block{
  margin: 50px auto;
}
.promo-programs-block h2{
  text-align: center;
  margin-bottom: 2rem;
}
.promo-programs-container{
  /* outline: solid red 1px; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .promo-programs-container{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .promo-programs-container{
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
.promo-program-tile{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #e8e8e8;
  margin-top: 80px;
}
.promo-program-tile img{
  width: 90%;
  margin: -80px auto 0 auto;
  border-radius: .25rem;
}
.promo-program-tile-content{
  padding: 1rem;
}   
.promo-program-tile-content h3{
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}
.promo-program-tile-content ul{
  list-style-type: none;
  padding-inline-start: 0;
  margin-bottom: 0;
}
.promo-program-tile-content ul li{
  margin-bottom: 10px;
}
.promo-program-tile-content ul li:last-child{
  margin-bottom: 0;
}

.promo-program-tile-button{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #461E7C;
  width: 100%;
  height: 60px;
  text-align: center;
  color: #EEC12A !important;
  font-size: 1.2rem;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.promo-program-tile-button:hover{
  color: #EEC12A;
  background: #552b8b;
  text-decoration: none;
}
/* promo details block */


/* promo contact block */
.promo-contact-block{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: #e8e8e8;
  color: #461E7C;
  padding: 2rem;
  margin: 4rem 0;
}

.promo-contact-block .btn-primary{
  background: #461E7C;
  width: 200px;
}
@media only screen and (max-width: 767px) {
  .promo-contact-block{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .promo-contact-block .btn-primary{
    margin-top: 1rem;
  }
}

/* promo video block */
.promo-video-block{
  background: #656565;
  margin: 300px 0 0 0;
  position: relative;
  padding-top: 100px;
  padding-bottom: 300px;
}
.promo-video-container{
  max-width: 860px;
  margin: -300px auto 0 auto;
  padding: 0 30px;
  color: #fff;
  text-align: center;
}
.promo-video-container h2{
  margin: 2rem 0 1rem 0;
  color: #EEC12A;
}
@media only screen and (max-width: 991px) {
  .promo-video-container{
    margin: -280px auto 0 auto;
    max-width: 750px;
  }
}
@media only screen and (max-width: 577px) {
  .promo-video-block{
    margin: 180px 0 0 0;
  }
  .promo-video-container{
    /* outline: solid red 1px; */
    max-width: none;
    margin: -100px auto 0 auto;
    padding: 15px;
  }
  .promo-video-container{
    margin: -200px auto 0 auto;
    max-width: none;
  }
}

/* promo faculty block */
.promo-faculty-block{
  padding: 3rem;
  background: #F8F8F8;
}
.promo-faculty-image-small{
  display: none;
}
.promo-faculty-image-large{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: -90px 0 -80px 0;
}
.promo-faculty-image-large img{
  width: 200px;
  border-radius: 50%;
  border: solid 2px #EEC12A;
}
.promo-faculty-image-large .centered-line {
  width: 100%; 
  height: 2px; 
  background-color: #EEC12A; 
}
.promo-faculty-name,
.promo-faculty-info{
  padding-left: 220px;
}
.promo-faculty-info p,
.promo-faculty-name{
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .promo-faculty-block{
    margin-top: 200px;
    padding: 2rem;
    border: solid 2px #EEC12A;
  }
  .promo-faculty-image-small{
    display: block;
    margin: -132px auto 2rem auto;
  }
  .promo-faculty-image-small img{
  width: 200px;
  border-radius: 50%;
  border: solid 2px #EEC12A;
  
}
  .promo-faculty-image-large{
    display: none;
  }
  .promo-faculty-name,
  .promo-faculty-info{
    padding-left: 0
  }
}
/* promo outro block */
.promo-outro-block{
  margin: 50px auto 0 auto;
}
/******************
END OLD STYLES
******************/





/******************
NEW PD PAGE DEV
******************/
span.gold-text {
  color: rgb(var(--gold));
}
a.link-gold-arrow, div.link-gold-arrow {
  color: rgb(var(--gold));
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
a.link-gold-arrow::after, div.link-gold-arrow::after {
  content: "\203A";
  color: rgb(var(--gold));
  font-weight: bold;
  transition: transform 0.2s ease;
}
a.link-purple-arrow, div.link-purple-arrow {
  color: rgb(var(--purple));
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
a.link-purple-arrow::after, div.link-purple-arrow::after {
  content: "\203A";
  color: rgb(var(--purple));
  font-weight: bold;
  transition: transform 0.2s ease;
}
a.link-gold-arrow:hover::after, div.link-gold-arrow:hover::after,
a.link-purple-arrow:hover::after, div.link-purple-arrow:hover::after {
  transform: translateX(3px);
}


.hero-container {
  position: relative;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/header-campus-bg-40.jpg');
  background-size: cover;
  background-position: center;
  height: auto;
}
.odl-page .hero-container {
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/odl-assets/LSU1884-The-Quad-from-Middleton-Rooftop.jpg');
}
.paralegal-page .hero-container {
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/paralegal-assets/banner-bg.jpg');
}
.hero-container .container {
  max-width: 1430px;
  width: 100%;
  position: relative;
}
.hero-content {
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.hero-content h1 {
  font-size: 13px;    
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: rgb(var(--gold));
  margin: 0;    
  border-bottom: none;
  letter-spacing: .2em;
}
.hero-content h2 {
  font-family: "jubilat", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 39px;
  line-height: 43px;
  letter-spacing: 5%;
  margin-bottom: 1rem;
  font-weight: bold;
  margin: 0;
  max-width: 500px;
  align-items: center;
}
.paralegal-page .hero-content h2 {
  max-width: none;
}
.odl-page .hero-content h2 {
  font-size: 31px;
  line-height: 42px;
}
.hero-headers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.hero-content p {
  font-size: 18px;
  line-height: 32px;
  text-align: left;
  margin: 0;
  z-index: 2;
  width: 70%;
}
.hero-btn-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.hero-btn-container .btn {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 14px;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
  cursor:pointer;
	padding:12px 50px;
}
.hero-btn-container .btn-gold {
  background-color: rgb(253, 208, 35);
  color: #461D7C;
}
.hero-btn-container .btn-outline-gold {
  background-color: rgb(0, 0, 0, .6);
  color: #FDD023;
  border: 2px solid rgb(var(--gold));
}
.hero-btn-container .btn-gold:hover {
  filter: brightness(1.1);
}
.hero-btn-container .btn-outline-gold:hover {
  background: rgba(233, 188, 15);
  color: #461D7C;
}
.hero-img {
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 152px;
}
.hero-img-odl {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 240px;
}
.paralegal-page .hero-img-odl {
  width: 220px;
  right: 10px;
}
@media (min-width: 768px) {
  .hero-btn-container .btn {
    padding:18px 50px;
    font-size: 16px;
  }

  .hero-btn-container .btn-outline-gold {
    background-color: rgb(0, 0, 0, .2);
  }
  .hero-container {
    padding: 30px 0px 30px 20px;
  }
  .paralegal-page .hero-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-columns {
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    position: relative;
    gap: 20px;
    justify-content: space-between;
  }
  .hero-content {
    text-align: left;
    padding: 0;
    margin: 0;
    width: 80%;
  }
  .hero-content h1 {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-content h1 .marker {
    width: 12px;
    height: 20px;
    background-color: rgb(var(--gold)); 
  }
  .hero-content h2 {
    font-size: 58px;
    line-height: 71px;
    max-width: 90%;
  }
  .odl-page .hero-content h2 {
    font-size: 60px;
    line-height: 70px;
  }
  .hero-headers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .hero-content p {
    font-size: 22px;
    line-height: 39px;
    width: 70%;
  }
  .hero-img {
    width: 287px;
    height: auto;
    bottom: -40px;
    right: 0;
  }
  .hero-img-odl {
    width: 340px;
    bottom: -30px;
    right: 20px;
  }
  .paralegal-page .hero-img-odl {
    width: 340px;
    bottom: -60px;
  }
  .hero-btn-container {
    flex-direction: row;
  }
  .hero-btn-container .btn {
    padding: 18px 20px;
  }

  .hero-content p.hero-subtitle {
    font-size: 27px;
    font-weight: 500;
    line-height: 44px;
  }
}
@media (min-width: 992px) {
  .hero-container {
    /* height: 689px; */
    display: flex;
    align-items: center;
    /* margin-top: 90px; */
  }
  .odl-page .hero-container {
    padding: 85px 40px 85px 40px;
  }
  .hero-content {
    width: 70%;
  }
  .hero-content h2 {
    font-size: 80px;
    line-height: 86px;
    max-width: 100%;
  }
  .hero-content p {
    font-size: 22px;
    line-height: 39px;
  }
  .paralegal-page .hero-content p {
    font-size: 30px;
    line-height: 44px;
  }
  .hero-img {
    width: 300px;
    bottom: -40px;
    right: 0;
  }
  .hero-img-odl {
    right: 20px;
    width: 370px;
    bottom: -85px;
  }
  .hero-btn-container .btn {
    padding: 18px 40px;
  }
}
@media (min-width: 1200px) {
  .hero-container {
    /* height: 689px; */
    padding: 85px 40px 85px 40px;
  }
  .paralegal-page .hero-container {
    padding-bottom: 120px;
    padding-top: 100px;
  }
  .hero-img {
    width: 322px;
    bottom: -100px;
  }
  .hero-img-odl {
    right: 20px;
    width: 400px;
    bottom: -85px;
  }
  .paralegal-page .hero-img-odl {
    bottom: -120px;
    right: 10px;
    width: 452px;
  }
  .hero-content {
    width: 80%;
  }
  .paralegal-page .hero-content {
    width: 70%;
  }
  .hero-subtitle {
    max-width: 80%;
  }
  .hero-columnns {
    display: flex row;
    position: relative;
    gap: 100px;
  }
}

@media (min-width: 1363px) {
  .hero-subtitle {
    max-width: 80%;
  }
  .hero-img {
    right: 5%;
    bottom: -200px;
    width: 382px;
  }
  .hero-img-odl {
    right: 20px;
    width: 480px;
    bottom: -85px;
  }
  .paralegal-page .hero-container {
    padding-top: 120px;
  }
  .hero-content {
    width: 80%;
  }
  .hero-content h2 {
    font-size: 90px;
  }
  .odl-page .hero-content h2  {
    font-size: 80px;
    line-height: 90px;
    max-width: 80%;
  }
  .odl-page .hero-content p {
    font-size: 30px;
    line-height: 44px;
  }
}

/* Explore Programs */
.explore-programs-container {
  position: relative;
  padding: 30px 20px;
  background-color: white;
  z-index: 2;
  display: flex;
}
.explore-programs-content {
  font-size: 16px;
  line-height: 164%;
}
.explore-programs-content h2 {
  color: rgb(var(--purple));
  text-align: center;
  font-family: "jubilat", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 1rem;
}
p.body-intro {
  font-size: 16px;
  line-height: 26px;
}
.explore-programs-card-container{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.explore-programs-card-container .program-card {
  display: flex;
  width: 100%;
  /* overflow: hidden; */
}
a.program-card-link:hover {
  text-decoration: none;
}
.program-card-image img {
  width: 100%;
  transition: filter 0.3s ease;
}

.program-card-image img {
  transition: transform 0.4s ease;
}
.program-card:hover .program-card-image img {
  transform: scale(1.05);
}
.program-card-content h3 {
  transition: color 0.3s ease;
}
.program-card:hover .program-card-content h3 {
  color: rgb(var(--gold));
}
.explore-programs-card-container .program-card-image {
  width: 30%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-radius: 4px 4px 0 0;
}
.explore-programs-card-container .program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.explore-programs-card-container .program-card-content {
  width: 70%;
  background: url(https://storage.googleapis.com/instapage-user-media/a15816bb/65457193-0-explore-programs-box.jpg) no-repeat;
  background-size: 1000px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  height: 100%;
  border-radius: 0 0 4px 4px;
}
.program-card .online-learning-card {
  background-position: 10% 50%;
  height: 100%;
}
.program-card .explore-card {
  background-position: 0 30%;
  height: 100%;
}
.program-card .paralegal-card {
  background-position: 50% 80%;
  height: 100%;
}
.explore-programs-card-container .program-card-content img {
  width: auto;
  height: 32px;
}
.explore-programs-card-container .program-card-content h3 {  
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
  margin: 0;
  color: white;
}
.explore-programs-card-container .program-card-content p {
  margin: 0;
  color: white;
}
.explore-programs-card-container .program-card-content {
  font-weight: 700;
}

@media (min-width: 768px) {
  .explore-programs-container-inner {
    display: flex;
    flex-direction: column;
  }
  .explore-programs-container {
    padding: 60px 0 60px 0;
    align-items: stretch;
  }
  .explore-programs-content h2 {
    font-size: 50px;
    line-height: 57px;
  }
  .explore-programs-card-container{
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .program-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
  }
  .explore-programs-card-container .program-card {
    display: flex;
    flex-direction: column;
    max-width: 287px;
    width: 100%;
    flex: 1;
    height: 100%;
  }
  .explore-programs-card-container .program-card-image {
    width: 100%;
    height: 130px;
  }
  .explore-programs-card-container .program-card-image img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .explore-programs-card-container .program-card-content {
    width: 100%;
    height: 100%;
    flex-grow: 1;
  }
  p.body-intro {
    font-size: 22px;
    line-height: 39px;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .explore-programs-container {
    padding: 104px 40px 104px 40px; 
  }
  .explore-programs-container-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 40px;
  }
  .explore-programs-card-container .program-card-image {
    width: 100%;
    height: 180px;
  }
  .explore-programs-content {
    width: 30%;
  }
  .explore-programs-content h2{
    text-align: left;
    font-size: 40px;
    line-height: 1.2em;
  }
  .explore-programs-card-container .program-card-content h3 {
    font-size: 24px;
    line-height: 33px;
  }
  .explore-programs-card-container {
    width: 70%;
  }
  p.body-intro {
    text-align: left;
  }
}
@media (min-width: 1400px) {
  .explore-programs-container {
    padding: 80px 40px 80px 40px; 
  }

  .explore-programs-card-container .program-card-link {
    display: flex;
    flex-direction: column;
  }
}


/* Black Callout */
.black-callout-container {  
  background-color: var(--purple-700);
  color: white;
  position: relative;
  padding: 30px 20px;
  font-size: 16px;
  line-height: 164%;
}
.black-callout-container-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.black-callout-content {  
  display: flex;
  flex-direction: column;
  border-left: 10px solid rgb(var(--gold));
  padding-left: 20px;
}
.dark-purple-callout-container .black-callout-content {
  border-left: none;
  padding-left: 0;
}
.black-callout-content h2 {
  color: white;
  font-family: "jubilat", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 30px;
  margin: 0;
}
.black-callout-content p {
  margin: 0;
}
.black-callout-button .btn {
  width: 100%;
}
.black-callout-button .btn-outline-gold {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 8px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.black-callout-button .btn-outline-gold:hover {
  background-color: rgba(var(--gold), 1);
  color: rgba(var(--purple), 1)
}
.black-callout-container.dark-purple-callout-container {
  background-color: #271145;
}
.black-callout-left {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.black-callout-left img {
  max-height: 80px;
  width: auto;
}
@media (min-width: 768px) {
  .black-callout-container {
    padding: 50px 40px;
    font-size: 22px;
    line-height: 39px;
  }
  .black-callout-container-inner {
    gap: 40px;
  }
  .black-callout-content h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .black-callout-content p {
    font-size: 22px;
    line-height: 39px;
  }
  .black-callout-button{
    margin: 0 auto;
  }
  .black-callout-button .btn {
    width: auto;
    padding: 16px 24px;
  }
  .black-callout-left {
    gap: 50px;
  }
  .black-callout-left img {
    max-height: 100px;
    width: auto;
  }
}
@media (min-width: 992px) {
  .black-callout-container {
    padding: 40px 40px;
  }
  .black-callout-container-inner {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
  .black-callout-content {
    flex: 1;
    width: auto;
  }
  .black-callout-button{
    flex-shrink: 0;
  }
  .black-callout-content h2 {
    font-size: 50px;
    line-height: 57px;
  }  
  .black-callout-left img {
    max-height: 147px;
    width: auto;
  }
}


/* Popular Programs */
.popular-programs-container {
  position: relative;
  padding: 40px 20px;
  background-color: white;
}
.popular-programs-container .container {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
}
.popular-programs-card {
  display: flex;
  flex-direction: column;
  max-width: 457px;
  width: 100%;
  flex-shrink: 0;
}
.popular-programs-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.popular-programs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.popular-programs-card-image img {
  transition: transform 0.4s ease;
}
.popular-programs-card:hover .popular-programs-card-image img {
  transform: scale(1.05);
}
.popular-programs-card-image .popular-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: white;
  color: rgb(var(--purple));
  padding: 8px 13px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.1em;
  z-index: 1;
}
.splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  pointer-events: all; /* enables button clicks */
  color: rgb(var(--purple)); /* or any color you prefer */
}
.popular-programs-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 3px solid #efefef;
  border-top: none;
}
.popular-programs-card-content .btn {
  margin-top: auto;
}
.popular-programs-card-content h2 {
  font-size: 18px;
  font-weight: 700;
}
.popular-programs-card-content .course-number {
  color: #999;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.popular-programs-card-content .tag-container {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.popular-programs-card-content .tag {
  background-color: #f8f2ff;
  padding: 4px 7px;
  color: rgb(var(--purple));
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.popular-programs-card-content .btn {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 14px;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
  cursor:pointer;
  width: 100%;
	padding:16px 20px;
}
.btn-outline-gold-purple, .callout-apply-content-footer .btn-outline-gold-purple {
  border: 2px solid rgb(var(--gold));
  color: rgb(var(--purple));
}
.btn-outline-gold-purple:hover, .callout-apply-content-footer .btn-outline-gold-purple:hover {
  background-color: rgb(var(--gold));
}
.callout-apply-content-footer .btn-outline-gold-purple {
  letter-spacing: .1em;
  padding: 18px 10px;
  font-size: 14px;
}
/* Gradient edge fade */
.popular-programs-container::before,
.popular-programs-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}
.popular-programs-container::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.popular-programs-container::after {
  right: 35px;
  background: linear-gradient(to left, white, transparent);
}
.popular-programs-card-content p {
  font-size: 14px;
  line-height: 1.6rem;
}
.splide__list {
  align-items: stretch;
}
/* Base Splide arrow style override */
.splide {
  position: relative;
}
.splide__arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  pointer-events: none; /* allows slides to still be clickable */
  z-index: 10;
}
.splide__arrow {
  background: transparent !important;
  border: none;
  color: rgb(var(--purple)) !important;
  font-size: 30px;
  padding: 0;
  width: auto;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 100ms ease-out;
  opacity: 1 !important;
}
.splide__arrow:disabled {
  opacity: 0 !important;
}
.splide__arrow--prev {
  left: -30px !important;
}
.splide__arrow--next {
  right: -30px !important;
}
.splide__arrow:focus,
.splide__arrow:hover {
  background: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}
.splide__arrow svg {
  fill:#999 !important;
}
/* Splide-specific overrides */
.splide__slide {
  display: flex;
  justify-content: center; /* ensures cards are centered inside slide */
}
.splide__track {
  padding-left: 0 !important;
  padding-right: 20px !important;
}

@media (min-width: 768px) {
  .popular-programs-container {
    padding: 80px 40px;
  }
  .popular-programs-card-content {
    padding: 30px;
  }
  .popular-programs-card {
    max-width: 370px;
  }
  .popular-programs-card h2 {
    font-size: 21px;
    line-height: 29px;
  }
  .popular-programs-card-content p {
    font-size: 16px;
    line-height: 30px;
  }
  .popular-programs-container::after {
    right: 55px;
    background: linear-gradient(to left, white, transparent);
  }
  .popular-programs-card-content .btn {
    margin-top: auto;
    width: 100%;
    padding: 18px 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 16px;
    font-family: proxima-nova, sans-serif;
    font-weight: 700;
    font-style: normal;
    cursor: pointer;
  }
  .popular-programs-card-content .tag {
    background-color: #f8f2ff;
    padding: 6px 10px;
    color: rgb(var(--purple));
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.08em;
  }
  .callout-apply-content-footer .btn-outline-gold-purple {
    font-size: 16px;
  }
}

@media (min-width: 1000px) {
  .popular-programs-card {
    max-width: 457px;
  }
  .splide {
    padding: 0 0;
  }
  .splide__track {
    padding: 0 !important
  }
  /* Optional: hide arrows on desktop */
  /* .splide__arrow {
    display: none !important;
  } */

  .splide__slide {
    max-width: 457px;
    width: 100%;
  }
  .popular-programs-container::after {
    display: none;
  }
  .popular-programs-card-content .tag-container {
    flex-direction: column;
  }
  .popular-programs-card-content .tag-container .tag {
    width: max-content;
  }
}

@media (min-width: 1180px) {
  .popular-programs-card-content .tag-container {
    flex-direction: row;
  }
}

/* Callout One */
.callout-one-container .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.callout-one-image {  
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/tiger-stripes-sm.jpg');
  background-size: 100% 180px;
  background-position: top;
  background-repeat: no-repeat;
  padding: 30px 0;
  margin: 0 auto;
  display: flex;
  justify-content: center ;
}
.callout-one-image img{
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: 0 auto;
  padding: 0 30px;
}
.callout-one-content-container{
  padding: 0 30px;
  margin: 0 auto 40px auto;
}
.callout-one-content {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-content: center;
  gap: 10px;
  padding: 20px;
}
.callout-one-content h2 {
  font-size: 26px;
  line-height: 30px;
  font-family: "jubilat", serif;
  font-weight: 700;
  font-style: normal;
  color: rgb(var(--purple));
  text-align: center;
  margin-bottom: 0;
}
.callout-one-content p {
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 0;
}
.callout-one-content .btn, .callout-two-content .btn , .callout-three-content .btn, .callout-cards-container .btn {
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 14px;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 700;
  cursor:pointer;
  padding:16px 20px;
  width: 100%;
}
.callout-one-content .btn-outline-gold-purple, .callout-two-content .btn-outline-gold-purple, .callout-three-content .btn-outline-gold-purple, .callout-cards-container .btn-outline-gold-purple {
  border: 2px solid rgb(var(--gold));
  color: rgb(var(--purple));
}
.callout-one-content .btn-outline-gold-purple:hover, .callout-two-content .btn-outline-gold-purple:hover, .callout-three-content .btn-outline-gold-purple:hover, .callout-cards-container .btn-outline-gold-purple:hover {
  background-color: rgb(var(--gold));
}
.odl-page .callout-two-content .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .callout-one-content-container{
    /* max-width: 1430px; */
    width: 100%;
    padding: 0 40px;
  }
  .callout-one-image {
    background-position: top center;
    background-size: cover;
    padding: 20px 0 0 0;
    margin-bottom: 50px;
    position: relative;
  }
  .callout-one-image img{
    width: 100%;
    height: auto;
    max-width: 475px;
    position: relative;
    top: 20px;
  }
  .callout-one-content {
    align-items: center;
    padding: 30px;
    max-width: 853px;
    width: 100%;
  }
  .callout-one-content h2 {
    font-size: 40px;
    line-height: 46px;
  }
  .callout-one-content p {
    font-size: 18px;
    line-height: 33px;
  }
 .callout-one-content .btn, .callout-two-content .btn , .callout-three-content .btn, .callout-cards-container .btn {
    letter-spacing: .1em;
    font-size: 16px;
    padding:18px 50px;
  }
}
@media (min-width: 992px) {
    .callout-one-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--purple-700);
    }

  .callout-one-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: url('https://storage.googleapis.com/instapage-user-media/a15816bb/65455050-0-tiger-stripes-bg.jpg') no-repeat center center;
    background-size: cover;
  }
  .callout-one-container .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .callout-one-image {
    background-image: none;
    padding: 0;
    margin: 0;
    max-width: 480px;
    width: 100%;
  }
  .callout-one-image img{
    width: 100%;
    padding: 0;
    display: block;
    position: relative;
    z-index: 2;
    top: 0;
  }
  .callout-one-content-container {
    padding: 120px 0 120px 0;
    width: 100%;
    margin-bottom: 0;
  }
  .callout-one-content {
    align-items: flex-start;
    width: 100%;
    padding: 50px;
  }
}
@media (min-width: 1200px) {
  .callout-one-container .container {
    max-width: 1140px;
    gap: 60px;
  }
}
@media (min-width: 1440px) {
  .callout-one-container .container {
    max-width: 1430px;
    gap: 80px;
    justify-content: space-between;
  }
  .callout-one-content {
    padding: 70px;
  }
  .callout-one-container .container {
    padding-right: 0;
  }
}


/* Callout Two */
.callout-two-container {
  padding: 40px 20px 0 20px;
  background-color: var(--light-gold-100);
}
.callout-two-container-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.callout-two-content {
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-300);
  gap: 10px;
}
.callout-two-content h2 {
  font-size: 26px;
  line-height: 30px;
  font-family: "jubilat", serif;
  font-weight: 700;
  font-style: normal;
  color: rgb(var(--purple));
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.callout-two-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
}
.callout-two-image {
  height: 200px;
  width: 100%;  
  overflow: hidden;
  position: relative;
  margin-top: -10px;
  display: flex;
  justify-content: center;
}
.callout-two-links {
  display: flex;
  flex-direction: column;
  gap:10px;
}
.callout-two-links a {
  color: #461D7C;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 150% */
  text-decoration: underline;
}
.callout-two-links a:hover::after {
  transform: translateX(4px);
}
.callout-two-links a::after {
  content: " \203A";
  font-weight: normal;
  font-size: inherit;
  margin-left: 4px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}
.callout-two-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  margin: 0 auto;
}
.odl-page .container.callout-two-container-inner {
  max-width: 1430px;
  width: 100%;
}
.odl-page .callout-two-image {
  width: 260px;
  margin-top: -30px;
}
.odl-page .callout-two-image img {
  object-fit:cover;
  object-position: top;
}
@media (min-width: 400px) {
  .callout-two-image {
    height: 240px;
  }
}
@media (min-width: 768px) {
  .callout-two-container-inner {
    align-items: flex-start;
    position: relative;
  }
  .callout-two-container {
    padding: 80px 40px 0 40px;
  }
  .callout-two-container .container {
    padding: 0;
  }
  .callout-two-content {
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
  }
  .callout-two-content h2 {
    font-size: 40px;  
    line-height: 46px;
  }
  .callout-two-content p {
    width: 50%;
    font-size: 18px;
    line-height: 33px;
  }
  .callout-two-image {
    height: 400px;
    width: 50%;
    margin-top: -310px;
    margin-left: 55%;
  }
  .callout-two-links {
    flex-direction: row;
    gap:10px;
  }
  .callout-two-image img {
    width: 100%;
    height: 100%;
    object-position: center bottom;
    max-width: none;
  }
  .callout-two-links a + a::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 24px;
    background-color: rgb(var(--gold));
    margin-right: 25px;
    margin-left: 10px;
    vertical-align: middle;
  }
  .odl-page .callout-two-content p, .odl-page .callout-two-content h2 {
    width: 80%;
  }
  .odl-page .callout-two-container-inner {
    padding-bottom: 0;
  }
  .odl-page .callout-two-image {
    height: 390px;
    width: 340px;
    margin-top: 0;
    position: absolute;
    bottom: -80px;
    right: -90px;
  }
  .odl-page .callout-two-image img {
    object-fit:cover;
    object-position: top;
  }
  .odl-page .callout-two-container {
    padding: 80px 40px 80px 40px;
  }
  .callout-two-content .btn {
    max-width: 400px;
    width: 100%;
  }
  .odl-page .callout-two-content .btn {
    max-width: 500px;
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .callout-two-image {
    height: 400px;
    width: 50%;
    margin-top: -220px;
    margin-left: 45%;
  }
  .callout-two-links a {
    font-size: 20px;
  }
  .odl-page .callout-two-image {
    height: 386px;
    width: 340px;
    margin-top: 0;
    position: absolute;
    right: 0;
  }
  .odl-page .callout-two-content p, .odl-page .callout-two-content h2 {
    width: 75%;
  }

}
@media (min-width: 1300px) {
  .callout-two-container {
    flex-direction: row;
    padding: 120px 80px 0 80px;
  }
  .odl-page .callout-two-container {
    padding: 120px 80px 120px 80px;
  }
  .callout-two-content {
    padding: 70px;
    max-width: 700px;
    width: 100%;
  }
  .odl-page .callout-two-content {
    max-width: 850px;
    width: 100%;
  }
  .callout-two-content h2 {
    text-align: left;
  }
  .callout-two-content p {
    width: 100%;
  }
  .callout-two-image {
    height: 600px;
    width: 55%;
    max-width: none;
    margin-top: -480px;
    margin-left: auto;
    margin-right: 0;
  }
  .odl-page .callout-two-container-inner {
    padding-bottom: 0;
  }
  .odl-page .callout-two-image {
    height: 670px;
    width: 581px;
    bottom: -120px;
    right: -70px;
  }
  .odl-page .callout-two-content p, .odl-page .callout-two-content h2 {
    width: 100%;
  }
}

/* Callout Three */
.callout-three-container {
  padding: 40px 0;
  background-color: rgb(var(--purple));
}

.callout-three-container .container {
  max-width: 1430px;
  width: 100%;
  padding: 0 40px;
}
.callout-three-container-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.callout-three-headline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.callout-three-headline-container h2 {
  color: #fff;
  text-align: center;
  font-family: Jubilat;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 115.385% */
  margin: 0;
}
.callout-three-headline-container h2 .gold-text {
  color: rgb(var(--gold));
}
.callout-three-headline-container img {
  width: 108px;
  height: 29px;
  flex-shrink: 0;
}
.callout-three-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  padding: 20px;
}
.callout-three-content-container p {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; 
  margin-bottom: 20px;
}
.callout-three-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.callout-three-content-container p strong {
  color: rgb(var(--purple));
}
.callout-three-content-container img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 500px) {
  .callout-three-content-container img {
    height: 200px;
  }
}
@media (min-width: 600px) {
  .callout-three-content-container img {
    height: 300px;
  }
}

@media (min-width: 768px) {
  .callout-three-container {
    padding: 60px 0;
  }
  .callout-three-container-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .callout-three-content-container {
    flex-direction: row;
    padding: 40px 30px;
    align-items: flex-start;
    gap: 50px;
    align-self: stretch;
  }
  .callout-three-headline-container h2 {
    font-size: 40px;
    line-height: 47px;
  }
  .callout-three-headline-container img {
    width: 140px;
    height: 38px;
    flex-shrink: 0;
  }
  .callout-three-content-container img {
    width: 223px;
    height: 285px;
  }
  .callout-three-content-container p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 33px;
  }
  
}

@media (min-width: 992px) {
  .callout-three-container {
    padding: 120px 0;
  }
  .callout-three-container-inner{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  .callout-three-headline-container {
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    /* min-width: 400px; */
  }
  .callout-three-headline-container h2 {
    text-align: left;
    font-size: 50px;
    line-height: 57px;
  }  
}

@media (min-width: 1200px) {
  .callout-three-content-container {
    padding: 70px;
    max-width: 890px;
  }
}

/* Callout Cards */
.callout-cards-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.callout-card-container {
  display: flex;
  flex-direction: column;
  /* max-width: 1430px; */
  width: 100%;
}

.callout-card-left,
.callout-card-right {
  width: 100%;
  padding: 40px 30px;
}

.callout-card-left {
  background: white;
}

.callout-card-right {
  background: #f5f5f5;
}
.callout-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}
.odl-page .callout-two-container-inner {
  max-width: none;
}
.callout-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.callout-card img {
  width: 55px;
  height: auto;
  flex-shrink: 0;
  margin-right: 10px;
}
.callout-card h2 {
  margin: 0;
  flex-grow: 1;
  font-size: 26px;
  line-height: 34px;
  font-family: "jubilat", serif;
  font-weight: 700;
  font-style: normal;
}
.callout-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-style: normal;
  line-height: 33px;
}
.callout-card.purple {
  background-color: rgb(var(--purple));
  color: #fff;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}
.callout-card.purple h2{
  color: rgb(var(--gold));
}
.callout-card.white {
  background-color: #fff;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}
.callout-card.white h2{
  color: rgb(var(--purple));
}
.odl-page .callout-card.white p {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .callout-card {
    padding: 30px;
  }
  .callout-card img {
    width: 70px;
    margin-right: 30px;
  }
  .callout-card h2 {
    font-size: 40px;
    line-height: 46px;
  }
  .callout-card p {
    margin-left: 100px;
  }
  .callout-card-left, 
  .callout-card-right {
    padding: 70px 40px;
  }
  .callout-card.purple {
    background-color: rgb(var(--purple));
    color: #fff;
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
  .callout-card.white {
    background-color: #fff;
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
  .callout-card.white h2{
    color: rgb(var(--purple));
  }
}
@media (min-width: 992px) { 
  .callout-cards-container {
    display: flex;
    flex-direction: row;
    padding: 0;
    background: linear-gradient(to right, white 50%, #F5F5F5 50%);
  }

  .callout-card-container {
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  .callout-card-left,
  .callout-card-right {
    flex: 1;
    max-width: none;
    padding: 80px 60px;
  }

  .callout-card {
    width: 100%;
    max-width: 511px;
    margin: 0 auto;
  }

  .callout-card.purple {
    max-width: 634px;
    width: 100%;
  }
  .callout-card.white {
    max-width: 634px;
    width: 100%;
  }
}
@media (min-width: 1090px) {

}

/* Highlights */
.highlights-container {
  padding: 40px 0;
  background-color: rgb(var(--purple));
}
.highlights-container h2 {
  font-size: 26px;
  line-height: 30px;
  font-family: "jubilat", serif;
  font-weight: 700;
  font-style: normal;
  color: rgb(var(--gold));
  text-align: center;
}
.highlights-container-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  justify-content: center;
  padding: 20px 0;
}
.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: calc(50% - 10px);
}
.highlight-card h3 {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  font-family: "roboto-condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgb(var(--gold));
  text-transform: uppercase;
  margin: 0;
}
.highlight-card p {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  text-align: center;
}
.highlight-card img {
  height:50px;
  width: 100%;
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .highlight-card h3 {
    font-size: 23px;
    line-height: 40px;
  }
  .highlight-card p {
    font-size: 16px;
    line-height: 30px;
  }
  .highlights-container {
    padding: 80px 0;
  }
  /* .highlights-container .container {
    max-width: 1430px;
    width: 100%;
  } */
  .highlights-container-inner { 
    padding: 30px 0;
  }
  .highlight-card {
    width: calc(50% - 20px);
    padding: 20px;
  }
}

@media (min-width: 992px) {
  .highlights-container h2 {
    font-size: 50px;
    line-height: 57px;
  }
  .highlights-container h3 {
    font-size: 25px;
    line-height: 40px;
  }
  .highlights-container {
    padding: 100px 0;
  }
  .highlights-container-inner { 
    padding: 40px 0;
    gap: 30px;
  }
  .highlight-card img {
    height:60px;
    width: 100%;
  }
  .highlights-container p {
    font-size: 20px;
    line-height: 37px;
  }
    .highlight-card {
    width: calc(33.333% - 20px);
  }
}

/* Page Contact */
.page-contact-container {
  padding: 0 0 60px 0;
  background-color: rgb(var(--purple));
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/contact-section-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.purple-background-overlay{
  background-color: rgba(var(--purple), 1);
  height: 100px;
}
.gold-background-overlay{
  background-color: var(--purple-700);
  height: 100px;
}
.page-contact-content {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  margin: -100px 0 30px 0;
}
.page-contact-content h2{
  font-size: 26px;
  line-height: 33px;
  font-family: "jubilat", serif;
  font-weight: 700;
  font-style: normal;
  color: rgb(var(--purple));
  text-align: center;
  margin: 0;
}
.page-contact-content .btn {
  width: 100%;
}
.page-contact-content .buttons-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.page-contact-content .buttons-container .btn-outline-gold-purple {
  border: 2px solid rgb(var(--gold));
  color: rgb(var(--purple)); 
}
.page-contact-content .buttons-container .btn-outline-gold-purple:hover {
  background-color: rgb(var(--gold));
}
.download-catalog {
  display: flex;
  flex-direction: column;
}
h4.download-catalog-header {
  color: #1B1B1B;
  font-family: 'Roboto',sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.download-catalog-link {
  display: flex;
  flex-direction: row;
}
.download-catalog-link a {
  text-decoration: underline;
  padding-left: 10px;
}
.form-input .btn-purple {
    background-color: rgb(var(--purple)); 
    color: white;
}
.form-input .btn-purple:hover {
  filter: brightness(1.2);
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border: 2px solid rgb(var(--purple));
  box-shadow: 0 0 0 3px rgba(70, 29, 124, 0.15);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-contact-content .buttons-container .btn, .form-input .btn {
margin-top: auto;
text-transform: uppercase;
letter-spacing: .1em;
font-size: 14px;
font-family: proxima-nova, sans-serif;
font-weight: 700;
font-style: normal;
cursor: pointer;
padding: 18px 50px;
}
#phoneNumber a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 23px;
  font-weight: 700;
}
#phoneNumber a:hover {
  text-decoration: none;
}
#phoneNumber a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/phone-icn.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-contact-form {
  display: block;
  background-color: #fff;
  padding: 30px 15px;
}
.page-contact-form .form-content{
  display: none;
}
.page-contact-form h2 {
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  color: rgb(var(--purple));
  text-align: center;
  margin-bottom: 30px;
}
.page-contact-form .form-input {
  display: block;
}
.page-contact-form .form-input label {
  display: none;
}
.page-contact-form .form-input.form-dropdown{
  display: none;
}
.page-contact-form .form-input.form-dropdown.show{
  display: block;
}
.page-contact-form .form-input input,
.page-contact-form .form-input select {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 60px;
}

/* iOS specific select styling */
@supports (-webkit-touch-callout: none) {
  .page-contact-form .form-input select option[value=""] {
      color: rgb(119, 119, 119) !important;
  }
}
.page-contact-form .form-input input[type="checkbox"]{
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
}

/* iOS specific checkbox styling */
@supports (-webkit-overflow-scrolling: touch) {
  .page-contact-form .form-input input[type="checkbox"] {
      width: 15px;
      height: 15px;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border: 1px solid #ccc;
      border-radius: 3px;
  }
}
.page-contact-form .form-input .error-msg {
  position: relative;
  font-size: 12px;
  line-height: 16px;
  font-family: 'Roboto', sans-serif;
  color: #d32f2f;
  margin-top: 4px;
  display: block;
}
.page-contact-form .form-input.privacy-text .error-msg {
  margin-top: -20px;
  margin-bottom: 20px;
}
.page-contact-form .form-input input:focus {
  outline: none;
}
.page-contact-form .form-input.privacy-text {
  margin: 0;
  padding-bottom: 16px;
}
.page-contact-form .form-input.privacy-text .text {
  font-size: 16px;
  color: #333;
  position: absolute;
  top: 0;
  left: 20px;
}
.page-contact-form .form-input.privacy-text .text button {
  background: none;
  border: none;
  color: rgb(var(--purple));
  text-decoration: underline;
  padding: 0;
}
.page-contact-form .form-input.privacy-text .text button:hover {
  text-decoration: underline;
  filter: brightness(1.7);
  
}

.page-contact-form .form-input .btn.btn-primary{
  width: 100%;
  height: 60px;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: bold;
}




/* Additional Form Styles (new) */
/* .form-input {
  margin-bottom: 16px;
} */

label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  color: #333;
}
input.error,
select.error {
  border: 2px solid #d32f2f;
  background-color: #fff5f5;
} 

@media (min-width: 768px) {
  .page-contact-container .container {
    max-width: 1390px;
    width: 100%;
  }
  .page-contact-content {
    height: 200px;
    justify-content: center;
    margin: -100px 0 50px 0;
  }
  .page-contact-content .buttons-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
  .page-contact-content .btn {
    max-width: 300px;
  }
  .page-contact-content .buttons-container .btn, .form-input .btn {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .purple-background-overlay{
    height: 75px;
  }
  .page-contact-content {
    height: 140px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 20px;
    margin: -70px 0 120px 0;
  }
  .page-contact-content .buttons-container {
    justify-content: flex-start;
    width: auto;
    align-items: center;
  }
  .page-contact-content .buttons-container .btn {
    padding: 18px 20px;
  }
  .page-contact-form {
    max-width: 1148px;
    margin: 0 auto 70px auto;
    padding: 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
  }
  .page-contact-form .form-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 40%;
    font-size: 22px;
    line-height: 37px;
  }
  .page-contact-form .form-content h3{
    font-size: 40px;
    line-height: 46px;
    font-family: 'Jubilat', serif;
    font-weight: bold;
    color: rgb(var(--purple));
    margin-bottom: 0;
  }
  .page-contact-form .form-container{
    width: 60%;
  }
  .page-contact-content h2{
    font-size: 23px;
    line-height: 34px;
  }
}
@media (min-width: 1152px) {
  .page-contact-content {
    gap: 44px;
    justify-content: center;
  }
  .page-contact-content h2{
    font-size: 27px;
    line-height: 34px;
  }
  .page-contact-content .buttons-container .btn {
    max-width: none !important;    
    padding: 18px 40px;
  }
}

/* Footer */
.footer-container {
  background-color: rgb(var(--purple));
  padding: 40px 0;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; 
}
.footer-links-container{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 30px 20px;
  align-self: stretch;
  flex-wrap: wrap;
  border-top: 6px solid rgba(127, 92, 172, .3);
  border-bottom: 6px solid rgba(127, 92, 172, .3);
  padding: 30px 0;
}
.footer-content-container {
  display: flex;
  justify-content: center;
}
a.footer-link{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 120px;
}
a.footer-link:hover, .footer-logo-container a:hover {
  text-decoration: none;
  cursor: pointer;
  color: rgb(var(--gold)) !important;
}
a.footer-link img{
  width: 27px;
  height: 25px;
  aspect-ratio: 27/25;
}
a.footer-link:hover img {
  filter: brightness(1.4);
}
a.footer-link h3{
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 18px; 
  margin: 0;
}
a.footer-link h3:hover {
  color: rgb(var(--gold));
}
.footer-icon {
  transition: fill 0.3s ease;
  fill: white;
}

.footer-icon:hover {
  fill: rgb(var(--gold));
}
.footer-copyright-container p {
  font-size: 12px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .footer-links-container{
    justify-content: space-between;
    align-items: center;
    row-gap: 30px;
    align-self: stretch;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .footer-links-container{
    padding: 40px 0;
  }
  a.footer-link{
    flex-direction: row;
    align-items: center;
    gap: 10px;
    max-width: 200px;
  }
  a.footer-link h3{
    font-size: 16px;
    line-height: 24px; 
    text-align: left;
  }
}
@media (min-width: 1400px) {
  a.footer-link{
    max-width: 220px;
  }
  a.footer-link img{
    width: 50px;
    height: 45px;
    aspect-ratio: 50/45;
  }
  a.footer-link h3{
    font-size: 20px;
    line-height: 28px; 
  }
}

.footer-content-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
}
.footer-logo-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
}
.footer-logo-container .footer-logo{
  width: 170px;
  height: 43.254px;
  aspect-ratio: 170.00/43.25;
  margin-bottom: 25px;
}
.footer-logo-container .address,
.footer-logo-container .phone,
.footer-logo-container .email{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.footer-logo-container .phone a,
.footer-logo-container .email a{
  color: #FFF;
}
.footer-logo-container .address span{
  color: #A685D1;
}
.footer-social-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.footer-social-container h2,
.footer-policy-container h2{
  color: #FDD023;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 28px; 
  margin: 0;
}
.footer-social-links-container{
  display: flex;
  align-items: center;
  align-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-social-links-container img{
  width: 26px;
  height: 29.714px;
    aspect-ratio: 26.00/29.71;
}
.footer-policy-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.footer-policy-links-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.footer-policy-links-container a {
  color: #FFF;
}
.footer-policy-links-container a:hover{
  color: #FDD023;
  text-decoration: none;
}
.footer-policy-links-container span{
  color: #A685D1;
}
.footer-copyright-container{
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-content-container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
  }
  .footer-logo-container {
    width: 100%;
  }
  .footer-social-container {
    width: auto;
    align-items: flex-start;
  }
  .footer-policy-container {
    width: auto;
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .footer-container{
    padding: 100px 0;
  }
  .footer-content-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-logo-container,
  .footer-social-container,
  .footer-policy-container {
    width: auto;
    padding: 0;
  }
  .footer-logo-container{
    align-items: flex-start;
  }
  .footer-copyright-container{
    text-align: left;
  }
}




/* ODL */
.steps-container {
  background-color: rgb(var(--purple));
  padding: 40px 0;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
.steps-container-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.step {
  /* outline: 1px solid orange; */
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  transition: all 0.3s ease;
}
.step-number {
  transition: filter 0.3s ease;
}
.step:hover {
  transform: scale(1.03);
}
.step:hover .step-number {
  filter: brightness(1.1);
}
.step-number-container {
  /* outline: 1px solid red; */
  background-image: url(https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/odl-assets/number-brushstroke.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;  
  flex-direction: column;
  justify-content: center;
  width: 50px;
  height: 76px;
  color: #A685D1;
  text-align: center;
  font-family: Jubilat;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 90px; /* 180% */
}
.step-content-container{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.step-content-container h2{
  color: #FFF;
  font-family: "roboto-condensed", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: uppercase;
  text-align: left;
  margin: 0;
}
.step-content-container h2 span{
  color: rgb(var(--gold));
}
.step-content-container p{
  color: #FFF;
  font-family: 'roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; 
  text-align: left;
  margin: 0;
}
.step-divider{
  display: block;
  width: 100%;
  align-self: stretch;  
  background-color: #300E5D;
  height: 2px;
}
@media (min-width: 768px) {
  .steps-container {
    padding: 40px 0 45px 0;
  }
  .steps-container-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .step-divider{
    display: flex;
    width: 4px;
    height: 180px;
    align-self: stretch;  
    background-color: #300E5D;
  }
  .step {
    flex-direction: column;
    width: 100%;
  }
  .step-number-container {
    width: 68px;
    height: 54px;
    font-size: 60px;
  }
  .step-content-container h2{
    font-size: 23px;
    line-height: 30px;
    text-align: center;
  }
  .step-content-container p{
    text-align: center;
  }
}
@media (min-width: 992px) {
  .steps-container-inner {
    gap: 50px;
  }
  .step-number-container {
    width: 110px;
    height: 70px;
    font-size: 80px;
  }
  .step-content-container h2{
    font-size: 23px;
    line-height: 30px;
    text-align: center;
  }
  .step-content-container p{
    text-align: center;
    font-size: 20px;
    line-height: 27px;
  }
}

.odl-courses-container{
  background-color: #F9F8F0;
  padding: 40px 0;
  text-align: center;
}
.odl-courses-container h2 {
  color: rgb(var(--purple));
  text-align: center;
  font-family: Jubilat;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; 
}
.odl-courses-container p{
  color: #171717;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.odl-courses-card-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.odl-courses-card{
  width: calc(50% - 10px);
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
  border: 3px solid #EFEFEF;
  align-items: flex-start;
  transition: border-color 0.3s ease;
}
.odl-courses-card img{
  width: 35px;
  height: 34px;
  flex-shrink: 0;
}
.odl-courses-card h3{
  color: #000;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  text-align: left;
}
.odl-courses-card .link-purple-arrow{
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.odl-courses-card:hover {
  text-decoration: none;
  background-color: #F5F4F8;
  border-color: rgba(var(--purple), 0.2);
}

@media (min-width: 768px) {
  .odl-courses-container{
    padding: 60px 0;
  }
  .odl-courses-card-container{
    padding: 30px 0px;
  }
  .odl-courses-container h2 {
    font-size: 40px;
    line-height: 47px;
  }
  .odl-courses-container p {
    font-size: 22px;
    line-height: 39px;
  }
  .odl-courses-card{
    flex: 0 0 calc(33.333% - 1.25rem);
    height: 244px;
    padding: 10px 30px;
  }
  .odl-courses-card img{
    width: 43px;
    height: 43px;
  }
  .odl-courses-card h3{
    font-size: 24px;
  }
  .odl-courses-card .link-purple-arrow{
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .odl-courses-container{
    padding: 120px 0 120px 0;
  }
  .odl-courses-card{
    flex: 0 0 calc(25% - 1.33rem);
  }
  .odl-courses-container h2 {
    font-size: 57px;
    line-height: 57px;
  }
}

/* Paralegal */
.page-submenu-container{
  background: #271145;
  padding: 10px 0;
}
.page-submenu-links{
  display: flex;  
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 10px 40px;
  align-self: stretch;
  flex-wrap: wrap;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
}
.page-submenu-links a{
  color: #fff;
  text-decoration: none;
}
.page-submenu-links a::after {
  content: "\203A";
  font-weight: normal;
  font-size: inherit;
  margin-left: 4px;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.page-submenu-links a:hover::after {
  transform: translateX(4px);
}
.paralegal-page .why-choose-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .page-submenu-container{
    padding: 20px 0;
  }
  .page-submenu-links{
    height: 62px;
    justify-content: space-between;
    font-size: 16px;
    align-items: center;
    align-self: stretch;
  }
}
@media (min-width: 992px) {
  .page-submenu-links{
    justify-content: center;
    gap: 80px;
  }
}
.why-choose-container{
  background-color: rgb(var(--purple));
  padding: 30px 0 0 0;
}
.why-choose-container h2{
  color: #FFF;
  font-family: Jubilat;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; 
  text-align: center;
  margin-bottom: 30px;
}
.why-choose-content-container{
  background: linear-gradient(to bottom, rgb(var(--purple)) 50%, rgb(var(--grey-light)) 50%);
}
ul.why-choose-content-inner{
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 40px;
  list-style: none;
}
li.why-choose-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #000;
  text-align: center;
}
li.why-choose-card img{
  width: 47px;
  height: 37px;
}
li.why-choose-card h3{
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: 23px;
}
li.why-choose-card p{
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; 
}
@media (min-width: 500px) {
  ul.why-choose-content-inner{
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 768px) {
  .why-choose-container{
    padding: 40px 0 0 0;
  }
  .why-choose-container h2{
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 40px;
  }
  ul.why-choose-content-inner{
    flex-direction: row;
    gap: 20px;
    padding: 30px;
    max-width: 743px;
    margin-bottom: 40px;
    list-style: none;
  }
  li.why-choose-card{
    /* padding: 0 10px; */
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex: 1 0 0;
    text-align: left;
  }
  li.why-choose-card img{
    width: 44px;
    height: 30px;
  }
  li.why-choose-card h3{
    font-size: 18px;
    line-height: 23px;
  }
  li.why-choose-card p{
    font-size: 12px;  
    line-height: 21px;
  }
}
@media (min-width: 992px) {
  .why-choose-container{
    padding: 120px 0 0 0;
  }
  .why-choose-container h2{
    font-size: 50px;
    line-height: 57px;
  }
  ul.why-choose-content-inner{
    flex-direction: row;
    gap: 60px;
    padding: 40px 60px;
    max-width: 1000px;
    margin-bottom: 40px;
  }
  li.why-choose-card{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  } 
  li.why-choose-card img{
    width: auto;
    height: 45px;
  }
  li.why-choose-card h3{
    font-size: 20px;
    line-height: 25px;
  }
  li.why-choose-card p{
    font-size: 16px;
    line-height: 27px;
  }
}
@media (min-width: 1494px) {
  ul.why-choose-content-inner{
    flex-direction: row;
    gap: 20px;
    padding: 40px 60px;
    max-width: 1434px;
    margin-bottom: 40px;
    list-style: none;
  }
}

.program-overview-container {
  background-color: #fff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #000;
  font-family: Roboto;
  margin: 40px 0;
}
.program-overview-headline{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.program-overview-headline h2{
  color: rgb(var(--purple));
  font-family: Jubilat;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
}
.program-overview-headline .emphasis-brushstroke{
  width: 125.941px;
  height: 34.009px;
  margin-bottom: 20px;
  object-position: center !important;
}
.program-overview-headline img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}
.paralegal-page .program-overview-headline img{
  object-position: 0 -10px;
}
.program-overview-content p{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; 
  margin-bottom: 30px;
}
.program-overview-content h3{
  color:rgb(var(--purple));
  font-family: "roboto-condensed";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px; 
  text-transform: uppercase;
  margin-bottom: 10px;
}

ul.program-overview-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.program-overview-list li p {
  padding-left: 15px;
  border-left: 4px solid #DED4E9;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}
@media (min-width: 768px) {
  .program-overview-container{
    padding: 30px;
    gap: 20px;
    margin: 60px 0;
  }
  .program-overview-headline h2{
    font-size: 40px;
    line-height: 57px;
  }
  .program-overview-headline .emphasis-brushstroke{
    width: 140.722px;
    height: 38.722px;
  }
  .program-overview-headline img{
    height: 317px;
  }
  .program-overview-content p{
    font-size: 22px;
    line-height: 39px;
    margin-bottom: 20px;
  }
  .program-overview-content h3{
    font-size: 23px;
    line-height: 33px;
  }
  
  ul.program-overview-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  ul.program-overview-list li {
    width: 100%;
  }
  ul.program-overview-list li p {
    font-size: 16px;
    line-height: 27px;
  }
}
@media (min-width: 992px) {
  .program-overview-container{
    flex-direction: row;
    padding: 80px;
    gap: 80px;
    margin: 120px 0;
  }
  .program-overview-headline{
    align-items: flex-end;
    gap: 30px;
    max-width: 334px;
    width: 100%;
  }
  .paralegal-page .program-overview-headline {
    gap: 10px;
  }
  .program-overview-headline h2{
    font-size: 50px;
    line-height: 57px;
    text-align: right;
  }
  .program-overview-headline .emphasis-brushstroke{
    width: 200.005px;
    height: 54.009px;
  }
  .program-overview-headline img{
    height: 216.768px;
  }
  .program-overview-content p{
    font-size: 22px;
    line-height: 39px;
    margin-bottom: 30px;
  }
  .program-overview-content h3{
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 40px;
  }
  ul.program-overview-list li p {
    font-size: 16px;
    line-height: 27px;
  }
}
@media (min-width: 1438px) {
  ul.program-overview-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}




.paralegal-page .callout-three-headline-container h2{
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 17px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}
.paralegal-page .callout-three-headline-container h2 span{
  text-align: center;
  font-family: Jubilat;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px; 
  display: block;
  margin-bottom: 8px;
}
.paralegal-page .callout-three-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.paralegal-page .callout-three-content img{
  width: 143px;
  height: 77px;
  margin-bottom: 10px;
}
.paralegal-page .callout-three-content p{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; 
  margin-bottom: 10px;
}
.paralegal-page .callout-three-content p strong{
  color: #000;
  font-family: Roboto;
}
.paralegal-page .callout-three-content .source-text{
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; 
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .paralegal-page .callout-three-headline-container h2{
    font-size: 16px;
    line-height: 33px;
    letter-spacing: 0.96px;
  }
  .paralegal-page .callout-three-headline-container h2 span{
    font-size: 40px;
    font-weight: 700;
    line-height: 57px; 
  }
  .paralegal-page .callout-three-content img{
    width: 141px;
    height: 38px;
  }  
  .paralegal-page .callout-three-content {
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
  }
  .paralegal-page .callout-three-content p{
    font-size: 22px;
    line-height: 39px;
  }
  .paralegal-page .callout-three-content img{
    width: 210px;
    height: 113px;
  }
}
@media (min-width: 992px) {
  .paralegal-page .callout-three-headline-container {
    align-items: flex-end;
  }
  .paralegal-page .callout-three-headline-container h2{
    text-align: right;
    font-size: 18px;
    line-height: 33px; 
    letter-spacing: 1.08px;
  }
  .paralegal-page .callout-three-headline-container h2 span{
    text-align: right;
    font-size: 40px;
    line-height: 57px; 
  }
  .paralegal-page .callout-three-headline-container img{
    width: 200px;
    height: 54px;
  }
  .paralegal-page .callout-three-content p{
    font-size: 22px;
    line-height: 39px;
  }
  .paralegal-page .callout-three-content .source-text{
    font-size: 14px;
    line-height: 39px; 
  }
  .paralegal-page .callout-three-content img{
    width: 100%;
    max-width: 200px;
    height: auto;  
  }
}



.paralegal-page .callout-two-content{
  padding-bottom: 190px;
}
.paralegal-page .callout-two-content h2{
  text-align: center;
}
.paralegal-page .callout-two-image{
  width: 260px;
  margin-top: -170px;
}
.paralegal-page .callout-two-image img {
  object-fit:cover;
  object-position: top;
}
.paralegal-page .callout-two-list li:nth-child(odd) {
  background-color: #FAFAFA;
}
ul.callout-two-list{
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
ul.callout-two-list li{
  color: #000;
  font-family: Roboto;
  padding: 20px;
}
ul.callout-two-list li h3{
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: 23px;
  margin-bottom: 10px;
}
ul.callout-two-list li p{
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .paralegal-page .callout-two-container{
    padding: 60px 0;
  }
  .paralegal-page .callout-two-content{
    padding-bottom: 150px;
  }
  .paralegal-page .callout-two-image{
    width: 207.817px;
    height: 300px;
    margin-top: -170px;
    position: absolute;
    bottom: -60px;
    right: 40px;
  }
  ul.callout-two-list li h3{
    font-size: 20px;
    line-height: 25px;
  }
  ul.callout-two-list li p{
    font-size: 16px;
    line-height: 27px;    
  }
}
@media (min-width: 992px) {
  .paralegal-page .callout-two-image{
    width: 400px;
    height: auto;
    right: 20px;
    bottom: -60px;
  }
  ul.callout-two-list li p{
    font-size: 16px;
    line-height: 27px;
    width: 50%;
  }
}
@media (min-width: 1300px) {
  .paralegal-page .callout-two-container {
    padding: 120px 80px 120px 80px;
  }
  .paralegal-page .callout-two-content {
    padding: 70px;
    max-width: none;
    width: 100%;
  }
  .paralegal-page .callout-two-image{
    width: 400px;
    right: 100px;
    bottom: -120px;
  }
}



.paralegal-page .curriculum-overview-container{
  background-color: #fff;
  padding: 40px 0;
  font-family: Roboto;
  color: #000;
}
.paralegal-page .curriculum-overview-headline h2{
  color: rgb(var(--purple));
  font-family: Jubilat;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
  margin-bottom: 10px;
}
.paralegal-page .curriculum-overview-headline p{
  color: #171717;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 0;
}
.paralegal-page .curriculum-overview-content{
  display: flex;
  padding: 30px 0px;
  flex-direction: column;
  gap: 40px;
}
.paralegal-page .courses-container h3{
  color: rgb(var(--purple));
  text-align: center;
  font-family: "roboto-condensed";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .paralegal-page .curriculum-overview-container{
    padding: 60px 0 60px 0;
  }
  .paralegal-page .curriculum-overview-headline p{
    font-size: 22px;
    line-height: 39px;
    text-align: center;
  }
  .paralegal-page .curriculum-overview-headline h2{
    font-size: 50px;
    line-height: 57px;
  }
  .paralegal-page .curriculum-overview-headline p{
    text-align: center;
    font-size: 22px;
    line-height: 39px;
  }
  .paralegal-page .courses-container h3{
    font-size: 25px;
    line-height: 33px;
  }
  .paralegal-page .curriculum-overview-content-footer{
    padding: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; 
  }
}
@media (min-width: 992px) {
  .paralegal-page .curriculum-overview-container{
    padding: 120px 0 120px 0;
  }
  .paralegal-page .curriculum-overview-content{
    flex-direction: row;
    gap: 60px;
  }
  .paralegal-page .courses-container{
    width: 50%;
  }
}


#course-accordion .panel{
  border-bottom: 1px solid #D6D6D6;
}
#course-accordion .list-group-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 0 8px 0;
  border: none;
  
}
#course-accordion a.panel-title {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}
#course-accordion a.panel-title[aria-expanded="true"]{
  color: rgb(var(--purple));
}
#course-accordion .panel-title::before {
  content: '';
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  width: 19px;
  height: 19px;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/paralegal-assets/course-icn.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#course-accordion .panel-title.internship::before {
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/paralegal-assets/internship-course-icn.svg');
}
#course-accordion .panel-title.seminar::before {
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/paralegal-assets/legal-seminar-icn.svg');
}
#course-accordion .panel-title::after {
  content: '';
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/dropdown-open.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 40%;
}
#course-accordion .panel-title[aria-expanded="true"]::after {
  content: '';
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/dropdown-close.svg');
}
#course-accordion .card-body{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  padding: 0 0 15px 0;
}
.paralegal-page .curriculum-overview-content-footer{
  padding: 20px 30px;
  background-color: #FAFAFA;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.paralegal-page .curriculum-overview-content-footer p{ 
  margin-bottom: 0;
}

.callout-opportunities-container{
  background-color: rgb(var(--purple));
  padding: 40px 0;
  font-family: Roboto;
  gap: 20px;
}
.callout-opportunities-container-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.callout-opportunities-headline h2{
  color: #FFF;
  font-family: Jubilat;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
}
.callout-opportunities-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.callout-opportunities-content img{
  width: 100%;
  height: 215px;
  object-fit: cover;
}
.callout-opportunities-content-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.callout-opportunities-content-inner p{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.callout-opportunities-content-inner ul{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  flex: 1 0 0;
  flex-wrap: wrap;
  margin: 0;
}
.callout-opportunities-content-inner ul li{
  display: flex;
  padding: 5px 9px;
  gap: 10px;
  border-radius: 6px;
  background: #7F5CAC;
  color: #FFF;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
}
.callout-opportunities-content-inner ul li:hover{
  filter: brightness(1.1);
}
@media (min-width: 768px) {
  .callout-opportunities-container{
    padding: 60px 0;
    gap: 30px;
  }
  .callout-opportunities-headline h2{
    font-size: 40px;
    line-height: 57px;
  }
  .callout-opportunities-content img{
    height: 283px;
    object-fit: cover;
  }
  .callout-opportunities-content-inner p{
    font-size: 22px;
    line-height: 39px;
  }
  .callout-opportunities-content-inner ul li{
    font-size: 16px;
    line-height: 33px;
    padding: 10px 20px;
  }
}
@media (min-width: 992px) {
  .callout-opportunities-container{
    padding: 120px 0;
  }
  .callout-opportunities-container-inner{
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
  }
  .callout-opportunities-headline h2{
    text-align: right;
    font-size: 50px;
    line-height: 57px;
  }
  .callout-opportunities-content{
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
  }
  .callout-opportunities-content img{
    width: 355px;
    height: 231px;
  }
  .callout-opportunities-content-inner ul{
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
  }
}

@media (min-width: 1400px) {
  .callout-opportunities-content{
  flex-direction: row-reverse;
  }
}

.callout-apply-container{
  background-color: var(--purple-700);
  padding: 40px 0;
  font-family: Roboto;
}
.paralegal-page .callout-apply-content-container {
  gap: 0;
}
.paralegal-page .gray-row {
  background-color: #fafafa;
}
.callout-apply-container-inner{
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
}
.callout-apply-headline{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.callout-apply-headline h2{
  color: rgb(var(--purple));
  font-family: Jubilat;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  text-align: center;
}
.callout-apply-headline img{
  width: 125px;
  height: 33.755px;
  margin-bottom: 20px;
}
.callout-apply-headline img.apply-image{
  width: 100%;
  height: 190.159px;
  object-fit: cover;
}

.callout-apply-content-container{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.callout-apply-content-container h3{
  color: rgb(var(--purple));
  font-family: "roboto-condensed";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
.callout-apply-content{
  color: #000;
  font-family: Roboto;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.callout-apply-content h4{
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: 23px;
}
.callout-apply-content p{
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
}
.callout-apply-content-divider{
  margin-bottom: 20px;
}
.or-text{
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 25px;
}
.callout-apply-content-footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.callout-apply-content-footer .btn {
  width: 100%;
}
.callout-apply-content-footer p{
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.callout-apply-content-footer a{
  font-weight: 700;
}
.paralegal-page .callout-apply-content h4 {
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .callout-apply-container{
    padding: 60px 0;
  }
  .callout-apply-container-inner {
    padding: 40px;
  }
  .callout-apply-headline h2{
    font-size: 40px;
    line-height: 57px;
  }
  .callout-apply-headline img{
    width: 140px;
    height: 38px;
  }
  .callout-apply-headline img.apply-image{
    height: 270px;
  }
  .callout-apply-content-container h3{
    font-size: 23px;
    line-height: 33px;
    text-align: left;
  }
  .callout-apply-content{
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 30px;
  }
  .callout-apply-content p{
    font-size: 16px;
    line-height: 27px;
  }
  .callout-apply-content-inner {
    flex: 1;
  }
  .callout-apply-content-divider {
    display: flex;
    align-items: center;
    padding: 0 20px;
  }
  .callout-apply-content-footer p{
    font-size: 22px;
    line-height: 39px;
  }
}
@media (min-width: 992px) {
  .callout-apply-container{
    padding: 120px 0;
  }
  .callout-apply-container-inner {
    padding: 80px;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }
  .callout-apply-headline{
    width: 40%;
  }
  .callout-apply-headline h2{
    font-size: 50px;
    line-height: 57px;
    text-align: right;
  }
  .callout-apply-headline img{
    width: 200.005px;
    height: 54.009px;
  }
  .callout-apply-headline img.apply-image{
    height: 270px;
  }
  .callout-apply-content-footer {
    width: 100%;
  }
  .callout-apply-content-footer .btn {
    width: 100%;
  }
}

/*****************/
/*   OLLI Page   */
/*****************/

/* OLLI header Banner */
.olli-header-banner {
  background: linear-gradient(180deg, rgba(34, 0, 78, 0.3) 4%, #461d7c 100.47%),
              url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/olli/mobile-headerbg@2x.jpg');
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.olli-content-wrapper {
  /* outline: solid red 1px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  /* max-width: 1200px; */
  max-width: 1400px;
  margin: 0 auto;
}
.olli-logo-container {
  position: relative;
  z-index: 3;
}
.olli-logo-tablet {
  display: none;
}
.olli-logo-mobile {
  width: 200px;
  height: auto;
}
.olli-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 27px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  margin: 0;
  z-index: 2;
  position: relative;
}
.olli-tagline p {
  margin: 0;
  font-weight: 400;
}
.olli-tagline strong {
  font-weight: 700;
}
.olli-header-buttons {  
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 400px;
  z-index: 1;
  position: relative;
  padding-top: 10px;
}
.olli-btn {
  height: 60px;
  border: none;
  border-radius: 4px;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.olli-btn-primary {
  background-color: #fdd023;
  color: #461d7c;
}
.olli-btn-primary:hover,
.olli-btn-secondary:hover {
  background-color: #e6c020;
  color: #461d7c !important;
  text-decoration: none;
}
.olli-btn-secondary {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fdd023 !important;
  border: 2px solid #fdd023;
}
/* Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* H1 with logo styling */
.olli-main-title {
  margin: 0;
  display: inline-block;
  line-height: 1;
  border-bottom: none !important; 
  padding-bottom: 0 !important; 
}

.olli-logo-h1 {
  height: auto;
  width: 200px;
  max-width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .olli-logo-h1 {
    width: 600px;
  }
}
@media (min-width: 992px) {
  .olli-logo-h1 {
    width: 800px;
  }
}

@media (min-width: 769px){
  .olli-header-banner {
    padding: 100px 60px;
    gap: 10px;
    background-image: none;
  }
  /* Background video styling - dynamically loaded on tablet */
  .olli-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    /* z-index: -1; */
    object-fit: cover;
  }
  /* Video overlay to maintain the gradient effect */
  .olli-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(34, 0, 78, 0.3) 4%, #461d7c 100.47%);
    z-index: 1;
    pointer-events: none;
  }  
  .olli-content-wrapper {
    gap: 40px;
  }  
  .olli-logo-mobile {
    display: none;
  }  
  .olli-logo-tablet {
    display: block;
    position: relative;
    width: 545px;
    height: 75px;
  }  
  .olli-tagline {
    font-size: 40px;
    line-height: 44px;
  }  
  .olli-header-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    max-width: none;
    padding-top: 30px;
  }  
  .olli-btn {
    width: 302px;
  }  
  .olli-btn-secondary {
    background-color: rgba(0, 0, 0, 0.13);
  }
}

@media (min-width: 1200px) {
  .olli-header-banner {
    padding: 180px 140px;
    gap: 10px;
    background-image: none; 
  }
  .olli-content-wrapper {
    gap: 40px;
    align-items: center;
  }  
  .olli-tagline {
    font-size: 40px;
    line-height: 44px;
  }  
  .olli-header-buttons {
    flex-direction: row;
    gap: 30px;
    max-width: none;
    padding-top: 30px;
  }  
}

/* OLLI Sub Navigation */
.olli-sub-nav {
  background-color: #271145;
  padding: 40px 20px;
  width: 100%;
}
.olli-sub-nav-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px 20px;
  flex-wrap: wrap;
  width: 100%;
}
.olli-sub-nav-logo {
  display: none;
}
a.olli-sub-nav-link {
  display: flex;  
  justify-content: center;
  align-items: center;
  align-content: center;
  align-self: stretch;
  flex-wrap: wrap;
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff !important;
  text-decoration: none;
  line-height: 1.6;
  white-space: nowrap;
  transition: color 0.3s ease;
}
a.olli-sub-nav-link::after {
  content: "\203A";
  font-weight: normal;
  font-size: inherit;
  margin-left: 4px;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
a.olli-sub-nav-link:hover::after {
  transform: translateX(4px);
}
@media (min-width: 769px) {
  .olli-sub-nav {
    padding: 40px;
  }
  .olli-sub-nav-container {
    justify-content: space-between;
  }
  a.olli-sub-nav-link {
    font-size: 16px;
  }
}
@media (min-width: 992px) {  
  .olli-sub-nav-logo {
    display: block;
    width: 151px;
    height: 21px;
  }
}

/* OLLI About Section */
.olli-about {
  background-color: #f1eddb;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/olli/intro-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  width: 100%;
}
.olli-about-content {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.olli-about-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.olli-about-text h2 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 30px;
  color: #461d7c;
  text-align: center;
  margin: 0;
}
.olli-about-text p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  text-align: center;
  margin: 0;
}
.olli-about-photos {
  display: flex;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}
.olli-about-photos img {
  flex: 1;
  width: 100px;
  height: auto;
}
.olli-about-photos img:last-child{
  display: none;
}
.olli-about-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.olli-step {
  display: flex;
  gap: 14px;
  width: 100%;
  align-items: flex-start;
}
.olli-step-icon {
  flex-shrink: 0;
  width: 32px;
  padding-top: 6px;
}
.olli-step-content h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.4;
  color: #461d7c;
  margin: 0 0 8px 0;
}
.olli-step-content p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}

@media (min-width: 769px) {
  .olli-about {
    padding: 60px 30px;
  }
  .olli-about-content {
    padding: 40px 30px;
    gap: 30px;
  }
  .olli-about-photos img:last-child{
    display: block;
  }
  .olli-about-text {
    gap: 30px;
  }
  .olli-about-title h2 {
    font-size: 40px;
    line-height: 48px;
  }  
  .olli-about-description p {
    font-size: 25px;
    line-height: 40px;
  }  
  .olli-about-photos {
    gap: 26px;
  }  
  .olli-about-photo {
    height: 160px;
  }
  .olli-step {
    gap: 20px;
  }
  .olli-step-icon {
    width: 40px;
  }
  .olli-step-content h3 {
    font-size: 25px;
    line-height: 35px;
  }
  .olli-step-content p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (min-width: 1200px) {
  .olli-about {
    padding: 120px 56px;
  }  
  .olli-about-content {
    padding: 80px;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
  }  
  .olli-about-text {
    width: 100%;
    flex-basis: 100%;
  }  
  .olli-about-photos {
    flex: 1;
    max-width: 50%;
    order: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }  
  .olli-about-photos img {
    width: 100%;
    height: auto;
  }  
  .olli-about-steps {
    flex: 1;
    max-width: 50%;
    order: 2;
    grid-template-columns: 1fr;
    gap: 25px;
  }  
  .olli-about-title h2 {
    font-size: 36px;
    line-height: 42px;
  }  
  .olli-about-description p {
    font-size: 22px;
    line-height: 1.7;
  }
}

/* OLLI Download Catalog Section */
.olli-download-catalog {
  background-color: #271145;
  padding: 40px 20px;
  width: 100%;
}
.olli-catalog-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.olli-catalog-info {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.olli-catalog-image {
  flex-shrink: 0;
  width: 67px;
  height: 86px;
}
.olli-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.olli-catalog-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #ffffff;
}
.olli-catalog-text h3 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}
.olli-catalog-highlight {
  color: #fdd023;
}
.olli-catalog-text p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin: 0;
}
.olli-catalog-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px 30px;
  border: 2px solid #fdd023;
  background-color: transparent;
  color: #fdd023 !important;
  text-decoration: none;
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.olli-catalog-button:hover {
  background-color: #fdd023;
  color: #271145 !important;
  text-decoration: none;
}
.olli-catalog-button img {
  width: 18px;
  height: 18px;
}

@media (min-width: 769px) {
  .olli-download-catalog {
    padding: 60px 40px;
  }  
  .olli-catalog-content {
    gap: 50px;
  }  
  .olli-catalog-info {
    gap: 30px;
  }
  .olli-catalog-image {
    width: 109px;
    height: 141px;
  }
  .olli-catalog-text {
    border-left: 12px solid #FDD023;
    padding-left: 30px;
  }
  .olli-catalog-text h3 {
    font-size: 40px;
    line-height: 48px;
  }  
  .olli-catalog-text p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (min-width: 992px) { 
  .olli-catalog-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }
  .olli-catalog-text h3 {
    font-size: 37px;
    line-height: 44px;
  }  
  .olli-catalog-text p {
    font-size: 22px;
    line-height: 39px;
  }  
  .olli-catalog-button {
    flex-shrink: 0;
    width: 345px;
  }
}

/* OLLI Chapter Locations Section */
.olli-chapter-locations {
  background-color: #461d7c;
  padding: 30px 20px;
  width: 100%;
}
.olli-locations-container {
  max-width: 1400px;
  margin: 0 auto;
}
.olli-locations-content {
  background-color: #ffffff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
  justify-content: center;
}
.olli-locations-title {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.4;
  color: #461d7c;
  text-align: center;
  margin: 0;
}
.olli-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.olli-location-card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
}
.olli-location-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.olli-location-info h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}
.olli-location-subtitle {
  font-family: 'roboto-condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #9c7dc5;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .olli-chapter-locations {
    padding: 60px 30px;
  }  
  .olli-locations-content {
    padding: 40px 30px;
    gap: 30px;
  }  
  .olli-locations-title {
    font-size: 40px;
    line-height: 56px;
  }  
  .olli-locations-grid {
    gap: 30px;
  }
  .olli-location-card {
    min-width: 150px;
    max-width: 180px;
  }  
  .olli-location-info h3 {
    font-size: 25px;
    line-height: 35px;
  }  
  .olli-location-subtitle {
    font-size: 21px;
    line-height: 21px;
  }
}

@media (min-width: 992px) {
  .olli-chapter-locations {
    padding: 60px 40px;
  }  
  .olli-locations-content {
    padding: 60px 80px;
    gap: 60px;
  }  
  .olli-locations-title {
    font-size: 50px;
  }  
  .olli-locations-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 80px;
  }
  .olli-location-info h3 {
    font-size: 24px;
  }
  .olli-location-subtitle {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .olli-locations-grid {
    gap: 140px;
  }
}

/* OLLI Membership Section */
.olli-membership {
  background-color: #ffffff;
  padding: 40px 20px;
  width: 100%;
}
.olli-membership-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.olli-background-swoosh {
  display: none;
}
.olli-membership-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 10px 0;
  width: 100%;
}
.olli-membership-header h2 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.4;
  color: #461d7c;
  text-align: center;
  margin: 0;
}
.olli-membership-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.olli-benefits-box {
  background-color: #f9f8f0;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.olli-benefits-box h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}
ul.olli-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.olli-benefits-list:last-child{
  margin-top: 20px;
}
li.olli-benefit-item {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  width: 100%;
}
.olli-benefit-icon {
  flex-shrink: 0;
  width: 15px;
  height: 18px;
  padding-top: 5px;
}
.olli-benefit-item p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  flex: 1;
}
.olli-benefits-note {
  padding-top: 16px;
  width: 100%;
}
.olli-benefits-note p {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}
.olli-pricing-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 12px 0 0 0;
  width: 100%;
}
.olli-pricing-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.olli-pricing-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.5;
  color: #461d7c;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.38px;
}
.olli-pricing-amount {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 97px;
  line-height: 1;
  color: #461d7c;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/olli/stat_brush_light_purple.png');
  background-size: 228px 48px;
  background-position: center center;
  background-repeat: no-repeat;
  width: 228px;
}
.olli-apply-button {
  background-color: #461d7c;
  color: #fdd023 !important;
  text-decoration: none;
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  text-align: center;
  padding: 19px 30px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.olli-apply-button:hover {
  background-color: #fdd023;
  color: #461d7c !important;
  text-decoration: none;
}

@media (min-width: 769px) {
  .olli-membership {
    padding: 60px 30px;
  }  
  .olli-membership-container {
    gap: 30px;
  }  
  .olli-membership-header h2 {
    font-size: 40px;
    line-height: 56px;
  }  
  .olli-benefits-box {
    padding: 40px;
    gap: 20px;
  }  
  .olli-benefits-box h3 {
    font-size: 24px;
  }  
  .olli-benefits-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }  
  .olli-benefits-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }    
  ul.olli-benefits-list {
    flex: 1;
    gap: 20px;
  }  
  ul.olli-benefits-list:last-child{
    margin-top: 0;
  }
  .olli-benefit-item p {
    font-size: 18px;
    line-height: 25px;
  }  
  .olli-pricing-label {
    font-size: 16px;
  }  
}

@media (min-width: 992px) {
  .olli-membership {
    padding: 96px 60px 0 60px;
  }  
  .olli-background-swoosh {
    display: block;
    padding-top: 34px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  .olli-membership-container {
    gap: 40px;
  }
  .olli-membership-header h2 {
    font-size: 50px;
    line-height: 56px;
  }
  .olli-membership-content {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  .olli-benefits-box {
    flex: 1;
    padding: 50px 40px;
  }
  .olli-benefits-container {
    flex-direction: column;
    gap: 30px;
  }   
  ul.olli-benefits-list:last-child{
    margin-top: -10px;
  } 
  .olli-benefit-item p {
    font-size: 20px;
  }  
  .olli-pricing-section {
    flex: 1;
    align-items: center;
    gap: 40px;
    padding: 0;
  }  
  .olli-pricing-info {
    align-items: center;
  }  
  .olli-apply-button {
    font-size: 20px;
    padding: 30px 50px;
    height: 80px;
    max-width: 300px;
  }
}
@media (min-width: 1400px) {
  .olli-benefits-box {
    flex: 2;
    padding: 50px 40px;
  }
  .olli-benefits-container {
    flex-direction: row;
  }
  ul.olli-benefits-list:last-child{
    margin-top: 0;
  }
}

/* OLLI Explore Courses Section */
.olli-explore-courses {
  background-color: #461d7c;
  padding: 30px 20px;
  width: 100%;
}
.olli-explore-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.olli-explore-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px 0;
  width: 100%;
}
.olli-explore-header h2 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
.olli-explore-content {
  background-color: #271145;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.olli-program-card {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.olli-program-card:hover {
  text-decoration: none;
}
.olli-program-image {
  position: relative;
  width: 72px;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.olli-program-image img {  
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
}
.olli-program-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.olli-program-info {  
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 15px 10px;
  width: 100%;
}
.olli-program-info h3 {
  font-family: 'roboto-condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
}
.olli-program-info h4 {
  display: none;
}
.olli-title-underline {
  background-color: #f1eddb;
  height: 2px;
  width: 100%;
}
.olli-program-info p {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: normal;
  color: #461d7c;
  text-decoration: none;
  letter-spacing: 0.16px;
  margin: 0;
}
.olli-program-info p:after {
  content: "\203A";
  font-weight: normal;
  font-size: inherit;
  margin-left: 4px;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}


@media (min-width: 768px) {
  .olli-explore-courses {
    padding: 60px 30px;
  }  
  .olli-explore-container {
    gap: 30px;
  }  
  .olli-explore-header h2 {
    font-size: 40px;
  }  
  .olli-explore-content {
    padding: 36px 38px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }  
  .olli-program-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    width: 100%;
  }  
  .olli-program-image {
    width: 100%;
    height: 150px;
  }  
  .olli-program-info {
    padding: 30px 0 0 0;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }  
  .olli-program-info h3 {
    font-size: 25px;
    line-height: 1.4;
  }  
  .olli-program-info h4 {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    display: block;
    margin: 0;
  }
  .olli-program-info p {
    font-size: 18px;
    margin-top: 10px;
  }
  
  .olli-program-card:hover .olli-program-image img {
    transform: scale(1.05);
  }
  .olli-program-card:hover .olli-program-info p:after {
    transform: translateX(4px);
  }
}

@media (min-width: 1200px) {
  .olli-explore-courses {
    padding: 100px 50px 120px 50px;
  }  
  .olli-explore-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 60px;
  }  
  .olli-explore-header h2 {
    font-size: 50px;
  } 
  .olli-program-image {
    width: 100%;
    height: 175px;
  }
}

/* Explore. Learn. Connect. Section Styles */
.olli-explore-learn-connect {
  background-color: #f5f5f5;
  padding: 40px 20px;
}
.olli-explore-learn-connect-container {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.olli-explore-learn-connect-header {
  text-align: center;
  margin-bottom: 20px;
}
.olli-explore-learn-connect-header h2 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  color: #461d7c;
  line-height: 1.3;
  margin: 0;
}
.olli-explore-learn-connect-header img{
  display: none;
}
.olli-explore-learn-connect-content {
  background-color: #ffffff;
  padding: 30px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.olli-explore-learn-connect-text {
  margin-bottom: 10px;
}
.olli-explore-learn-connect-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  margin: 0;
}
.olli-explore-learn-connect-videos {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.olli-video-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.olli-video-description h3 {
  font-family: 'roboto-condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.2;
  margin: 0 0 10px 0;
}
.olli-video-description p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}
.embed-responsive {
  max-width: 100%;
}
.olli-video-divider {
  height: 1px;
  background-color: #e0e0e0;
  width: 100%;
}

@media (min-width: 768px) {
  .olli-explore-learn-connect {
    padding: 60px 30px;
  }
  .olli-explore-learn-connect-content {
    padding: 40px 30px;
  }
  .olli-explore-learn-connect-header h2 {
    font-size: 40px;
  }
  .olli-explore-learn-connect-text {
    margin-bottom: 30px;
  }
  .olli-explore-learn-connect-text p {
    font-size: 22px;
    line-height: 39px;
  }
  .olli-explore-learn-connect-videos {
    gap: 50px;
  }
  .olli-video-description h3 {
    font-size: 25px;
  }
  .olli-video-description p {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .olli-explore-learn-connect {
    padding: 120px 50px;
  }  
  .olli-explore-learn-connect-container {
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }  
  .olli-explore-learn-connect-header {
    flex: 0 0 30%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 0;
  }  
  .olli-explore-learn-connect-header h2 {
    font-size: 50px;
    line-height: 57px;
    margin-bottom: 11px;
  }
  .olli-explore-learn-connect-header img{
    display: block;
    width: 200px;
    height: 54px;
  }  
  .olli-explore-learn-connect-content {
    flex: 1;
    gap: 30px;
  }
  .olli-explore-learn-connect-text p {
    font-size: 22px;
    line-height: 39px;
  }
  .olli-explore-learn-connect-videos {
    gap: 50px;
  }
  .olli-video-description h3 {
    font-size: 25px;
  }
  .olli-video-description p {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (min-width: 1400px) {
  .olli-explore-learn-connect-container {
    gap: 90px;
  }
  .olli-explore-learn-connect-container {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* OLLI Volunteer Section */
   .olli-volunteer {
    background-color: #271145;
    padding: 40px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .olli-volunteer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  .olli-volunteer-content {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
  }
  h2.olli-volunteer-title {
    font-family: 'Jubilat', serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.3;
    color: #461d7c;
    text-align: center;
    width: 100%;
    margin: 0;
  }
  .olli-volunteer-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
  }
  .olli-volunteer-card {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #d6d6d6;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    align-items: center;
    text-decoration: none;
  }
  .olli-volunteer-card:hover {
    text-decoration: none;
  }
  .olli-volunteer-image {
    overflow: hidden;
    width: 120px;
    height: 80px;
  }
  .olli-volunteer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }
  .olli-volunteer-info {
    width: 50%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .olli-volunteer-card-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
  }
  .olli-volunteer-card-title h3 {
    font-family: 'roboto-condensed', sans-serif;
    font-weight: 900;
    font-size:16px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
  }
  .olli-volunteer-underline {
    background-color: #f1eddb;
    height: 7px;
    width: 100%;
  }
  .olli-volunteer-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #461d7c;
    margin: 0;
  }
  .olli-volunteer-link::after {
    content: "\203A";
    font-weight: normal;
    font-size: inherit;
    margin-left: 4px;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  @media only screen and (min-width: 576px) {
    .olli-volunteer-card {
      padding: 20px;
    }
  }
  
  @media only screen and (min-width: 768px) {
    .olli-volunteer {
      padding: 60px 30px;
    }  
    .olli-volunteer-content {
      padding: 40px 20px;
    }  
    h2.olli-volunteer-title {
      font-size: 40px;
      line-height: 40px;
    }  
    .olli-volunteer-cards {
      flex-direction: row;
      gap: 20px;
    }
    .olli-volunteer-card:hover .olli-volunteer-image img,
    .olli-volunteer-card:hover .olli-volunteer-image picture {
      transform: scale(1.05);
    }
    .olli-volunteer-card:hover .olli-volunteer-link::after{
      transform: translateX(4px);
    }
    .olli-volunteer-image {
      width: 120px;
      height: 80px;
    }
  }
  
  @media only screen and (min-width: 991px) {
    .olli-volunteer {
      padding: 120px 60px;
    } 
    .olli-volunteer-content {
      padding: 50px 30px;
    }  
    h2.olli-volunteer-title {
      font-size: 40px;
      line-height: 48px;
    }
    .olli-volunteer-cards {
      gap: 30px;
    }
    .olli-volunteer-card-title h3 {
      font-size: 25px;
      line-height: 1.6;
    }
    .olli-volunteer-link {
      font-size: 18px;
    }
  }
  
  @media only screen and (min-width: 1200px) {
    .olli-volunteer-content {
      padding: 70px;
    }
    h2.olli-volunteer-title {
      font-size: 50px;
      line-height: 57px;
    }
  }

/* FAQ Section Styles */
.olli-faq {
  background-color: #ffffff;
  padding: 30px 20px;
}
.olli-faq-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.olli-faq-header {
  text-align: center;
  margin-bottom: 10px;
}
.olli-faq-header h2 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  color: #461d7c;
  line-height: 1.3;
  margin: 0;
}
.olli-faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.olli-faq-item {
  position: relative;
  border-bottom: 1px solid #c9c9c9;
}
/* Removed outline: none to allow accessibility focus indicators */
.olli-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

/* Accessibility: Focus indicators */
.olli-faq-question:focus {
  outline: 3px solid rgba(var(--purple), 0.8);
  outline-offset: 2px;
  border-radius: 4px;
}

.olli-faq-question:focus:not(:focus-visible) {
  outline: none;
}

.olli-faq-question:focus-visible {
  outline: 3px solid rgba(var(--purple), 0.8);
  outline-offset: 2px;
  border-radius: 4px;
}


.olli-faq-icon {
  flex-shrink: 0;
  width: 23px;
  height: 21px;
}
.olli-faq-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.olli-faq-question-text {
  flex: 1;
  min-width: 0;
}
.olli-faq-question-text p {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #461d7c;
  line-height: 27px;
  margin: 0;
}
.olli-faq-toggle {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  position: relative;
  margin-left: 10px;
}
.olli-faq-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/olli/faq-open-btn.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}
.olli-faq-item.active .olli-faq-plus {
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/olli/faq-close-btn.svg');
}
.olli-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  margin-left: 16px;
}
.olli-faq-item.active .olli-faq-answer {
  max-height: 400px;
  padding: 0 20px 20px 20px;
}
.olli-faq-answer p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  /* margin: 0; */
}

@media (min-width: 768px) {
  .olli-faq {
    padding: 60px 30px;
  }
  .olli-faq-header h2 {
    font-size: 40px;
  }  
  .olli-faq-question {
    padding: 15px 0;
  }  
  .olli-faq-question-text p {
    font-size: 20px;
    line-height: 27px;
  }
}

/* Contact Section Styles */
.olli-contact {
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/olli/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  position: relative;
}
.olli-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(233, 233, 233, 0.2);
  z-index: 1;
}
.olli-contact-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 60px;
}
.olli-contact-content {
  background-color: #ffffff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  max-width: 1400px;
}
.olli-contact-header {
  text-align: center;
  margin-bottom: 20px;
}
.olli-contact-header h2 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  color: #461d7c;
  line-height: 30px;
  margin: 0;
}
.olli-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.olli-contact-office {
  text-align: center;
}
.olli-contact-office h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 25px;
  color: #000000;
  line-height: 1.4;
  margin: 0 0 10px 0;
}
.olli-contact-hours {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin: 0;
}
.olli-contact-divider {
  width: 64px;
  height: 1px;
  background-color: #d6d6d6;
  margin: 0 auto;
}
.olli-contact-phone,
.olli-contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
}
.olli-contact-phone-number,
.olli-contact-email-address {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 23px;
  color: #461d7c;
  text-decoration: none;
  line-height: 1;
}
.olli-contact-email-address {
  font-size: 20px;
  line-height: 1.8;
}
.olli-contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.olli-contact-address p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}
.olli-contact-address p span {
  color: #d6d6d6;
  margin: 0 5px;
}
.olli-contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.olli-contact-phone .olli-contact-icon {
  width: 19px;
  height: 23px;
}
.olli-contact-address .olli-contact-icon {
  width: 13px;
  height: 22px;
}
.olli-contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media (min-width: 768px) {
  .olli-contact {
    padding: 60px 30px;
  }
  .olli-contact-container {
    gap: 30px;
  }
  .olli-contact-content {
    padding: 30px 20px;
    gap: 30px;
  }
  .olli-contact-header h2 {
    font-size: 40px;
    line-height: 70px;
  }  
  .olli-contact-phone-number {
    font-size: 20px;
  }
  .olli-contact-email-address {
    font-size: 20px;
  }
  .olli-contact-address {
    align-self: center;
  }
  .olli-contact-address p {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .olli-contact {
    padding: 120px 50px;
  }
  .olli-contact-content {
    padding: 70px;
    gap: 30px;
  }
  .olli-contact-header h2 {
    font-size: 50px;
    line-height: 70px;
  }
  .olli-contact-info{
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .olli-contact-divider {
    width: 1px;
    height: 20px;
    background-color: #d6d6d6;
    margin: 0 40px;
  }
}

/* ========================================
   CUSTOM ONSITE 
   ======================================== */

/* Custom Onsite Header Banner */
.custom-onsite-header-banner {
  background: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/custom-onsite-pd/header-bg-mobile.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 40px 20px;
}
.custom-onsite-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1400px;
  width: 100%;
  height: 100%;
  text-align: center;
}
.custom-onsite-department-title {  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.custom-onsite-title-bar {
  display: none;
}
.custom-onsite-department-title p {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3.92px;
  margin: 0;
  line-height: 20px;
}
.custom-onsite-main-title h1 {
  font-family: 'Jubilat', serif;
  font-weight: 700;
  color: #fdd023;
  font-size: 39px;
  line-height: 50px;
  text-transform: capitalize;
  border: none;
  padding: 0;
  margin: 0;
}
.custom-onsite-main-title h1 span {
  color: #fff;
}
.custom-onsite-subtitle p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;  
}
.custom-onsite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  text-decoration: none;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 60px;
  width: 100%;
  max-width: 363px;
}
.custom-onsite-btn-primary {
  background-color: #fdd023;
  color: #461d7c;
}
.custom-onsite-btn-primary:hover {
  background-color: #e6c020 !important;
  color: #461d7c;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .custom-onsite-header-banner {
    background: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/custom-onsite-pd/header-bg-tablet.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;  
    padding: 60px 30px;
  }
  .custom-onsite-content-wrapper {
    align-items: flex-start;
  }  
  .custom-onsite-title-bar {
    display: block;
    width: 12px;
    height: 20px;
    background-color: #ffffff;
  }  
  .custom-onsite-department-title p {
    font-size: 16px;
    letter-spacing: 4.48px;
  }  
  .custom-onsite-main-title h1 {
    font-size: 52px;
    line-height: 1.1;
    text-align: left;
  }  
  .custom-onsite-subtitle p {
    font-size: 27px;
    line-height: 49px;
    text-align: left;
    white-space: nowrap;
  }
  .custom-onsite-header-buttons {
    margin-top: 30px;
  }  
}
@media only screen and (min-width: 992px) {
  .custom-onsite-header-banner {
    padding: 60px;
  }
}

@media only screen and (min-width: 1200px) { 
  .custom-onsite-header-banner {
    background: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/custom-onsite-pd/header-bg-desktop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 60px;
  }
  .custom-onsite-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  } 
  .custom-onsite-department-title p {
    font-size: 16px;
    letter-spacing: 4.48px;
  }  
  .custom-onsite-main-title h1 {
    font-size: 80px;
    line-height: 1.1;
    max-width: 1096px;
  }  
  .custom-onsite-subtitle p {
    font-size: 27px;
    line-height: 49px;
  }
}

/* Custom Onsite Intro Section */
.custom-onsite-intro {
  position: relative;
  padding: 40px 20px;
  background-color: #f1eddb;
  overflow: hidden;
}
.custom-onsite-intro-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f1eddb;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/custom-onsite-pd/intro-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.custom-onsite-intro-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.custom-onsite-intro-box {
  background-color: #ffffff;
  margin: 0 auto;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.custom-onsite-intro-text {
  margin-bottom: 50px;
}
.custom-onsite-intro-text h2 {
  font-family: 'Jubilat', serif;
  font-weight: 700;
  font-size: 26px;
  color: #461d7c;
  text-align: center;
  margin: 0 0 16px 0;
  line-height: 57px;
  text-transform: none;
  border: none;
  padding: 0;
}
.custom-onsite-intro-text img{
  display: none;
}
.custom-onsite-intro-text p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}
.custom-onsite-intro-images {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.custom-onsite-intro-image {
  flex: 1;
  height: 142px;
  position: relative;
  overflow: hidden;
}
.custom-onsite-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.custom-onsite-intro-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .custom-onsite-intro {
    padding: 60px 30px;
  }  
  .custom-onsite-intro-box {
    padding: 40px;
  }    
  .custom-onsite-intro-text h2 {
    font-size: 40px;
    text-align: center;
    line-height: 57px;
    margin-bottom: 10px;
  }
  .custom-onsite-intro-text p {
    font-size: 25px;
    line-height: 1.6;
  }  
  .custom-onsite-intro-images {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
  }  
  .custom-onsite-intro-image {
    width: 337px;
    height: 163px;
  }
}

@media only screen and (min-width: 992px) {
  .custom-onsite-intro {
    padding: 120px 60px;
  }  
  .custom-onsite-intro-box {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding: 60px;
  }
  .custom-onsite-intro-text {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
  }  
  .custom-onsite-intro-text h2 {
    font-size: 50px;
    line-height: 57px;
    text-align: left;
    margin: 0;
  }
  .custom-onsite-intro-text img{
    display: block;
    width: 161px;
    height: 54px;
    margin-bottom: 30px;
  }
  .custom-onsite-intro-text p {
    font-size: 25px;
    line-height: 1.6;
  }    
  .custom-onsite-intro-images {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
    flex: none;
  }  
  .custom-onsite-intro-image {
    height: 142px;
    width: 294px;
    flex: none;
  }
}
@media only screen and (min-width: 1200px) {
  .custom-onsite-intro-box {
    padding: 80px;
  }
}


/* Custom Onsite Selling Points Section */
.custom-onsite-selling-points {
  background-color: #461d7c;
  padding: 30px 20px;
  position: relative;
}
.custom-onsite-selling-points-content {  
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.custom-onsite-selling-points-header {
  text-align: center;
  margin-bottom: 30px;
}
.custom-onsite-selling-points-header h2 {
  font-family: 'Jubilat', serif;
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}
.custom-onsite-selling-points-boxes {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.custom-onsite-selling-points-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  width: 100%;
}
.custom-onsite-selling-points-icon {
  height: 40px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-onsite-selling-points-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.custom-onsite-selling-points-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}
.custom-onsite-selling-points-text h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #fdd023;
  line-height: 1.4;
  margin: 0;
}
.custom-onsite-selling-points-text p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
}
.custom-onsite-selling-points-divider {
  width: 256px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .custom-onsite-selling-points {
    padding: 60px 30px;
  }  
  .custom-onsite-selling-points-header {
    margin-bottom: 50px;
  }
  .custom-onsite-selling-points-header h2 {
    font-size: 40px;
    line-height: 57px;
  }  
  .custom-onsite-selling-points-boxes {
    gap: 48px;
  }
  .custom-onsite-selling-points-box {
    max-width: 500px;
  }
  .custom-onsite-selling-points-text h3 {
    font-size: 25px;
    line-height: 35px;
  }  
  .custom-onsite-selling-points-text p {
    font-size: 18px;
  }
}

@media only screen and (min-width: 992px) {
  .custom-onsite-selling-points {
    padding: 100px 60px;
  }    
  .custom-onsite-selling-points-header h2 {
    font-size: 50px;
    line-height: 57px;
  }
  .custom-onsite-selling-points-boxes {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .custom-onsite-selling-points-box {
    flex: 1;
  }
  .custom-onsite-selling-points-divider {
    width: 1px;
    /* height: 256px; */
    height: 300px;  
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .custom-onsite-selling-points-boxes {
    gap: 50px;
  }
  .custom-onsite-selling-points-divider {
    height: 260px;
  }
}


/* Custom Onsite Delivery Options Section */
.custom-onsite-delivery-options {
  background-color: #ffffff;
  padding: 40px 20px;
  position: relative;
}
.custom-onsite-delivery-options-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.custom-onsite-delivery-options-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.custom-onsite-delivery-options-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.custom-onsite-delivery-options-image img {
  width: 100%;
  height: auto;
}
.custom-onsite-delivery-options-text h2 {
  font-family: 'roboto-condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #461d7c;
  line-height: 1;
  text-align: center;
  margin: 0 0 5px 0;
}
.custom-onsite-delivery-options-text h2 span{
  color: #9c7dc5;
}
.custom-onsite-delivery-options-text p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;  
  color: #000000;
  line-height: 1.8;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .custom-onsite-delivery-options {
    padding: 60px 30px;
  }  
  .custom-onsite-delivery-options-box {
    gap: 32px;
  }
  .custom-onsite-delivery-options-text h2 {
    font-size: 34px;
    line-height: 110%;
    text-align: left;
  }  
  .custom-onsite-delivery-options-text p {
    font-size: 25px;
    line-height: 1.6;
  }
}

@media only screen and (min-width: 992px) {
  .custom-onsite-delivery-options {
    padding: 80px 60px;
  }
  .custom-onsite-delivery-options-box {
    flex-direction: row;
    gap: 60px;
  }
}

/* Custom Onsite Testimonials Section */
.custom-onsite-testimonials {
  background-color: #f9f8f0;
  padding: 40px 20px;
  position: relative;
}
.custom-onsite-testimonials-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.custom-onsite-testimonials-header {
  text-align: center;
  margin-bottom: 34px;
}
.custom-onsite-testimonials-header h2 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  color: #461d7c;
  line-height: 1.2;
  margin: 0;
}
.custom-onsite-testimonials-main {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-bottom: 34px;
}
.custom-onsite-testimonial-quote {
  background-color: #ffffff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.custom-onsite-testimonial-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.custom-onsite-testimonial-quote-icon img{
  width: 46px;
  height: 30px;
}
.custom-onsite-testimonial-text p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin: 0;
}
.custom-onsite-testimonial-author {
  display: flex;
  gap: 16px;
  align-items: center;
}
.custom-onsite-testimonial-headshot {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.custom-onsite-testimonial-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.custom-onsite-testimonial-author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.custom-onsite-testimonial-author-info h3 {
  font-family: "roboto-condensed", sans-serif;
  font-weight: 900;
  font-size: 25px;
  color: #461d7c;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}
.custom-onsite-testimonial-divider {
  width: 100%;
  height: 4px;
  background-color: #f1eddb;
}
.custom-onsite-testimonial-author-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #683da0;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.84px;
  margin: 0;
}
.custom-onsite-testimonial-author-company {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}
.custom-onsite-testimonial-video-box {
  background-color: #ffffff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.custom-onsite-testimonial-video-box h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #461d7c;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}
.custom-onsite-testimonial-video {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.custom-onsite-testimonial-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.custom-onsite-testimonials-partners {
  background-color: #ffffff;
  padding: 40px 20px;
}
.custom-onsite-testimonials-partners h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #461d7c;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 14px 0;
}
.custom-onsite-testimonials-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.custom-onsite-testimonials-logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-onsite-testimonials-logo img {
  max-height: 100%;
  max-width: 101px;
  object-fit: contain;
}

@media only screen and (min-width: 768px) {
  .custom-onsite-testimonials {
    padding: 60px 30px;
  }
  .custom-onsite-testimonials-header h2 {
    font-size: 40px;
    line-height: 57px;
  }  
  .custom-onsite-testimonials-main {
    gap: 34px;
  }  
  .custom-onsite-testimonial-quote {
    padding: 40px;
  }  
  .custom-onsite-testimonial-text p {
    font-size: 20px;
    line-height: 1.6;
  }  
  .custom-onsite-testimonial-video-box {
    padding: 40px;
  }  
  .custom-onsite-testimonial-video-box h3 {
    font-size: 25px;
    line-height: 1.4;
  }  
  .custom-onsite-testimonials-partners {
    padding: 40px;
  }  
  .custom-onsite-testimonials-partners h3 {
    font-size: 25px;
    line-height: 1.4;
  }  
  .custom-onsite-testimonials-logos {
    gap: 30px 72px;
  }  
  .custom-onsite-testimonials-logo {
    height: 56px;
  }  
  .custom-onsite-testimonials-logo img {
    max-width: 148px;
  }
}

@media only screen and (min-width: 992px) {
  .custom-onsite-testimonials {
    padding: 100px 60px;
  }
  .custom-onsite-testimonials-header h2 {
    font-size: 50px;
    line-height: 57px;
  }  
  .custom-onsite-testimonials-main {
    flex-direction: row;
    gap: 34px;
    align-items: stretch;
  }  
  .custom-onsite-testimonial-quote {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
  }  
  .custom-onsite-testimonial-text p {
    font-size: 20px;
    line-height: 1.6;
  }  
  .custom-onsite-testimonial-video-box {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }  
  .custom-onsite-testimonials-partners {
    padding: 50px 100px;
  }  
  .custom-onsite-testimonials-logos {
    gap: 46px;
    justify-content: space-between;
  }
  .custom-onsite-testimonials-logo {
    height: 56px;
  }
  .custom-onsite-testimonials-logo img {
    max-width: 148px;
  }
}

@media only screen and (min-width: 1200px) {
  .custom-onsite-testimonials-partners {
    padding: 50px 100px;
  }
  .custom-onsite-testimonial-quote,
  .custom-onsite-testimonial-video-box {
    padding: 60px;
  }
}


/* Custom Onsite Download Catalog Section */
.custom-onsite-download-catalog {
  background-color: #271145;
  padding: 40px 20px;
  width: 100%;
}
.custom-onsite-download-catalog-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.custom-onsite-download-catalog-info {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.custom-onsite-download-catalog-image {
  flex-shrink: 0;
  width: 67px;
  height: 86px;
}
.custom-onsite-download-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-onsite-download-catalog-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #ffffff;
}
.custom-onsite-download-catalog-text h2 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.2;
  color: #fdd023;
  margin: 0;
}
.custom-onsite-download-catalog-text h2 span {
  color: #ffffff;
}
.custom-onsite-download-catalog-text p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin: 0;
}
.custom-onsite-download-catalog-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px 30px;
  border: 2px solid #fdd023;
  background-color: transparent;
  color: #fdd023 !important;
  text-decoration: none;
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.custom-onsite-download-catalog-button:hover {
  background-color: #fdd023;
  color: #271145 !important;
  text-decoration: none;
}
.custom-onsite-download-catalog-button img {
  width: 18px;
  height: 18px;
}

@media (min-width: 769px) {
  .custom-onsite-download-catalog {
    padding: 60px 40px;
  }  
  .custom-onsite-download-catalog-content {
    gap: 50px;
  }  
  .custom-onsite-download-catalog-info {
    gap: 30px;
  }
  .custom-onsite-download-catalog-image {
    width: 109px;
    height: 141px;
  }
  .custom-onsite-download-catalog-text {
    border-left: 12px solid #FDD023;
    padding-left: 30px;
  }
  .custom-onsite-download-catalog-text h2 {
    font-size: 40px;
    line-height: 48px;
  }  
  .custom-onsite-download-catalog-text p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (min-width: 992px) { 
  .custom-onsite-download-catalog {
    padding: 40px 60px;
  } 
  .custom-onsite-download-catalog-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }  
  .custom-onsite-download-catalog-text p {
    font-size: 22px;
    line-height: 39px;
  }  
  .custom-onsite-download-catalog-button {
    flex-shrink: 0;
    width: 345px;
  }
}
@media (min-width: 1200px) {
  .custom-onsite-download-catalog-text h2 {
    font-size: 50px;
    line-height: 57px;
  }  
}

/* Custom Onsite Contact Form Section */
.custom-onsite-contact-form {
  background-color: #e9e9e9;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.custom-onsite-contact-form-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.custom-onsite-contact-form-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.custom-onsite-contact-info,
.custom-onsite-contact-form-content .page-contact-form {
  background-color: #ffffff;
  padding: 30px 20px;
}
.custom-onsite-contact-info h2 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  color: #461d7c;
  line-height: 30px;
  text-align: center;
  margin: 0 0 10px 0;
}
.custom-onsite-contact-info p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}
.custom-onsite-contact-person {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  max-width: 320px;
  margin: 24px auto 0 auto;
}
.custom-onsite-contact-photo {
  width: 77px;
  height: 82px;
  position: relative;
  background-color: transparent;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.custom-onsite-contact-photo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background-color: #f1eddb;
  border-radius: 0 0 4px 4px;
}
.custom-onsite-contact-photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.custom-onsite-contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.custom-onsite-contact-details h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #461d7c;
  line-height: 1.4;
  margin: 0;
}
.custom-onsite-contact-details p {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #000000;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 0.72px;
  line-height: 1.6;
  margin: 0;
}
.custom-onsite-contact-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 44px;
}
.custom-onsite-contact-phone,
.custom-onsite-contact-email {
  display: flex;
  gap: 8px;
  align-items: center;
}
.custom-onsite-contact-phone img,
.custom-onsite-contact-email img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.custom-onsite-contact-phone span,
.custom-onsite-contact-email span {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #461d7c;
}
.custom-onsite-contact-divider {
  display: block;
  width: 77px;
  height: 1px;
  background-color: #d6d6d6;
  margin: 20px auto;
}

@media only screen and (min-width: 768px) {
  .custom-onsite-contact-form {
    padding: 60px 30px;
  }  
  .custom-onsite-contact-info,
  .custom-onsite-contact-form-content .page-contact-form {
    padding: 40px;
  }
  .custom-onsite-contact-info h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .custom-onsite-contact-methods{
    flex-direction: row;
    justify-content: center;
  }
  .custom-onsite-contact-divider {
    width: 1px;
    height: 20px;
    margin: 0 20px;
  }
}

@media only screen and (min-width: 992px) {
  .custom-onsite-contact-form {
    padding: 120px 60px;
  }
  
  .custom-onsite-contact-form-content {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 50px 40px;
  }
  .custom-onsite-contact-info,
  .custom-onsite-contact-form-content .page-contact-form{
    width: 50%;
    padding: 0;
    margin: 0;
  }
  .custom-onsite-contact-form-content .page-contact-form .form-container {
    width: 100%;
  } 
  .custom-onsite-contact-person,
  .custom-onsite-contact-methods{
    margin: 24px 0 0 0;
  }
  .custom-onsite-contact-info h2{
    font-size: 40px;
    line-height: 48px;
    text-align: left;
  }
  .custom-onsite-contact-info p  {
    font-size: 25px;
    line-height: 1.6;
    text-align: left;
  }
  .custom-onsite-contact-details p{
    font-size: 14px;
  }
  .custom-onsite-contact-methods{
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (min-width: 1400px) {
  .custom-onsite-contact-form-content {
    padding: 70px;
    gap: 100px;
  }
  .custom-onsite-contact-info {
    width: 40%;
  }
  .custom-onsite-contact-form-content .page-contact-form {
    width: 60%;
  }
}

/* ========================================
   SCIENCE FAIR 
   ======================================== */

.science-fair-header-banner {
  background: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/header-banner-mobile@2x.jpg');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 30px 20px;
}
.science-fair-about-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #fff;
  padding: 30px 20px;
}

.science-fair-icon img {
  width: 75px;
  height: auto;
  margin: 0 auto 20px auto;
}
.science-fair-main-title h1 {
  color: #FFF;
  text-align: center;
  font-family: 'Jubilat', serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 42px;
  border: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.science-fair-subtitle p {
  color: #FFF;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 150%;
  margin: 0 0 30px 0;  
}
.science-fair-subtitle p span{
  font-weight: 900;
}
.science-fair-header-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.science-fair-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  text-decoration: none;
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 60px;
  width: 100%;
  max-width: 340px;
  border-radius: 4px;
}
.science-fair-btn-primary {
  background-color: #fdd023;
  color: #461d7c;
}
.science-fair-btn-secondary {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fdd023 !important;
  border: 2px solid #fdd023;
}
.science-fair-btn-primary:hover,
.science-fair-btn-secondary:hover {
  background-color: #e6c020 !important;
  color: #461d7c !important;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .science-fair-header-banner {
    background: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/header-banner-tablet@2x.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;  
    padding: 50px 30px;
  }
  .science-fair-icon img {
    width: 120px;
    height: auto;
  }
  .science-fair-main-title h1 {
    font-size: 66px;
    line-height: 71px;
  }  
  .science-fair-subtitle p {
    font-size: 23px;
    line-height: 39px;
    margin-bottom: 50px;
  }
  .science-fair-header-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: none;
    margin: 0;
  }  
}

@media only screen and (min-width: 992px) { 
  .science-fair-header-banner {
    background: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/header-banner-desktop@2x.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 60px;
  }
  .science-fair-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }   
  .science-fair-main-title h1 {
    font-size: 60px;
    line-height: 80px;
  }  
  .science-fair-subtitle p {
    font-size: 30px;
    line-height: 44px;
    margin-bottom: 60px;
  }
}

/* Science Fair Sub Navigation */
.science-fair-sub-nav {
  background-color: #271145;
  padding: 40px 20px;
  width: 100%;
}
.science-fair-sub-nav-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px 20px;
  flex-wrap: wrap;
  width: 100%;
}
.science-fair-sub-nav-logo {
  display: none;
}
a.science-fair-sub-nav-link {
  display: flex;  
  justify-content: center;
  align-items: center;
  align-content: center;
  align-self: stretch;
  flex-wrap: wrap;
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff !important;
  text-decoration: none;
  line-height: 1.6;
  white-space: nowrap;
  transition: color 0.3s ease;
}
a.science-fair-sub-nav-link::after {
  content: "\203A";
  font-weight: normal;
  font-size: inherit;
  margin-left: 4px;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
a.science-fair-sub-nav-link:hover::after {
  transform: translateX(4px);
}
@media (min-width: 768px) {
  .science-fair-sub-nav-container {
    gap: 15px 40px;
  }
}
@media (min-width: 992px) {  
  .science-fair-sub-nav {
    padding: 40px;
  }
  .science-fair-sub-nav-container {
    justify-content: space-between;
    gap: 15px 60px;
  }
  a.science-fair-sub-nav-link {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* About Section Styles */
.science-fair-about {
  background: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/about-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 30px 20px;
}
.science-fair-about-content-wrapper {
  /* outline: solid red 1px; */
  display: flex;
  flex-direction: column;
  /* align-items: center;
  justify-content: center; */
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
}
.science-fair-about-intro-box{
  /* outline: solid blue 1px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.science-fair-about-intro-box h2{
  color: #461D7C;
  text-align: center;
  font-family: 'Jubilat', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px; 
}
.science-fair-about-intro-box img.science-fair-about-intro-box-brushstroke{
  display: none;
}
.science-fair-about-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.science-fair-about-image img {
  width: 100%;
  height: auto;
  display: block;
}
.science-fair-about-image picture {
  display: block;
}
.science-fair-about-content-box{
  /* outline: solid green 1px; */
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; 
  color: #000000;
}
.science-fair-about-content-box p{
  margin: 0;
}
.science-fair-info-box-wrapper{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.science-fair-info-box-item{
  background-color: #f5f5f5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.science-fair-info-box-item-content {
  /* outline: solid orange 1px; */
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.science-fair-info-title{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.science-fair-info-title img{
  width: 70px;
  height: auto;
}
.science-fair-info-title h3{
  color: #461D7C;
  font-family: "roboto-condensed";
  font-size: 18px;
  font-weight: 900;
  line-height: 140%; 
  text-transform: uppercase;
}
.science-fair-about-conclusion p{
  margin-bottom: 1rem;
}
a.science-fair-registration-button {
  display: block;
  background-color: #ffffff;
  border: 2px solid #fdd023;
  padding: 19px 30px;
  text-decoration: none;
  text-align: center;
  font-family: 'Proxima Nova', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #461d7c;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
a.science-fair-registration-button:hover {
  background-color: #fdd023;
  color: #461d7c;
  text-decoration: none;
}
a.science-fair-registration-button:focus {
  outline: 2px solid #461d7c;
  outline-offset: 2px;
}


@media (min-width: 768px) {
  .science-fair-about {
    padding: 60px 30px;
  }
  .science-fair-about-content-wrapper {
    padding: 40px 30px;
  }
  .science-fair-about-intro-box h2{
    font-size: 40px;
    line-height: 52px; 
  }
  .science-fair-about-intro-text{
    font-size: 22px;
    line-height: 39px;
  }
  .science-fair-info-title h3{
    font-size: 23px;
    line-height: 33px;
  }
  .science-fair-info-box-item-content {
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .science-fair-about {
    padding: 120px 60px;
  }
  .science-fair-about-content-wrapper {
    padding: 60px;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
  .science-fair-about-intro-box{
    width: 40%;
    align-items: flex-end;
    gap: 0;
  }
  .science-fair-about-intro-box h2{
    text-align: right;
    font-size: 50px;
    line-height: 57px;
  }
  .science-fair-about-intro-box img.science-fair-about-intro-box-brushstroke{
    display: block;
    width: 198px;
    height: auto;
    margin-bottom: 30px;
  }
  .science-fair-about-content-box{
    width: 60%;
  }
}

@media (min-width: 1200px) {
  .science-fair-about-content-wrapper {
    padding: 80px;
    gap: 80px;
  }
  .science-fair-about-intro-box{
    width: 30%;
  }
  .science-fair-about-content-box{
    width: 70%;
  }
  .science-fair-info-box-wrapper{
    flex-direction: row;
  }
  .science-fair-info-box-item{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  
  .science-fair-registration-button {
    margin-top: auto;
  }
}

/* Science Fair Statistics Section */
.science-fair-stats {
  position: relative;
  background-color: #461d7c;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/stats-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 40px 20px;
}
.science-fair-stats-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.science-fair-stats-photo {
  width: 100%;
  height: auto;
  max-width: 500px;
}
.science-fair-stats-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.science-fair-stats-text {
  text-align: center;
  margin-bottom: 10px;
}
.science-fair-stats-text p {
  color: #ffffff;
  font-family: 'roboto-condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0;
}
.science-fair-stats-text p span{
  color: #fdd023;
}
.science-fair-stats-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 20px;
}
.science-fair-stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/stat-blob.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 86px;
  width: 100%;
}
.science-fair-stat-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.science-fair-stat-number {
  color: #fdd023;
  font-family: 'roboto-condensed', sans-serif;
  font-size: 43px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.science-fair-stat-label {
  color: #ffffff;
  font-family: 'roboto-condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 768px) {
  .science-fair-stats {
    padding: 60px 30px;
  }
  .science-fair-stats-text p {
    font-size: 23px;
    line-height: 36px;
  }
  .science-fair-stat-item {
    height: 200px;
  }
  .science-fair-stat-number {
    font-size: 85px;
  }
  .science-fair-stat-label {
    font-size: 28px;
  }
}

@media (min-width: 991px) {
  .science-fair-stats {
    padding: 120px 60px;
  }
  .science-fair-stats-text p {
    font-size: 34px;
    line-height: 48px;
  }
}

/* Science Fair Registration Section */
.science-fair-registration {
  background-color: #f1eddb;
  padding: 40px 20px;
}
.science-fair-registration-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #fff;
  padding: 30px 20px;
}
.science-fair-registration-content-wrapper h2 {
  color: #461d7c;
  font-family: 'Jubilat', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  margin: 0;
}
.science-fair-registration-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.science-fair-registration-item {
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
} 
.science-fair-registration-item:first-child {
  background-color: #F5F5F5;
}
.science-fair-registration-item-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.science-fair-registration-item-details h3 {
  color: #000000;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}
.science-fair-registration-item-details p {
  color: #000000;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.science-fair-registration-item .science-fair-registration-button {
  display: block;
  background-color: #461d7c !important;
  border: #461d7c !important;
  padding: 19px 30px;
  text-decoration: none;
  text-align: center;
  font-family: 'Proxima Nova', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fdd023 !important;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.science-fair-registration-item .science-fair-registration-button:hover {
  background-color: #fdd023 !important;
  color: #461d7c !important;
  text-decoration: none;
}
.science-fair-registration-item .science-fair-registration-button:focus {
  outline: 2px solid #461d7c !important;
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .science-fair-registration {
    padding: 60px 30px;
  }  
  .science-fair-registration-content-wrapper {
    padding: 40px 30px;
  }
  .science-fair-registration-content-wrapper h2 {
    font-size: 40px;
    line-height: 57px;
  }  
  .science-fair-registration-item-details h3 {
    font-size: 24px;
    line-height: 28px;
  }    
  .science-fair-registration-item-details p {
    font-size: 20px;
    line-height: 32px;
  }
}

@media (min-width: 992px) {
  .science-fair-registration {
    padding: 120px 60px;
  }  
  .science-fair-registration-content-wrapper {
    padding: 50px;
    gap: 40px;
  }  
  .science-fair-registration-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .science-fair-registration-content-wrapper h2 {
    font-size: 50px;
    line-height: 57px;
  }  
  .science-fair-registration-button {
    min-width: 300px;
  }
}

@media (min-width: 1200px) {
  
  .science-fair-registration-content-wrapper {
    padding: 70px;
    gap: 50px;
  }  
  .science-fair-registration-box {
    gap: 40px;
  }  
  .science-fair-registration-item {
    padding: 40px;
  }
}

/* Science Fair Results and Photos Section */
.science-fair-results {
  position: relative;
  background-color: #461d7c;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/results-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 40px 20px;
}
.science-fair-results-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.science-fair-results-title {
  text-align: center;
}
.science-fair-results-title h2 {
  color: #ffffff;
  font-family: 'Jubilat', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
}
.science-fair-results-title img {
  display: none;
}
.science-fair-results-content {
  background-color: #ffffff;
  padding: 30px 20px;
}
.science-fair-results-description p {
  color: #000000;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
}
.science-fair-results-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}
.science-fair-results-item:nth-child(odd) {
  background-color: #f5f5f5;
}
.science-fair-results-item:nth-child(even) {
  background-color: #ffffff;
}
.science-fair-results-item h3{
  color: #000000;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  text-align: center;
}
.science-fair-results-item a {
  color: #461D7C;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-decoration: none;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.science-fair-results-item a img{
  width: 20px;
  height: 20px;
  display: block;
}
.science-fair-results-item a::after {
  content: "\203A";
  font-weight: bold;
  transition: transform 0.2s ease;
}
.science-fair-results-item a:hover {
  color: #461d7c;
  opacity: 0.8;
  text-decoration: none;
}
.science-fair-results-item a:hover::after {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .science-fair-results {
    padding: 60px 30px;
  }  
  .science-fair-results-content {
    padding: 30px;
  }  
  .science-fair-results-title h2 {
    font-size: 40px;
    line-height: 57px;
  }  
  .science-fair-results-description p {
    font-size: 22px;
    line-height: 39px;
  }
  .science-fair-results-item{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  } 
  .science-fair-results-item h3 {
    text-align: left;
    font-size: 20px;
    width: 50%;
  }
  .science-fair-results-item a {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .science-fair-results {
    padding: 120px 60px;
  }  
  .science-fair-results-content-wrapper {
    flex-direction: row;
    gap: 50px;
  }
  .science-fair-results-title{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 40%;
  }  
  .science-fair-results-title h2 {
    font-size: 50px;
    line-height: 57px;
    text-align: right;
    margin-bottom: 8px;
  }
  .science-fair-results-title img {
    display: block;
    width: 198px;
    height: auto;
  }
  .science-fair-results-content {
    padding: 50px;
    width: 60%;
  }
  .science-fair-results-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
  }
  .science-fair-results-item h3{
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .science-fair-results-content-wrapper {
    gap: 80px;
  }
  .science-fair-results-item{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  } 
  .science-fair-results-title{
    width: 30%;
  }
  .science-fair-results-content {
    padding: 70px;
    width: 70%;
  }
  .science-fair-results-item h3{
    width: 40%;
    text-align: left;
  }
}


/* Science Fair Winners Section */
.science-fair-winners,
.sponsorships-section {
  background-color: #271145;
  padding: 40px 20px;
}
.science-fair-winners-content-wrapper,
.sponsorships-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.science-fair-winners-content-wrapper h2,
.sponsorships-content-wrapper h2 {
  color: #FDD023;
  text-align: center;
  font-family: Jubilat;
  font-size: 26px;
  font-weight: 700;
  line-height: 120%; 
}
.science-fair-winners-content-wrapper p,
.sponsorships-content-wrapper p {
  color: #ffffff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; 
  margin-bottom: 0;
}
.splide-arrows-container.science-fair,
.splide-arrows-container.sponsorships {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  padding: 0;
}

.splide-arrows-container.science-fair .splide__arrows,
.splide-arrows-container.sponsorships .splide__arrows {
  position: relative;
  width: 100px;
  height: auto;
  min-height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 2px;
}
.splide-arrows-container.science-fair .splide__arrows .splide__arrow,
.splide-arrows-container.sponsorships .splide__arrows .splide__arrow {
  position: relative;
  background: none !important;
  border: none;
  padding: 0;
  width: 27px;
  height: 28px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 1;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  margin-top: 20px;
}
.splide-arrows-container.science-fair .splide__arrows .splide__arrow:disabled,
.splide-arrows-container.sponsorships .splide__arrows .splide__arrow:disabled {
  opacity: 1 !important;
  cursor: not-allowed;
}
.splide-arrows-container.science-fair .splide__arrows .splide__arrow--prev,
.splide-arrows-container.sponsorships .splide__arrows .splide__arrow--prev {
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/arrow-back-active.svg') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  left: 0 !important;
}
.splide-arrows-container.science-fair .splide__arrows .splide__arrow--prev:disabled,
.splide-arrows-container.sponsorships .splide__arrows .splide__arrow--prev:disabled {
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/arrow-back-inactive.svg') !important;
}
.splide-arrows-container.science-fair .splide__arrows .splide__arrow--next,
.splide-arrows-container.sponsorships .splide__arrows .splide__arrow--next {
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/arrow-fwd-active.svg') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  right: 0 !important;
}
.splide-arrows-container.science-fair .splide__arrows .splide__arrow--next:disabled,
.splide-arrows-container.sponsorships .splide__arrows .splide__arrow--next:disabled {
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/arrow-fwd-inactive.svg') !important;
}
.splide__track.winners,
.splide__track.sponsorships {
  margin-right: calc(-50vw + 50%);
}
.splide__track.winners .splide__list,
.splide__track.sponsorships .splide__list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow: visible;
}
.splide__slide.winners {
  display: flex;
  width: 277px !important;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  align-self: stretch;
  background: #ffffff;
}
.splide__slide.winners .winner-headshot{
  width: 100%;
  height: auto;
  max-width: 100px;
}
.splide__slide.winners .winner-headshot img{
  width: 100%;
  height: auto;
}
.splide__slide.winners h3{
  color: #461D7C;
  text-align: center;
  font-family: "roboto-condensed";
  font-size: 21px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%; 
  text-transform: uppercase;
  margin: 0;
}
.splide__slide.winners .winner-info-divider{
  width: 100%;
  height: 4px;
  background-color: #F1EDDB;
}
.splide__slide.winners .winner-info-container{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.splide__slide.winners .winner-info-container img{
  width: 20px;
  height: 20px;
}
.splide__slide.winners .winner-info-container .winner-info-text h4{
  color: #000000;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}
.splide__slide.winners .winner-info-container .winner-info-text h4 span{
  font-weight: 400;
}
.splide__slide.winners .winner-info-container .winner-info-text h4 span.winner-title-divider{
  display: inline-block;
  width: 2px;
  height: 16px;
  background-color: #BFA0E9;
  margin: 0 5px;
}
.splide__slide.winners .winner-info-container .winner-info-text a{
  font-family: Roboto;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
.splide__slide.winners .winner-info-container .winner-info-text a:hover {
  color: #461d7c;
  opacity: 0.8;
  text-decoration: none;
}
.splide__slide.winners .winner-info-container .winner-info-text a::after {
  content: "\203A";
  font-weight: bold;
  transition: transform 0.2s ease;
  margin-left: 3px;
}

@media (min-width: 768px) {
  .science-fair-winners,
  .sponsorships-section {
    padding: 60px 30px;
  }
  .science-fair-winners-content-wrapper h2,
  .sponsorships-content-wrapper h2 {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (min-width: 992px) {
  .science-fair-winners,
  .sponsorships-section {
    padding: 120px 60px;
  }
  .science-fair-winners-content-wrapper h2,
  .sponsorships-content-wrapper h2 {
    font-size: 50px;
    line-height: 57px;
  }
  .science-fair-winners-content-wrapper p,
  .sponsorships-content-wrapper p {
    font-size: 22px;
    line-height: 39px;
  }
}

@media (min-width: 1200px) {
  .splide__track.winners,
  .splide__track.sponsorships {
    margin-right: 0;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 40px;
  }
  .splide-arrows-container.science-fair,
  .splide-arrows-container.sponsorships {
    display: none;
  }
  .splide-arrows-container.science-fair .splide__arrows,
  .splide-arrows-container.sponsorships .splide__arrows {
    display: none;
  }
  .splide__track.winners .splide__list,
  .splide__track.sponsorships .splide__list {
    display: flex;
    flex-direction: row;
    gap: 40px;
    overflow: visible;
  }
  .splide__slide.winners,
  .splide__slide.sponsorships {
    flex: 1;
    min-width: 0;
    margin-right: 0 !important;
  }
}

/* Become a Science Fair Judge Section */
.science-fair-judge {
  background-color: #ffffff;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.science-fair-judge-background {
  display: none;
}
.science-fair-judge-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.science-fair-judge-header {
  margin-bottom: 20px;
}
.science-fair-judge h2 {
  color: #461D7C;
  font-family: "Jubilat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  margin: 0;
}
.science-fair-judge-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.science-fair-judge-image {
  height: 158px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.science-fair-judge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.science-fair-judge-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.science-fair-judge-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.science-fair-judge-intro h3{
  color: #461D7C;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
}
.science-fair-judge-intro-text {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}
.science-fair-judge-description {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}
.science-fair-judge-description strong {
  font-weight: 700;
}
.science-fair-judge-register {
  background-color: #f5f5f5;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.science-fair-judge-register-title {
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.science-fair-judge-icon {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
}
.science-fair-judge-register-title p {
  color: #461D7C;
  font-family: "roboto-condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
  flex: 1;
}
.science-fair-judge-register-button {
  background-color: #461D7C;
  color: #FDD023 !important;
  font-family: "Proxima Nova", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  padding: 19px 30px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}
.science-fair-judge-register-button:hover {
  background-color: #3a1763;
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .science-fair-judge {
    padding: 60px 30px;
  }
  .science-fair-judge-header {
    margin-bottom: 30px;
  }
  .science-fair-judge h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .science-fair-judge-image {
    height: 272px;
  }
  .science-fair-judge-intro h3{
    font-size: 25px;
    line-height: 1.6;
  }
  .science-fair-judge-intro-text {
    font-size: 18px;
    line-height: 1.6;
  }
  .science-fair-judge-description {
    font-size: 20px;
    line-height: 1.6;
  }
  .science-fair-judge-register {
    padding: 40px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }  
  .science-fair-judge-register-title {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    flex: 1;
  }  
  .science-fair-judge-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }  
  .science-fair-judge-register-title p {
    font-size: 25px;
    line-height: 1.2;
    flex: 1;
  }  
  .science-fair-judge-register-button {
    flex: 1;
  }
}

@media (min-width: 992px) {
  .science-fair-judge {
    padding: 120px 60px 140px 60px;
    background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/brushstroke-divider-2.png');
    background-position: center bottom;
    background-size: min(1400px, 100%) auto;
    background-repeat: no-repeat;
  }  
  .science-fair-judge-content-wrapper {
    gap: 30px;
    padding: 0;
  }
  .science-fair-judge-header {
    margin-bottom: 40px;
  }  
  .science-fair-judge h2 {
    font-size: 50px;
    line-height: 57px;
  }  
  .science-fair-judge-content {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }  
  .science-fair-judge-image {
    width: 415px;
    height: 229px;
    flex-shrink: 0;
  }  
  .science-fair-judge-text {
    flex: 1;
    gap: 20px;
  }  
  .science-fair-judge-intro-bold {
    font-size: 25px;
    line-height: 1.4;
  }  
  .science-fair-judge-intro-text,
  .science-fair-judge-description {
    font-size: 18px;
    line-height: 1.6;
  }  
  .science-fair-judge-register {
    padding: 40px 50px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }  
  .science-fair-judge-register-title {
    flex-direction: row;
    gap: 10px;
    flex: 1;
  }  
  .science-fair-judge-icon {
    width: 50px;
    height: 50px;
  }  
  .science-fair-judge-register-title p {
    font-size: 25px;
    line-height: 1.2;
    text-align: left;
  }  
  .science-fair-judge-register-button {
    flex: 1;
    padding: 19px 30px;
  }
}

@media (min-width: 1200px) {
  .science-fair-judge {
    padding: 120px 60px 240px 60px;
  }
  .science-fair-judge-content {
    gap: 80px;
  }
}

@media (min-width: 1400px) {
  .science-fair-judge-register {
    flex-direction: row;
  } 
}

/* Beyond the Fair Section */
.science-fair-beyond {
  background-color: #461D7C;
  padding: 40px 20px;
}
.science-fair-beyond-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.science-fair-beyond-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.science-fair-beyond-header h2 {
  color: #ffffff;
  font-family: "Jubilat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  margin: 0;
}
.science-fair-beyond-header img {
  display: none;
}
.science-fair-beyond-highlight {
  color: #FDD023;
}
.science-fair-beyond-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.science-fair-beyond-intro {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}
.science-fair-beyond-opportunities {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.science-fair-opportunity-card {
  background-color: #ffffff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.science-fair-opportunity-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
  border: 1px solid #d6d6d6;
  padding: 0 0 10px 0;
}
.science-fair-opportunity-logo {  
  background-color: #f5f5f5;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.science-fair-opportunity-logo img {
  height: 59px;
  width: auto;
}
.science-fair-opportunity-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  text-align: center;
  padding: 0 5px;
  width: 100%;
}
.science-fair-opportunity-title h3 {
  color: #461D7C;
  font-family: "roboto-condensed", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0;
}
.science-fair-opportunity-subtitle {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.9;
  margin: 0;
}
.science-fair-opportunity-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.science-fair-opportunity-info p {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.science-fair-opportunity-description {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}
.science-fair-opportunity-link {
  color: #461D7C;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.science-fair-opportunity-link::after {
  content: "\203A";
  font-weight: bold;
  transition: transform 0.2s ease;
}
.science-fair-opportunity-link:hover {
  color: #3a1763;
  text-decoration: none;
}
.science-fair-opportunity-link:hover::after {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .science-fair-beyond {
    padding: 60px 30px;
  }  
  .science-fair-beyond-header h2 {
    font-size: 40px;
    line-height: 57px;
  }  
  .science-fair-beyond-intro {
    font-size: 22px;
    line-height: 39px;
  }  
  .science-fair-opportunity-card {
    padding: 30px;
    flex-direction: row;
    gap: 40px;
  }  
  .science-fair-opportunity-logo img {
    height: 70px;
  }  
  .science-fair-opportunity-link {
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .science-fair-beyond {
    padding: 120px 60px;
  }  
  .science-fair-beyond-content-wrapper {
    flex-direction: row;
    gap: 50px;
  }  
  .science-fair-beyond-header {
    width: 40%;
    align-items: flex-end;
  }
  .science-fair-beyond-header h2 {
    font-size: 50px;
    line-height: 57px;
    text-align: right;
    margin-bottom: 8px;
  }  
  .science-fair-beyond-header img {
    display: block;
    width: 200px;
    height: auto;
  }
  .science-fair-beyond-content {
    width: 60%;
  }
  .science-fair-opportunity-card  {
    flex-direction: column;
    gap: 40px;
  }
}

@media (min-width: 1200px) {
  .science-fair-beyond-content-wrapper {
    flex-direction: row;
    gap: 80px;
  }
  .science-fair-beyond-header {
    width: 30%;
  }
  .science-fair-beyond-content {
    width: 70%;
  }
  .science-fair-opportunity-card {
    flex-direction: row;
  }
  .science-fair-opportunity-logo {
    padding: 40px 20px;
  }
}


/* Sponsorships Section Slides */
.splide__slide.sponsorships {
  display: flex;
  width: 277px !important;
  padding: 40px 30px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  align-self: stretch;
  background: #ffffff;
  border: 7px solid #F1EDDB;
}
.splide__slide.sponsorships .sponsor-icon img{
  width: 50px;
  height: auto;
}
.splide__slide.sponsorships h3{
  color: #461D7C;
  text-align: center;
  font-family: "roboto-condensed";
  font-size: 21px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%; 
  text-transform: uppercase;
  margin: 0;
}
.splide__slide.sponsorships p{
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.splide__slide.sponsorships ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.splide__slide.sponsorships ul li{
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;

}
.splide__slide.sponsorships ul li {
    position: relative;
    padding-left: 25px;
}

.splide__slide.sponsorships ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 18px;
    height: 13px;
    background: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/arrow-bullet-pt.svg') no-repeat center center;
    background-size: contain;
}
.science-fair-sponsorships-text {
  color: #ffffff;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
  margin: 30px 0 0 0;
}
.science-fair-sponsorships-text a {
  color: #BFA0E9;
  text-decoration: none;
}
.science-fair-sponsorships-text a:hover {
  color: #d9c9ef;  
}

@media (min-width: 768px) {
  .science-fair-sponsorships-text {
    font-size: 25px;
    line-height: 1.6;
    margin: 40px 0 0 0;
  }
}
@media (min-width: 992px) {
  .science-fair-sponsorships-text {
    margin: 60px 0 0 0;
  }
}


/* Science Fair Contact Section */
.science-fair-contact {
  background-color: #e9e9e9;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.science-fair-contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://destinyone.s3.us-east-1.amazonaws.com/assets-2025/science-fair/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.science-fair-contact-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding: 30px 20px;
}
.science-fair-contact-content h2 {
  font-family: 'Jubilat', serif;
  font-weight: bold;
  font-size: 26px;
  color: #461d7c;
  line-height: 30px;
  text-align: center;
  margin: 0 0 10px 0;
}
.science-fair-contact-content p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}
.science-fair-contact-person-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.science-fair-contact-person {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start; 
}
.science-fair-contact-photo {
  width: 77px;
  height: 82px;
  position: relative;
  background-color: transparent;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.science-fair-contact-photo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background-color: #f1eddb;
  border-radius: 0 0 4px 4px;
}
.science-fair-contact-photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.science-fair-contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.science-fair-contact-details h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #461d7c;
  line-height: 1.4;
  margin: 0;
}
.science-fair-contact-details p {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #000000;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 0.72px;
  line-height: 1.6;
  margin: 0;
}
.science-fair-contact-phone,
.science-fair-contact-email {
  display: flex;
  gap: 8px;
  align-items: center;
}
.science-fair-contact-phone img,
.science-fair-contact-email img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.science-fair-contact-phone span,
.science-fair-contact-email span {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #461d7c;
}
.science-fair-contact-divider {
  display: block;
  width: 77px;
  height: 1px;
  background-color: #D6D6D6;
  margin: 20px auto;
}

@media only screen and (min-width: 768px) {
  .science-fair-contact {
    padding: 60px 30px;
  }  
  .science-fair-contact-content {
    padding: 40px 30px;
  }
  .science-fair-contact-content h2 {
    font-size: 40px;
    line-height: 48px;
  }  
}

@media only screen and (min-width: 992px) {
  .science-fair-contact {
    padding: 120px 60px;
  }  
  .science-fair-contact-content {
    padding: 70px;
  }
  .science-fair-contact-person-wrapper{
    flex-direction: row;
    gap: 0;
  }
  .science-fair-contact-divider {
    width: 1px;
    height: 77px;
    margin: 0 20px;
  }
  .science-fair-contact-content h2{
    font-size: 40px;
    line-height: 48px;
  }
  .science-fair-contact-content p  {
    font-size: 25px;
    line-height: 1.6;
  }
  .science-fair-contact-details p{
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .science-fair-contact-divider {
    margin: 0 40px;
  }
}