@charset "UTF-8";
/************** 

Add reusable elements here. For example, with colors:

$blue: #D92027;

To then implement this in the other .scss files:

.class {
	color: $blue;
}

***************/
/**/
/***************************

GRID SYSTEM

***************************/
/* Splits Up The Page Horizontally & Clears Itself */
.row {
  clear: both;
  padding: 0px;
  margin: 0;
}

.row:before,
.row:after {
  content: "";
  display: table;
}

.row:after {
  clear: both;
}

/* Divides The Row Into Columns */
.col {
  display: block;
  float: left;
  margin: 0% 0 0 1.6%;
}

.col:first-child {
  margin-left: 0;
}

.row-reverse > .col {
  float: right;
}

.row-reverse > .col:first-child {
  margin-left: 1.6%;
}

.row-reverse > .col:last-child {
  margin-left: 0;
}

.col:before,
.col:after {
  content: " ";
  display: table;
}

.col:after {
  clear: both;
}

/*  Remove margins as all go full width at 480 pixels */
@media only screen and (max-width: 480px) {
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .col {
    margin: 1% 0 1% 0%;
  }
}
/* GRID OF TWO */
.grid2-2 {
  width: 100%;
}

.grid1-2 {
  width: 49.2%;
}

/* GRID OF THREE */
.grid3-3 {
  width: 100%;
}

.grid2-3 {
  width: 66.13%;
}

.grid1-3 {
  width: 32.26%;
}

/* GRID OF FOUR */
.grid4-4 {
  width: 100%;
}

.grid3-4 {
  width: 74.6%;
}

.grid2-4 {
  width: 49.2%;
}

.grid1-4 {
  width: 23.8%;
}

/* GRID OF FIVE */
.grid5-5 {
  width: 100%;
}

.grid4-5 {
  width: 79.68%;
}

.grid3-5 {
  width: 59.36%;
}

.grid2-5 {
  width: 39.04%;
}

.grid1-5 {
  width: 18.72%;
}

/* GRID OF SIX */
.grid6-6 {
  width: 100%;
}

.grid5-6 {
  width: 83.06%;
}

.grid4-6 {
  width: 66.13%;
}

.grid3-6 {
  width: 49.2%;
}

.grid2-6 {
  width: 32.26%;
}

.grid1-6 {
  width: 15.33%;
}

/* GRID OF SEVEN */
.grid7-7 {
  width: 100%;
}

.grid6-7 {
  width: 85.48%;
}

.grid5-7 {
  width: 70.97%;
}

.grid4-7 {
  width: 56.45%;
}

.grid3-7 {
  width: 41.94%;
}

.grid2-7 {
  width: 27.42%;
}

.grid1-7 {
  width: 12.91%;
}

/* GRID OF EIGHT */
.grid8-8 {
  width: 100%;
}

.grid7-8 {
  width: 87.3%;
}

.grid6-8 {
  width: 74.6%;
}

.grid5-8 {
  width: 61.9%;
}

.grid4-8 {
  width: 49.2%;
}

.grid3-8 {
  width: 36.5%;
}

.grid2-8 {
  width: 23.8%;
}

.grid1-8 {
  width: 11.1%;
}

/* GRID OF NINE */
.grid9-9 {
  width: 100%;
}

.grid8-9 {
  width: 88.71%;
}

.grid7-9 {
  width: 77.42%;
}

.grid6-9 {
  width: 66.13%;
}

.grid5-9 {
  width: 54.84%;
}

.grid4-9 {
  width: 43.55%;
}

.grid3-9 {
  width: 32.26%;
}

.grid2-9 {
  width: 20.97%;
}

.grid1-9 {
  width: 9.68%;
}

/* GRID OF TEN */
.grid10-10 {
  width: 100%;
}

.grid9-10 {
  width: 89.84%;
}

.grid8-10 {
  width: 79.68%;
}

.grid7-10 {
  width: 69.52%;
}

.grid6-10 {
  width: 59.36%;
}

.grid5-10 {
  width: 49.2%;
}

.grid4-10 {
  width: 39.04%;
}

.grid3-10 {
  width: 28.88%;
}

.grid2-10 {
  width: 18.72%;
}

.grid1-10 {
  width: 8.56%;
}

/* GRID OF ELEVEN */
.grid11-11 {
  width: 100%;
}

.grid10-11 {
  width: 90.76%;
}

.grid9-11 {
  width: 81.52%;
}

.grid8-11 {
  width: 72.29%;
}

.grid7-11 {
  width: 63.05%;
}

.grid6-11 {
  width: 53.81%;
}

.grid5-11 {
  width: 44.58%;
}

.grid4-11 {
  width: 35.34%;
}

.grid3-11 {
  width: 26.1%;
}

.grid2-11 {
  width: 16.87%;
}

.grid1-11 {
  width: 7.63%;
}

/*  GRID OF TWELVE */
.grid12-12 {
  width: 100%;
}

.grid11-12 {
  width: 91.53%;
}

.grid10-12 {
  width: 83.06%;
}

.grid9-12 {
  width: 74.6%;
}

.grid8-12 {
  width: 66.13%;
}

.grid7-12 {
  width: 57.66%;
}

.grid6-12 {
  width: 49.2%;
}

.grid5-12 {
  width: 40.73%;
}

.grid4-12 {
  width: 32.26%;
}

.grid3-12 {
  width: 23.8%;
}

.grid2-12 {
  width: 15.33%;
}

.grid1-12 {
  width: 6.86%;
}

/*  Go Full Width At Less Than 480 Pixels */
@media (max-width: 480px) {
  div[class*=grid] {
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
  }
  .respond {
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
  }
  .respond-half {
    width: 49%;
    margin-left: 2%;
    margin-right: 0;
  }
  .respond-half:first-child {
    margin-left: 0;
  }
}
/* Responsive Media Container */
.embed-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16/9 ratio */
  height: 0;
  overflow: hidden;
}

.embed-responsive iframe,
.embed-responsive object,
.embed-responsive embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Horizontal Tablet Show / Hide Classes */
@media only screen and (max-width: 1024px) {
  .hide-htablet {
    display: none !important;
  }
  .show-htablet {
    display: block !important;
  }
}
/* Vertical Tablet Show / Hide Classes */
@media only screen and (max-width: 768px) {
  .hide-vtablet {
    display: none !important;
  }
  .show-vtablet {
    display: block !important;
  }
}
/* Mobile Show / Hide Classes */
@media only screen and (max-width: 480px) {
  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block !important;
  }
}
/* Reponsive Images */
img {
  /* Ensure images don't scale beyond their parents */
  max-width: 100%;
  /* Part 1: Set a maxium relative to the parent */
  width: auto\9 ;
  /* IE7-8 need help adjusting responsive images */
  height: auto;
  /* Part 2: Scale the height according to the width, otherwise you get stretching */
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/* Make image not responsive */
img.not-responsive {
  max-width: none;
}

/************** 

Base button styles for the front-end of the site should go here. For example:

.btn (this includes css used for all buttons, plus padding and font-size for a default button)
.btn-lg (this dictates the button size and would be larger than ".btn", so you'd include padding and font-size)
.btn-primary (this dictates the button color, so you'd include background-color, color, and possibly border)
.btn-secondary (this dictates the button color, so you'd include background-color, color, and possibly border)

***************/
.btn-primary {
  background: #586889;
  color: #fff;
}

.btn-primary:hover {
  background: #4A5875;
  color: #fff;
}

.btn-secondary {
  background: #d0112b;
  color: #fff;
}

.btn-secondary:hover {
  background: #c01016;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #586889;
}

.btn-white:hover {
  background: #e0e4eb;
  color: #586889;
}

.btn-lg,
input.btn-lg {
  border: none;
  border-radius: 3px;
  display: inline-block;
  font-family: open_sansbold;
  font-size: 14px;
  padding: 18px;
  text-align: right;
  text-transform: uppercase;
  text-align: center;
  line-height: 100%;
}

.btn-small-blue,
input.btn-small-blue {
  color: #fff;
  display: inline-block;
  float: left;
  font-family: open_sansbold;
  font-size: 12px;
  padding: 8px 14px;
  text-transform: uppercase;
  line-height: 100%;
}

/************** 

This would be for Components or UC's (User Controls) we have built in our backend. 

Standard components in here as of 5/11:

1. Thank You Page UC - Styling for the thank you page after a form has been filled out.
2. Page Banner UC - Styling for a full width banner image + H1 and subheading. 
3. CTA Banner UC - Styling for a full width banner image + H1, subheading, and CTA buttons. 
4. Services Landing UC -  Styling for service landing pages

***************/
/************************************************

THANK YOU PAGE UC

************************************************/
#wrapper_thank_you {
  text-align: center;
  padding: 40px 0 80px 0;
}

#wrapper_thank_you h1 {
  color: #333;
}

#wrapper_thank_you .thank-you-link {
  display: inline-block;
  width: 15%;
  margin: 0 2%;
}

#wrapper_thank_you .thank-you-link h2 {
  font-size: 18px;
}

#wrapper_thank_you .thank-you-link img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s;
  backface-visibility: hidden;
}

#wrapper_thank_you .thank-you-link img:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  #wrapper_thank_you .thank-you-link {
    display: inline-block;
    width: 43%;
    margin: 0 2%;
  }
  #wrapper_thank_you .thank-you-link h2 {
    font-size: 21px;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  #wrapper_thank_you .thank-you-link {
    display: inline-block;
    width: 70%;
    margin: 2% auto;
  }
  #wrapper_thank_you .thank-you-link h2 {
    font-size: 18px;
  }
}
/************************************************

PAGE BANNER UC

************************************************/
.page-banner {
  background-size: cover;
  background-position: center center;
  padding: 50px 0;
  position: relative;
}

.page-banner .setcontainer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.overlay-page-banner {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-banner .setcontainer h1 {
  font-size: 40px;
  margin: 0 0 15px 0;
}

.page-banner .setcontainer span {
  font-size: 24px;
}

@media (max-width: 480px) {
  .page-banner {
    padding: 30px 0;
  }
}
/* END OF PAGE BANNER UC */
/************************************************

CTA BANNER UC

************************************************/
.cta-banner {
  background-size: cover;
  background-position: center center;
  padding: 50px 0;
  position: relative;
}

.cta-banner .setcontainer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.overlay-cta {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-banner .setcontainer h2 {
  font-size: 36px;
  margin: 0 0 15px 0;
}

.cta-banner .button-wrapper a {
  display: inline-block;
  margin: 0 10px;
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 30px 0;
  }
  .cta-banner .button-wrapper a {
    display: block;
    margin: 10px 0;
  }
}
/* END OF CTA BANNER UC */
/************************************************

SERVICES LANDING UC

************************************************/
.service-result-item.row {
  border: 1px solid #ccc;
  margin-bottom: 15px;
  position: relative;
}

.service-result-wrapper .service-header {
  position: relative;
}

.service-result-wrapper .service-header a.overlay-link {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hcontent .service-result-wrapper .service-header h2 {
  z-index: 10;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  padding: 0;
}

.hcontent .service-result-wrapper .service-header h2 a {
  color: #d0112b;
  text-decoration: none;
  display: inline-block;
  padding: 15px;
}

.service-result-wrapper .service-header .flexFill {
  padding-bottom: 25%;
  border-bottom: 1px solid #ddd;
}

.service-result-item-description {
  padding: 25px;
}

.service-result-wrapper p {
  line-height: 2;
  margin-bottom: 0;
}

.service-result-wrapper p a {
  color: #d0112b;
}

@media (max-width: 480px) {
  .hcontent .service-result-wrapper .service-header h2 {
    width: 250px;
    text-align: center;
  }
  .service-result-wrapper .service-header .flexFill {
    padding-bottom: 45%;
  }
}
/* END OF SERVICES LANDING UC */
#map {
  width: 100%;
  height: 500px;
}

/** custom contact us  ***/
.hhFormBuilder .policy-number {
  display: none;
}
.hhFormBuilder .policy-number span.policy-number {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.15;
  padding-left: 25px;
}

/************************************************

FLEXIMAGE

************************************************/
/* FlexFit - Fit whole image within responsive container (ie. logos, product images) */
.flexFit {
  position: relative;
  padding: 0 0 57% 0; /* Adjust bottom for desired height */
  height: 0px;
  overflow: hidden;
}

.flexFit img,
.flexFill .img-wrap.fit img {
  position: absolute;
  max-width: 98%;
  max-height: 98%;
  height: auto;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* FlexFill - Fill responsive container with image (ie. banner image) */
.flexFill {
  position: relative;
  padding: 0 0 57% 0; /* Adjust bottom for desired height */
  height: 0px;
  overflow: hidden;
}

.flexFill .img-wrap {
  float: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.flexFill a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.flexFill img {
  max-width: none;
  display: inline;
  float: none;
  position: relative;
}

.flexFill.processed img {
  display: block !important;
}

/***************************

START SITE SPECIFIC CSS

***************************/
body {
  background: #fff;
  color: #333;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 100%;
  height: 100%;
  line-height: 1;
  -webkit-font-size-adjust: none; /* FIX: iOS Mobile Safari Font Adjustment */
}

/* Reusable Container Wrapper */
.setcontainer {
  max-width: 1220px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  text-align: left;
}

/* Anchor (Link) Settings & Focus */
:focus {
  outline: none;
}

a,
a:visited,
a:active,
a:hover {
  color: #333;
  text-decoration: none;
}

/* Default Heading Setup - Styling for standard content sections should be done in typography.css */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  cursor: default;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

/*Custom Style*/
body {
  font-family: "open_sansregular";
}

header {
  border-bottom: 1px solid #ddd;
  background: #f6f6f6;
}

.header-top {
  background: #555353;
  padding: 10px 0;
}
.header-top .headertop-text span:nth-child(2) i {
  margin-right: 1px;
}
.header-top i {
  margin-right: 4px;
}
.header-top .fa.fa-caret-down.drop {
  margin: 0 0 0 4px;
}

.header-nav {
  padding: 15px 0;
}

.logo img {
  max-width: 229px;
}

.headertop-text {
  text-align: right;
}
.headertop-text a {
  color: #bfbbbb;
  font-family: "open_sanssemibold";
  font-size: 11px;
  text-transform: uppercase;
  margin-left: 25px;
}

.about-list {
  position: relative;
  padding-bottom: 9px;
}
.about-list:hover .sub_menu {
  display: block;
}

.sub_menu {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  display: none;
  padding: 0;
  position: absolute;
  right: 0px;
  text-align: left;
  top: 100%;
  min-width: 150px;
  z-index: 999;
}

.main_nav {
  float: left;
  width: 100%;
  padding: 9px 0;
}
.main_nav > ul {
  float: left;
  text-align: right;
  width: 81%;
  padding: 17px 0 8px;
}
.main_nav > ul li {
  display: inline-block;
  font-family: "open_sansbold";
  font-size: 14px;
  list-style: outside none none;
  margin-right: 20px;
  text-transform: uppercase;
}
.main_nav > a {
  color: #fff;
  width: 19%;
}
.main_nav > a:hover {
  background: #4A5875;
}

.sub_menu a {
  display: inline-block;
  float: left;
  width: 100%;
  margin: 0;
  padding: 10px;
  color: #555353;
}

.about-list .sub_menu a:hover {
  background-color: #e8e8e8;
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  background-repeat: repeat-x;
  color: #555353;
  border: none;
}

#main_menu a {
  color: #555353;
}

.main_menu a {
  transition: 0.3s all;
}

.main_menu a:hover {
  color: #777;
}

.mobile_toggle {
  background: #555353;
  color: #fff;
  cursor: pointer;
  display: none;
  float: left;
  padding: 12px;
  width: 100%;
}

#main_menu a:hover {
  color: #d0112b;
}

.header a {
  color: #555353;
}

.announcement-bar {
  padding: 20px 0;
  background: #d0112b;
}
.announcement-bar .setcontainer {
  text-align: center;
}
.announcement-bar .setcontainer p {
  margin-bottom: 0;
  color: #fff;
}
.announcement-bar .setcontainer p span {
  font-family: "open_sansbold";
}
.announcement-bar .setcontainer p a {
  display: inline-block;
  margin-left: 3px;
  color: #fff;
  font-family: "open_sansbold";
  text-decoration: underline;
}
@media (max-width: 767px) {
  .announcement-bar {
    padding: 15px 0;
  }
  .announcement-bar .setcontainer p {
    font-size: 15px;
  }
}

.page-banner {
  background-image: url(/site/Pub/design/home-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10% 0 20%;
}
.page-banner .setcontainer {
  color: #fff;
  position: relative;
  text-align: center;
  top: 40%;
  z-index: 2;
  font-family: "open_sansbold";
}
.page-banner .setcontainer h1 {
  font-size: 56px;
  margin: 0 0 15px;
}

.overlay-page-banner {
  background-color: #000;
  opacity: 0.4;
}

.tabs-view {
  background-color: #edebeb;
  display: inline-block;
  width: 100%;
  position: relative;
}

.tabs {
  display: block;
  margin: -160px auto;
  position: relative;
  /*width: 75%;*/
  z-index: 999;
}
.tabs .tab-content {
  width: 75%;
  margin: 0 auto;
}
.tabs .tab-content p {
  color: #555353;
  font-family: "open_sansregular";
  font-size: 18px;
  margin-bottom: 35px;
}
.tabs div.form {
  display: inline-block;
  width: 100%;
}
.tabs div.form input[type=text] {
  background-color: #edebeb;
  border: 1px solid #c2b4b4;
  height: 46px;
  margin: 10px 0 15px;
  padding: 10px;
  width: 100%;
}
.tabs div.form label {
  color: #555353;
  font-family: open_sansregular;
  font-size: 14px;
  text-transform: uppercase;
}
.tabs div.form a {
  background: #586889;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  float: left;
  font-family: open_sansbold;
  font-size: 14px;
  padding: 18px;
  text-transform: uppercase;
}
.tabs div.form a:hover {
  background: #4A5875;
}
.tabs div.form .form-btn-content {
  margin-top: 25px;
}
.tabs div.form .form-btn-content span a {
  background: none;
  color: #555353;
  font-family: open_sansregular;
  font-size: 14px;
  padding: 0;
  text-transform: lowercase;
}
.tabs div.form .form-btn-content span a:hover {
  background: none;
  color: #d0112b;
}

.tabs input[type=text]:focus {
  border: 1px solid #d0112b;
}

.tab-links {
  width: 75%;
  margin: 0 auto;
}
.tab-links:after {
  display: block;
  clear: both;
  content: "";
}
.tab-links li {
  margin: 0px 5px;
  float: left;
  list-style: none;
}
.tab-links li:first-child {
  margin-left: 0;
}
.tab-links a {
  background: #d0112b;
  border-radius: 3px 3px 0 0;
  color: #fff;
  display: inline-block;
  font-family: open_sansbold;
  font-size: 14px;
  font-weight: 600;
  padding: 24px 35px;
  text-transform: uppercase;
  transition: all 0.15s linear 0s;
}

li.active a {
  background: #fff none repeat scroll 0 0;
  color: #d0112b;
}
li.active a:hover {
  background: #fff none repeat scroll 0 0;
  color: #d0112b;
}

.tab-content {
  background: #fff none repeat scroll 0 0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
  padding: 34px;
}

.star-red {
  color: #d0112b;
}

.form-btn-content > span {
  color: #555353;
  display: inline-block;
  font-family: open_sansregular;
  font-size: 15px;
  padding: 0 18px;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

.row.tabs-images {
  padding: 25px 0 148px 0;
  text-align: center;
}
.row.tabs-images .col {
  float: none;
  display: inline-block;
  width: 18%;
}

.tabs-view {
  padding-bottom: 25px;
  padding-top: 10px;
}

.dedicated .hcontent h1 {
  color: #d0112b;
  font-family: open_sansregular;
  font-size: 32px;
  margin: 0 0 30px 0;
}
.dedicated .setcontainer {
  text-align: center;
  padding: 84px 66px 96px;
}

.dedicated-content {
  margin: 0 auto 30px auto;
  width: 75%;
}
.dedicated-content .hcontent > p {
  color: #666;
  font-family: open_sansregular;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 50px;
}

.home-insurance {
  background: #f2ede2;
  padding: 60px;
  position: relative;
  height: 442px;
  margin-right: 10px;
}
.home-insurance > h5 {
  color: #9b9381;
  font-family: open_sansbold;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.home-insurance img {
  bottom: -10px;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
}
.home-insurance > p {
  color: #d0112b;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 12px;
}
.home-insurance > a.text-link {
  font-family: open_sansbold;
  font-size: 16px;
  text-transform: uppercase;
  color: #d0112b;
}
.home-insurance i {
  margin-left: 5px;
}

.business-insurance {
  background: #586889;
  padding: 60px 40px;
  position: relative;
  height: 442px;
  margin-left: 10px;
}
.business-insurance > h5 {
  color: #38455e;
  font-family: open_sansbold;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.business-insurance img {
  bottom: -10px;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
}
.business-insurance > p {
  color: #fff;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 12px;
}
.business-insurance > a.text-link {
  font-family: open_sansbold;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}
.business-insurance i {
  margin-left: 5px;
}

.learning-center {
  background: #edebeb;
  padding: 80px 0;
}
.learning-center h1 {
  color: #d0112b;
  font-size: 32px;
  text-align: center;
  margin-bottom: 38px;
  font-family: open_sansregular;
}

.learning-box {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.learning-box img {
  width: 100%;
}

.learning-content {
  padding: 0 20px 20px;
}
.learning-content .hcontent h5 {
  color: #555353;
  font-family: open_sansbold;
  font-size: 16px;
  text-transform: uppercase;
}
.learning-content .hcontent h5 a {
  color: #555353;
  font-family: open_sansbold;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
}
.learning-content .hcontent h5 a:hover {
  color: #d0112b;
}
.learning-content .hcontent p {
  color: #555353;
  font-size: 14px;
  font-family: open_sansregular;
}

.read {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  font-family: open_sansbold;
  color: #a5a5a5;
}
.read a {
  font-size: 12px;
  text-transform: uppercase;
  font-family: open_sansbold;
  color: #a5a5a5;
}
.read a:hover {
  color: #d0112b;
}
.read span {
  float: right;
  position: absolute;
  right: -20px;
  top: -10px;
}
.read span a {
  color: #fff;
}
.read span a:hover {
  color: #fff;
}

.learning-buttons {
  display: inline-block;
  margin-top: 60px;
  text-align: center;
  width: 100%;
}
.learning-buttons a {
  color: #fff;
  font-family: open_sansbold;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
}

.footer-box {
  background: #555353;
  width: 100%;
  padding: 58px 0;
}
.footer-box h4 {
  color: #fff;
  font-family: open_sansbold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-box ul li a {
  color: #cccccc;
  font-family: open_sansregular;
  font-size: 14px;
  line-height: 26px;
}
.footer-box ul li a:hover {
  color: #fff;
}
.footer-box .col img {
  max-width: 100px;
}

.disclaimer, .disclaimer p {
  color: #cccccc;
  font-family: open_sansregular;
  font-size: 12px !important;
  line-height: 18px important;
}

.footer-address {
  color: #cccccc;
  font-family: open_sansregular;
  font-size: 13px;
  line-height: 18px;
  margin-top: 10px;
}

.social-icons {
  font-size: 20px;
  margin-top: 10px;
}
.social-icons a {
  color: #cccccc;
  margin-right: 5px;
}
.social-icons a:hover {
  color: #fff;
}

.headertop-text a:hover {
  color: #fff;
  border: none;
}

.sub_menu li {
  border-bottom: 1px solid #e8e8e8;
  display: inline-block;
  width: 100%;
}

.sub_menu li:first-child,
.sub_menu li a:first-child {
  border-radius: 2px 2px 0 0;
}

.sub_menu li:last-child {
  border-bottom: none;
}

.home-insurance > a:hover {
  color: #c01016;
}

.business-insurance > a:hover {
  color: #cccccc;
}

.copyright {
  background: #484646;
  color: #cccccc;
  margin: 0;
  padding: 15px 0;
  width: 100%;
  font-size: 12px;
  font-family: open_sansregular;
}

.footer-right {
  text-align: right;
}
.footer-right a {
  color: #cccccc;
}
.footer-right a:hover {
  color: #fff;
}

.dedicated {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.active_main {
  padding-bottom: 9px;
  position: relative;
}
.active_main:hover .main_sub_menu {
  display: block;
}
.active_main .main_sub_menu a:hover {
  background-color: #e8e8e8;
  background-image: linear-gradient(to bottom, whitesmoke 0%, #e8e8e8 100%);
  background-repeat: repeat-x;
  border: medium none;
  color: #d0112b;
}

.main_sub_menu {
  background: #fff !important;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  display: none;
  min-width: 150px;
  position: absolute;
  left: 0;
  text-align: left;
  top: 100%;
  z-index: 999;
  padding: 0;
}
.main_sub_menu li {
  border-bottom: 1px solid #e8e8e8;
  display: inline-block;
  width: 100%;
  text-align: left;
  margin: 0 !important;
}
.main_sub_menu a {
  color: #555353 !important;
  display: inline-block;
  float: left;
  /*margin: -3px 0 0 !important;*/
  margin: 0;
  padding: 10px;
  width: 100%;
  font-family: open_sansbold;
}

.main_sub_menu li:last-child {
  border: none;
}

.active_main span i {
  margin-left: 5px;
}

.btn-large-red {
  margin-right: 18px;
}

/*START LOCATE AGENT PAGE*/
.locate-banner {
  background-image: url(/site/Pub/design/locate-agent-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  position: relative;
  padding: 10% 0 28%;
}
.locate-banner .setcontainer {
  left: 50%;
  position: absolute;
  text-align: center;
  top: auto;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 100%;
  z-index: 999999999;
  max-width: 773px;
}
.locate-banner .setcontainer h1 {
  color: #d0112b;
  font-family: open_sansregular;
  font-size: 46px;
  margin: 0 0 22px;
  text-align: left;
}

.locate-form {
  background: rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 36px;
  width: 100%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
}

.locate-form:hover {
  background: rgb(255, 255, 255);
}

.locate-form-field label {
  color: #555353;
  font-family: open_sansregular;
  font-size: 14px;
  text-transform: uppercase;
  float: left;
}
.locate-form-field input[type=text] {
  background-color: #edebeb;
  border: 1px solid #c2b4b4;
  height: 48px;
  margin: 10px 0 15px;
  padding: 5px;
  width: 100%;
  color: #555353;
  font-size: 16px;
}
.locate-form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #edebeb url("/site/Pub/design/select-dropdown-caret.png") 95% center;
  background-position: right 5px center;
  -webkit-background-position: right 5px center;
  background-repeat: no-repeat;
  background-size: 15px 8px;
  -webkit-background-size: 15px 8px;
  border: 1px solid #c2b4b4;
  color: #555353;
  font-size: 16px;
  height: 48px;
  margin: 10px 0 15px;
  padding: 5px;
  width: 100%;
}
.locate-form-field select:hover {
  cursor: pointer;
}

.locateform-btn-content {
  margin-top: 26px;
}
.locateform-btn-content a {
  background: #586889;
  border-radius: 3px;
  color: white;
  display: inline-block;
  float: left;
  font-family: open_sansbold;
  font-size: 14px;
  padding: 17px;
  text-transform: uppercase;
}
.locateform-btn-content a:hover {
  background: #4A5875;
}
.locateform-btn-content span {
  color: #555353;
  display: inline-block;
  font-family: open_sansregular;
  font-size: 15px;
  padding: 0 14px;
}

.search-country {
  padding: 40px 0;
}
.search-country h1 {
  font-size: 32px;
  margin: 40px 0 15px;
  color: #d0112b;
  font-family: open_sansregular;
}

/*5apr2016*/
.right-list {
  margin-left: 80px;
}

.list-item {
  border: 1px solid #c2b4b4;
  border-radius: 3px;
  font-size: 14px;
  margin: 7px 0;
  position: relative;
  display: inline-block;
  width: 100%;
}
.list-item a {
  color: #9b9381;
  display: inline-block;
  font-family: open_sansbold;
  font-size: 14px;
  padding: 12px;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}
.list-item i {
  color: #9b9381;
  float: right;
  font-size: 20px;
  line-height: 42px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}

.list-item:hover a, .list-item:hover i {
  color: #d0112b;
}

.search-country p {
  color: #666;
  font-family: open_sansregular;
  font-size: 16px;
  margin-bottom: 20px;
}

.locate-form-field input[type=text]:focus {
  border: 1px solid #d0112b;
}
.locate-form-field select:focus {
  border: 1px solid #d0112b;
}

.locateform-btn-content span a {
  background: none;
  color: #555353;
  font-family: open_sansregular;
  font-size: 14px;
  padding: 0;
  text-transform: lowercase;
}

.locateform-btn-content span a:hover {
  background: none;
  color: #d0112b;
}

/* END LOCATE AGENT PAGE */
/* START AGENT LISTING PAGE */
.listing-left-menu h3 {
  color: #d0112b;
  font-family: open_sansregular;
  font-size: 18px;
  margin-bottom: 10px;
  /*&:nth-child(1) {
  	display: none;
  }*/
}
.listing-left-menu a {
  color: #9b9381;
  display: inline-block;
  font-family: open_sansbold;
  font-size: 14px;
  margin: 10px 0;
  text-transform: uppercase;
  /*width: 100%;*/
}
.listing-left-menu a:hover {
  color: #d0112b;
}

.country-listing {
  margin: 40px 0;
}

.listing-right-side h1 {
  color: #d0112b;
  font-size: 32px;
  font-family: open_sansregular;
  margin-bottom: 20px;
}
.listing-right-side .tablesaw {
  margin-top: 26px;
  border: none;
}
.listing-right-side .tablesaw thead {
  background: #d0112b;
}
.listing-right-side .tablesaw thead tr:first-child th {
  color: #fff;
  font-family: open_sansbold;
  font-size: 14px;
  text-transform: uppercase;
}
.listing-right-side .tablesaw tbody td:nth-child(2) {
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}
.listing-right-side .tablesaw-stack tbody tr {
  border-bottom: none;
  background: #eeeeee;
}
.listing-right-side .tablesaw-stack tbody tr:nth-child(2n+1) {
  background: #f6f6f6;
}
.listing-right-side .tablesaw-cell-content {
  color: #666;
  font-family: open_sansregular;
  font-size: 14px;
  text-transform: uppercase;
}

.listing-right-side .tablesaw th {
  padding: 0.5em 1em;
}
.listing-right-side .tablesaw td {
  padding: 0.5em 1em;
}

.listing-left-menu i {
  display: none;
  cursor: pointer;
}

@media (max-width: 480px) {
  .listing-right-side #map {
    height: 350px !important;
  }
}
/*  END AGENT LISTING PAGE */
/* START POLICY DETAIL PAGE */
.policy-banner {
  background-image: url("/site/Pub/design/policy-banner.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10% 0 10.4%;
  position: relative;
}
.policy-banner h1 {
  color: #fff;
  font-family: open_sansbold;
  font-size: 56px;
  position: relative;
  text-align: center;
  z-index: 9;
}

.policy-right {
  float: right;
  margin: 57px 0 138px;
  padding-left: 54px;
  position: relative;
}
.policy-right h1 {
  color: #d0112b;
  font-family: open_sansregular;
  font-size: 32px;
  margin-bottom: 25px;
}
.policy-right .hcontent p {
  line-height: 28px;
  color: #666;
  font-family: open_sansregular;
  font-size: 16px;
}
.policy-right .hcontent p.policy-first-text {
  color: #666;
  font-family: open_sansbold;
  font-size: 16px;
}
.policy-right .hcontent h2 {
  color: #d0112b;
  font-family: open_sansregular;
  font-size: 26px;
  margin-bottom: 10px;
}
.policy-right h1.optional-heading {
  font-size: 32px;
  font-family: open_sansregular;
  color: #586889;
  margin-top: 40px;
}
.policy-right #optional-coverage {
  padding-bottom: 15px;
}
.policy-right .demo-div {
  border: 1px solid #ddd;
  float: left;
  margin: 2% 2% 0 0;
  width: 31.3%;
  padding: 25px;
}
.policy-right .demo-div.respond:hover {
  text-decoration: none;
  box-shadow: 0 0 4px rgba(35, 31, 32, 0.3);
}
.policy-right .demo-div.respond:hover .icon-head {
  color: #586889;
}

.policy-left {
  float: left;
  margin: 0 0 40px 0;
}
.policy-left .demo-div {
  border: 1px solid #cccccc;
  float: left;
  margin: 2%;
  width: 100%;
}
.policy-left .flexFill img {
  width: auto;
  height: 100%;
  margin-top: 0%;
  margin-left: -1.98813%;
  display: inline;
}
.policy-left .learn {
  position: relative;
  margin: 15px 0 0;
  text-align: center;
}
.policy-left .learn:before {
  content: "";
  position: absolute;
  top: 16px;
  width: 100%;
  height: 1px;
  background: #cccccc;
  left: 0;
  right: 0;
  z-index: -1;
}
.policy-left .learn:after {
  content: "";
  position: absolute;
  top: 20px;
  width: 100%;
  height: 1px;
  background: #cccccc;
  left: 0;
  right: 0;
  z-index: -1;
}
.policy-left .learn a {
  color: #586889;
  text-transform: uppercase;
  font-size: 14px;
  font-family: open_sansbold;
  display: inline-block;
  z-index: 2px;
  background: #fff;
  padding: 12px;
}

.demo-div {
  border: 1px solid #cccccc;
  float: left;
  margin: 2%;
  width: 29%;
}

.locate-zip {
  background: #fff none repeat scroll 0 0;
  padding: 20px;
  position: absolute;
  right: 0;
  top: -155px;
  z-index: 9;
}
.locate-zip > h4 {
  color: #d0112b;
  font-family: open_sansregular;
  font-size: 18px;
  margin-bottom: 6px;
}
.locate-zip input[type=text] {
  background: #edebeb;
  border: 1px solid #c2b4b4;
  height: 34px;
  padding: 8px;
  color: #555353;
  font-family: open_sansregular;
  font-size: 14px;
}
.locate-zip input[type=text]:focus {
  border: 1px solid #d0112b;
}
.locate-zip input[type=submit] {
  background: #586889;
  border: medium none;
  border-radius: 3px;
  color: #fff;
  font-family: fontawesome;
  font-size: 18px;
  line-height: 24px;
  padding: 4px;
  height: 34px;
  width: 34px;
  margin-left: 6px;
}
.locate-zip input[type=submit]:hover {
  background: #4A5875;
}

.demo-div.respond .icon-head {
  color: #666;
  font-size: 16px;
  text-align: center;
  font-family: open_sansbold;
  margin-top: 25px;
}

.policy-list {
  background: #f2ede2;
  padding: 30px;
}
.policy-list h3 {
  color: #d0112b;
  font-family: open_sansregular;
  font-size: 18px;
  margin-bottom: 10px;
}
.policy-list a {
  color: #9b9381;
  display: inline-block;
  font-size: 14px;
  margin: 10px 0;
  text-transform: uppercase;
  width: 100%;
  font-family: open_sansbold;
}
.policy-list a:hover {
  color: #d0112b;
}

.left-learn {
  background: #e0e4eb;
}
.left-learn .demo-div.respond {
  margin: 0;
  border: none;
}
.left-learn .img-wrap.processed img {
  height: auto;
  margin: 0;
  width: 100%;
}

.left-learn-content {
  display: inline-block;
  padding: 25px;
  width: 100%;
}

.read-more a {
  color: #fff;
  border-radius: 3px;
}
.read-more a:hover {
  background: #4A5875;
}

.learn-title {
  color: #555353;
  font-family: open_sansregular;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}
.learn-title a {
  color: #555353;
}
.learn-title a:hover {
  color: #d0112b;
}

/* END POLICY DETAIL PAGE */
/* START CONTENT PAGE */
.content-banner {
  background-image: url("/site/Pub/design/content-banner.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10% 0 10.4%;
  position: relative;
}
.content-banner h1 {
  color: white;
  font-family: open_sansbold;
  font-size: 56px;
  position: relative;
  text-align: center;
  z-index: 9;
}

.content-right {
  float: right;
  margin: 57px 0;
  padding-left: 54px;
  position: relative;
}
.content-right .hcontent h1 {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 25px;
  color: #d0112b;
  font-family: open_sansregular;
}
.content-right .hcontent p {
  color: #666;
  font-family: open_sansregular;
  font-size: 16px;
}

.sidebar-content {
  margin-top: 40px;
}

.learning-insurance {
  background: #586889;
  margin-top: 40px;
  padding: 25px 20px;
  text-align: center;
}
.learning-insurance h4 {
  color: #38455e;
  font-family: open_sansbold;
  font-size: 16px;
  margin: 10px 0;
  text-transform: uppercase;
}
.learning-insurance a {
  color: #586889;
}
.learning-insurance a:hover {
  background: #e0e4eb;
}
.learning-insurance img {
  max-width: 120px;
}

.learning-text {
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 25px;
  color: #fff;
  font-family: open_sansregular;
}

.btn-large-white {
  margin-top: 20px;
  padding: 15px;
  width: 100%;
}

/* END CONTENT PAGE */
@media screen and (max-width: 1200px) {
  .home-insurance > p {
    font-size: 24px;
  }
  .learning-content .hcontent h5 {
    font-size: 14px;
  }
  .business-insurance > p {
    font-size: 24px;
  }
  .main_nav ul {
    padding: 6px 0;
    width: 100%;
  }
  .main_nav > a {
    font-size: 12px;
    padding: 12px;
    width: auto;
    float: right;
  }
  .locate-banner {
    padding: 80px 0 300px;
  }
  .policy-right .demo-div {
    width: 47%;
  }
  .learning-content .hcontent h5 a {
    font-size: 14px;
  }
  .main_nav {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .main_nav {
    padding: 0;
  }
  .main_nav ul li {
    margin-left: 14px;
    margin-right: 0;
    font-size: 12px;
  }
  .page-banner .setcontainer h1 {
    font-size: 44px;
  }
  .tab-links a {
    padding: 16px 25px;
  }
  .tabs .tab-content p {
    font-size: 16px;
    line-height: 20px;
  }
  .tabs form label {
    font-size: 12px;
  }
  .dedicated .setcontainer {
    padding: 40px 0;
  }
  .dedicated .hcontent h1 {
    font-size: 28px;
  }
  .home-insurance {
    padding: 30px;
    margin: 0 10px;
  }
  .business-insurance {
    padding: 30px;
    margin: 0 10px;
  }
  .read {
    font-size: 10px;
  }
  .read a {
    font-size: 10px;
    padding: 7px 6px;
  }
  .left-list {
    width: 45%;
  }
  .right-list {
    width: 45%;
    margin-left: 35px;
  }
  .policy-right {
    padding-left: 24px;
  }
  .locate-zip {
    padding: 11px;
    top: -138px;
  }
  .policy-list {
    padding: 15px;
  }
  .left-learn-content {
    padding: 15px;
  }
  .content-right .hcontent h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .mobile_toggle {
    display: block;
    margin-top: 15px;
  }
  .main_nav ul {
    border-top: none;
    display: none;
    padding-top: 5px;
    width: 100%;
    background: #edebeb;
  }
  .main_nav ul li {
    margin: 0;
    padding: 0;
    text-align: left;
    width: 100%;
  }
  .main_nav > a {
    float: none;
    font-size: 12px;
    margin-top: 10px;
    padding: 12px;
    text-align: center;
    width: auto;
  }
  .logo {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  .navigation {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .main_nav .main_sub_menu {
    background: transparent !important;
    border-radius: 0;
    box-shadow: none;
    display: block !important;
    width: 100%;
    position: relative;
    left: 0;
    padding: 0 !important;
  }
  .main_nav .main_sub_menu li {
    border-bottom: none;
    display: block;
    width: 100%;
    text-align: left;
    margin: 0 !important;
  }
  .main_nav .main_sub_menu a {
    color: #555353 !important;
    display: block;
    float: none;
    margin: 0 !important;
    padding: 10px 10px 10px 25px;
    width: 100%;
    text-transform: none;
    font-family: "open_sanssemibold";
  }
  .main_nav .main_sub_menu a:hover {
    background: transparent;
    color: #d0112b !important;
  }
  .tab-links a {
    padding: 10px 15px;
  }
  .form-field {
    margin: 0;
    width: 100%;
  }
  .tabs,
  .tabs .tab-links,
  .tabs .tab-content {
    width: 100%;
  }
  .row.tabs-images {
    padding: 210px 0 48px;
  }
  .dedicated .setcontainer {
    padding: 34px 15px;
    text-align: center;
  }
  .dedicated .hcontent h1 {
    font-size: 24px;
  }
  .dedicated-content .hcontent p {
    font-size: 14px;
    line-height: 26px;
  }
  .home-insurance {
    padding: 15px;
    margin: 0;
  }
  .home-insurance > p {
    font-size: 22px;
    line-height: 32px;
  }
  .home-insurance > img {
    position: inherit;
    margin-top: 22px;
    display: block;
  }
  .business-insurance {
    padding: 15px;
    margin: 0;
  }
  .business-insurance > p {
    font-size: 22px;
    line-height: 32px;
  }
  .business-insurance > img {
    position: inherit;
    margin-top: 22px;
    display: block;
  }
  .learning-center {
    padding: 40px 0;
  }
  .read {
    font-size: 10px;
  }
  .read a {
    font-size: 10px;
  }
  .headertop-text {
    text-align: center;
  }
  .page-banner {
    height: 250px;
  }
  .page-banner .setcontainer h1 {
    font-size: 30px;
  }
  .tabs {
    margin: -34px auto;
  }
  .mobile_toggle i {
    margin-right: 8px;
  }
  .learning-content {
    min-height: 300px;
  }
  /*.learning-center {
  	.hcontent {
  		min-height: 344px;
  	}
  }*/
  .row.tabs-images {
    padding: 48px 0;
  }
  .read span {
    top: 25px;
  }
  .locate-banner .setcontainer {
    display: block;
    top: 50%;
    width: 100%;
  }
  .locate-banner .locate-form {
    background: rgb(255, 255, 255);
  }
  .search-country {
    margin-top: 150px;
  }
  .locate-form {
    padding: 20px;
  }
  .locate-form-field {
    margin: 0;
    width: 100%;
  }
  .list-item {
    float: left;
    width: 100%;
  }
  .locate-country-col {
    width: 100%;
  }
  .locate-country-col:nth-child(2) {
    text-align: center;
    width: 99%;
  }
  .listing-left-menu h3 {
    line-height: 100%;
    padding: 15px;
    position: relative;
    /*&:nth-child(2) {
    	display: none;
    }
    &:before {
    	color: $red;
    	content: "";
    	font-family: "fontawesome";
    	font-size: 25px;
    	position: absolute;
    	right: 10px;
    	top: 15px;
    }*/
  }
  .listing-left-menu h3:nth-child(1) {
    display: block;
    background-color: #eeeeee;
    position: relative;
    margin-top: 10px;
  }
  .listing-left {
    display: none;
    padding: 0 15px;
  }
  .country-listing {
    margin: 0 0 20px 0;
  }
  .country-listing .col {
    margin: 0;
    width: 100%;
  }
  .listing-left-menu i {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
  .listing-left-menu {
    position: relative;
  }
  .policy-right {
    width: 100%;
    padding: 0;
    margin: 20px 0;
  }
  .policy-right h1 {
    font-size: 24px;
  }
  .policy-right .hcontent h2 {
    font-size: 20px;
  }
  .policy-right h1.optional-heading {
    font-size: 24px;
  }
  .policy-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .locate-zip {
    position: static;
    padding: 20px 0;
  }
  .locate-zip form input[type=text] {
    width: 80%;
  }
  .content-right {
    padding: 0;
    width: 100%;
    margin: 20px 0;
  }
  .content-right .hcontent h1 {
    font-size: 24px;
  }
  .main_nav .main_sub_menu li {
    padding: 0;
  }
  .main_nav ul a {
    display: block;
    width: 100%;
    padding: 12px;
  }
}
@media screen and (max-width: 542px) {
  .learning-content {
    min-height: 190px !important;
    width: 100%;
    height: auto;
  }
  .learning-center .hcontent {
    min-height: auto;
    min-height: 150px !important;
    width: 100%;
    height: auto;
  }
  .tabs-images .col {
    margin: 10px 0;
  }
  .read span {
    top: -10px;
  }
  .learning-center .col {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .home-insurance {
    width: 100%;
    margin-bottom: 10px;
  }
  .business-insurance {
    width: 100%;
    margin: 0;
  }
  .tabs {
    margin: -26px auto;
  }
  .tab-links li {
    margin: 0 2px;
  }
  .tab-links a {
    padding: 8px 4px;
    font-size: 10px;
  }
  .tabs .tab-content p {
    font-size: 14px;
    line-height: 20px;
  }
  .page-banner .setcontainer h1 {
    font-size: 24px;
  }
  .dedicated-content {
    width: 100%;
  }
  .business-insurance {
    height: 416px;
  }
  .home-insurance {
    height: 416px;
  }
  .learning-center h1 {
    font-size: 24px;
  }
  .learning-buttons {
    margin-top: 20px;
  }
  .learning-buttons a {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .footer-left {
    text-align: center;
  }
  .footer-right {
    text-align: center;
    margin-top: 5px;
  }
  .headertop-text a {
    margin-left: 15px;
  }
  .locate-banner .setcontainer h1 {
    font-size: 30px;
  }
  .left-list {
    width: 100%;
  }
  .right-list {
    width: 100%;
    margin-left: 0px;
  }
  .tablesaw-stack > thead > tr > td {
    display: none;
  }
  .tablesaw-stack > thead > tr > th {
    display: none;
  }
  .listing-right-side h1 {
    font-size: 20px;
    margin-top: 10px;
  }
  .listing-right-side .tablesaw-cell-content {
    font-size: 12px;
  }
  .policy-right .demo-div {
    width: 100%;
  }
  .policy-right h1 {
    font-size: 21px;
  }
  .policy-right .hcontent p.policy-first-text {
    font-size: 14px;
  }
  .policy-right .hcontent p {
    font-size: 14px;
    line-height: 24px;
  }
  .policy-right .hcontent h2 {
    font-size: 18px;
  }
  .policy-right h1.optional-heading {
    font-size: 21px;
  }
  .policy-banner h1 {
    font-size: 30px;
  }
  .content-banner h1 {
    font-size: 30px;
  }
  .content-right .hcontent h1 {
    font-size: 18px;
    line-height: 24px;
  }
  .content-right .hcontent p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer-box .row .col {
    margin: 20px 0 0 0;
  }
  .footer-box h4 {
    margin: 0 0 5px 0;
  }
  .row.tabs-images {
    padding: 15px 0 20px 0;
  }
  .row.tabs-images .col {
    width: 30%;
  }
}
@media screen and (max-width: 376px) {
  .home-insurance {
    padding: 50px 15px 15px;
  }
  .business-insurance {
    padding: 40px 15px 15px;
  }
  .tab-links a {
    font-size: 9px;
    padding: 8px 3px;
  }
  .locateform-btn-content span {
    float: left;
    padding: 14px;
  }
  .form-btn-content span {
    padding: 18px 0;
  }
  .locateform-btn-content {
    margin-top: 20px;
    text-align: left;
  }
}
/** start newsletter signup **/
#newsletter-overlay {
  height: 100%;
  left: 0;
  outline: medium none !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1043;
  background: rgba(0, 0, 0, 0.6);
}

#newsletter-form {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  max-width: 500px;
  height: 450px;
  background: #fff;
  margin: auto;
  color: #333;
  z-index: 999 !important;
  text-align: left;
  border-top: 7px solid #d0112b;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 20px;
}

#newsletter-form h2 {
  font-size: 24px;
  color: #d0112b;
  margin: 0 0 15px 0;
  padding: 10px 15px 5px 10px;
}

#newsletter-form p {
  padding: 0 0 10px 10px;
  font-size: 16px;
}

#newsletter-form .hhFormRow {
  padding: 0 10px 5px 10px;
}

#newsletter-form fieldset input[type=text] {
  background: #fff;
  border: 1px solid #bbb;
  font-family: "open_sansregular";
  color: #666;
  font-size: 14px;
  width: 99%;
  padding: 10px;
  margin: 0;
  transition: border 0.3s;
}

#newsletter-form p.newsletter-disclaimer-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

#newsletter-form fieldset input[type=text]:hover {
  /*border:1px solid #3B8AC9;*/
}

#newsletter-form input.fielda,
.subscribe-form input.fielda {
  display: none;
}

#newsletter-form .form-buttons {
  padding: 5px 10px 10px 10px;
  text-align: left;
}

#newsletter-form .form-buttons a {
  color: #fff;
}

#newsletter-form .form-buttons input {
  -webkit-appearance: none;
}

#newsletter-form .btn-large-red {
  margin-right: 10px;
}

@media (max-width: 600px) {
  #newsletter-form {
    height: 580px;
  }
}
/** end newsletter signup **/
#subpage-content .page-banner {
  padding: 10% 0 9.4%;
}

.mfp-container {
  background: #fff none repeat scroll 0 0/100% auto;
  height: auto !important;
  left: auto !important;
  margin: 0 auto;
  max-width: 950px;
  padding: 0 !important;
  position: relative !important;
  top: 90px !important;
}

.opt-coverage-popup {
  padding: 65px;
}

.opt-coverage-popup .flexFit {
  border: 1px solid #ddd;
}

.opt-coverage-popup .popup-description {
  padding-left: 15px;
}

.opt-coverage-popup h2 {
  padding-bottom: 15px;
  font-size: 32px;
  color: #586889;
  padding-top: 0;
}

.opt-coverage-popup .formButton {
  display: none;
}

#wrapper_roost {
  padding: 40px 0;
}

.roost-content {
  background: #fff url("/site/pub/design/roost_background.png") no-repeat bottom center;
  background-size: 100% auto;
  padding-bottom: 220px;
  padding-left: 30px;
  min-height: 550px;
}

.roost-container .roost-content #ContentID h2 {
  color: #d0112b;
}

.roost-content #roost-form .hhError,
.roost-content #roost-form > fieldset > p {
  padding: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  display: block;
  background-color: #d0112b;
  color: #fff;
  text-align: center;
}

.roost-content #roost-form .hhError a,
.roost-content #roost-form > fieldset > p a {
  color: #fff;
  text-decoration: underline;
}

.roost-content #roost-form .roost-form {
  padding: 10px 0;
}

.roost-content #roost-form .roost-form .row {
  margin-bottom: 15px;
  max-width: 330px;
  width: 100%;
}

.roost-content #roost-form .roost-form.step-2 .row {
  max-width: inherit;
}

.roost-content #roost-form .roost-form h2 {
  color: #d0112b;
  padding-bottom: 20px;
}

.roost-content #roost-form .roost-form p {
  line-height: 1.5;
  font-size: 16px;
}

.roost-content #roost-form .roost-form.step-2 .btn {
  display: block;
  width: 100%;
  max-width: 330px;
}

.roost-content #roost-form input[type=text] {
  background-color: #edebeb;
  border: 1px solid #c2b4b4;
  height: 32px;
  margin: 10px 0 15px;
  padding: 5px;
  width: 100%;
  color: #555353;
  font-size: 14px;
  font-family: "open_sansregular";
}

.roost-content #roost-form .btn {
  border: none;
  border-radius: 3px;
  display: inline-block;
  font-family: open_sansbold;
  font-size: 14px;
  padding: 18px;
  text-align: right;
  text-transform: uppercase;
  text-align: center;
  line-height: 100%;
  margin-top: 15px;
}

.roost-content #roost-form .btn.btn-primary {
  background: #d0112b;
  color: #fff;
}

.roost-content #roost-form .btn.btn-primary:hover {
  background: #c01016;
  color: #fff;
}

.roost-content #roost-form .btn.btn-secondary {
  background: #586889;
  color: #fff;
}

.roost-content #roost-form .btn.btn-secondary:hover {
  background: #4A5875;
  color: #fff;
}

.roost-content div#roost-form span.helper-text {
  margin-top: 10px;
  display: block;
  color: #777;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .roost-content {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 480px) {
  .roost-content {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.policy-error-message {
  font-size: 12px;
  color: #d0112b;
  display: none;
  line-height: 1.5;
  padding-top: 5px;
}

#hhFormBuilderButton:disabled, #hhFormBuilderButton[disabled=disabled] {
  cursor: not-allowed !important;
}

.browser-links-row {
  padding: 10px 0 20px 0;
}

.browser-links-row .col p {
  text-align: center;
  margin-top: 10px;
}

.browser-links-row .browser-links__item {
  border: 1px solid #ccc;
  position: relative;
}

.browser-links-row .browser-links__item:hover {
  box-shadow: 0 0 4px rgba(35, 31, 32, 0.3);
}

.browser-links-row .browser-links__item .flexFit {
  padding-bottom: 100%;
}

.browser-links-row .browser-links__item img {
  max-width: 75%;
  max-height: 75%;
}

.browser-links-row .browser-links__item a.link-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.browser-links-row .browser-links__item a.link-overlay:hover {
  text-decoration: none;
}

#wrapper_vip_home_link .hcontent h1, #wrapper_vip_home_link .hcontent h2, #wrapper_vip_home_link .hcontent h3, #wrapper_vip_home_link .hcontent h4, #wrapper_vip_home_link .hcontent h5, #wrapper_vip_home_link .hcontent h6 {
  color: #d0112b;
}

#wrapper-viphomelink .viphomelink-form {
  width: 100%;
  max-width: 500px;
  margin: 20px 0 40px 0;
}
#wrapper-viphomelink .viphomelink-form .btn {
  display: block;
  width: 100%;
  max-width: 330px;
}
#wrapper-viphomelink .viphomelink-form .btn {
  border: none;
  border-radius: 3px;
  display: inline-block;
  font-family: open_sansbold;
  font-size: 14px;
  padding: 18px;
  text-align: right;
  text-transform: uppercase;
  text-align: center;
  line-height: 100%;
}
#wrapper-viphomelink .viphomelink-form .btn.btn-primary {
  background: #d0112b;
  color: #fff;
}
#wrapper-viphomelink .viphomelink-form .btn.btn-primary:hover {
  background: #c01016;
  color: #fff;
}

/* Front End Form Styling */
.front-end-form .form-field-wrapper {
  margin-bottom: 20px;
}
.front-end-form .hh-required-fields {
  margin-bottom: 10px;
}
.front-end-form .helper-text {
  color: #666;
  font-size: 14px;
  font-style: italic;
  display: block;
  margin: 8px 0 10px 0;
}
.front-end-form .input-row {
  clear: left;
  display: block;
  margin-bottom: 15px;
  padding: 0 0 5px 0;
}
.front-end-form label {
  display: inline-block;
  margin-bottom: 5px;
  line-height: 1.2;
  color: #666;
}
.front-end-form input[type=text],
.front-end-form input[type=password],
.front-end-form input[type=email],
.front-end-form select,
.front-end-form textarea {
  border: 1px solid #c2b4b4;
  font-size: 16px;
  background-color: #fff;
  padding: 15px;
  width: 100%;
  max-width: 100%;
  border-radius: 2px;
  color: #666;
  height: auto;
  font-family: "open_sansregular", sans-serif;
}
.front-end-form select {
  background: #fff url("/pub/design/select-dropdown-chevron.png") no-repeat right 15px center;
  background-size: auto 7px;
  cursor: pointer;
  padding: 14px 36px 14px 15px;
  -o-appearance: none;
  appearance: none;
}
.front-end-form select::-ms-expand {
  display: none;
}
.front-end-form select.select-default option[disabled],
.front-end-form select option[disabled] {
  color: #999;
}
.front-end-form select.select-default {
  color: #999;
}
.front-end-form select.select-default option {
  color: #4b4f54;
}

#wrapper_vip_home_linkv2 {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 35px;
}
#wrapper_vip_home_linkv2 .main-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 45px;
}
#wrapper_vip_home_linkv2 .row.download .col {
  text-align: left;
}
#wrapper_vip_home_linkv2 .row.download .col.align-right {
  text-align: right;
}
#wrapper_vip_home_linkv2 .download-col {
  text-align: center;
}
#wrapper_vip_home_linkv2 .download-col h2 {
  color: #d0112b;
  padding-bottom: 15px;
}
#wrapper_vip_home_linkv2 .download-col .home-assist-dashboard {
  padding-top: 35px;
}
#wrapper_vip_home_linkv2 .bullet-col {
  padding-bottom: 50px;
}
#wrapper_vip_home_linkv2 .bullet-col .row {
  padding-bottom: 15px;
}
#wrapper_vip_home_linkv2 .bullet-col p {
  line-height: 1.5;
}
#wrapper_vip_home_linkv2 .bullet-col p strong {
  color: #d0112b;
  display: block;
  font-size: 18px;
}
@media (max-width: 640px) {
  #wrapper_vip_home_linkv2 .main-content {
    padding-bottom: 15px;
    padding-top: 15px;
  }
  #wrapper_vip_home_linkv2 h1 {
    line-height: 1.25;
  }
  #wrapper_vip_home_linkv2 h2 {
    font-size: 27px;
  }
  #wrapper_vip_home_linkv2 .download .col.grid6-12 {
    width: 49.2%;
  }
  #wrapper_vip_home_linkv2 .bullet-col {
    padding-top: 15px;
    padding-bottom: 0px;
  }
  #wrapper_vip_home_linkv2 .bullet-col .row .col.grid2-12 {
    width: 14%;
  }
  #wrapper_vip_home_linkv2 .bullet-col .row .col.grid10-12 {
    width: 84.2%;
    padding-left: 5px;
  }
}