@font-face {
	font-family: "Open Sans";
	font-style: italic;
	font-weight: 400;
	src: local("Open Sans Italic"), local("OpenSans-Italic"),
		url(https://fonts.gstatic.com/s/opensans/v15/mem6YaGs126MiZpBA-UFUK0Zdcg.ttf) format("truetype");
}

@font-face {
	font-family: "Open Sans";
	font-style: italic;
	font-weight: 700;
	src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"),
		url(https://fonts.gstatic.com/s/opensans/v15/memnYaGs126MiZpBA-UFUKWiUNhrIqY.ttf) format("truetype");
}

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 400;
	src: local("Open Sans Regular"), local("OpenSans-Regular"),
		url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0e.ttf) format("truetype");
}

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 700;
	src: local("Open Sans Bold"), local("OpenSans-Bold"),
		url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhs.ttf) format("truetype");
}

* {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
button,
label,
textarea,
input {
	color: #464646;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
label {
	color: black;
	font-weight: bold;
	margin-bottom: 5px;
}
input {
	font-size: 15px;
	height: 1.8rem;
	margin-bottom: 15px;
	padding-left: 8px;
	color: black;
}
textarea {
	font-size: 15px;
	padding-left: 8px;
	padding-top: 5px;
	margin-bottom: 15px;
	color: black;
}

p {
	font-size: 15px;
	line-height: 1.6em;
}

@media (max-width: 650px) {
	p,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		line-height: 1.2em;
	}
}

.desktop-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 30px 6%;
}

header img {
	width: 280px;
}
.header-right {
	display: flex;
	align-items: center;
}
.header-right svg {
	width: 40px;
}
.header-right svg .cls-1 {
	fill: #282f72;
}
.mobile-header {
	margin: 15px 4%;
	display: none;
}
.mobile-header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100000;
	background-color: white;
}
.mobile-header-top svg {
	width: 35px;
}
.mobile-quote-button-container {
	display: flex;
	justify-content: center;
}
.mobile-quote-button-container a {
	margin: 20px 0px 0px 0px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
	position: fixed;
	top: 0;
	width: 92%;
	padding: 15px 4%;
	left: 0;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
	padding-top: 102px;
}

.nav {
	display: flex;
	flex-direction: column;
	position: absolute;
	z-index: 100;
	background-color: white;
	top: 134px;
	left: 86%;
	/* width:100%; */
	background-color: #f1f1f1;
}
.nav {
	display: none;
	padding: 15px 0;
}
.nav a {
	text-decoration: none;
	margin: 10px 35px;
	border-bottom: #f1f1f1 2px solid;
	font-weight: bold;
	width: fit-content;
}
.nav-quote-button {
	text-decoration: none;
	background-color: #282f72;
	color: white;
	padding: 10px 15px;
	margin-right: 35px;
}
.nav a:hover {
	border-bottom: #282f72 2px solid;
	color: #282f72;
	font-weight: bold;
}
#nav-menu {
	/* position: fixed; */
	top: 88px;
}

#hamburger:hover {
	cursor: pointer;
}
#hamburger svg .cls-1 {
	fill: #282f72;
}
#mobile-hamburger svg .cls-1 {
	fill: #282f72;
}
footer {
	background-color: #464646;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 0px;
}

footer a,
footer p {
	color: white;
	margin: 0 5px;
	text-decoration: none;
}

footer img {
	width: 250px;
	margin-bottom: 30px;
}

.footer-links {
	display: flex;
	margin: 0 15px;
	flex-wrap: wrap;
	justify-content: center;
}
#more-info {
	margin-bottom: 25px;
	margin-top: 25px;
}
.more-info-button {
	text-decoration: none;
	padding: 10px 15px;
	color: white;
	background-color: #282f72;
	font-weight: bold;
}

@media (max-width: 1400px) {
	.nav {
		left: 82%;
	}
}
@media (max-width: 900px) {
	header img {
		width: 220px;
	}
	.header-right svg {
		width: 35px;
	}
	.nav {
		left: 70%;
	}
}
@media (max-width: 800px) {
	.nav {
		left: 65%;
	}
	header {
		margin: 50px;
	}
}
@media (max-width: 700px) {
	.nav {
		left: 65%;
	}
}
@media (max-width: 600px) {
	.nav {
		left: 50%;
	}
	#more-info {
		font-size: 1.7rem;
	}
	header {
		margin: 20px;
	}
	.mobile-header {
		display: block;
	}
	.desktop-header {
		display: none;
	}
	footer a,
	footer p {
		font-size: 14px;
	}
}

@media (max-width: 500px) {
	header {
		flex-direction: column;
	}
	.header-right {
		margin-top: 20px;
	}
	.nav-quote-button {
		margin-right: 150px;
	}
}

/* Home Page */

.home-page-img-container {
	margin: 0 0 0 33%;
	/* display:flex; */
}
.home-page-top {
	height: 544px;
	margin: 0 6%;
}
.home-page-top-text {
	background-color: #f1f1f1;
	width: 506px;
	position: relative;
	bottom: 428px;
	padding: 65px 63px 65px 45px;
	text-align: center;
}
.home-page-top-text h1 {
	font-weight: bold;
	font-size: 34px;
	margin-bottom: 20px;
}
.home-page-top-text p {
	font-size: 17px;
	margin-bottom: 30px;
}

.home-page-top-text a {
	font-size: 17px;
	font-weight: bold;
	color: white;
	background-color: #8f181c;
	margin-bottom: 20px;
	text-decoration: none;
	padding: 15px 15px;
}

.home-page-content h1 {
	text-align: center;
	font-size: 44px;
	margin-bottom: 60px;
}
.home-page-buttons {
	margin: 0 6%;
}
.home-page-buttons a {
	margin: 10px;
	padding: 25px;
	text-align: unset;
	border: 1px solid black;
	transition: 0.1s;
	text-decoration: none;
	display: flex;
	flex-direction: column;
}
.home-page-buttons svg {
	width: 50px;
	/* fill:white; */
}

.home-page-button-svg {
	fill: #f1f1f1;
}
.home-page-buttons a:hover .home-page-button-svg {
	fill: white;
}
.svg-container {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}
.svg-container h3 {
	width: 86%;
}
.home-page-buttons a:hover {
	color: white;
	background-color: #282f72;
}
.home-page-buttons a:hover p,
.home-page-buttons a:hover h3 {
	color: white;
}
.home-page-buttons {
	display: flex;
}
.home-page-buttons p {
	font-size: 17px;
}
.home-page-buttons h3 {
	font-size: 1.5em;
}
.home-page-vertical-buttons {
	display: flex;
	width: 60%;
}
.home-page-horizontal-buttons {
	display: flex;
	flex-direction: column;
	width: 40%;
}
.home-page-horizontal-buttons a {
	padding: 40px;
	height: 50%;
}
.home-page-horizontal-buttons p {
	width: 475px;
	margin-top: 20px;
}
.home-page-first-button img {
	width: 457px;
	height: 270px;
}
.home-page-buttons-image{
	height: 100%;
}
.home-page-first-button p {
	margin: 15px 0;
}
.home-page-second-button {
	width: 44%;
}
.home-page-second-button svg {
	margin: 20px 0;
}
.home-page-learn-more {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 6%;
	padding: 35px 0;
	/* background-color: #f1f1f1; */
}
.home-page-learn-more-text {
	display: flex;
	flex-direction: column;
}
.home-page-learn-more-text a {
	font-size: 18px;
}
.home-page-learn-more-text h2 {
	font-size: 2em;
	margin-bottom: 20px;
}
.home-page-learn-more-image-wrapper {
	height: 170px;
	width: 170px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 120px;
}
.home-page-bikes {
	width: 150%;
	height: auto;
}
.testimonials {
	background-color: #f1f1f1;
}
.testimonials h2 {
	text-align: center;
	font-size: 2em;
	padding-top:30px;
	margin-bottom:-20px;
}
.testimonials h4 {
	text-align: center;
	margin-bottom: 10px;
	padding-top: 70px;
	font-size: 1.2em;
}
.testimonial-card {
	display: flex;
	flex-direction: column;
	box-shadow: 0px 0px 3px 0px #999999;
	align-items: center;
	margin: 60px 20px 80px 20px;
	width: 400px;
	padding: 12px 10px 40px;
	background-color: white;
}
.testimonial-name {
	margin-top: 8px;
}

.testimonial-quote {
	line-height: 1.55rem;
	height: 160px;
	text-align: center;
}
.testimonial-divider {
	color: #8f181c;
	background-color: #8f181c;
	height: 4px;
	width: 50px;
	margin: 16px 0 30px 0;
}
.testimonial-cards {
	display: flex;
	justify-content: center;
}
.testimonial-image-wrapper {
	border-radius: 50%;
	width: 100px;
	height: 100px;
	overflow: hidden;
}
.testimonial-card img {
	width: 190%;
	height: auto;
	margin-left: -56px;
}
.testimonial-card svg {
	width: 80px;
}

@media (max-width: 1650px) {
	.home-page-buttons-image {
		width: 100%;
		min-height: 200px;
	}
	.home-page-first-button {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.home-page-second-button {
		width: 89%;
	}
	.home-page-horizontal-buttons {
		width: 40%;
	}
	.home-page-vertical-buttons {
		width: 60%;
	}
	.home-page-horizontal-buttons a {
		padding: 30px;
	}

	.home-page-second-button {
		width: 61%;
		height: unset;
	}
}
@media (max-width: 1500px) {
	.home-page-horizontal-buttons {
		width: 45%;
	}
	.home-page-vertical-buttons {
		width: 55%;
	}

	.home-page-second-button {
		width: 68%;
	}
}
@media (max-width: 1370px) {
	.testimonial-cards {
		flex-direction: column;
		align-items: center;
		margin-top:45px;
	}
	.testimonial-card {
		margin: 12px 0px;
	}
	.testimonial-quote {
		height: fit-content;
	}
	.home-page-horizontal-buttons {
		width: 40%;
	}
	.home-page-vertical-buttons {
		width: 60%;
	}

	.home-page-second-button {
		width: 68%;
	}
	.home-page-horizontal-buttons p {
		width: fit-content;
	}
}

@media (max-width: 1200px) {
	.home-page-learn-more-image-wrapper {
		margin-right: 50px;
	}
	.home-page-top {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
	}
	.home-page-img-container {
		margin: 0;
		width: 100%;
	}
	.home-page-top-text {
		bottom: 0;
		padding: 0;
		margin-bottom: 30px;
		background-color: white;
		text-align: center;
	}
	.home-page-top {
		height: unset;
		margin-bottom: 30px;
	}
	.home-page-buttons {
		flex-direction: column;
	}
	.home-page-horizontal-buttons {
		width: 100%;
	}
	.home-page-vertical-buttons {
		width: 100%;
	}
	.home-page-first-button {
		height: fit-content;
	}
	.home-page-second-button {
		height: unset;
	}
	/* .home-page-buttons a{
    width:500px;
  } */
	.home-page-horizontal-buttons a {
		padding: 25px;
	}
	.home-page-first-button img {
		width: 375px;
		height: 220px;
	}
	.home-page {
		margin: 0 4%;
	}
}
@media (max-width: 1075px) {
	.home-page-learn-more-image-wrapper {
		margin-right: 0;
	}
}
@media (max-width: 1000px) {
	.home-page-learn-more {
		flex-direction: column;
	}
	.home-page-learn-more-image-wrapper {
		margin-bottom: 10px;
	}
	.home-page-learn-more-text {
		align-items: center;
	}
}
@media (max-width: 850px) {
	.home-page-img {
		min-height: 280px;
		margin-bottom: 15px;
	}
	.home-page-vertical-buttons {
		flex-direction: column;
	}
	.home-page-buttons a {
		width: 460px;
	}
	.home-page-buttons {
		margin: 0;
	}
	.home-page-vertical-buttons {
		align-items: center;
	}
	.home-page-horizontal-buttons {
		align-items: center;
	}
	.home-page-learn-more-text h2 {
		text-align: center;
	}
	.home-page-learn-more-text a {
		text-align: center;
	}
	.home-page-second-button-title-line {
		display: flex;
		justify-content: space-between;
	}
	.home-page-second-button svg {
		margin: 0;
	}
}
@media (max-width: 650px) {
	.home-page {
		margin: 0;
	}
	.home-page-content h1 {
		margin-bottom: 15px;
	}
	.home-page-top {
		margin: 0;
	}
	.home-page-learn-more {
		margin: 10px 0px 20px 0px;
		padding: 45px 0;
	}
	.home-page-learn-more-text {
		margin: 0 20px;
	}
	.home-page-learn-more-text h2 {
		font-size: 1.5em;
	}
	.home-page-learn-more-image-wrapper {
		width: 180px;
		height: 180px;
	}
	.home-page-second-button-title-line {
		display: flex;
		justify-content: space-between;
	}
	.home-page-second-button-title-line svg {
		margin: 0;
	}
	.home-page-second-button p {
		margin-top: 20px;
	}
	.home-page-buttons a:hover {
		background-color: white;
	}
	.home-page-buttons a:hover p,
	.home-page-buttons a:hover h3 {
		color: black;
	}
	.home-page-buttons a:hover .home-page-button-svg {
		fill: #f1f1f1;
	}
	.testimonials h4 {
		padding-top: 35px;
		letter-spacing: 5px;
	}
}
@media (max-width: 650px) {
	.home-page-buttons a {
		padding: 10px;
	}
	.home-page-top-text {
		margin: 0 25px 30px 25px;
	}
}

@media (max-width: 600px) {
	.home-page-buttons a {
		width: 400px;
	}
	.home-page-horizontal-buttons p {
		width: 395px;
	}
	.home-page-top-text {
		width: fit-content;
	}
}
@media (max-width: 500px) {
	.home-page-buttons a {
		width: 300px;
	}
	.home-page-top-text h1 {
		font-size: 30px;
	}
	.home-page-horizontal-buttons p {
		width: 290px;
	}
	.testimonial-card {
		width: 310px;
	}
}

/* About Page */

.about-page {
	margin: 40px 80px;
}
.why-rosemark {
	background-color: #f7f7f9;
	padding: 25px 30px;
}
.why-rosemark h2 {
	font-size: 24pt;
	margin-bottom: 12px;
}
#getting-to-know-rosemark{
	margin-bottom:15px;
}

.the-process {
	width: 96%;
	margin: auto;
}
.the-process h2 {
	font-size: 24pt;
	margin-bottom: 12px;
}
.focused-financial-lists {
	display: flex;
	justify-content: space-evenly;
	margin-top: 35px;
}
.focused-financial-lists ul li {
	margin: 15px 0;
}
@media (max-width: 1000px) {
	.about-page {
		margin: 40px 4%;
	}
	.page {
		margin: 0;
	}
	.about-page-img {
		height: 52% !important;
		width: 100% !important;
		min-height: 340px !important;
	}
}
@media (max-width: 670px) {
	.focused-financial-lists {
		flex-direction: column;
		align-items: center;
	}
	.business-list {
		margin-top: 15px;
		margin-left: 10px;
	}
}
@media (max-width: 650px) {
	.about-page {
		margin: 0px 0 40px 0;
	}
	.why-rosemark-top-section {
		display: flex;
		flex-direction: column-reverse;
	}
	.why-rosemark {
		margin-bottom: 30px;
	}
}
@media (max-width: 500px) {
	.about-page-img {
		background-position: 70% 13% !important;
	}
}

/* Products Page */

#products-header {
	display: flex;
	align-items: center;
	margin: 0 8% 50px 8%;
}
#products-header img {
	width: 55%;
}

#products-header-text {
	position: relative;
	top: 38px;
	left: 54px;
	width: 400px;
	padding: 70px 90px 134px 104px;
	background-color: #f7f7f9;
}
#products-header-text h1 {
	font-weight: bold;
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 25px;
}
#products-header-text p {
	font-size: 1.1rem;
}

#products-cards {
	display: flex;
	flex-wrap: wrap;
	margin-top: 90px;
	margin: 90px 10% 45px 10%;
	justify-content: center;
}

.product-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 260px;
	height: 300px;
	border: 1px solid #464646;
	padding: 15px 30px;
	margin: 30px 30px;
	text-decoration: none;
	transition: 0.1s;
}
.product-card h4 {
	margin-bottom: 20px;
}
.product-card:hover {
	background-color: #282f72;
}

.product-card:hover h4,
.product-card:hover p {
	color: white;
}

.product-card svg {
	width: 65px;
	position: relative;
	top: 75px;
}
.long-term-product-card svg {
	top: 5px;
}
@media (max-width: 1450px) {
	#products-cards {
		margin: 90px 0 45px 0;
	}
}
@media (max-width: 1350px) {
	.products-services-header-image {
		background-position: 78% 38%;
	}
}
@media (max-width: 1200px) {
	#products-header {
		flex-direction: column;
	}
	.products-services-header-image {
		min-height: 400px;
		width: 100%;
	}
	#products-header-text {
		top: 0;
		left: 0;
		padding: 0;
		width: 525px;
		margin-bottom: 36px;
		background-color: white;
		text-align: center;
	}
	#products-cards {
		margin: 40px 4% 40px 4%;
	}
}
@media (max-width: 800px) {
	#products-header {
		margin: 0 4% 50px 4%;
	}
	.products-services-header-image {
		min-height: 335px;
	}
	.products-content {
		margin: 35px 4%;
	}
	.product-card {
		height: unset;
		margin: 10px;
	}
	.product-card p {
		margin-bottom: 20px;
	}
	.product-card svg {
		top: 0;
		margin-bottom: 10px;
	}
}
@media (max-width: 650px) {
	#products-header-text {
		width: 400px;
	}
	#products-header-text p {
		font-size: 1rem;
	}
	#products-header-text h1 {
		font-size: 2.2rem;
	}
	#products-header {
		margin: 0;
	}
	#products-header-text {
		margin: 0 4%;
	}
}
@media (max-width: 500px) {
	.products-services-header-image {
		min-height: 250px;
	}
}
@media (max-width: 400px) {
	#products-header-text {
		width: 359px;
	}
	#products-header-text p {
		font-size: 1rem;
	}
	#products-header-text h1 {
		font-size: 2rem;
	}
}

/* Tools Page */

.tools-page {
	margin: 50px 10%;
}

.tools-page .tool {
	margin: 35px 2%;
}

.tool a {
	text-decoration: none;
	color: #282f72;
	font-weight: bold;
	font-size: 16pt;
}
.tool a:hover {
	border-bottom: 4px solid #282f72;
}

.tool p {
	margin-top: 10px;
	font-size: 14pt;
}
@media (max-width: 1000px) {
	.tool a {
		font-size: 14pt;
	}
	.tool p {
		font-size: 12pt;
	}
}

/* Annuities Page */

#annuities-header {
	display: flex;
	align-items: center;
	margin: 0 8% 75px 8%;
}
#annuities-header img {
	width: 55%;
}

#annuities-header-text {
	position: relative;
	top: 38px;
	left: 54px;
	width: 400px;
	padding: 70px 90px 70px 104px;
	background-color: #f7f7f9;
}
#annuities-header-text h1 {
	font-weight: bold;
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 25px;
}
#annuities-header-text p {
	font-size: 1.1rem;
	margin-bottom: 25px;
}

.annuities-content {
	margin: 50px 10%;
}

.annuities-content h1 {
	margin-bottom: 30px;
}

.faq h2 {
	color: black;
}

.faq li {
	padding: 2px 0 10px 0;
}

.faq-accordion {
	background-color: white;
	cursor: pointer;
	padding: 5px 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 14px;
	transition: 0.4s;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.annuities-question {
	border: 1px solid black;
	margin-bottom: 12px;
}

.faq-accordion i {
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 30px;
	color: #03539b;
}

.faq hr {
	margin: 0 0 0 20px;
	border-top: 2px solid #eee;
}

.faq-panel p {
	font-size: 13pt;
	margin-bottom: 16px;
}
.faq-panel li {
	font-size: 13pt;
	position: relative;
	left: 22px;
	margin-bottom: 16px;
	padding: 0 15px 0 0;
}

.faq-panel {
	padding: 0 18px;
	display: none;
	overflow: hidden;
	margin-top: 10px;
}

.faq-panel h2 {
	margin-left: 20px;
}

#chevron-right {
	min-width: 32px;
	width: 32px;
	transition: 0.2s;
}
.st0 {
	fill: #282f72 !important;
}

.chevron-rotated {
	transform: rotate(90deg);
}
@media (max-width: 1350px) {
	.annuities-page-image {
		background-position: 78% 38%;
	}
}
@media (max-width: 1200px) {
	#annuities-header {
		flex-direction: column;
	}
	.annuities-page-image {
		min-height: 400px;
		width: 100%;
	}
	#annuities-header-text {
		top: 0;
		left: 0;
		padding: 0;
		width: 525px;
		margin-bottom: 36px;
		background-color: white;
		text-align: center;
	}
}
@media (max-width: 800px) {
	#annuities-header {
		margin: 0 4% 50px 4%;
	}
	.annuities-page-image {
		min-height: 335px;
	}
	.annuities-content {
		margin: 35px 4%;
	}
}
@media (max-width: 650px) {
	#annuities-header {
		margin: 0 0 50px 0;
	}
	#annuities-header-text {
		width: 360px;
	}
	#annuities-header-text p {
		font-size: 1rem;
	}
	#annuities-header-text h1 {
		font-size: 2.2rem;
	}
	.annuities-question h2 {
		font-size: 15pt;
	}
	.annuities-question p,
	.annuities-question li {
		font-size: 12pt;
	}
}
@media (max-width: 500px) {
	.annuities-page-image {
		min-height: 250px;
	}
}
@media (max-width: 400px) {
	#annuities-header-text {
		width: 320px;
	}
	#annuities-header-text p {
		font-size: 1rem;
	}
	#annuities-header-text h1 {
		font-size: 2rem;
	}
}

/* Why Life Insurance Page */

#why-insurance-header {
	display: flex;
	align-items: center;
	margin: 0 8% 65px 8%;
}
#why-insurance-header img {
	width: 55%;
}

#why-insurance-header-text {
	position: relative;
	top: 34px;
	left: 54px;
	width: 400px;
	padding: 30px 90px 0px 94px;
	background-color: #f7f7f9;
}
#why-insurance-header-text h1 {
	font-weight: bold;
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 25px;
}
#why-insurance-header-text p {
	font-size: 1.1rem;
	margin-bottom: 25px;
}

.why-insurance-content {
	margin: 50px 10%;
}
.why-insurance-content img {
	width: 100%;
}

#why-insurance-button-cards {
	display: flex;
	justify-content: center;
}
.why-insurance-button-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0 50px;
	width: 400px;
	/* border-bottom: 2px solid #c0c0c0; */
	box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
}
.why-insurance-button-card h3 {
	padding: 0px 50px;
	font-size: 18pt;
	margin-bottom: 30px;
}
.why-insurance-button-card a {
	font-size: 16pt;
	text-decoration: none;
	background-color: #282f72;
	color: white;
	padding: 10px 20px;
	margin-bottom: 20px;
	font-weight: bold;
}

.why-insurance-content-text {
	margin: 30px 2%;
}

.why-insurance-content-text h2 {
	font-size: 26pt;
	margin-bottom: 14px;
}

.why-insurance-content-text p {
	font-size: 14pt;
	margin-bottom: 18px;
}
.why-insurance-content-text div {
	margin-bottom: 40px;
}
@media (max-width: 1450px) {
	.why-insurance-header-image {
		background-position: 85% 26%;
	}
}

@media (max-width: 1200px) {
	#why-insurance-header {
		flex-direction: column;
	}
	.why-insurance-header-image {
		min-height: 400px;
		width: 100%;
	}
	.why-insurance-content-image {
		height: 25%;
		min-height: 400px;
		width: 100%;
	}
	#why-insurance-header-text {
		top: 0;
		left: 0;
		padding: 0;
		width: 525px;
		text-align: center;
		background-color: white;
	}
}
@media (max-width: 1000px) {
	.why-insurance-button-cards {
		flex-direction: column;
	}
	.why-insurance-button-card {
		margin: 0 20px;
	}
	.why-insurance-button-card h3 {
		padding: 0 15px;
	}
}
@media (max-width: 800px) {
	#why-insurance-header {
		margin: 0 4% 50px 4%;
	}
	.why-insurance-header-image {
		min-height: 335px;
	}
	.why-insurance-content-image {
		min-height: 335px;
	}
	.why-insurance-content {
		margin: 35px 4%;
	}
	.why-insurance-content-text h2 {
		font-size: 22pt;
	}
	.why-insurance-content-text p {
		font-size: 12pt;
	}
}
@media (max-width: 768px) {
	.why-insurance-button-card h3 {
		font-size: 16pt;
	}
	.why-insurance-button-card a {
		font-size: 14pt;
	}
}
@media (max-width: 650px) {
	.why-insurance-content {
		margin: 35px 0;
	}
	.why-insurance-content-text {
		margin: 30px 4%;
	}
	#why-insurance-header-text {
		width: unset;
		margin: 0 4%;
	}
	#why-insurance-header-text p {
		font-size: 1rem;
	}
	#why-insurance-header-text h1 {
		font-size: 2.2rem;
	}
	#why-insurance-button-cards {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.why-insurance-button-card {
		margin: 25px 0;
	}
	#why-insurance-header {
		margin: 0 0 25px 0;
	}
}

@media (max-width: 500px) {
	.why-insurance-image {
		min-height: 250px;
	}
	.why-insurance-content-image {
		min-height: 250px;
	}
	.why-insurance-button-card {
		width: 350px;
	}
}
@media (max-width: 400px) {
	#why-insurance-header-text p {
		font-size: 1rem;
	}
	#why-insurance-header-text h1 {
		font-size: 2rem;
	}
}

/* Investment Solution Page */

#investment-solution-header {
	display: flex;
	align-items: center;
	margin: 0 7% 50px 7%;
}
#investment-solution-header img {
	width: 55%;
}

#investment-solution-header-text {
	position: relative;
	top: 38px;
	left: 54px;
	width: 400px;
	padding: 70px 90px 70px 104px;
	background-color: #f7f7f9;
}
#investment-solution-header-text h1 {
	font-weight: bold;
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 25px;
}
#investment-solution-header-text p {
	font-size: 1.1rem;
	margin-bottom: 25px;
}

.investment-solution-content {
	margin: 50px 10%;
}

.investment-solution-content p {
	margin-bottom: 20px;
}

.investment-solution-content ul {
	margin-bottom: 30px;
}

.investment-solution-content li {
	margin-bottom: 5px;
	margin-left: 18px;
}
.investment-solution-content h1 {
	margin-bottom: 20px;
}

.investment-solution-content a {
	margin-top: 10px;
	background-color: #282f72;
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
}
@media (max-width: 1350px) {
	.investment-solution-image {
		background-position: 78% 38%;
	}
}
@media (max-width: 1200px) {
	#investment-solution-header {
		flex-direction: column;
	}
	.investment-solution-image {
		min-height: 400px;
		width: 100%;
	}
	#investment-solution-header-text {
		top: 0;
		left: 0;
		padding: 0;
		width: 525px;
		background-color: white;
		text-align: center;
	}
}
@media (max-width: 800px) {
	#investment-solution-header {
		margin: 0 0 50px 0;
	}
	.investment-solution-image {
		min-height: 335px;
	}
	.investment-solution-content {
		margin: 35px 4%;
	}
}

@media (max-width: 650px) {
	#investment-solution-header-text {
		width: unset;
		margin: 0 4%;
	}
	#investment-solution-header-text p {
		font-size: 1rem;
	}
	#investment-solution-header-text h1 {
		font-size: 2.2rem;
	}
}

@media (max-width: 500px) {
	.investment-solution-image {
		min-height: 250px;
	}
	#forminator-field-first-name-1{
		margin-right:0;
	}
}

@media (max-width: 400px) {
	#investment-solution-header-text {
		width: 359px;
	}
	#investment-solution-header-text p {
		font-size: 1rem;
	}
	#investment-solution-header-text h1 {
		font-size: 2rem;
	}
	.investment-solution-content a{
		display:flex;
		text-align: center;
	}
}

/* IRA Rollover Page */

#ira-rollover-header {
	display: flex;
	align-items: center;
	margin: 0 8% 50px 8%;
}
#ira-rollover-header img {
	width: 55%;
}

#ira-rollover-header-text {
	position: relative;
	top: 38px;
	left: 54px;
	width: 400px;
	padding: 70px 90px 70px 104px;
	background-color: #f7f7f9;
}
#ira-rollover-header-text h1 {
	font-weight: bold;
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 25px;
}
#ira-rollover-header-text p {
	font-size: 1.1rem;
	margin-bottom: 25px;
}

.ira-rollover-content {
	margin: 50px 10%;
}

.ira-rollover-content h1 {
	margin-bottom: 20px;
}

.ira-rollover-content a {
	margin-top: 10px;
	background-color: #282f72;
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
}

@media (max-width: 1350px) {
	#ira-rollover-header {
		flex-direction: column;
	}
	.ira-rollover-image {
		min-height: 440px;
		width: 100%;
	}
	#ira-rollover-header-text {
		top: 0;
		left: 0;
		padding: 0;
		width: 540px;
		background-color: white;
		text-align: center;
	}
}

@media (max-width: 800px) {
	#ira-rollover-header {
		margin: 0 0 50px 0;
	}
	.ira-rollover-image {
		min-height: 335px;
	}
	.ira-rollover-content {
		margin: 35px 4%;
	}
}
@media (max-width: 650px) {
	#ira-rollover-header-text {
		width: unset;
		margin: 0 4%;
	}
	#ira-rollover-header-text p {
		font-size: 1rem;
	}
	#ira-rollover-header-text h1 {
		font-size: 2.2rem;
	}
}

@media (max-width: 500px) {
	.ira-rollover-image {
		min-height: 250px;
	}
}

@media (max-width: 400px) {
	#ira-rollover-header-text {
		width: 359px;
	}
	#ira-rollover-header-text p {
		font-size: 1rem;
	}
	#ira-rollover-header-text h1 {
		font-size: 2rem;
	}
}

/* Contact Page */
.contact-page {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px;
}
.contact-info {
	background-color: #282f72;
	padding: 70px 125px 70px 75px;
}
.contact-form {
	padding: 10px 50px 25px 50px;
	border: 1px solid black;
}
.contact-info p,
.contact-info h2,
.contact-info h4 {
	color: white;
}
.contact-info h2 {
	font-size: 22pt;
	margin-bottom: 15px;
}
.contact-info h4 {
	font-size: 18pt;
}
.contact-info p {
	line-height: 1.3em;
	margin-bottom: 30px;
	font-size: 14pt;
}
.contact-phone-number {
	display: flex;
	align-items: center;
}
.contact-phone-number a {
	text-decoration: none;
	color: white;
}
.contact-phone-number svg {
	margin-right: 30px;
	width: 40px;
}
.contact-fax-number {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.contact-fax-number svg {
	margin-right: 30px;
	width: 40px;
}
.contact-email-address {
	display: flex;
	align-items: center;
}
.contact-email-address a {
	text-decoration: none;
	color: white;
}
.contact-email-address svg {
	margin-right: 30px;
	width: 40px;
}
.contact-svgs {
	fill: white !important;
}

/* #forminator-module-721 {
	display: block !important;
}
#forminator-module-721 .forminator-field {
	display: flex;
	flex-direction: column;
} 
.forminator-required {
	color: red;
}
#forminator-module-721 > div.forminator-response-message.forminator-show.forminator-success > label {
	font-weight: normal;
}  */

.forminator-g-recaptcha {
    display: inline-block;
    visibility: visible;
    opacity: 1;
}

#forminator-module-766 {
	display: block !important;
}
#forminator-module-766 .forminator-field {
	display: flex;
	flex-direction: column;
}

#forminator-module-766 > div.forminator-response-message.forminator-show.forminator-success > label {
	font-weight: normal;
}
.forminator-button {
	font-weight: bold;
}
.forminator-button:hover {
	cursor: pointer;
}
#name-1 {
	display: flex;
}
.form-error-message {
	color: red;
	font-weight: bold;
	margin-bottom: 3px;
}
.forminator-button {
	color: white;
	background-color: #8f181c;
	border: none;
	padding: 10px;
}
#forminator-field-first-name-1 {
	margin-right: 20px;
}
@media (max-width: 1100px) {
	.contact-page {
		flex-direction: column;
	}
	.contact-info {
		margin-bottom: 20px;
	}
}
@media (max-width: 650px) {
	.contact-page {
		margin: 0 20px 20px 20px;
	}
}
@media (max-width: 600px) {
	.contact-info {
		padding: 70px 50px 70px 50px;
	}
	.contact-form {
		padding: 10px 20px 25px 20px;
	}
}
@media (max-width: 500px) {
	#name-1 {
		flex-direction: column;
	}
	.contact-form {
		width: 350px;
	}
	.contact-info {
		padding: 50px 30px;
	}
}
@media (max-width: 400px) {
	.contact-form {
		width: 300px;
	}
}

/* Long Term Care Page */

#long-term-care-header {
	margin: 40px 80px;
	background-color: #f7f7f9;
	padding: 40px 80px;
}
#long-term-care-header h1 {
	margin-bottom: 15px;
}
#long-term-care-header p {
	margin-bottom: 15px;
	margin-top: 15px;
}
.list-horizontal li {
	display: inline-block;
}
.list-horizontal li:before {
	content: "\00a0\2022\00a0\00a0";
	color: black;
	font-size: 20px;
	position: relative;
	top: 2px;
	left: 1px;
}
#long-term-care-content {
	margin: 40px 80px;
	padding: 40px 80px;
}
#long-term-care-content li {
	margin-left: 20px;
}
#long-term-care-content ul {
	margin-bottom: 15px;
}
#long-term-care-content h1 {
	margin-bottom: 15px;
}
#long-term-care-content h3 {
	margin-bottom: 15px;
}
#long-term-care-content p {
	margin-bottom: 15px;
}
#long-term-care-content a {
	text-decoration: none;
	background-color: #282f72;
	color: white;
	padding: 10px 15px;
	margin-top: 20px;
	position: relative;
	top: 20px;
	font-weight: bold;
}
#long-term-care-phone-number {
	margin-top: 35px;
	margin-left: 10px;
}
@media (max-width: 1350px) {
	.list-horizontal li {
		display: block;
		list-style: none;
	}
}
@media (max-width: 900px) {
	#long-term-care-header {
		margin: 40px 0px;
		padding: 20px;
	}
	.long-term-care-image {
		margin: 0 40px 0px 40px;
	}
	#long-term-care-content {
		padding-bottom:30px;
		margin: 30px 20px;
	}
	#long-term-care-header h1 {
		text-align: center;
	}
}
@media (max-width: 650px) {
	.long-term-care-image {
		height: 30%;
		min-height: 356px;
		margin: 0;
	}
}

/* Advanced Planning Page */

#advanced-planning-header {
	display: flex;
	align-items: center;
	margin: 0 8% 75px 8%;
}
#advanced-planning-header img {
	width: 55%;
}

#advanced-planning-header-text {
	position: relative;
	top: 38px;
	left: 54px;
	width: 400px;
	padding: 70px 90px 70px 104px;
	background-color: #f7f7f9;
}
#advanced-planning-header-text h1 {
	font-weight: bold;
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 25px;
}
#advanced-planning-header-text p {
	font-size: 1.1rem;
	margin-bottom: 25px;
}

.advanced-planning-content {
	margin: 50px 10%;
}
.advanced-planning-content h3 {
	margin-bottom: 15px;
}
.advanced-planning-content ul {
	margin-bottom: 25px;
}
.advanced-planning-content ul {
	margin-left: 20px;
}
.advanced-planning-content ul ul {
	margin-left: 40px;
	margin-top: 10px;
	list-style-type: disc;
}
.advanced-planning-content h1{
	margin-bottom:20px;
}
@media (max-width: 1200px) {
	#advanced-planning-header {
		margin: 0 4% 50px 4%;
	}
	#advanced-planning-header {
		flex-direction: column;
	}
	.advanced-planning-image {
		width: 100%;
		min-height: 400px;
		background-position: 24% 18%;
	}
	#advanced-planning-header-text {
		top: 0;
		left: 0;
		padding: 0;
		max-width: 525px;
		background-color: white;
		text-align: center;
	}
}

@media (max-width: 650px) {
	#advanced-planning-header-text {
		width: 400px;
	}
	#advanced-planning-header-text p {
		font-size: 1rem;
	}
	#advanced-planning-header-text h1 {
		font-size: 2.2rem;
	}
}

@media (max-width: 500px) {
	.advanced-planning-image {
		min-height: 250px;
	}
}

@media (max-width: 450px) {
	#advanced-planning-header-text {
		width: 350px;
	}
	.advanced-planning-content ul ul {
		margin-left: 25px;
		margin-top: 5px;
	}
}

@media (max-width: 400px) {
	#advanced-planning-header-text {
		width: 359px;
	}
	#advanced-planning-header-text p {
		font-size: 1rem;
	}
	#advanced-planning-header-text h1 {
		font-size: 2rem;
	}
}

/* Guaranteed Acceptance Page */

#guaranteed-acceptance-header {
	display: flex;
	align-items: center;
	margin: 0px 8% 50px 8%;
	background-color: #f7f7f9;
	width: 88%;
}
#guaranteed-acceptance-header img {
	width: 55%;
}

#guaranteed-acceptance-header-text {
	position: relative;
	top: 38px;
	left: 54px;
	width: 400px;
	padding: 30px 90px 70px 104px;
}
#guaranteed-acceptance-header-text h1 {
	font-weight: bold;
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 25px;
}
#guaranteed-acceptance-header-text p {
	font-size: 1.1rem;
	margin-bottom: 25px;
}
#guaranteed-acceptance-header-text li {
	margin-left: 20px;
}

.guaranteed-acceptance-content {
	margin: 50px 10%;
}

.guaranteed-acceptance-content p {
	margin: 20px 0;
}

.guaranteed-acceptance-content ul {
	margin-bottom: 30px;
}

.guaranteed-acceptance-content li {
	margin-bottom: 5px;
	margin-left: 18px;
}
.guaranteed-acceptance-content h1 {
	margin-bottom: 20px;
}
.guaranteed-acceptance-images {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.guaranteed-acceptance-header-image {
	margin-bottom: 25px;
}

.guaranteed-acceptance-content a {
	margin-top: 10px;
	background-color: #282f72;
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
}
@media (max-width: 1350px) {
	.guaranteed-acceptance-header-image {
		background-position: 78% 38%;
	}
}
@media (max-width: 1200px) {
	#guaranteed-acceptance-header {
		flex-direction: column;
		background-color: white;
	}
	.guaranteed-acceptance-header-image {
		min-height: 400px;
		width: 100%;
	}
	#guaranteed-acceptance-header-text {
		top: 0;
		left: 0;
		padding: 0;
		margin-bottom: 15px;
		max-width: 525px;
		background-color: white;
		text-align: center;
	}
	#guaranteed-acceptance-header-text li {
		list-style-position: inside;
	}
}
@media (max-width: 800px) {
	#guaranteed-acceptance-header {
		margin: 0 4% 50px 4%;
	}
	.guaranteed-acceptance-header-image {
		min-height: 335px;
	}
	.guaranteed-acceptance-content {
		margin: 35px 4%;
	}
}
@media (max-width: 650px) {
	#guaranteed-acceptance-header {
		width: 100%;
		margin: 0 0 50px 0;
	}
	#guaranteed-acceptance-header-text {
		width: unset;
		margin: 0 10px 15px 10px;
	}
}
@media (max-width: 500px) {
	.guaranteed-acceptance-header-image {
		min-height: 250px;
	}
}
@media (max-width: 650px) {
	#guaranteed-acceptance-header-text p {
		font-size: 1rem;
	}
	#guaranteed-acceptance-header-text h1 {
		font-size: 2.2rem;
	}
	.guaranteed-acceptance-images img {
		width: 90% !important;
	}
}

@media (max-width: 500px) {
	.guaranteed-acceptance-image {
		min-height: 250px;
	}
}

@media (max-width: 450px) {
	.guaranteed-acceptance-content ul ul {
		margin-left: 25px;
		margin-top: 5px;
	}
}

@media (max-width: 400px) {
	#guaranteed-acceptance-header-text p {
		font-size: 1rem;
	}
	#guaranteed-acceptance-header-text h1 {
		font-size: 2rem;
	}
}
/* Disclosure Page */
.disclosure-page {
	margin: 0 6% 30px 6%;
}
.disclosure-page h1 {
	text-align: center;
	margin-bottom: 15px;
}
.disclosure-page h3 {
	text-align: center;
	margin-bottom: 10px;
}
.disclosure-page p {
	margin-bottom: 30px;
}

/* Privacy Policy Page */

.privacy-policy-page {
	margin: 0 6%;
}
.privacy-policy-page h1 {
	text-align: center;
	margin-bottom: 15px;
}
.privacy-policy-page h3 {
	text-align: center;
	margin-bottom: 10px;
}
.privacy-policy-page p {
	margin-bottom: 30px;
}
.privacy-policy-page ul {
	margin-bottom: 30px;
	margin-left: 20px;
}
.quote-form-wrapper{
	margin:30px 11%;
	/* padding-left:60px; */
	width:81%;
}
.quote-form-wrapper h2{
	margin-bottom:8px;
}
.form-field{
	display:flex;
	flex-direction: column;
	width:90%;
	margin-right:40px;
}
.form-field input{
	height:2.5rem;
	font-size:16px;
}
.form-field select{
	height:2.5rem;
	font-size:16px;
	margin-bottom:15px;
}
.form-field option{
	height:2.5rem;
	font-size:16px;
}
.multi-inputs{
	display:flex;
	margin-right:-40px;
	/* width:75%; */
}
.checkbox-option input{
	margin-bottom:18px;
	margin-right:6px;
	height:unset;
}
.checkbox-option label{
	font-weight:normal;
}
.financial-lead-divider{
	margin-bottom:4px;
}
.financial-strategies-section p{
	margin-bottom:10px;
	margin-top:-6px;
}
.investment-amount select{
	width:50%;
	margin-bottom:12px;
}
.select-lead-label-container{
	margin-bottom:10px;
}
input[name=select-lead]{
	height:unset;
}
.select-lead-option label{
	margin-right:10px;
}

/* .best-time{
	width:30%;
}
.zip-field{
	width:30%;
}
.dob-field{
	width:46.2%;
}
.phone-field{
	width:30%;
}
.state-field{
	width:30%;
} */
.life-strategies-section{
	display:none;
}
.financial-strategies-section{
	display:none;
}
#invest_amount{
	width:50%;
}
.form-field textarea{
	width:50%;
}
.form-submit-button{
	background-color: #282f72;
	color:white;
	border:none;
	padding:10px 15px;
	font-size:16px;
}
.form-submit-button:hover{
	cursor: pointer;
}
.required{
	color:red;
}
.quote-form h2{
	color: #282f72
}
.comments-section{
	margin-top:0px;
}
.inner-inputs{
	display:flex;
	width:100%;
}
.height-inputs{
	display:flex;
	justify-content: space-between;
}
.height-inputs input{
	width:77%;
}
.height-inputs label{
	width:50%;
}
#medications{
	width:50%;
}
/*#applied_for_life_insurance_in_the_past_6_months{
	width:33%;
}*/
#net_worth_financial {
  width: 50%;
}
.error-message{
	color:red;
	font-style: italic;
	font-size:12px;
	display:none;
	margin-top:-16px;
	margin-bottom:6px;
}

.quote-form-header {
	position: relative;
	top: 34px;
	left: 20px;
	width: 400px;
	padding: 30px 90px 0px 94px;
	background-color: #f7f7f9;
}
.quote-form-header h1 {
	font-weight: bold;
	font-size: 2rem;
	line-height: 1.3;
}
.quote-form-header p {
	font-size: rem;
	margin-bottom: 25px;
	margin-top:10px;
}
#life-quote-header{
	display:none;
}


@media(max-width:1400px){
	.four-inputs{
		flex-direction: column;
	}
}

@media(max-width:1200px){
	.quote-form-header {
		top: 0;
		left: 0;
		padding: 0;
		width: 525px;
		text-align: center;
		background-color: white;
	}
}
@media(max-width:900px){
	.quote-form-wrapper{
		width:unset;
		margin: 30px 5%;
	}
	.form-field textarea{
		width:75%;
	}
	#invest_amount{
		width:75%;
	}
}
@media(max-width:750px){
	.name-inputs {
		flex-direction: column;
	}
	.name-inputs .form-field{
		width:44%;
	}
}
@media(max-width:650px){
	.quote-form-header {
		width: unset;
		margin: 0 4%;
	}
	.quote-form-header p {
		font-size: 1rem;
	}
	.quote-form-header h1 {
		font-size: 2.2rem;
	}
}

@media(max-width:600px){
	.form-field select, .form-field option, .form-field input{
		font-size:14px;
	}
	.multi-inputs{
		flex-direction: column;
	}
	.form-field{
		width:90%;
	}
	.inner-inputs{
		flex-direction: column;
	}
	.name-inputs .form-field{
		width:90%;
	}
	#invest_amount{
		width:100%;
	}
	.form-field textarea{
		width:100%;
	}
}
@media (max-width: 400px) {
	.quote-form-header p {
		font-size: 1rem;
	}
	.quote-form-header h1 {
		font-size: 2rem;
	}
}
#thank-you{
	text-align: center;
	display:none;
}
.referral-section{
	visibility: hidden;
}
.referral-section > *{
	height:0;
	margin:0;
	padding:0;
}