
/*  Menu Buttons  */
:root {
    --main-bg: #fff;
    --menu-bg: #005da2;
    --menu-font-color: #fff;
    --menu-font-hover: #fff;
    --menu-border: #005da2;
    --menu-bg-selected: #005da2;
    --menu-bg-hover: #007bff;	
}
.bg-gradient-blue {
    background: linear-gradient(180deg, #00add5 0, #2675b0);
}
.full-wide-header2 {
    width: auto;
    padding: 0 4% 0 4%;
    margin: 0;
    text-align: left;
  background-color: #2675b0;
}
.menu-sub {
	font-family: 'Roboto', serif;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
    width: 70rem;
    max-width: 90%;
}
/* Buttons */
.prestige-btn-careers {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #005da2;
  color: #005da2;
  text-decoration: none;
  margin: 20px;
  background-color: #fff;
}
.prestige-btn-careers a:hover a:focus {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #005da2;
  color: #005da2;
  text-decoration: none;
  margin: 20px;
  background-color: #005da2;
}
.btn-menu {
    font-family: 'Roboto', serif;
    position: relative;
    cursor: pointer;
    background: var(--menu-bg);
    border: none;
    padding: .75rem;
    color: var(--menu-font-color);
	font-size: 14px;
    border-top: 0.1rem solid var(--menu-border);
    border-bottom: 0.1rem solid var(--menu-border);
    transition: background 1s;
	border-radius: 45px; /* Adjust the value to your preference */
}

.btn-menu:hover {
    background: var(--menu-bg-hover);
    color: var(--menu-font-hover);
	text-decoration: underline;
}

.btn-menu:focus {
    outline: none;
    box-shadow: none;
}

.selected {
    background: var(--menu-bg-selected);
    color: var(--menu-font-hover);
	text-decoration: underline;
}

.selected::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 5.6rem;
    width: 0.5rem;
}

/*  End Menu Buttons  */
h1 {
    font-family: 'Roboto', serif;
    font-size: 36px;
    line-height: 1.13;
	font-weight: 300;
    color: #ffffff;
	margin: 0 0 20px;
    padding: .5em 0 .3em 0;
}

.h1-title {
	color: #ffffff;
    font-family: 'Roboto', serif;
    font-size: 36px;
    line-height: 1.13;
	font-weight: 300;
	margin: 0 0 20px;	
}
.h2-title2 {
    font-family: 'Roboto', serif;
    color: #252530;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: -.1px;
    line-height: 1.13;
    margin-bottom: 30px;
    margin-top: 10px;
    position: relative;
}
h3 {
	font-family: 'Roboto', serif;
	color: #000;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: -0.1px;
    line-height: 30.8px;
}
.h3-title-jobs {
	font-family: 'Roboto', serif;
	color: #005da2;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: -0.1px;
    line-height: 30.8px;
}
.h3-title3 {
	font-family: 'Roboto', serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: -0.1px;
    line-height: 30.8px;
}
a.link-micro:link, a.link-micro:visited {
	color: #005da2;
	text-decoration: none;
} 
a.link-micro:hover, a.link-micro:active {
	color: #959595;
	text-decoration: underline;
}
.p1 {
	color: #666;
	font-size: 16px;
    letter-spacing: -.2px;
    line-height: 1.75;
	font-family: Roboto, sans-serif;
}
.bullets-micro {
    padding-left: 20px;
	margin: 0 0 0 20px;
    line-height: 1.5em;
}
.hr-micro {
    border: 0;
    height: 2px;
    background: #005da2;
    margin: .2em 0 1em 0;
    padding: 0;
	width: 100%;
}
/*  accordion  */
.accordion {
  background-color: #82c242;
  color: #00173c;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
 border: 1px solid #82c242;
  outline: none;
  transition: 0.4s;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #00173c;
	border: 1px solid #82c242;
	color: #fff;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #fff;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/*  accordion  */

.clean-button-ad, a.clean-button-ad {
	font-family: 'Roboto', serif;
	margin: 3em 0;
	background-color: #959595;
	color: #fff;
	text-decoration:none;
	text-transform: uppercase;
	border: 1px solid #959595;
	font-weight: 700;
	font-size: 1.3rem;
}
.clean-button-ad:hover, .clean-button-ad:focus {
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=0);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0,.05)), to(rgba(0,0,0,.1)));
	background-image: -webkit-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: -moz-linear-gradient(top, rgba(0,0,0,.05) 0, rgba(0,0,0,.1));
	background-image: -ms-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: -o-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-color:#f2f2f2;
	text-decoration: none;
	border: 1px solid #959595;
	color: #000;
}
.jobs-page-nbrs-box {
    margin-top: 0px;
    margin-bottom: 3%;
}
.jobs-page-nbrs a.jobs-currentpage {
    background-color: #005da2;
    color: #FFF !important;
    cursor: default;
    border: 1px solid #005da2;
}
.css-page-nbrs-box{
	margin-top: 0px;
	margin-bottom: 3%;
}
.css-page-nbrs{
	padding: 0.25em;
	color: #CCC; /* ---- color: #8D8D8D;  --- */
}
.css-page-nbrs ul{
	margin: 0;
	padding: 0;
	text-align: left;
	font-size: .8em;
}

.css-page-nbrs li{
list-style-type: none;
display: inline;
padding-bottom: .25em;
}
.css-page-nbrs a, .css-page-nbrs a:visited{
	padding: 0 .25em;
	border: 1px solid #005da2;
	text-decoration: none;
	color: #005da2;
}

.css-page-nbrs a:hover, .css-page-nbrs a:active{
	border: 1px solid #959595;
	color: #ffffff;
	background-color: #959595;
}

.css-page-nbrs a.css-currentpage{
	background-color: #005da2;
	color: #FFF !important;
	cursor: default;
	border: 1px solid #005da2;
}

.css-page-nbrs a.css-disable, .css-page-nbrs a.css-disable:hover{
	background-color: white;
	cursor: default;
	color: #005da2;
	border-color: #E1E1E1;
	font-weight: normal !important;
}

.css-page-nbrs a.css-prevnext{
	font-weight: normal;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.css-page-nbrs a.css-prevnext:hover, .css-page-nbrs a.css-prevnext:active{
	font-weight: normal;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #fff;
	color: #005da2;
}
@media screen and (min-width: 10px) and (max-width: 989px) {
}

@media only screen and (max-width: 900px) {
	    .content-1-2, .content-2-3, .content-3-3 {
        width: 100%;
        float: none;
        margin-bottom: 3%;
    }  
}
/* Section styling */
.benefits {
  background: #fff;
  text-align: center;
  padding: 60px 20px;
}

/* Header */
.benefits-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.benefits-header hr {
  width: 40px;
  margin: 10px auto 40px;
  border: 0;
  border-top: 2px solid #005da2;
}

/* Grid layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Each item */
.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* Icon */
.benefit img {
  width: 64px;
  height: auto;
  margin-bottom: 15px;
}

/* Text */
.benefit p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  max-width: 220px;
}

/* Responsive: tablet */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: mobile */
@media (max-width: 500px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit p {
    max-width: 100%;
  }
}
/* Container */
.jobs-section {
  padding: 40px 20px;
}

/* Grid layout */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

/* Card styling */
.job-card {
  border: 1px solid #eee;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

/* Title */
.job-title {
  margin-top: 0;
  font-size: 1.2rem;
}

.job-title a {
  color: #005da2;
  text-decoration: none;
}

.job-title a:hover {
  text-decoration: underline;
}

/* Text spacing */
.job-card p {
  margin: 5px 0;
  font-size: 0.95rem;
}

/* Button */
.btn-careers {
  margin-top: auto;
  display: inline-block;
  border: 1px solid #005da2;
  color: #fff;
  background: #005da2;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-careers:hover {
  background: #00add5;
  color: #fff;
  text-decoration: underline;
}

/* Responsive behavior */

/* Tablet */
@media (max-width: 900px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }
}