/** Custom Site Styles **/

/** Homepage Rate Superscript **/
.rate-sup{
	color: #1F2869;
	font-weight: 600;
}

/** Leaving Notice **/
.externallinknotice-modal-content{
	font-family: "Roboto", sans-serif;
}

.externallinknotice-icon{
	color: #2E47C5;
	background-color: rgba(46, 71, 197, 0.1);
}

.externallinknotice-stay, .externallinknotice-continue{
	font-family: "Roboto", sans-serif !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	letter-spacing: .2px !important;
	line-height: 1em !important;
	text-transform: uppercase !important;
	border-radius: 100px !important;
	padding: 12px 30px !important;
	border: none !important;
}


/** Nav List **/

.nav-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-list ul a {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.nav-list ul a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: 0;
  left: 0;
  background-color: #2E47C5;
  transform-origin: bottom left;
  transition: transform 0.25s ease-out;
}

.nav-list ul a:hover::after {
  transform: scaleX(1);
}

/** Text Button with Arrow **/
.text-btn a{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: left;
	gap: 10px;
	transition: all 300ms ease-in-out;
}

.text-btn a:hover{
	gap: 20px;
	letter-spacing: 1px;
}

.text-btn.ignore-hover a:hover{
	gap: 10px;
	letter-spacing: inherit;
}


.text-btn a:after{
	content: url(https://srffcuprod.mystagingwebsite.com/wp-content/uploads/2026/06/arrow_right_blue.svg);
	margin-top: -2px;
}

.text-btn.dark a:after{
	content: url(https://srffcuprod.mystagingwebsite.com/wp-content/uploads/2026/06/arrow_right_dark_14.svg);
	margin-top: 0px;
}


.text-btn.white a:after{
	content: url(https://srffcuprod.mystagingwebsite.com/wp-content/uploads/2026/06/arrow_right_white.svg);
	margin-top: -2px;
}