:root {
  /* Colors */
  --primary-color: #092e6e; 
  --secondary-color: #6c757d; 
  --dark-color: #000000; 
  --light-color: #ffffff; 
  --input-border-colour:#c9c9c9;

  /* Other variables */
  --border-radius: 2px;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --padding: 8px 28px;
  --button-border-radius: 0px;

  /* Cards */
  --card-background-colour:#ffffff;
  --card-border-colour:#c9c9c9;
  --card-padding:30px 30px;
  
  /* Fonts */
  --font-family-body:"Montserrat", Helvetica, Arial, sans-serif;
  --font-family-heading:"Montserrat", Helvetica, Arial, sans-serif;

  /* Search page columns Job Search cards layout, change 100% for 1 job, 33% for 3, 25% for 4 */
  --card-columns:50%;
  --filter-columns:33%;
}

/*** Global Theme ***/
body {
  background:#fff;
  color: var(--dark-color);
  line-height:1.5;
  font-family:var(--font-family-body);
  font-weight:400;
  font-size:16px;
}
/** Typography **/
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  line-height:1.5;
  font-family:var(--font-family-heading);
  font-weight:600;
}
.h1, h1 {
  font-size:26px;
}
.h2, h2 {
    font-size:24px;
}
.h3, h3 {
    font-size:22px;
}
.h4, h4 {
    font-size:20px;
}
.h5, h5 {
    font-size:18px;
}
.h6, h6 {
    font-size:16px;
}
a, a:visited {
    color: var(--primary-color);
}
a:hover {
    color: var(--primary-color);
}
.hero-h1 h1 {
  font-size:56px;
}
.hero-h2 h2 {
  font-size:46px;
}
/** Navigation **/
.nav-item {
  margin:0px;
}
.nav-link {
    color: #092e6e !important;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px !important;
}
/* Logos */
.navbar-brand-logo {
    width: 100%;
    max-width: 300px;
}
.footer-brand-logo {
    width: 100%;
    max-width: 155px;
}

/*** Buttons ***/
.btn, button, a.button {
    font-weight: 600;
    font-family: inherit;
    text-transform: inherit;
    line-height: 1.5;
    padding: var(--padding);
    -webkit-transition: background .25s linear;
    -moz-transition: background .25s linear;
    -o-transition: background .25s linear;
    transition: background .25s linear;
    border-radius: var(--button-border-radius);
    font-size: 15px;
    text-transform:inherit;
}
.btn-primary  {
  background:var(--primary-color);
  color:var(--light-color);
  border-bottom: 5px solid #c60e3b;
}
.btn-primary:hover,
.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus{
  background:var(--secondary-color);
  color:var(--light-color);
  border-bottom: 5px solid var(--secondary-color);
}
.btn-success {
  background:var(--secondary-color);
  color:var(--light-color);
  border-bottom: 5px solid var(--secondary-color);
}
.btn-success:hover,
.btn-success:visited,
.btn-success:active,
.btn-success:focus {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
  border-bottom: 5px solid #c60e3b;
}
.btn-info {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
}
.btn-info:hover,
.bbtn-info:visited,
.btn-info:active,
.btn-info:focus{
  background:var(--secondary-color);
  color:var(--light-color);
  border:1px solid var(--secondary-color);
}
/* custom buttons */
a.button.button1 {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
  border-radius: var(--button-border-radius);
}
a.button.button1:hover {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
  filter: brightness(120%);
}
a.button.button2 {
  background:var(--secondary-color);
  color:var(--light-color);
  border:1px solid var(--secondary-color);
  border-radius: var(--button-border-radius);
}
a.button.button2:hover {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
}
a.button.button3 {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
  border-radius: var(--button-border-radius);
}
a.button.button3:hover {
  background:var(--primary-color);
  color:var(--light-color);
  border:1px solid var(--primary-color);
  border-radius: var(--button-border-radius);
  filter: brightness(120%);
}
a.button.button4 {
    color: #000000;
    border: 0;
    padding: 0;
    font-weight: 600;
    font-size: 15px;
}
.input-group-btn button,
.input-group-btn button:hover {
    border-width: 0px 0px 5px 0px;
}
/* Input group fix */
.input-group input, .input-group-btn button {
    height: auto !important;
    min-height: 50px;
    padding: var(--padding) !important;
}

/** Job Search page **/
/* Job Search table */

/* Job Search cards */
@media (min-width: 992px) {
  .job-search-results-card-col {
    flex: 0 0 var(--card-columns);
    max-width: var(--card-columns);
  }
}
@media (min-width: 768px) {
.job-search-results-dropdown-filter-col {
    flex: 0 0 var(--filter-columns);
    max-width: var(--filter-columns);
  }
}
.card {
    border: 1px solid #444444;
    border-radius: var(--border-radius);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin-bottom: 6px;
}
/** Job Search page filters / inputs */
.block-job-search-results .job-search-results .job-search-filter-groups {
    width: 100%;
}
.job-search-control input {
    border-radius: var(--border-radius) !important;
    border: 1px solid var(--input-border-colour);
}
.job-search-dropdown-filters select {
    padding: 10px 10px;
    margin-bottom: 6px;
    border-radius: var(--border-radius);
    border: 1px solid var(--input-border-colour);
}
.badge {
    background-color: var(--primary-color) !important;
    border-radius: var(--border-radius);
    color: var(--light-color);
}
.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}
.page-link {
    color: var(--primary-color);
}
@media only screen and (max-width: 576px) {
	.pagination li:not(:first-child):not(:last-child) {
		display: none;
	}
}

/** Job Advert **/
/* Side panels */
.side-panel {
    box-shadow: 0 5px 9px 0 rgb(0 0 0 / 10%);
    padding: 40px 25px;
    margin-bottom: 20px;
    border-radius: 6px;
}
.side-panel .job-title {
    font-size: 22px !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
}
.side-panel .job-field {
    color: #484848;
    font-size: 14px;
    font-weight: 600;
}
.side-panel h3 {
    font-size: 24px;
}
.side-panel .job-summary {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.2;
}
/* Jobs list content block card style */
.job-list-cards .jobs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -15px;
    margin-top: -15px;
    align-items: stretch;
}
.job-list-cards .job {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: calc(33.333% - 30px);
    margin-left: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-bottom: 0px !important;
}
@media (max-width: 768px) {
    .job-list-cards .job {
        width: calc(50% - 30px);
    }
}
@media (max-width: 480px) {
    .job-list-cards .job {
        width: calc(100% - 30px);
    }
}
.job-list-cards .job .job-title {
    margin-bottom: 10px;
    color: #202e49  !important;
}
.job-list-cards .job-summary {
  padding-top: 12px;
  color: #444444 !important;
}
/* Jobs list content block table style */
.job {
    background: #ffffff;
    padding: 30px;
}
.job .job-title {
    margin-bottom: 10px;
    color: #202e49  !important;
}
.job-summary {
  padding-top: 12px;
  color: #444444 !important;
}
/* Employee Referral Link */

/** CTAs **/

/* Search Bar */
.job-search-control .near-me-control {
    margin-left: 0;
}
.job-search-control .input-group-btn {
    margin-left: 15px !important;
}
/* Cards */
.card {
    border: 1px solid var(--card-border-colour);
    border-radius: var(--border-radius);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin-bottom: 6px;
    background: var(--card-background-colour);
    padding:var(--card-padding);
}
.card-body {
    padding: 0px;
}
.card-footer {
    background: var(--card-background-colour);
    border-top: 0px;
    padding: 10px 0px;
}
/* Carousel */
.carousel-caption {
    position: relative;
    right: 0 !important;
    bottom: 1.25rem;
    left: 0 !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
}
.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}      
.carousel-control-prev-icon, .carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 60% 60%;
    border-radius: 2rem;
    background-color: #FFF;
    padding: 2rem;
}
.carousel-item-caption-header {
    text-shadow: none !important;
    color: var(--dark-color) !important;
}
.carousel-item-caption-detail * {
    text-shadow: none !important;
    color: var(--dark-color) !important;
}
@media (min-width: 768px) {
	.carousel-control-prev, .carousel-control-next {
		width: 3%;
	}
}
/** Video **/
/*** video fixes ***/
@media (min-width: 576px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 292px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 292px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 292px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 292px;
	}
}
@media (min-width: 768px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 392px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 258px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 190px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 122px;
	}
}
@media (min-width: 992px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 526px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 348px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 256px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 166px;
	}
}
@media (min-width: 1200px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 628px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 414px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 310px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 200px;
	}
}
@media (min-width: 1400px) {
	.col-md-12 .clinch-video-player.video-js {
		height: 730px;
	}
	.col-md-8 .clinch-video-player.video-js {
		height: 482px;
	}
	.col-md-6 .clinch-video-player.video-js {
		height: 358px;
	}
	.col-md-4 .clinch-video-player.video-js {
		height: 234px;
	}
}
.vjs-youtube .vjs-poster {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.video-player-wrapper .vjs-poster img {
    object-fit: contain;
    height: inherit;
    width: 100%;
}
/** Teams **/
/*** Team Member Quote ***/
.team-member-bio {
    text-align: left !important;
}
.team-member-image {
    margin-bottom: 10px;
}
.team-member-bio .name {
    font-size: 17px;
    font-weight: 600;
}
.team-member-bio .title {

}
.team-member-bio .bio {

}
.team-member-bio .social-links i {
    margin-right: 8px !important;
}
/** Blogs **/
.posts-cards .posts-cards-cols {
    display: flex;
    flex-wrap: wrap;
    gap: inherit;
}
.posts-card {
  flex: 0 calc(33.33% - 2rem);
  margin: 1rem;
}
.posts-cards .posts-card {
   border-radius: 10px;
}
.posts-cards .posts-card-body {
    height: auto;
    padding: 20px 0px;
    background: rgba(236 236 236 / 0%);
}
.card {
    background: rgba(236 236 236 / 0%);
}
.posts-cards .posts-card .card-title {
    font-size: 18px;
    font-weight: 600;
}
.posts-cards .posts-card-link {
    color: #202e49 !important;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    text-decoration: underline;
}
.badge.post-tag {
    background: #202e49 !important;
    padding: 6px 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.posts-card-body .post-tags {
    display: none;
}
.posts-cards .posts-card-footer {
    padding: 10px 30px;
    background: none;
}
.posts-card-image {
    transition: transform 0.3s ease;
    border-radius: 8px;
}
@media only screen and (max-width: 768px) {
    .posts-cards .posts-cards-cols {
        flex-direction: column;
    }
}
/** FAQs Accordion **/
.accordion-item:first-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.accordion-item:last-of-type {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.accordion-item {
	color: #333333;
	background-color: #ffffff;
	border: 1px solid #333;
}
.accordion-button:not(.collapsed) {
	color: #333;
	background-color: #ececec;
	box-shadow: unset;
}
.accordion-item:first-of-type .accordion-button {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.accordion-button:focus {
	z-index: 3;
	border-color: transparent;
	outline: 0;
	box-shadow: unset;
}
.accordion-button {
	font-size: 16px;
	padding: 20px;
}
.accordion-body {
	padding: 20px;
}
/** Footer **/
footer {
  background:#5E5750;
}
footer p, footer a, footer address {
  color:#ffffff;
  font-size:15px;
}
footer a:hover, footer a:visited {
  color:#ffffff;
}
footer .list-unstyled li {
    margin-bottom: 2px;
}
}
/** Candidate consent **/
.consent-modal .image-wrapper {
   width: 100%;
   text-align: left;
}
.consent-reject {
  
}
.consent-agree {
  
}
/** Mobile styles **/




/* My Settings */
.candidate-settings-panel {
    background-color: #f9f9f9;
    padding: 30px 42px;
}
.candidate-settings {
    background: #f0f0f0;
    margin: 10px 0px;
    padding: 50px;
}
/* Alignment */
/* Vertical Alignment add my-auto to ROW */
.my-auto .col-md-6, .my-auto .col-md-8, .my-auto .col-md-4 {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
/* text left alignment sits within container on fullwidth page */
@media (min-width: 576px) {
 .hero-banner .block-image-text * {
   width: 540px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 768px) {
  .hero-banner .block-image-text * {
    width: 720px;
    margin-right:auto;
    margin-left:auto;
  }
}
@media (min-width: 992px) {
 .hero-banner .block-image-text * {
   width: 960px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 1200px) {
 .hero-banner .block-image-text * {
   width: 1140px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 1400px) {
  .hero-banner .block-image-text * {
    width: 1320px;
    margin-right:auto;
    margin-left:auto;
  }
}

/* Spacing */


/** Other fixes **/


/** CTA select dropdowns **/
.selectize-control.multi .selectize-input>div {
	background-color: var(--primary-color);
	color: var(--light-color);
    border-radius: var(--border-radius);
}
.selectize-dropdown-content .option.active {
	background-color: var(--primary-color);
}
.selectize-input {
    border-radius: var(--border-radius);
}
.candidate-settings-panel i {
  color:var(--dark-color);
}
 


/* ==== UTILITY / HELPER CLASSES ============ */
.internal-note :is(h2,h3,h4,h5,p,li,a) {
    line-height: 0.5;
    font-size: 1rem;
}
.text-block-vertical-center,
.text-block-vertical-center .block-html,
.text-block-vertical-center .page-block {
	height: 100%;
}
.text-block-vertical-center .page-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
/* horizontal scroll fix */
.hero-no-gutter .page-row-container .col-md-12 {
    padding-left: 0;
    padding-right: 0;
}
.hero-no-gutter .page-row-container .block-image {
    margin-left: 0;
    margin-right: 0;
}
/* Vertical Alignment add my-auto to ROW */
.my-auto .col-md-6, .my-auto .col-md-8, .my-auto .col-md-4 {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
/* text left alignment sits within container on fullwidth page */
@media (min-width: 576px) {
 .hero-banner .block-image-text * {
   width: 540px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 768px) {
  .hero-banner .block-image-text * {
    width: 720px;
    margin-right:auto;
    margin-left:auto;
  }
}
@media (min-width: 992px) {
 .hero-banner .block-image-text * {
   width: 960px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 1200px) {
 .hero-banner .block-image-text * {
   width: 1140px;
   margin-right:auto;
   margin-left:auto;
  }
}
@media (min-width: 1400px) {
  .hero-banner .block-image-text * {
    width: 1320px;
    margin-right:auto;
    margin-left:auto;
  }
}

/* ==== HERO VIDEO WITH SEARCHBAR =========== */
.hero-text {
    color: #fff;
    font-size: 5em;
    line-height: 1.1;
    font-weight: 800;
}
.sub-text {
    color: #fff;
    font-size: 1.6em;
    line-height: 1.3;
    width: 60%;
    margin-bottom: 50px !important;
}
.hero-search {
  width:100%;
  max-width:62%;
}
.form-control:not(.job-search-results .form-control) {
    background: #fff0 !important;
    border: 0 !important;
    border-bottom: 1px solid #fff !important;
    border-radius: 0px !important;
}
.call-to-action-form input {
    border: 1px solid rgba(0, 0, 0, .2) !important;
    border-radius: 4px !important;
}
.hero-with-searchbar .job-search-control input {
    border-radius: 0px !important;
    padding: 10px 0px !important;
}
.hero-with-searchbar .form-control.historical::placeholder {
    color: #fff;
}
.hero-with-searchbar .form-control.historical::-webkit-input-placeholder {
    color: #fff;
}
.hero-with-searchbar .form-control.historical:-ms-input-placeholder {
    color: #fff;
}
.hero-with-searchbar .form-control.historical::-ms-input-placeholder {
    color: #fff;
}
.hero-with-searchbar .form-control.historical:not(.job-sear)::placeholder {
    color: #fff;
}
.form-control::file-selector-button {
    margin: -0.375rem 0.625rem -0.375rem 0rem;
}
.hero-with-searchbar .easy-autocomplete input {
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
    box-shadow: none;
    webkit-box-shadow: none;
}
.hero-with-searchbar .easy-autocomplete input::placeholder {
    font-size: initial;
}
.hero-with-searchbar .job-search-control .input-group input {
    color: #fff;
}
.video-container {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
}
.hero-image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 600px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    color: white;
    z-index: 1;
}
.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 2rem;
}

.scroll-arrow i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========= SECTION TITLES ================= */
.section-title-container :is(h2) {
    font-size: 3.25rem;
    font-weight: 900;
}
@media (max-width: 767.8px) {
  .section-title-container :is(h2) {
      font-size: 2.25rem;
  }
}
.section-title-container :is(p, a) {
    font-weight: 600;
    line-height: 1.75;
}
/* ==== DEPARTMENT CATEGORY HOVER SQUARES/CARDS ============ */
.category-squares-each {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    background-image: url('https://d25wby5c7p9100.cloudfront.net/public/uploads/42ad78e6e195127e31e278923ead326e/images/files/c83064bc95fd11126e4ab74d28277a90/medium/WelcomeCenter2_%284%29.jpg?1724143515');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    padding: 20px;
    border-radius: 0.75rem;
    z-index: 1;
}
.category-squares-each::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(9 46 110 / 75%);
    border-radius: 0.75rem;
    z-index: -1;
    transition: all .25s ease-in-out;
}
.category-squares-each:hover::before {
    background-color: rgb(9 46 110 / 90%);
    transition: all .25s ease-in-out;
}
.category-squares-each p:not(p:has(.button)) {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
/* category squares button */
.category-squares-each a.button.button3,
.category-squares-each a.button.button3:active,
.category-squares-each a.button.button3:visited,
.category-squares-each a.button.button3:hover,
.category-squares-each a.button.button3:focus {
    border: 1px solid #fff;
    border-radius: 0.5rem;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 0.925rem !important;
    padding: 0.5rem 1rem;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.category-squares-each a.button.button3 {
    position: relative;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.category-squares-each a.button.button3:before {
    content: "\f054";
    font-family: 'Font Awesome 7 Free';
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0px;
    height: 100%;
    font-size: 1.1rem;
    width: 30px;
    border-radius: 0.5rem 50% 50% 0.5rem;
    transform: scale(0, 1);
    transform-origin: left center;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.category-squares-each a.button.button3:hover {
    text-indent: 15px;
}

.category-squares-each a.button.button3:hover:before {
    transform: scale(1, 1);
    text-indent: 0;
}

/* ========= BENEFITS HOVER with MODAL CARDS ========= */
a.benefits-modal-card-link,
a.benefits-modal-card-link:active,
a.benefits-modal-card-link:visited,
a.benefits-modal-card-link:focus,
a.benefits-modal-card-link:hover {
    border: 0;
    text-decoration: none;
}

.benefits-modal-card-wrapper .card {
    position: relative;
    width: 100%;
    background-color: #f2f4f6;
    border: none;
}

.benefits-modal-card-wrapper .benefits-modal-card-img {
    width: 5rem;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 2rem auto 0.5rem;
    filter: grayscale(1);
}

.benefits-modal-card-wrapper .card-title {
    color: #092e6e;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: normal;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-modal-card-wrapper .card:hover {
    background-color: #092e6e;
}
/* benefits modal cards - 'click to learn more' on hover */
/* .benefits-modal-card-wrapper .card:hover .card-body::after {
    display: inline-flex;
    position: absolute;
    content: 'click to learn more';
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    bottom: 0;
    z-index: 999;
    left: 50%;
    transform: translate(-50%, -50%);
} */
.benefits-modal-card-wrapper .card:hover .benefits-modal-card-img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.benefits-modal-card-wrapper .card:hover .card-title {
    color: #fff;
}
  
.benefits-modal-card-wrapper .modal-content {
    border-radius: 8px;
}
  
.benefits-modal-card-wrapper .modal-header {
    border: none;
    padding-bottom: 0;
}

.benefits-modal-card-wrapper .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefits-modal-card-wrapper .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.benefits-modal-card-wrapper .modal-body .modal-title {
    margin-bottom: 0;
}
@media (max-width: 991.8px) {
  .benefits-modal-card-row .col-md-3 {
      width: 50%;
  }
  .benefits-modal-card-row .col-md-3:not(:nth-last-of-type(-n+2)) {
      margin-bottom: 30px;
  } 
}
@media (max-width: 767.8px) {
  .benefits-modal-card-row .col-md-3 {
      width: 100%;
  }
  .benefits-modal-card-row .col-md-3:not(:last-of-type) {
      margin-bottom: 30px;
  }
}
/* if modal card title has word wrap - keep all cards in row same height */
.benefits-modal-card-row .col-md-3 :is(.block-wrapper, .block-code, .page-block),
.benefits-modal-card-wrapper,
.benefits-modal-card-wrapper .card {
    height: 100%;
}