﻿@charset "UTF-8";
*, *::before, *:after {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  font-size: 16px;
  font-family: minion-pro, serif;
  text-size-adjust: none;
  background-color: #000;
}

body {
  display: flex;
  flex-direction: column;
  font-size: 1.125rem;
  line-height: 1.27777;
  background-color: #fff;
}

@media (min-width: 720px) {
  body {
    font-size: 1.25rem;
    line-height: 1.19048;
  }
}

header {
  background-color: #fff;
  flex-shrink: 1;
  z-index: 10;
}

@media (min-width: 960px) {
  header {
    position: relative;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    margin-top: 20px;
    left: 0;
    right: 0;
  }
}

main {
  flex: 1 0 auto;
  background-color: #fff;
}

@media (min-width: 720px) {
  main {
    overflow-x: hidden;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h2 {
  font-size: 1.5rem;
  font-weight: 300;
}

h2 strong {
  font-weight: 700;
}

@media (min-width: 720px) {
  h2 {
    font-size: 1.75rem;
  }
}

@media (min-width: 960px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-weight: 300;
}

h3 strong {
  font-weight: 700;
}

@media (min-width: 720px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 960px) {
  h3 {
    font-size: 1.625rem;
  }
}

p {
  margin: 1em 0;
}

a, .a-btn {
  color: #fe5000;
  text-decoration: underline;
}

a:focus, a:hover, a:active, .a-btn:focus, .a-btn:hover, .a-btn:active {
  color: #042a2b;
}

a[href^="tel:"] {
  color: currentColor;
  text-decoration: none;
}

a[href^="tel:"]:focus, a[href^="tel:"]:hover, a[href^="tel:"]:active {
  color: currentColor;
}

a[href$=".pdf"]::after {
  content: " (PDF)";
  text-decoration: none;
  color: #000;
  font-size: 0.8em;
}

@media print {
  a[target="_blank"][href^="http"]::after {
    content: " (" attr(href) ")";
    text-decoration: none;
    color: #000;
  }
}

.skip-to-content {
  left: 50%;
  position: absolute;
  top: 4px;
  transform: translate3d(-50%, -500px, 0);
  z-index: 100;
}

.skip-to-content.btn {
  border: 1px solid #fff;
}

.skip-to-content:focus {
  transform: translate3d(-50%, 0, 0);
}

.skip-to-content:focus.btn {
  outline-offset: -3px;
}

table {
  border-collapse: collapse;
  font-size: 1rem;
  width: 100%;
  caption-side: bottom;
}

table caption {
  text-align: left;
  padding-top: 10px;
}

table th, table td {
  vertical-align: top;
  border-bottom: 1px solid #5eb1bf;
  padding: 6px 0;
}

table th {
  color: #042a2b;
}

table th[scope="row"] {
  text-align: left;
  padding-right: 20px;
}

@media (min-width: 720px) {
  table {
    font-size: 1.125rem;
  }
}

ul {
  list-style-type: disc;
}

@supports (list-style-type: "• ") {
  ul {
    list-style-type: "• ";
  }
}

li {
  margin-bottom: 4px;
}

li:last-child {
  margin-bottom: 0;
}

@media (max-width: 959px) {
  .lg-up-only {
    display: none;
  }
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-accent {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.text-italic {
  font-style: italic;
}

.text-bold {
  font-weight: 700;
}

.text-nowrap {
  white-space: nowrap;
}

.indented-note {
  padding-left: 8px;
  text-indent: -8px;
}

.fine-print {
  font-size: 0.8125rem;
}

span.indented-note {
  display: block;
}

.form {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #eee;
}

.form label {
  margin: 0 0 4px 0;
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.form .required::after {
  content: '*';
  color: red;
}

.form .form-input {
  margin: 0 0 20px 0;
}

.form button:disabled {
  opacity: 0.5;
}

.form button:disabled:hover {
  cursor: not-allowed;
}

.form .form-input input, .form .form-input select, .form .form-input textarea {
  width: 100%;
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  padding: 5px;
  margin: 0;
  border: 1px solid #042a2b;
  border-radius: 0;
  background-color: #fff;
  margin-top: 5px;
}

.form .form-input input:focus, .form .form-input select:focus, .form .form-input textarea:focus {
  border: 1px solid #fe5000;
  outline: none;
}

.form .form-input option {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
}

.form .form-input textarea {
  height: 300px;
}

.form .form-input label small {
  display: block;
  color: #777;
}

.form .form-input-multiple {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.form .form-input-multiple div {
  flex: 1 1;
}

.form .form-input-multiple div label {
  color: #777;
  font-size: 1.1rem;
}

.container > form:last-child > .form {
  margin-bottom: 80px;
}

@media (min-width: 720px) {
  .form {
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-gap: 20px;
    padding: 40px;
  }
  .form .grid-row {
    grid-column: 1/3;
  }
  .form .validation-summary-errors {
    grid-column: 1 / 3;
    margin-bottom: 10px;
  }
  .container > form:last-child > .form {
    margin-bottom: 40px;
  }
  .form label {
    padding: 5px 0 0;
  }
  .form label, .form .form-input {
    margin: 0;
  }
  .form .form-input input, .form .form-input select, .form .form-input textarea, .form .form-input option {
    font-size: 1.25rem;
  }
  .form .form-input textarea {
    height: 200px;
  }
  .form .form-input, .form .form-buttons {
    grid-column: 2 / 3;
  }
}

.input-validation-error {
  outline: 1px solid #cc0000 !important;
  border: 1px solid #cc0000 !important;
}

.validation-error {
  color: #cc0000;
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 0;
}

@media (min-width: 720px) {
  .validation-error {
    font-size: 1.125rem;
    min-height: 2rem;
  }
}

.validation-summary-errors {
  margin-bottom: 20px;
  border: 2px solid #cc0000;
  background-color: #f8dfdf;
}

.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1228px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 720px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.container .download-links {
  margin-top: 10px;
  padding-bottom: 25px;
}

.img-responsive, .ombudservice-list img, .section-product-brief-right .accent-image img, .section-claim-help .accent-image img, .section-story-right .accent-image img, .section-coverage-standards .accent-image img, .section-product-brief-left .accent-image img, .section-story-left .accent-image img, .section-trust .accent-image img {
  max-width: 100%;
  height: auto;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.print-button {
  display: none;
}

.hero-content {
  background-color: #042a2b;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  overflow: auto;
  color: #fff;
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}

.hero-content .hero-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.hero-content .hero-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content.hero-content-tall {
  min-height: 450px;
}

.hero-content.hero-content-tall .hero-image::after {
  display: none;
}

.hero-content.hero-content-tall h1 {
  margin-top: 20px;
}

.hero-content.hero-content-tall .fun-fact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content.hero-content-tall .fun-fact h2 {
  margin: 0;
  font-weight: 500;
}

.hero-content.hero-content-tall .fun-fact p {
  text-align: left;
  margin: 0 0 0 8px;
  padding-left: 16px;
}

.hero-content.hero-content-tall .fun-fact p::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 2px;
  background-color: #fff;
  box-shadow: 0px 0px 25px 0px #171e28;
}

.hero-content.hero-content-tall p, .hero-content.hero-content-tall .swiper-slide {
  text-shadow: 0 0 10px rgba(23, 30, 40, 0.25), 0 0 20px #171e28, 0 0 40px #171e28;
  transform: translateZ(0);
}

.hero-content.hero-content-tall p strong, .hero-content.hero-content-tall .swiper-slide strong {
  font-weight: 500;
}

.hero-content.hero-content-tall .container {
  padding-bottom: 200px;
}

.hero-content .container {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  justify-content: center;
}

.hero-content h1 {
  font-size: 2.25rem;
  font-style: italic;
  margin: 0;
  line-height: 1;
  font-weight: 500;
}

.hero-content p {
  margin: 10px auto 0;
  font-weight: 200;
  font-size: 0.9375rem;
  max-width: 920px;
}

.hero-content .swiper-container {
  width: 100%;
  margin: 10px auto 0;
  overflow: visible;
}

.hero-content .swiper-container p {
  margin-top: 0;
}

.hero-content .swiper-container .swiper-wrapper {
  height: auto;
}

.hero-content .swiper-container .swiper-pagination {
  position: static;
  margin-top: 10px;
}

.hero-content .swiper-container .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 8px;
}

.hero-content .swiper-container .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #ff7332;
}

@media (min-width: 720px) {
  .hero-content .swiper-container .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.hero-content .btn {
  border: 1px solid #fff;
}

.hero-content .btn:focus {
  outline-offset: -3px;
}

@media (min-width: 720px) {
  .hero-content {
    padding-top: calc(40px + 13.33333vw);
    padding-bottom: 60px;
    min-height: 44vw;
  }
  .hero-content.hero-content-tall {
    min-height: 68.7vw;
  }
  .hero-content.hero-content-tall p, .hero-content.hero-content-tall .swiper-container {
    margin-top: 15px;
  }
  .hero-content.hero-content-tall .swiper-container p {
    margin-top: 0;
  }
  .hero-content.hero-content-tall .container {
    display: block;
    padding-bottom: 0;
  }
  .hero-content.hero-content-tall .fun-fact h2 {
    white-space: nowrap;
  }
  .hero-content.hero-content-tall .fun-fact p {
    max-width: 680px;
    margin: 0 0 0 16px;
    padding-left: 24px;
  }
  .hero-content.hero-content-tall .fun-fact p::before {
    left: -4px;
    width: 4px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 1.375rem;
  }
}

@media (min-width: 960px) {
  .hero-content {
    padding-bottom: 80px;
  }
  .hero-content h1 {
    font-size: 3.75rem;
  }
  .hero-content p {
    font-size: 1.625rem;
  }
  .hero-content.hero-content-tall .swiper-container {
    margin-top: 20px;
  }
  .hero-content.hero-content-tall h2 {
    font-size: 2rem;
  }
  .hero-content.hero-content-tall .fun-fact p {
    max-width: 840px;
    margin: 0 0 0 24px;
    padding-left: 36px;
  }
  .hero-content.hero-content-tall .fun-fact p::before {
    left: -5px;
    width: 5px;
  }
}

@media (min-width: 1000px) {
  .hero-content {
    padding-top: 175px;
  }
}

@media (min-width: 1100px) {
  .hero-content.hero-content-tall h1 {
    margin-top: 40px;
  }
}

@media (min-width: 1208px) {
  .hero-content {
    min-height: 530px;
    padding-bottom: 145px;
  }
  .hero-content.hero-content-tall {
    min-height: 830px;
  }
  .hero-content.hero-content-tall h1 {
    margin-top: 60px;
  }
  .hero-content.hero-content-tall h2 {
    font-size: 2.5rem;
  }
  .hero-content.hero-content-tall .fun-fact p {
    margin: 0 0 0 36px;
    padding-left: 56px;
  }
  .hero-content.hero-content-tall .fun-fact p::before {
    left: -6px;
    width: 6px;
  }
  .hero-content .swiper-container {
    overflow-x: hidden;
  }
}

.pro,
.hero-content .pro {
  font-family: neue-helvetica-condensed, neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: oblique;
  color: #fff;
}

.pro b,
.hero-content .pro b {
  color: #fe5000;
  font-weight: 400;
  font-size: 0.75em;
  text-transform: uppercase;
}

.subhero-content {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.subhero-content .container > * {
  position: relative;
  z-index: 5;
  margin: 0 -20px;
}

.subhero-content .container > div {
  border-top: 1px solid #fff;
  color: #fff;
  background-color: #5eb1bf;
  padding: 15px 20px;
  font-size: 1rem;
}

.subhero-content .container > div a {
  color: currentColor;
}

.subhero-content .container > ul {
  background-color: #fff;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  font-weight: 700;
  text-align: center;
}

.subhero-content .container > ul li {
  flex: 1 0 0%;
  margin-top: 1px;
  margin-bottom: 0;
}

.subhero-content .container > ul li .btn {
  display: block;
  border: none;
  font-size: 1.125rem;
}

@media (min-width: 720px) {
  .subhero-content .container > * {
    overflow: auto;
    margin: 0 -42px;
  }
  .subhero-content .container > div {
    padding: 30px 40px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    font-size: 1.125rem;
  }
  .subhero-content.subhero-content-office .container > div {
    font-size: 1.06rem;
  }
  .subhero-content .container > ul {
    flex-direction: row;
    flex-shrink: 1;
  }
  .subhero-content .container > ul li {
    margin-left: 1px;
  }
  .subhero-content .container > ul li .btn {
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 1.375rem;
  }
  .subhero-content .container > ul li:last-child {
    margin-right: 1px;
  }
}

@media (min-width: 1208px) {
  .subhero-content {
    height: 0;
  }
  .subhero-content .container > * {
    transform: translateY(-100%);
    margin: 0 -50px;
  }
}

.btn {
  display: inline-block;
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1;
  border: none;
  color: #fff;
  min-width: 140px;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
}

.btn:focus, .btn:active, .btn:hover {
  color: #fff;
}

.btn:focus {
  outline: 1px dotted #fff;
  outline-offset: -2px;
}

.btn-primary {
  background-color: #fe5000;
}

.btn-primary:focus, .btn-primary:hover, .btn-primary:active {
  background-color: #f14c00;
}

.btn-primary.btn-fake:focus, .btn-primary.btn-fake:hover, .btn-primary.btn-fake:active {
  background-color: #fe5000;
}

.btn-secondary {
  background-color: #5eb1bf;
}

.btn-secondary:focus, .btn-secondary:hover, .btn-secondary:active {
  background-color: #4ca8b8;
}

.btn-black {
  background-color: #000;
}

.btn-black:focus, .btn-black:hover, .btn-black:active {
  background-color: #1a1a1a;
}

footer {
  background-color: #000;
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 0.875rem;
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  flex-shrink: 1;
  padding: 40px 20px;
  line-height: 1.5;
  font-weight: 300;
}

footer .container {
  position: relative;
}

footer a, footer .a-btn {
  color: #5eb1bf;
  font-weight: 400;
}

footer a:focus, footer a:hover, footer a:active, footer .a-btn:focus, footer .a-btn:hover, footer .a-btn:active {
  color: #fe5000;
}

footer .footer-sections {
  display: flex;
  flex-direction: column;
}

footer .footer-sections strong {
  font-weight: 700;
}

footer .footer-section {
  margin-bottom: 15px;
  flex: 0 0 auto;
}

footer .footer-rights {
  font-size: 0.8125rem;
}

footer .footer-rights > * {
  flex: 0 1 auto;
  display: inline;
}

footer .footer-rights > *::before {
  content: "|";
  padding: 0 10px;
}

footer .footer-rights > *:first-child::before {
  content: none;
}

footer .footer-rights form {
  display: inline;
}

footer .footer-logos {
  display: none;
}

footer .footer-logos img {
  display: block;
}

footer .footer-logos a {
  display: block;
  outline-offset: 2px;
}

footer .footer-logos a:focus, footer .footer-logos a:active {
  outline: 1px dotted #fff;
}

footer .footer-logos .footer-logo {
  display: none;
}

@media (min-width: 720px) {
  footer {
    font-size: 0.9375rem;
    padding: 50px 0;
  }
  footer .footer-sections {
    flex-direction: row;
    justify-content: space-between;
  }
  footer .footer-links {
    order: 2;
  }
}

@media (min-width: 880px) {
  footer .footer-logos {
    display: flex;
    order: 3;
    margin-bottom: -10px;
  }
}

@media (min-width: 1100px) {
  footer .footer-logos .footer-medal {
    margin-right: 30px;
  }
  footer .footer-logos .footer-logo {
    display: block;
  }
}

.a-btn {
  background: none !important;
  border: none;
  padding: 0 !important;
  font-family: inherit;
  display: inline;
  font-size: 1em;
  cursor: pointer;
}

.a-btn:focus, .a-btn:active {
  outline: 1px dotted currentColor;
}

.province-selector-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
}

.province-selector {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  flex-direction: row;
  z-index: 100;
  flex-direction: column;
  min-height: 100vh;
  left: 0;
  right: 0;
  padding: 10px;
}

.province-selector-inner {
  flex: 0 0 auto;
  width: 490px;
  max-width: 100%;
  max-height: 100vh;
  overflow: auto;
}

.province-selector-inner .province-selector-content {
  padding: 40px 20px;
  background: #fff url(/images/bison-watermark.jpg) no-repeat;
  background-position: right center;
  background-position: calc(100% + 52px) center;
  background-size: 230px;
  font-size: 1.125rem;
}

.province-selector-inner .province-selector-list {
  display: flex;
  justify-content: center;
}

.province-selector-inner ul {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 12px;
}

.province-selector-inner li {
  white-space: nowrap;
  margin: 0;
}

.province-selector-inner .province-selector-button-container {
  text-align: center;
  padding-top: 32px;
}

.province-selector-inner .btn {
  border: none;
  min-width: 210px;
}

@media (min-width: 500px) {
  .province-selector-inner ul {
    grid-template-columns: 1fr 1fr;
  }
  .province-selector-inner .province-selector-content {
    background-position: 258px -100px;
    background-size: auto;
  }
}

.province-selector-header {
  background-color: #5eb1bf;
  color: #fff;
  text-align: center;
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 30px 20px;
}

.province-selector-header h1 {
  margin: 0;
  font-size: 1.2rem;
}

.province-selector-header p {
  margin: 16px 0 0;
  font-weight: 200;
}

@media (min-width: 500px) {
  .province-selector-header h1 {
    font-size: 1.5rem;
  }
  .province-selector-header p {
    font-size: 1.25rem;
    padding: 0 40px;
  }
}

.bottom-shadow, .section-tenant-package, .section-office-coverage,
.section-realty-coverage,
.section-retailers-coverage, .section-home-business-coverage, .section-essential-options, .section-condo-benefits, .section-optional-coverage, .section-optional-coverage-residential, .section-optional-coverage-ag, .section-basic-coverage, .section-package-highlights, .section-package-highlights-ag, .section-standard, .section-faq, .section-insurance-products-list, .section-product-brief-right, .section-claim-help, .section-story-right, .section-coverage-standards, .section-product-brief-left, .section-story-left, .section-trust {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  background-size: 100% 90px;
  background-repeat: no-repeat;
  background-position-y: bottom;
}

.emergency-alert {
  background-color: #cdedf6;
  font-weight: 500;
  color: #000;
  text-align: left;
  padding: 10px 0;
}

.emergency-alert h2 {
  font-size: 1.25rem;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.emergency-alert p {
  font-size: 1rem;
  margin: 0 0 10px;
}

.emergency-alert .btn {
  padding-left: 36px;
  padding-right: 36px;
}

@media (min-width: 960px) {
  .emergency-alert {
    padding: 20px 0;
  }
  .emergency-alert h2 {
    font-size: 1.5rem;
  }
  .emergency-alert p {
    font-size: 1.125rem;
  }
  .emergency-alert .container {
    padding-left: 120px;
    padding-right: 120px;
  }
  .emergency-alert .container > div {
    display: flex;
    flex-direction: row;
  }
  .emergency-alert .container > div > * {
    flex: 1 1 auto;
    margin-right: 60px;
  }
  .emergency-alert .container > div > *:last-child {
    margin-right: 0;
  }
  .emergency-alert .emergency-alert-actions {
    white-space: nowrap;
  }
}

.covid-19-response {
  font-size: 0.85rem;
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fe5000;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.covid-19-response a {
  color: #000;
  text-decoration: underline;
}

@media (min-width: 720px) {
  .covid-19-response {
    font-size: 1rem;
    padding: 15px 0;
  }
}

@media (min-width: 960px) {
  .covid-19-response {
    font-size: 1.125rem;
  }
}

.section-coverage-standards, .section-product-brief-left, .section-story-left, .section-trust {
  padding: 40px 0;
}

.section-coverage-standards .container:first-child, .section-product-brief-left .container:first-child, .section-story-left .container:first-child, .section-trust .container:first-child {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}

.section-coverage-standards .section-content, .section-product-brief-left .section-content, .section-story-left .section-content, .section-trust .section-content {
  text-align: center;
}

.section-coverage-standards .accent-image, .section-product-brief-left .accent-image, .section-story-left .accent-image, .section-trust .accent-image {
  display: none;
}

.section-coverage-standards .accent-image img, .section-product-brief-left .accent-image img, .section-story-left .accent-image img, .section-trust .accent-image img {
  border-radius: 50%;
  display: block;
}

.section-coverage-standards .actions, .section-product-brief-left .actions, .section-story-left .actions, .section-trust .actions {
  display: inline-flex;
  flex-direction: column;
}

.section-coverage-standards .actions .btn, .section-product-brief-left .actions .btn, .section-story-left .actions .btn, .section-trust .actions .btn {
  white-space: nowrap;
  margin-top: 2px;
  min-width: 260px;
}

@media (min-width: 720px) {
  .section-coverage-standards .section-content, .section-product-brief-left .section-content, .section-story-left .section-content, .section-trust .section-content {
    max-width: 580px;
    margin-left: 40px;
  }
  .section-coverage-standards h2, .section-product-brief-left h2, .section-story-left h2, .section-trust h2 {
    margin: 20px 0;
  }
  .section-coverage-standards .accent-image, .section-product-brief-left .accent-image, .section-story-left .accent-image, .section-trust .accent-image {
    display: block;
    margin-right: auto;
    min-width: 260px;
    max-width: 30vw;
  }
}

@media (min-width: 960px) {
  .section-coverage-standards, .section-product-brief-left, .section-story-left, .section-trust {
    padding: 50px 0;
  }
  .section-coverage-standards .section-content, .section-product-brief-left .section-content, .section-story-left .section-content, .section-trust .section-content {
    max-width: 620px;
  }
  .section-coverage-standards .actions, .section-product-brief-left .actions, .section-story-left .actions, .section-trust .actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  .section-coverage-standards .actions .btn, .section-product-brief-left .actions .btn, .section-story-left .actions .btn, .section-trust .actions .btn {
    grid-column: span 2;
    margin-top: 0;
  }
  .section-coverage-standards .actions a:last-child:nth-child(2n+1), .section-product-brief-left .actions a:last-child:nth-child(2n+1), .section-story-left .actions a:last-child:nth-child(2n+1), .section-trust .actions a:last-child:nth-child(2n+1) {
    grid-column: 2 / span 2;
  }
}

@media (min-width: 1208px) {
  .section-coverage-standards .section-content, .section-product-brief-left .section-content, .section-story-left .section-content, .section-trust .section-content {
    max-width: 700px;
  }
}

.section-product-brief-right, .section-claim-help, .section-story-right {
  padding: 40px 0;
}

.section-product-brief-right .container:first-child, .section-claim-help .container:first-child, .section-story-right .container:first-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.section-product-brief-right .section-content, .section-claim-help .section-content, .section-story-right .section-content {
  text-align: center;
}

.section-product-brief-right .accent-image, .section-claim-help .accent-image, .section-story-right .accent-image {
  display: none;
}

.section-product-brief-right .accent-image img, .section-claim-help .accent-image img, .section-story-right .accent-image img {
  border-radius: 50%;
  display: block;
}

.section-product-brief-right .actions, .section-claim-help .actions, .section-story-right .actions {
  display: inline-flex;
  flex-direction: column;
}

.section-product-brief-right .actions .btn, .section-claim-help .actions .btn, .section-story-right .actions .btn {
  white-space: nowrap;
  margin-top: 2px;
  min-width: 260px;
}

@media (min-width: 720px) {
  .section-product-brief-right .section-content, .section-claim-help .section-content, .section-story-right .section-content {
    max-width: 580px;
    margin-right: 40px;
  }
  .section-product-brief-right h2, .section-claim-help h2, .section-story-right h2 {
    margin: 20px 0;
  }
  .section-product-brief-right .accent-image, .section-claim-help .accent-image, .section-story-right .accent-image {
    display: block;
    margin-left: auto;
    min-width: 260px;
    max-width: 30vw;
  }
}

@media (min-width: 960px) {
  .section-product-brief-right, .section-claim-help, .section-story-right {
    padding: 50px 0;
  }
  .section-product-brief-right .section-content, .section-claim-help .section-content, .section-story-right .section-content {
    max-width: 620px;
  }
  .section-product-brief-right .actions, .section-claim-help .actions, .section-story-right .actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  .section-product-brief-right .actions .btn, .section-claim-help .actions .btn, .section-story-right .actions .btn {
    grid-column: span 2;
    margin-top: 0;
  }
  .section-product-brief-right .actions a:last-child:nth-child(2n+1), .section-claim-help .actions a:last-child:nth-child(2n+1), .section-story-right .actions a:last-child:nth-child(2n+1) {
    grid-column: 2 / span 2;
  }
}

@media (min-width: 1208px) {
  .section-product-brief-right .section-content, .section-claim-help .section-content, .section-story-right .section-content {
    max-width: 700px;
  }
}

.section-standard, .section-faq, .section-insurance-products-list {
  padding: 40px 0;
}

.section-standard h1, .section-faq h1, .section-insurance-products-list h1, .section-standard h2, .section-faq h2, .section-insurance-products-list h2, .section-standard h3, .section-faq h3, .section-insurance-products-list h3, .section-standard h4, .section-faq h4, .section-insurance-products-list h4, .section-standard h5, .section-faq h5, .section-insurance-products-list h5, .section-standard h6, .section-faq h6, .section-insurance-products-list h6 {
  font-weight: 700;
}

.section-standard h2, .section-faq h2, .section-insurance-products-list h2, .section-standard h3, .section-faq h3, .section-insurance-products-list h3 {
  margin-bottom: 10px;
}

.section-standard h2 + p, .section-faq h2 + p, .section-insurance-products-list h2 + p, .section-standard h2 + ul, .section-faq h2 + ul, .section-insurance-products-list h2 + ul, .section-standard h3 + p, .section-faq h3 + p, .section-insurance-products-list h3 + p, .section-standard h3 + ul, .section-faq h3 + ul, .section-insurance-products-list h3 + ul {
  margin-top: 10px;
}

.section-standard .container > *:first-child, .section-faq .container > *:first-child, .section-insurance-products-list .container > *:first-child {
  margin-top: 0;
}

.section-standard .container > *:last-child, .section-faq .container > *:last-child, .section-insurance-products-list .container > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .section-standard, .section-faq, .section-insurance-products-list {
    padding: 70px 0 80px;
  }
}

.section-trust .actions {
  display: block;
}

.section-trust .actions .btn-primary {
  min-width: 170px;
}

.section-story-left h1, .section-story-left h2, .section-story-left h3, .section-story-left h4, .section-story-left h5, .section-story-left h6,
.section-story-right h1,
.section-story-right h2,
.section-story-right h3,
.section-story-right h4,
.section-story-right h5,
.section-story-right h6 {
  font-weight: 700;
}

.section-story-left h2, .section-story-left h3,
.section-story-right h2,
.section-story-right h3 {
  margin-bottom: 10px;
}

.section-story-left h2 + p, .section-story-left h2 + ul, .section-story-left h3 + p, .section-story-left h3 + ul,
.section-story-right h2 + p,
.section-story-right h2 + ul,
.section-story-right h3 + p,
.section-story-right h3 + ul {
  margin-top: 10px;
}

.section-story-left .section-content,
.section-story-right .section-content {
  text-align: left;
}

.section-insurance-products {
  background-color: #042a2b;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
  text-align: center;
}

.section-insurance-products h2 {
  margin: 0 0 20px;
  font-weight: 700;
}

.section-insurance-products p {
  margin-top: 0;
}

.section-insurance-products ul {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
}

.section-insurance-products .swiper-container {
  width: 160px;
  overflow-x: auto;
  margin-left: 0;
  margin-right: 0;
  scroll-snap-type: y mandatory;
}

.section-insurance-products .swiper-container-initialized {
  overflow-x: hidden;
}

.section-insurance-products li {
  flex: 0 0 auto;
  width: 160px !important;
  scroll-snap-align: start;
  margin: 0;
}

.section-insurance-products li a {
  padding-top: 5px;
  display: block;
  text-align: center;
  font-size: 1rem;
  color: currentColor;
  text-decoration: none;
  outline-offset: -1px;
}

.section-insurance-products img {
  border-radius: 50%;
  width: 75%;
  margin: 0 auto 20px;
  display: block;
}

@media (min-width: 600px) {
  .section-insurance-products .swiper-container {
    width: 320px;
  }
}

@media (min-width: 720px) {
  .section-insurance-products {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section-insurance-products p {
    font-size: 1.25rem;
  }
}

@media (min-width: 740px) {
  .section-insurance-products .swiper-container {
    width: 480px;
  }
}

@media (min-width: 920px) {
  .section-insurance-products .swiper-container {
    width: 640px;
  }
}

@media (min-width: 1080px) {
  .section-insurance-products .swiper-container {
    width: 800px;
  }
}

.carousel {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  border: none;
  width: 40px;
  height: 60px;
  margin-top: 35px;
  padding: 0;
}

.swiper-button-prev.swiper-button-initialized,
.swiper-button-next.swiper-button-initialized {
  display: block;
}

.swiper-button-prev span,
.swiper-button-next span {
  position: absolute;
  top: -9999px;
}

.swiper-button-prev:focus, .swiper-button-prev:active,
.swiper-button-next:focus,
.swiper-button-next:active {
  outline: 1px dotted #fff;
}

@media (min-width: 720px) {
  .swiper-button-prev,
.swiper-button-next {
    width: 60px;
  }
}

@media (min-width: 960px) {
  .swiper-button-prev,
.swiper-button-next {
    width: 80px;
    height: 80px;
    margin-top: 25px;
  }
}

.swiper-button-prev {
  background-image: url(/images/arrow-prev.png);
  margin-right: 20px;
}

.swiper-button-next {
  background-image: url(/images/arrow-next.png);
  margin-left: 20px;
}

.section-secondary, .section-tenant-package-heading, .section-residential-coverage-basics, .section-essential-options-heading,
.section-secondary-standard-heading, .section-broker-statement, .section-basic-coverage-heading, .section-community, .section-secondary-dark {
  margin: 1px 0;
  background-color: #5eb1bf;
  color: #fff;
  overflow: auto;
  padding: 40px 0;
  text-align: center;
}

.section-secondary h2, .section-tenant-package-heading h2, .section-residential-coverage-basics h2, .section-essential-options-heading h2,
.section-secondary-standard-heading h2, .section-broker-statement h2, .section-basic-coverage-heading h2, .section-community h2, .section-secondary-dark h2, .section-secondary h3, .section-tenant-package-heading h3, .section-residential-coverage-basics h3, .section-essential-options-heading h3,
.section-secondary-standard-heading h3, .section-broker-statement h3, .section-basic-coverage-heading h3, .section-community h3, .section-secondary-dark h3 {
  margin: 0;
}

.section-secondary h3, .section-tenant-package-heading h3, .section-residential-coverage-basics h3, .section-essential-options-heading h3,
.section-secondary-standard-heading h3, .section-broker-statement h3, .section-basic-coverage-heading h3, .section-community h3, .section-secondary-dark h3 {
  font-weight: 300;
}

.section-secondary p, .section-tenant-package-heading p, .section-residential-coverage-basics p, .section-essential-options-heading p,
.section-secondary-standard-heading p, .section-broker-statement p, .section-basic-coverage-heading p, .section-community p, .section-secondary-dark p {
  margin: 20px 0 0;
}

.section-secondary a, .section-tenant-package-heading a, .section-residential-coverage-basics a, .section-essential-options-heading a,
.section-secondary-standard-heading a, .section-broker-statement a, .section-basic-coverage-heading a, .section-community a, .section-secondary-dark a {
  color: currentColor;
}

@media (min-width: 720px) {
  .section-secondary, .section-tenant-package-heading, .section-residential-coverage-basics, .section-essential-options-heading,
.section-secondary-standard-heading, .section-broker-statement, .section-basic-coverage-heading, .section-community, .section-secondary-dark {
    padding: 80px 0;
  }
  .section-secondary h3, .section-tenant-package-heading h3, .section-residential-coverage-basics h3, .section-essential-options-heading h3,
.section-secondary-standard-heading h3, .section-broker-statement h3, .section-basic-coverage-heading h3, .section-community h3, .section-secondary-dark h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 960px) {
  .section-secondary h3, .section-tenant-package-heading h3, .section-residential-coverage-basics h3, .section-essential-options-heading h3,
.section-secondary-standard-heading h3, .section-broker-statement h3, .section-basic-coverage-heading h3, .section-community h3, .section-secondary-dark h3 {
    font-size: 2rem;
  }
}

.section-secondary-dark {
  background-color: #042a2b;
}

.section-community h2 {
  font-weight: 700;
  margin-top: 10px;
}

@media (min-width: 720px) {
  .section-community p {
    font-size: 1.375rem;
  }
}

.section-storm, .section-retail-professions,
.section-tenant-policies, .section-other-business-options, .section-coverage-options, .section-coverage-options-residential {
  background: #042a2b url(/images/bg-storm-generic.jpg) no-repeat;
  background-position: 33% bottom;
  background-size: cover;
  color: #fff;
  overflow: auto;
  padding: 45px 0;
}

.section-storm h2, .section-retail-professions h2,
.section-tenant-policies h2, .section-other-business-options h2, .section-coverage-options h2, .section-coverage-options-residential h2 {
  text-align: center;
  margin: 0;
  font-weight: 200;
}

.section-storm.home-page h2, .home-page.section-retail-professions h2,
.home-page.section-tenant-policies h2, .home-page.section-other-business-options h2, .home-page.section-coverage-options h2, .home-page.section-coverage-options-residential h2 {
  font-size: 1.875rem;
}

.section-storm p, .section-retail-professions p,
.section-tenant-policies p, .section-other-business-options p, .section-coverage-options p, .section-coverage-options-residential p {
  font-weight: 300;
}

@media (min-width: 720px) {
  .section-storm, .section-retail-professions,
.section-tenant-policies, .section-other-business-options, .section-coverage-options, .section-coverage-options-residential {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
    padding: 90px 0;
  }
  .section-storm.home-page h2, .home-page.section-retail-professions h2,
.home-page.section-tenant-policies h2, .home-page.section-other-business-options h2, .home-page.section-coverage-options h2, .home-page.section-coverage-options-residential h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 960px) {
  .section-storm.home-page h2, .home-page.section-retail-professions h2,
.home-page.section-tenant-policies h2, .home-page.section-other-business-options h2, .home-page.section-coverage-options h2, .home-page.section-coverage-options-residential h2 {
    font-size: 2.5rem;
  }
}

.payment-iframe-wrapper {
  padding-bottom: 60px;
}

@media (min-width: 720px) {
  .payment-iframe-wrapper {
    padding-bottom: 20px;
  }
}

.payment-iframe {
  height: 820px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}

@media (min-width: 540px) {
  .payment-iframe {
    height: 760px;
  }
}

@media (min-width: 910px) {
  .payment-iframe {
    height: 500px;
  }
}

.branch-list, .broker-results ul, .section-insurance-products-list ul, .section-condo-coverages ul, .ombudservice-list {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr;
  list-style-type: none;
  margin: 0 0 40px;
  padding: 0;
}

.branch-list li, .broker-results ul li, .section-insurance-products-list ul li, .section-condo-coverages ul li, .ombudservice-list li {
  margin: 0;
}

.branch-list h3, .broker-results ul h3, .section-insurance-products-list ul h3, .section-condo-coverages ul h3, .ombudservice-list h3 {
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
}

.branch-list .branch-address, .broker-results ul .branch-address, .section-insurance-products-list ul .branch-address, .section-condo-coverages ul .branch-address, .ombudservice-list .branch-address, .branch-list .branch-phone, .broker-results ul .branch-phone, .section-insurance-products-list ul .branch-phone, .section-condo-coverages ul .branch-phone, .ombudservice-list .branch-phone {
  margin-bottom: 20px;
}

.branch-list .branch-address:last-child, .broker-results ul .branch-address:last-child, .section-insurance-products-list ul .branch-address:last-child, .section-condo-coverages ul .branch-address:last-child, .ombudservice-list .branch-address:last-child, .branch-list .branch-phone:last-child, .broker-results ul .branch-phone:last-child, .section-insurance-products-list ul .branch-phone:last-child, .section-condo-coverages ul .branch-phone:last-child, .ombudservice-list .branch-phone:last-child {
  margin-bottom: 0;
}

.branch-list .btn, .broker-results ul .btn, .section-insurance-products-list ul .btn, .section-condo-coverages ul .btn, .ombudservice-list .btn {
  margin-top: 4px;
}

@media (min-width: 720px) {
  .branch-list h3, .broker-results ul h3, .section-insurance-products-list ul h3, .section-condo-coverages ul h3, .ombudservice-list h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 960px) {
  .branch-list, .broker-results ul, .section-insurance-products-list ul, .section-condo-coverages ul, .ombudservice-list {
    grid-template-columns: 1fr 1fr;
  }
}

.ombudservices {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.ombudservice-list {
  text-align: center;
}

.ombudservice-list h4 {
  margin: 0 0 20px;
}

.ombudservice-list img {
  max-height: 100px;
}

.ombudservice-list li {
  margin: 0;
}

.payment-example {
  max-width: 570px;
  margin: 0;
}

.payment-example th, .payment-example td {
  text-align: right;
  padding-left: 20px;
}

.payment-example th:first-child, .payment-example td:first-child {
  padding-left: 0;
}

.footnote {
  font-size: 0.875rem;
  text-decoration: none;
  padding-top: 10px;
}

@media (min-width: 720px) {
  .footnote {
    font-size: 1rem;
  }
}

.section-product-brief-left {
  background-color: #eee;
}

.section-product-brief-right {
  background-color: #eee;
}

.section-coverage-options h2, .section-coverage-options-residential h2 {
  padding-bottom: 20px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 720px) {
  .section-coverage-options, .section-coverage-options-residential {
    padding: 80px 0 70px;
  }
}

.coverage-options, .coverage-options-residential {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin: 0 auto -10px;
  padding: 0;
  align-items: center;
  max-width: 760px;
  transform: translateX(-10px);
}

.coverage-options li, .coverage-options-residential li {
  width: 360px;
  max-width: 100%;
  margin-left: 20px;
  margin-bottom: 10px;
}

.coverage-options li .btn, .coverage-options-residential li .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  font-weight: 300;
  width: 100%;
  height: 100%;
}

.coverage-options li .btn strong, .coverage-options-residential li .btn strong {
  font-weight: 700;
}

@media (min-width: 720px) {
  .coverage-options, .coverage-options-residential {
    flex-direction: row;
    align-items: stretch;
  }
  .coverage-options li, .coverage-options-residential li {
    flex: 1 1 0;
  }
  .coverage-options li .btn, .coverage-options-residential li .btn {
    padding: 16px 40px;
  }
}

.section-package-highlights, .section-package-highlights-ag {
  overflow: auto;
  padding: 40px 0;
  text-align: center;
}

.section-package-highlights h2, .section-package-highlights-ag h2 {
  margin-top: 0;
  margin-bottom: 30px;
}

.section-package-highlights p, .section-package-highlights-ag p {
  text-align: left;
}

.section-package-highlights ul, .section-package-highlights-ag ul {
  text-align: left;
  margin: 0;
}

.section-package-highlights .indented-note, .section-package-highlights-ag .indented-note {
  font-size: 1rem;
}

.section-package-highlights .accent-image, .section-package-highlights-ag .accent-image {
  display: none;
}

.section-package-highlights .container > *:last-child, .section-package-highlights-ag .container > *:last-child {
  margin-bottom: 0;
}

.section-package-highlights .package-highlights > div > :first-child, .section-package-highlights-ag .package-highlights > div > :first-child {
  margin-top: 0;
}

.section-package-highlights .package-highlights > div > :last-child, .section-package-highlights-ag .package-highlights > div > :last-child {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .section-package-highlights, .section-package-highlights-ag {
    padding: 80px 0;
  }
  .section-package-highlights h2, .section-package-highlights-ag h2 {
    margin-bottom: 50px;
  }
  .section-package-highlights .accent-image, .section-package-highlights-ag .accent-image {
    display: block;
    margin-right: 30px;
  }
  .section-package-highlights .accent-image img, .section-package-highlights-ag .accent-image img {
    border-radius: 50%;
    max-width: 340px;
    width: 30vw;
    min-width: 260px;
    height: auto;
  }
  .section-package-highlights .package-highlights, .section-package-highlights-ag .package-highlights {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    max-width: 980px;
  }
  .section-package-highlights .indented-note, .section-package-highlights-ag .indented-note {
    margin-top: 30px;
    font-size: 1.125rem;
  }
}

@media (min-width: 960px) {
  .section-package-highlights .accent-image, .section-package-highlights-ag .accent-image {
    margin-right: 50px;
  }
}

@media (min-width: 1208px) {
  .section-package-highlights h2, .section-package-highlights-ag h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 720px) {
  .section-package-highlights-ag .package-highlights {
    align-items: flex-start;
  }
}

@media (min-width: 1208px) {
  .section-basic-coverage-heading h2 {
    font-size: 2.25rem;
  }
}

.section-basic-coverage {
  padding: 40px 0;
}

.section-basic-coverage .container {
  max-width: 1088px;
  display: flex;
  flex-direction: row-reverse;
}

.section-basic-coverage .accent-images {
  display: none;
}

.section-basic-coverage ul {
  margin: 0;
}

@media (min-width: 720px) {
  .section-basic-coverage {
    padding: 80px 0;
  }
  .section-basic-coverage .accent-images {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    justify-content: space-evenly;
  }
  .section-basic-coverage .accent-images img {
    max-width: 340px;
    width: 30vw;
    border-radius: 50%;
  }
}

@media (min-width: 1208px) {
  .section-basic-coverage .accent-images {
    justify-content: space-between;
  }
}

.extra-coverages {
  padding-top: 40px;
  max-width: 1048px;
  margin: 0 auto;
}

.extra-coverages h3 {
  font-size: 1.5rem;
  margin: 0;
}

.extra-coverages ul {
  text-align: left;
  max-width: 948px;
  margin: 20px auto;
}

@media (min-width: 720px) {
  .extra-coverages h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 960px) {
  .extra-coverages h3 {
    font-size: 2rem;
  }
}

@media (min-width: 1208px) {
  .extra-coverages h3 {
    font-size: 2.25rem;
  }
}

@media (min-width: 960px) {
  .multi-column-2 {
    column-gap: 40px;
    column-count: 2;
  }
  .multi-column-2 li {
    break-inside: avoid;
  }
}

@media (min-width: 720px) {
  .multi-column-3 {
    column-gap: 40px;
    column-count: 2;
  }
  .multi-column-3 li {
    break-inside: avoid;
  }
}

@media (min-width: 960px) {
  .multi-column-3 {
    column-count: 3;
  }
}

.insurance-discounts {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  padding: 0;
  max-width: 1048px;
  margin: 0 auto;
}

.insurance-discounts h2 {
  padding: 0;
}

.insurance-discounts h2 + p {
  margin-top: 10px;
}

.insurance-discounts > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .insurance-discounts p {
    font-size: 1.375rem;
  }
}

@media (min-width: 960px) {
  .insurance-discounts p {
    font-size: 1.5rem;
  }
}

.section-optional-coverage, .section-optional-coverage-residential, .section-optional-coverage-ag {
  padding: 40px 0;
}

.section-optional-coverage .heading, .section-optional-coverage-residential .heading, .section-optional-coverage-ag .heading {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-optional-coverage .heading p, .section-optional-coverage-residential .heading p, .section-optional-coverage-ag .heading p {
  margin: 6px 0 0;
  font-weight: 300;
}

.section-optional-coverage h2, .section-optional-coverage-residential h2, .section-optional-coverage-ag h2 {
  margin: 0;
  font-weight: 700;
}

@media (min-width: 720px) {
  .section-optional-coverage, .section-optional-coverage-residential, .section-optional-coverage-ag {
    padding: 80px 0;
  }
  .section-optional-coverage .heading, .section-optional-coverage-residential .heading, .section-optional-coverage-ag .heading {
    padding-bottom: 60px;
  }
  .section-optional-coverage .heading p, .section-optional-coverage-residential .heading p, .section-optional-coverage-ag .heading p {
    font-size: 1.625rem;
  }
  .section-optional-coverage h2, .section-optional-coverage-residential h2, .section-optional-coverage-ag h2 {
    font-size: 2.25rem;
  }
  .section-optional-coverage h3, .section-optional-coverage-residential h3, .section-optional-coverage-ag h3 {
    font-size: 1.5rem;
  }
}

.section-optional-coverage-ag ul {
  font-size: 1.125rem;
  margin: 10px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-optional-coverage-ag li {
  list-style-type: none;
  position: relative;
  padding: 0 20px;
}

.section-optional-coverage-ag li::before, .section-optional-coverage-ag li::after {
  content: "•";
}

.section-optional-coverage-ag li::before {
  padding-right: 4px;
}

.section-optional-coverage-ag li::after {
  padding-left: 4px;
}

@media (min-width: 720px) {
  .section-optional-coverage-ag {
    padding: 70px 0;
  }
  .section-optional-coverage-ag .heading {
    padding-bottom: 20px;
  }
  .section-optional-coverage-ag h3 {
    font-size: 1.5rem;
  }
  .section-optional-coverage-ag ul {
    font-size: 1.25rem;
  }
}

.section-condo-coverages {
  padding: 40px 0;
}

.section-condo-coverages h2 {
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0 40px;
}

.section-condo-coverages h3 {
  font-weight: 700;
}

.section-condo-coverages ul {
  font-size: 1.125rem;
}

.section-condo-coverages ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.section-condo-coverages ul h3 {
  margin-bottom: 6px;
}

.section-condo-coverages ul img {
  display: none;
  width: 130px;
  border-radius: 50%;
}

@media (min-width: 600px) {
  .section-condo-coverages ul img {
    display: block;
    margin-right: 30px;
  }
}

@media (min-width: 720px) {
  .section-condo-coverages {
    padding: 80px 0;
  }
  .section-condo-coverages h2 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1208px) {
  .section-condo-coverages ul {
    grid-gap: 60px;
  }
  .section-condo-coverages ul img {
    width: 170px;
  }
}

.section-condo-benefits {
  padding: 40px 0;
}

.section-condo-benefits ul {
  margin: 0;
}

@media (min-width: 720px) {
  .section-condo-benefits {
    padding: 60px 0;
  }
}

.section-broker-statement {
  padding: 20px 0;
}

.section-broker-statement .fine-print {
  font-style: italic;
  font-size: 0.9375rem;
}

.section-broker-statement h4 {
  margin: 0;
}

.section-broker-statement .ask {
  margin: 0 auto;
  max-width: 1048px;
}

.section-broker-statement .ask .btn {
  margin-top: 20px;
  white-space: nowrap;
  min-width: 240px;
  border: 1px solid #fff;
}

.section-broker-statement .ask .btn:focus {
  outline-offset: -3px;
}

@media (min-width: 720px) {
  .section-broker-statement {
    padding: 60px 0;
  }
  .section-broker-statement h4 {
    font-size: 1.25rem;
  }
}

@media (min-width: 960px) {
  .section-broker-statement h4 {
    font-size: 1.375rem;
  }
  .section-broker-statement .ask {
    display: flex;
    flex-direction: row;
    text-align: left;
  }
  .section-broker-statement .ask .btn {
    margin-top: 0;
    margin-left: 20px;
  }
}

.section-essential-options-heading h2,
.section-secondary-standard-heading h2 {
  font-weight: 700;
}

.section-essential-options-heading p,
.section-secondary-standard-heading p {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  font-weight: 200;
  font-size: 1.375rem;
}

@media (min-width: 720px) {
  .section-essential-options-heading h2, .section-essential-options-heading p {
    font-size: 1.75rem;
  }
  .section-essential-options-heading p {
    max-width: 950px;
    margin: 0 auto;
  }
}

@media (min-width: 720px) {
  .section-secondary-standard-heading h2 {
    font-size: 1.75rem;
  }
  .section-secondary-standard-heading p {
    font-size: 1.5rem;
  }
}

@media (min-width: 960px) {
  .section-secondary-standard-heading h2 {
    font-size: 2rem;
  }
  .section-secondary-standard-heading padding {
    font-size: 1.75rem;
  }
}

@media (min-width: 1208px) {
  .section-secondary-standard-heading h2 {
    font-size: 2.25rem;
  }
  .section-secondary-standard-heading p {
    font-size: 1.875rem;
  }
}

.section-essential-options {
  padding: 40px 0 60px;
}

@media (min-width: 720px) {
  .section-essential-options {
    padding: 60px 0 80px;
  }
}

.package-options {
  margin: 0 auto -30px;
  padding: 0;
  list-style-type: none;
  max-width: 1048px;
}

.package-options h3 {
  margin: 0 0 6px;
  font-weight: 700;
}

.package-options > li {
  break-inside: avoid;
}

.package-options > li > ul {
  margin-top: 0;
  list-style-type: disc;
  margin-bottom: 30px;
  padding-left: 20px;
}

div.package-options {
  margin-bottom: 0;
}

div.package-options > ul {
  margin-top: 0;
  padding-left: 20px;
  margin-bottom: 30px;
}

@media (min-width: 720px) {
  ul.package-options {
    column-gap: 20px;
    columns: 2 auto;
  }
  div.package-options > ul {
    column-gap: 40px;
    columns: 2 auto;
  }
  .package-options ul.force-single {
    columns: 1;
  }
  .package-options h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  .package-options ul {
    font-size: 1.125rem;
  }
}

.package-options img {
  display: none;
}

@media (min-width: 720px) {
  .package-options img {
    margin-top: 40px;
    display: block;
    width: 220px;
    height: 220px;
    border-radius: 50%;
  }
}

.section-home-business-coverage {
  padding: 40px 0;
}

.section-home-business-coverage ul {
  display: inline-block;
  text-align: left;
  margin: 0;
  font-size: 1.125rem;
}

.section-home-business-coverage ul li {
  break-inside: avoid;
}

@media (min-width: 720px) {
  .section-home-business-coverage {
    text-align: center;
    padding: 60px 0 80px;
  }
  .section-home-business-coverage ul {
    column-count: 2;
    column-gap: 40px;
    padding-left: 20px;
  }
}

.section-coverage-standards .container:first-child {
  align-items: flex-start;
}

.section-coverage-standards .section-content {
  text-align: left;
}

.section-coverage-standards .section-content :first-child {
  margin-top: 0;
}

.section-coverage-standards .section-content :last-child {
  margin-bottom: 0;
}

.section-coverage-standards .section-content ul {
  margin-top: -1em;
}

@media (min-width: 720px) {
  .section-coverage-standards {
    padding: 70px 0;
  }
  .section-coverage-standards .section-content {
    font-size: 1.125rem;
  }
}

.section-other-business-options h2 {
  font-weight: 700;
}

.section-other-business-options p {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-align: center;
  margin: 10px auto 0;
  max-width: 950px;
}

.section-other-business-options p strong {
  font-weight: 700;
}

.section-other-business-options a {
  text-decoration: none;
  color: currentColor;
}

.section-other-business-options a:focus, .section-other-business-options a:hover, .section-other-business-options a:active {
  text-decoration: underline;
}

@media (min-width: 720px) {
  .section-other-business-options p {
    font-size: 1.5rem;
  }
}

.section-office-coverage,
.section-realty-coverage,
.section-retailers-coverage {
  padding: 40px 0;
}

.section-office-coverage .package-options,
.section-realty-coverage .package-options,
.section-retailers-coverage .package-options {
  margin-bottom: 0;
}

.section-office-coverage .package-options:last-child > ul,
.section-realty-coverage .package-options:last-child > ul,
.section-retailers-coverage .package-options:last-child > ul {
  margin-bottom: 0;
}

.section-office-coverage ol,
.section-realty-coverage ol,
.section-retailers-coverage ol {
  margin-top: 4px;
  list-style: none;
  counter-reset: li;
  list-style-position: inside;
}

.section-office-coverage ol li::before,
.section-realty-coverage ol li::before,
.section-retailers-coverage ol li::before {
  content: "(" counter(li, lower-roman) ") ";
  counter-increment: li;
}

@media (min-width: 720px) {
  .section-office-coverage,
.section-realty-coverage,
.section-retailers-coverage {
    padding: 80px 0;
  }
}

.section-residential-coverage-basics {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
}

.section-residential-coverage-basics h2 {
  padding: 0;
  font-weight: 700;
}

.section-residential-coverage-basics ul {
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 300;
}

.section-residential-coverage-basics li {
  list-style-type: none;
  position: relative;
  padding: 0 20px;
}

.section-residential-coverage-basics li::before, .section-residential-coverage-basics li::after {
  content: "•";
}

.section-residential-coverage-basics li::before {
  padding-right: 4px;
}

.section-residential-coverage-basics li::after {
  padding-left: 4px;
}

@media (min-width: 720px) {
  .section-residential-coverage-basics {
    padding: 70px 0;
  }
  .section-residential-coverage-basics ul {
    font-size: 1.5rem;
  }
}

@media (min-width: 720px) {
  .section-coverage-options-residential {
    padding-bottom: 90px;
  }
}

.coverage-options-residential {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  margin: 0 auto;
  align-items: stretch;
  max-width: 700px;
  grid-gap: 10px 20px;
  transform: none;
}

.coverage-options-residential li {
  width: auto;
  margin: 0;
}

@media (min-width: 720px) {
  .coverage-options-residential {
    align-items: stretch;
  }
  .coverage-options-residential li {
    flex: none;
  }
}

.section-optional-coverage-residential ul {
  list-style-type: none;
  margin: -20px 0;
  padding: 0;
}

.section-optional-coverage-residential ul h3 {
  margin: 0;
  font-weight: 700;
}

.section-optional-coverage-residential ul li {
  margin: 20px 0;
}

@media (min-width: 960px) {
  .section-optional-coverage-residential ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 60px;
    margin: 0;
    overflow: visible;
  }
  .section-optional-coverage-residential ul li {
    width: auto;
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 720px) {
  .section-retail-professions,
.section-tenant-policies {
    padding: 70px 0;
  }
}

.section-tenant-policies .container {
  max-width: 760px;
}

.section-tenant-package-heading h2 {
  font-weight: 200;
}

.section-tenant-package {
  overflow: auto;
  text-align: center;
  padding: 40px 0;
}

.section-tenant-package .container > *:last-child {
  margin-bottom: 0;
}

.section-tenant-package h3 {
  margin: 0;
  font-weight: 700;
}

.section-tenant-package ul {
  font-size: 1rem;
  text-align: left;
}

@media (min-width: 720px) {
  .section-tenant-package {
    padding: 70px 0;
  }
  .section-tenant-package h3 {
    font-size: 1.5rem;
  }
  .section-tenant-package ul {
    font-size: 1.125rem;
    margin: 10px 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 300;
  }
  .section-tenant-package li {
    list-style-type: none;
    position: relative;
    padding: 0 20px;
  }
  .section-tenant-package li::before, .section-tenant-package li::after {
    content: "•";
  }
  .section-tenant-package li::before {
    padding-right: 4px;
  }
  .section-tenant-package li::after {
    padding-left: 4px;
  }
}

.payment-processing {
  text-align: center;
  font-size: 1.5rem;
}

@media (min-width: 812px) {
  .payment-processing {
    font-size: 2rem;
  }
}

.payment-result > div {
  display: flex;
  flex-direction: column;
  margin: 0 0 10px 0;
}

.payment-result > div:last-child {
  margin-bottom: 0;
}

.payment-result strong, .payment-result span {
  display: block;
}

@media (min-width: 720px) {
  .payment-result > div {
    flex-direction: row;
  }
  .payment-result strong {
    width: 14em;
  }
}

@media (min-width: 720px) {
  .claim-reporting-help {
    display: flex;
    margin: 0 -20px;
    flex-direction: row;
  }
  .claim-reporting-help .claim-reporting-help-option {
    flex: 1 0 0%;
    margin: 0 20px;
  }
}

.font-test {
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  width: auto;
}

.font-test .font-accent-alt {
  font-family: 'neue-helvetica-alt';
}

.font-test th, .font-test td {
  margin: 10px;
  border: 1px solid #ccc;
  padding: 5px;
}

.section-insurance-products-list ul {
  grid-gap: 30px;
}

.section-insurance-products-list ul a {
  display: flex;
  flex-direction: row;
  align-items: center;
  outline-offset: 4px;
  text-decoration: none;
}

.section-insurance-products-list ul h3 {
  margin: 0;
}

.section-insurance-products-list ul img {
  display: block;
  width: 100px;
  height: auto;
  margin-right: 20px;
  border-radius: 50%;
}

@media (min-width: 720px) {
  .section-insurance-products-list ul {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
  }
  .section-insurance-products-list ul h3 {
    font-size: 1.25rem;
  }
  .section-insurance-products-list ul img {
    display: block;
    width: 130px;
    margin-right: 30px;
  }
}

@media (min-width: 960px) {
  .section-insurance-products-list ul {
    grid-gap: 40px 60px;
  }
  .section-insurance-products-list ul h3 {
    font-size: 1.5rem;
  }
  .section-insurance-products-list ul img {
    width: 170px;
  }
}

@media (min-width: 720px) {
  .section-faq h3 {
    margin-top: 30px;
    font-size: 1.375rem;
  }
}

.contact-form-wrapper > h3 {
  margin: 0;
}

.contact-form-wrapper > h3 + p {
  margin-top: 0;
}

.contact-form-wrapper > p .btn {
  margin-top: 4px;
}

.contact-form-wrapper > p + h3 {
  margin-top: 40px;
}

@media (min-width: 720px) {
  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }
}

.broker-results ul {
  grid-gap: 20px;
}

.broker-results ul li {
  padding: 20px;
  background-color: #fafafa;
}

.broker-results ul a[href^="http"] {
  word-wrap: anywhere;
  overflow-wrap: anywhere;
}

@media (min-width: 720px) {
  .broker-results ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .broker-results ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

.g-recaptcha {
  transform-origin: top left;
}

.submitting {
  opacity: 0.5;
}

.people h2 {
  color: #fe5000;
}

.people strong {
  color: #fe5000;
}

.people .career-btn-container {
  display: flex;
  width: 100%;
  justify-content: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar .responsive-nav {
  position: relative;
  display: flex;
  align-items: center;
}

@media (min-width: 960px) {
  .navbar .responsive-nav {
    display: none;
  }
}

.navbar .main-nav {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  list-style-type: none;
  font-family: neue-helvetica, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  left: 0;
  overflow: auto;
  padding-left: 120px;
  padding-top: 35px;
  display: none;
}

@media (max-width: 960px) {
  .navbar .main-nav.open {
    display: flex;
    top: 0;
  }
}

@media (min-width: 960px) {
  .navbar .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    font-size: 1.25rem;
    height: 135px;
    position: relative;
    background-color: inherit;
    overflow: unset;
    padding: 0;
  }
}

@media (min-width: 1208px) {
  .navbar .main-nav {
    font-size: 1.375rem;
  }
}

.navbar .main-nav .nav-menu {
  position: relative;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
}

.navbar .main-nav .nav-menu .nav-sub-menu {
  position: absolute;
  display: none;
  padding: 16px;
  margin-top: 8px;
}

.navbar .main-nav .nav-menu .nav-sub-menu a {
  font-size: 1.3rem;
  padding: 8px 12px;
}

@media (max-width: 960px) {
  .navbar .main-nav .nav-menu .nav-sub-menu.open {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    overflow: auto;
  }
  .navbar .main-nav .nav-menu .nav-sub-menu.open .nav-sub-menu-item {
    color: #5eb1bf;
  }
  .navbar .main-nav .nav-menu .nav-sub-menu.open .nav-sub-menu-item i {
    margin-left: 8px;
  }
  .navbar .main-nav .nav-menu .nav-sub-menu.open :hover {
    color: #46828d;
  }
}

.navbar .main-nav .nav-menu .nav-menu-trigger {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 8px;
}

@media (min-width: 960px) {
  .navbar .main-nav .nav-menu .nav-menu-trigger {
    justify-content: center;
  }
}

.navbar .main-nav .nav-menu .nav-menu-trigger:hover {
  cursor: default;
}

.navbar .main-nav .nav-menu.open {
  background-color: rgba(0, 0, 0, 0.85);
}

.navbar .main-nav .nav-menu.open .nav-sub-menu {
  background-color: rgba(0, 0, 0, 0.85);
  max-height: 300px;
  width: max-content;
  display: grid;
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
}

.navbar .main-nav .nav-menu.open .nav-sub-menu .nav-sub-menu-item {
  color: #5eb1bf;
  min-width: 180px;
}

.navbar .main-nav .nav-menu.open .nav-sub-menu .nav-sub-menu-item i {
  margin-left: 8px;
}

.navbar .main-nav .nav-menu.open .nav-sub-menu :hover {
  color: #46828d;
}

.navbar .main-nav a {
  text-decoration: none;
  color: #fff;
}

.navbar .main-nav :hover {
  color: #ccc;
}

.navbar .logo-mobile {
  display: block;
}

@media (min-width: 960px) {
  .navbar .logo-mobile {
    display: none;
  }
}

.navbar .logo {
  display: none;
  width: 20vw;
  max-width: 200px;
  height: auto;
}

@media (min-width: 960px) {
  .navbar .logo {
    display: block;
  }
}

.navbar .menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  z-index: 30;
  position: relative;
  border: none;
  background-color: transparent;
  padding: 0;
  height: 32px;
}

.navbar .menu-toggle span, .navbar .menu-toggle::before, .navbar .menu-toggle::after {
  background-color: #fe5000;
  display: block;
  height: 8px;
  width: 35px;
}

.navbar .menu-toggle:focus, .navbar .menu-toggle:hover, .navbar .menu-toggle:active {
  cursor: pointer;
}

.navbar .menu-toggle:focus span, .navbar .menu-toggle:focus::before, .navbar .menu-toggle:focus::after, .navbar .menu-toggle:hover span, .navbar .menu-toggle:hover::before, .navbar .menu-toggle:hover::after, .navbar .menu-toggle:active span, .navbar .menu-toggle:active::before, .navbar .menu-toggle:active::after {
  background-color: #be3c00;
}

.navbar .menu-toggle::before, .navbar .menu-toggle::after {
  content: "";
}

.navbar .menu-toggle:focus {
  outline: 1px dotted #fe5000;
  outline-offset: 2px;
}

@media (min-width: 960px) {
  .navbar .menu-toggle {
    margin: 0;
    display: none;
  }
}
