.leave_banner {
    background: #F49225;
    color: #fff;
    text-align: center;
    padding: 15px 244px;
    font-size: 19px;
    line-height: 31px;
}

/* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*/
.mc4wp-checkbox label,
.mc4wp-form label,
.mc4wp-checkbox {
    color: #ffffff !important;
}
/* Masonry Grid for FAQ */
#blog_faq2 .sm-grid {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap onto new lines */
  gap: 16px; /* Space between items */
  padding: 16px;
}

#blog_faq2 .grid-sm-boxes-in {
  flex: 0 1 calc(25% - 16px); /* Four tiles with gap consideration */
  min-width: 250px;
  max-width: 100%;
  background-color: #f0f0f0; /* Light background for each item */
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  #blog_faq2 .grid-sm-boxes-in {
    flex: 0 1 calc(50% - 16px); /* Two per row on tablets */
  }
}

@media (max-width: 600px) {
  #blog_faq2 .grid-sm-boxes-in {
    flex: 0 1 100%; /* Full width on small screens */
  }
}

#blog_faq2 .grid-sm-boxes-in:hover {
  transform: scale(1.02);
}

#blog_faq2 .grid-sm-boxes-in img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

/* Masonry Grid for Blog and Blog Posts */
#blog_posts .sm-grid {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap onto new lines */
  gap: 16px; /* Space between items */
  padding: 16px;
}

#blog_posts .grid-sm-boxes-in {
  flex: 1 1 32%; /* Flex item takes up roughly 32% of the container width */
  background-color: #f0f0f0; /* Light background for each item */
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#blog_faq2 .grid-sm-boxes-in:hover,
#blog_posts .grid-sm-boxes-in:hover {
    transform: scale(1.02);
}

#blog_faq2 .grid-sm-boxes-in img,
#blog_posts .grid-sm-boxes-in img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Headings styled with high specificity */
#blog_faq2 .sm-post-title,
#blog_posts .sm-post-title {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #f79b3f !important; /* SSS orange */
}

/* Paragraph base style */
#blog_faq2 .sm-grid-boxes-quote,
#blog_posts .sm-grid-boxes-quote {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.95rem !important;
    color: #000 !important;
    margin-bottom: 5px !important;
}

/* Date styling */
#blog_faq2 .sm-meta,
#blog_posts .sm-meta {
    font-size: 0.6rem !important;
    color: #999 !important;
    margin-bottom: 10px !important;
}

/************************************/
/*.sm-grid .grid-sm-boxes-in{width:24%}
a img {
    border: medium none;
}
*/
/****************Blog Styling****************/

.blog_content_container {
    font-family: 'Lato', sans-serif;
    color: #000;
    /* Removed flex to allow text wrapping */
}

.entry-date.published { 
    display: none; 
}

.single-post .entry-title,
.blog_content_container .entry-title {
    display: none !important;
}

.blog_content_container .post_content_image img {
    float: left;
    margin: 0 20px 20px 0;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
}

.blog_content_container .post_content_area {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #000000; /* Adjusted to contrast with background */
    overflow: hidden; /* Clears float */
}

/* Heading 1 - SSS Orange */
.blog_content_container .post_content_area h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f79b3f !important;
    margin-bottom: 10px;
    text-align: center;
}

/* Heading 2 - SSS Light Blue */
.blog_content_container .post_content_area h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    color: #27aae1;
    text-align: center;
    margin-bottom: 30px;
}

/* Heading 3 - SSS Light Grey */
.blog_content_container .post_content_area h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #999999;
    margin: 20px 0 10px;
}

/* Heading 4 - SSS Dark Grey */
.blog_content_container .post_content_area h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin: 20px 0 10px;
}

/* Heading 5–6 use dark grey for consistency */
.blog_content_container .post_content_area h5,
.blog_content_container .post_content_area h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #333333;
    margin: 20px 0 10px;
}

.blog_content_container .post_content_area h5 { font-size: 1.1rem; }
.blog_content_container .post_content_area h6 { font-size: 1rem; }

/* Paragraphs */
.blog_content_container .post_content_area p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: white;
}

/* Bold */
.blog_content_container .post_content_area strong {
    font-weight: bold;
    color: white;
}

/* Italic */
.blog_content_container .post_content_area em {
    font-style: italic;
    color: white;
}

/* Links */
.blog_content_container .post_content_area a {
    color: #f79b3f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog_content_container .post_content_area a:hover {
    color: #f26c00;
    text-decoration: none;
}

/* Lists */
.blog_content_container .post_content_area ul,
.blog_content_container .post_content_area ol {
    padding-left: 1.5rem;
    color: white;
    margin-bottom: 10px;
    overflow: auto; /* prevent margin collapsing */
}

.blog_content_container .post_content_area li {
    line-height: 1.6 !important;
}

/* Tables */
.blog_content_container .post_content_area table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    color: white;
}

.blog_content_container .post_content_area th,
.blog_content_container .post_content_area td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.blog_content_container .post_content_area th {
    background-color: #333;
    font-weight: bold;
}

/* Blockquote */
.blog_content_container .post_content_area blockquote {
    border-left: 4px solid #f79b3f;
    padding-left: 15px;
    margin: 20px 0;
    color: #ddd;
    font-style: italic;
}

/* Inline Code */
.blog_content_container .post_content_area code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #222;
    color: #f79b3f;
    padding: 2px 4px;
    border-radius: 4px;
}

/* Code Blocks */
.blog_content_container .post_content_area pre {
    background-color: #1a1a1a;
    color: #f79b3f;
    padding: 15px;
    overflow-x: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: 'Courier New', Courier, monospace;
}

/***********************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    border: 0 none;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    background-color: #063041;
}
textarea {
    font-family: "ralewaymedium";
}
.inner-page-content .wpb_wrapper li {
    font-weight: 400;
    line-height: 22px;
    list-style-position: outside;
    margin-bottom: 10px;
    margin-left: 19px;
}
.post_content_area strong {
    font-weight: bold;
}
.com_image_pop img {
    height: auto;
    max-width: 89%;
}
.header .current-menu-parent.menu-item-has-children ul {
    display: block;
}
p {
    font-weight: 400;
    margin-bottom: 15px;
}
.page_custom_menu ul ul{display:none}
.time ul li {
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 12px;
    margin-left: 15px;
}
blockquote, q {
    quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
strong {
    color: inherit;
}
body {
    color: #474134;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
a {
    text-decoration: none;
}
.header {
   background: rgba(0, 0, 0, 0) url("images/Header_2026.png") no-repeat scroll 0 0 / 100% 100%;
height: 636px;
overflow: hidden;
position: relative;
width: 100%;
}
.container {
    margin: 0 auto;
    width: 1093px;
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.menu_wrapper ul li {
    display: inline-block;
font-family: ralewaymedium; position:relative; padding:16px 0;
}
.menu_wrapper ul ul li a {
    padding: 0px 10px;
    display: block;
    width: 100%;
}
.menu_wrapper ul li.current-menu-item  , .menu_wrapper ul li a:hover{background: #fff none repeat scroll 0 0;
color: #000;}
.menu_wrapper ul li.current-menu-item  a{color:#000;}
.menu_wrapper ul ul  , .icon-angle-down{display:none}
.menu_wrapper ul ul {position: absolute;
background: none;
left: auto;
top: 100%;
width: 100%;}
.menu_wrapper ul  li:hover > ul {display: block;}
.menu_wrapper ul ul li {
    float: none; display: block; border: #fff solid thin;
margin-bottom: 10px;
}
.menu_wrapper ul ul li:hover{ background:#fff;}
.menu_wrapper ul ul li:hover a{color: #000;}

.menu_wrapper {
    display: table;
    margin-top: 80px;
    width: 100%;
}
.menu_wrapper ul li a {
   color: #fff;
font-size: 16.26px;
padding: 12px 20px;
}
.logo_wrapper {
    display: block;
    text-align: center;
}
.custom-logo-link {
   border: 6px solid #fff;
display: inline-block;
margin-top: 40px;
padding: 29px;
text-align: center;
width: auto;
}
.top-text{text-align:center; color:#f49225; margin: 40px auto 0; }
.top-text p{font-size:20px; font-weight:600;}
.footer .custom-logo-link {width: 82%;}
.custom-logo-link img {
  height: auto;
  max-width: 100%;
}
.footer {
    background: #2d2e2d none repeat scroll 0 0;
    color: #fff;
    overflow: hidden;
    padding: 60px 0;
    width: 100%;
}
*::-moz-placeholder {
    opacity: 1;
}
:-moz-placeholder {
    opacity: 1;
}
.footer .widget_text {
    float: left;
    padding: 0;
    width: 33%;
}
.footer .widget_text .custom-logo-link {
    margin-top: 0;
}
td {
    padding: 10px;
    vertical-align: middle;
}
.widget-title {
    display: none;
}
.copyright {
    margin-top: 20px;
    text-align: center;
}
.footer .widget_text:last-child .widget-title {
    display: block;
    font-size: 30px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}
.footer .widget_text:last-child .widget-title::before {
    background: #fff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    display: inline-block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100px;
}
.footer .wpcf7-form input[type="text"], .footer .wpcf7-form input[type="email"], .footer .wpcf7-form textarea {
    border: medium none;
    color: black;
    font-size: 22px;
    padding: 10px;
    width: 100%;
}
.footer .wpcf7-form textarea {
    height: 105px; color:black !important;
}
.col-12 {
    margin-bottom: 10px;
}
.wpcf7-form-control.wpcf7-submit {
    background: #f79b3f none repeat scroll 0 0;
	border: medium none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 25px;
	font-weight: normal;
	line-height: 18px;
	padding: 10px;
	text-transform: uppercase;
	float: right;
}
.home_welcome_text {
    padding: 100px 0;
    text-align: center;
}
.home_welcome_text p {
  font-family: latoregular;
font-size: 22px;
line-height: 35px;
}
h4 {
    font-family: "latoregular";
    font-size: 30px;
}
.home_welcome_text a:hover {
  background: #17457b none repeat scroll 0 0;
  color: #fff;
}
.home_welcome_text a {
 border: thin solid #17457b;
border-radius: 10px;
color: #17457b;
display: inline-block;
font-family: "latoregular";
font-size: 22px;
line-height: 21px;
margin-top: 30px;
padding: 14px;
}
.navybluecurv {
  position: relative;
  text-align: center;
  margin-bottom: 6px;
  overflow: hidden; /* Prevents content from overflowing */
  padding: 20px;
}

.navybluecurv:before,
.navybluecurv:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: #063041;
  display: block;
}

.navybluecurv:before {
  left: 0;
  transform: skew(0deg, 6deg);
}

.navybluecurv:after {
  right: 0;
  transform: skew(0deg, -6deg);
}

/* Added fixed padding to prevent margin shifts */
.navybluecurv .panel-grid-cell {
  position: relative;
  z-index: 9;
  padding: 10px;
  box-sizing: border-box;
  margin: 0 10 0 10;
}
.navybluecurv h3 {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 40px;  font-family: "ralewaysemibold";
}
.navybluecurv p {
  color: #fff;
  font-family: latoregular;
  font-size: 22px;
}
.navybluecurv p:last-child {
  margin-bottom: 0;
line-height: 28px;
}

div.wpcf7-mail-sent-ok {
  border: 2px solid #f79c3f !important;
}

/*.sohowdoesitshows {
  position: relative;
  overflow: visible;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.sohowdoesitshows:before,
.sohowdoesitshows:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 45%;
  background: #054a6f;
  display: block;
}

.sohowdoesitshows:before {
  left: 0;
  transform: skew(0deg, 6deg);
}

.sohowdoesitshows:after {
  right: 0;
  transform: skew(0deg, -6deg);
}
*/

.howitworks > .panel-grid-cell {
  position: relative;
  z-index: 9;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0) url("/wp-content/uploads/2025/03/global_img.webp") no-repeat scroll 0 0;
background-size: contain;
background-repeat: no-repeat;
background-position: left bottom;
  background-position: left;
  color: #fff;
  box-sizing: border-box;
 }

.howitworks h5 , .testimonial_row h5 {
  font-family: "latomedium";
  font-size: 48px;
  text-align: left;
}
.howitworks hr {
  border-bottom: medium none navy;
  border-top: thin solid #fff;
  
}

.howitworks h4 {
  font-family: ralewaybold;
  font-size: 22px;
}
.howitworks p {
  font-family: ralewaymedium;
  font-size: 17px;
  line-height: 23px;
  color: #999999
}

.quickquote .textwidget {
  position: relative;
  z-index: 9;
  color: #fff;
  font-family: latolight;
  font-size: 56px;
  padding: 35px 56px;
  box-sizing: border-box;
  text-align: center;
}
.quickquote {
  position: relative;
  z-index: 99;
  margin-top: -80px;
}

.testimonial_row hr {
  border-bottom: thin solid #fff;
  border-top: medium none;
  margin: 0 auto;
  width: 63%;
}
.testimonial_row h5 {
  padding-left: 0px!important;
}
.sldr_title , .testimonial_by_wrap .testimonial_avatar  , .testimonial_site{display:none !important}
.testimonial_quote{background:none !important}
.testimonial_slider_set.testimonial_slider{max-width: 100% !important;
width: 100% !important;}
.testimonial_wrapper, .testimonial_quote {
  width: 100%!important;
  margin: 0 auto 40px!important;
}
.testimonial_slideri {
  background: white none repeat scroll 0 0!important;
  border: 4px solid #00539b!important;
  padding: 18px!important;  height:auto !important
}
.testimonial_quote{font-family:latoregular !important; font-size:21px!important; color:#17457b!important; text-align:center!important; line-height: 28px!important;	font-style: normal!important;} 
.testimonial_slider__default .testimonial_nav_arrow_wrap{display:block !important}
.testimonial_slider__default .testimonial_nav_arrow_wrap a{bottom:auto !important ; top: 59px !important;}
.testimonial_slider__default a.testimonial_prev {
  left: -22px !important;
}
.testimonial_by_wrap .testimonial_by {
  bottom: 16px!important;
  color: #f79c3f !important;
  font-family: latobold!important;
  font-size: 17px!important;
  left: auto!important;
  overflow: hidden!important;
  position: relative!important;
  text-align: center!important;
}
.testimonial_slideri {
  position: relative !important;
}
.testimonial_slider__default .testimonial_by_wrap{width:100% !important}
.testimonial_slider__default a.testimonial_next{right: -22px !important;}
.testimonial_slider__default .testimonial_nav{bottom: -2px !important;}
.testimonial_slider__default .testimonial_nav a {
  background: #f79c3f none repeat scroll 0 0 !important;
  border: none!important;
  border-radius: 100%!important;
  display: inline-block!important;
  margin: 0 5px 0 0!important;
  text-decoration: none!important;
}
.testimonial_slider__default .testimonial_nav a.selected{ background:#27aae1 !important}
.footer .logo_wrapper {
  opacity: 0.5;
}

.pricing_table .pricing_intro h4 , .page_title h4 { font-size: 48px;
margin-bottom: 30px;}
.pricing_table .pricing_intro h6{ font-size:36px; font-family:latoregular}
.pricing_table .widget-title , .pricing_common_class .widget-title{display:block; font-size:34.01px; font-family:latobold}
.pricing_table .widget_text , .pricing_common_class .widget_text {
  background: #2b98d4 none repeat scroll 0 0;
  padding: 0px;
}
.pricing_table .widget_text h3 , .pricing_common_class .widget_text h3{padding:18px}
.pricing_table_column  , .pricing_common_class{
  background: #434343 none repeat scroll 0 0;
  color: #fff;
  text-align: center;  
-webkit-box-shadow: rgb(0, 0, 0) 9px 10px 4px 0px;
-moz-box-shadow: rgb(0, 0, 0) 9px 10px 4px 0px;
box-shadow: rgb(0, 0, 0) 9px 10px 4px 0px;
}
.pricing_table .widget_text h3, .pricing_common_class .widget_text h3 {
  padding: 18px;
  
  overflow: hidden;
}
.pricing_table_column h4 {
  font-family: bebas_neueregular;
  font-size: 74px;
  font-weight: bold;
}
.pricing_table_column h5 , .pricing_common_class  h5{font-family:latobold; font-size:23.32px;}
.pricing_table_column img , .pricing_common_class img{
  margin:16px 0 12px;
}
.pricing_table .pricing_table_row .panel-grid-cell:last-child h4 {
  margin-bottom: 0;
}
.pricing_table_column h4 {
  margin-bottom: 21px;
}
.quote_reuest_row{margin-bottom: 6px;
margin-top: -42px;
position: relative;
text-align: center;}
.quote_reuest_row:before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 51%; background: #05496e; -webkit-transform: skew(0deg, 5deg); -moz-transform: skew(0deg, 5deg); -ms-transform: skew(0deg, 5deg); -o-transform: skew(0deg, 5deg); transform: skew(0deg, 5deg); display:block} 	

.quote_reuest_row:after { content: ''; position: absolute; top: 0; right: 0; height: 100%; width: 50%; background: #05496e; -webkit-transform: skew(0deg, -5deg); -moz-transform: skew(0deg, -5deg); -ms-transform: skew(0deg, -5deg); -o-transform: skew(0deg, -6deg); transform: skew(0deg, -5deg);  display:block}

.quote_reuest_row > .panel-grid-cell{position:relative; z-index:999}
.quote_reuest_row h4 {
  margin-bottom: 30px;
}
.quote_reuest_row .row {
  margin-bottom: 30px;
  text-align: left;
}
.quote_reuest_row h5 {
  color: #fff;
  font-family: latoregular;
  font-size: 36px;
  padding: 0 15px;
}
.quote_reuest_row input, .quote_reuest_row textarea {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  color: #999999;
  font-family: latoregular;
  font-size: 28px;
  height: 72px;
  padding: 15px;
  resize: none;
  width: 100%;
}
.quote_reuest_row hr {
  border-top: none;
  border-bottom: #999999 solid thin;
}
.quote_reuest_row .row p {
  margin-bottom: 0;
}
.form_term_condition {
  border: 6px solid #28bcee;
  color: #bcbec0;
  padding: 15px;
}
.form_term_condition h3 {
  color: #f89b3f;
  font-size: 36px;
  margin-bottom: 21px;
  font-family: latoregular;
}	
.quote_reuest_row .form_term_condition  p {
  margin-bottom: 15px;
  line-height: 20px;
}

.quote_reuest_row .wpcf7-form-control.wpcf7-submit {
  background: #2b98d4 none repeat scroll 0 0;
  float: left;
  font-size: 36px;
  height: auto;
  padding: 23px 60px;
  width: auto;
}
.poweredby {
  font-family: latoregular;
  font-size: 21px;
  margin-top: -39px;
  padding: 25px;
  position: relative;
}
.page_custom_menu ul li {
  float: none;
  list-style: outside none none;
  display: inline-block;
}
.page_custom_menu ul {
  text-align: center;
}
.page_custom_menu ul li a {
  color: #fff;
  display: block;
  padding: 5px 35px;
}
.page_custom_menu ul li.current-menu-item a , .page_custom_menu ul li:hover a{color:#333333}
.plus_div img {
  display: inline-block;
  float: none;
  margin: 0 0 -6px !important;
}
.plus_div_content {
  display: inline-block;
  line-height: 17px;
}
.plus_div {
  line-height: 13px;
  text-align: center;
}
.pricing_table .pricing_table_row .panel-grid-cell:last-child img {
  margin-bottom: 11px;
margin-top: 13px;
}
.pricing_table .pricing_table_row .panel-grid-cell:last-child h4 {
line-height: 62px;
margin-top: 35px;
}

.contact_page_form .row{width:100%; overflow:hidden; padding: 10px 0;}
.contact_page_form  .col-md-12{width:100%;}
.contact_page_form  .row input , .contact_page_form  .row textarea , .contact_page_form  .row select{background: #fff none repeat scroll 0 0;
border: medium none;
font-family: latoregular;
font-size: 28px;
padding: 12px 15px;
width: 100%;}
.contact_page_form  .col-md-6{width:50%; float:left}
.contact_page_form  .col-md-6:first-child{padding-right: 20px;}
.contact_page_form  .wpcf7-form-control.wpcf7-captchac.wpcf7-captcha-captcha-1 { background: #f2f4fa none repeat scroll 0 0;
border-left: medium solid #e7eaef;
float: right;
height: 56px;
margin-right: 2px;
margin-top: -58px;
position: relative;
width: auto;
z-index: 9999;}

.contact_page_form  .wpcf7-form input::-moz-placeholder , .wpcf7-form textarea::-moz-placeholder {
  opacity:1; color: #000 !important;
}
.page-id-2 .wpcf7-form textarea {
  height: 130px;
}
.page-id-13 .quote_reuest_row .contact_page_form  .wpcf7-form input::-moz-placeholder , .page-id-13  .quote_reuest_row .wpcf7-form textarea::-moz-placeholder , .page-id-2  .quote_reuest_row .wpcf7-form textarea::-moz-placeholder {
  opacity:1; color: #999999 !important;
}
.contact_page_form  .reset {
  background: #2e2e2e none repeat scroll 0 0 !important;
border: medium none!important;
color: #fff!important;
cursor: pointer!important;
float: left!important;
font-family: latoregular!important;
font-size: 18px!important;
margin-left: 10px!important;
padding: 14px 58px!important;
text-transform: uppercase!important;
width: auto!important;
}
.contact_page_form  .wpcf7-submit {
 background: #054a6f none repeat scroll 0 0!important;
border: medium none!important;
color: #fff!important;
cursor: pointer!important;
float: left!important;
font-family: latoregular!important;
font-size: 18px!important;
margin-left: 10px!important;
padding: 16px 58px!important;
text-transform: uppercase!important;
width: auto!important;
}

.contact_page_column h5 {
  font-family: latoregular;
  font-size: 34px;
  margin-bottom: 10px;
}
.contact_page_column p {
  line-height: 21px;
}
.contact_page_address {
  margin-top: -87px;
}

.contact_page_form{margin-bottom: 6px;
margin-top: -67px;
position: relative;
text-align: center;}
.contact_page_form:before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 51%; background: #318abd; -webkit-transform: skew(0deg, 5deg); -moz-transform: skew(0deg, 5deg); -ms-transform: skew(0deg, 5deg); -o-transform: skew(0deg, 5deg); transform: skew(0deg, 5deg); background-image:url(images/cloud.png); background-repeat:no-repeat; display:block } 	
.contact_page_form:after { content: ''; position: absolute; top: 0; right: 0; height: 100%; width: 50%; background: #318abd; -webkit-transform: skew(0deg, -5deg); -moz-transform: skew(0deg, -5deg); -ms-transform: skew(0deg, -5deg); -o-transform: skew(0deg, -6deg); transform: skew(0deg, -5deg);  display:block}

.contact_page_form .panel-grid-cell {
  position: relative;
  z-index: 9;
}
.contact_page_form_column {
  
  background-repeat: no-repeat;
  margin-top: 117px;
}
.contact_page_form_column::before {
  background-image: url("images/rocket.png");
  content: "";
  display: block;
  height: 282px;
  position: absolute;
  right: 0;
  top: -101px;
  width: 382px;
}
.contact_page_form_column h5{color: #fff;
font-family: latoregular;
font-size: 36px;
text-align: left;
margin-bottom: 18px;}
.page-id-14 .page_custom_menu , .page-id-16 .page_custom_menu {
  margin-top: -64px;
  position: relative;
  z-index: 9;
}
 .page-id-2 .page_custom_menu{margin-top: -40px;
  position: relative;
  z-index: 9;}

.quoterequest p {
  line-height: 25px;
  margin-bottom: 32px;
}

.quote_reuest_row h4 {
  color: #f89b3f;
  font-family: latobold;
  font-size: 36px;
  text-align: center;
}
.quote_reuest_row input[type="radio"] {
 float: left;
height: auto;
margin-top: 32px;
width: auto;
}
.quote_reuest_row span {
  overflow: hidden;
  width: 100%;
}
.quote_reuest_row span.wpcf7-list-item-label {
  color: #fff;
  font-size: 27px;
  line-height: 74px;
  margin-left: 11px;
}
.home_welcome_text h4 {
  font-size: 40px;
}
.navybluecurv hr {
  margin-bottom: 30px;
}
.quick_quote_menu a{color:#f79c3f}
.quickquote a {
	  color: #fff;
	  display: block;
	}
.testimonial_nav-fillup{display:none !important}
.wpcf7-response-output {
  clear: both;
  color: #fff;
  display: block;
  float: left;
  margin-left: 0;
  overflow: hidden;
}
.social_icons_footer li, .social_icons_footer2 li, .social_icons_footer3 li {
  float: left;
  list-style: outside none none;
}
.social_icons_footer li img , .social_icons_footer2 li img {
  margin-right: 25px;
}

.social_icons_footer3 li img {
  margin-right: 10px;
}
.social_icons_footer, .social_icons_footer2, .social_icons_footer3 {
  margin-bottom: 15px;
  margin-top: 15px;
  overflow: hidden;
  text-align: center;
}
/*
.masonry-brick .grid-sm-border {
  border: medium none;
  box-shadow: 5px 5px 8px -1px rgba(0, 0, 0, 0.4);
  padding: 0px;
}
.smblog_masonry_numcol .sm-grid-boxes-caption {
  padding: 15px;
}
.sm-list-inline.sm-grid-boxes-news {
  margin-bottom: 5px;
  margin-top: 0;
}
.sm-post-title{font-size:18px!important; font-family:latoregular!important;}
.sm-post-title a{color:#434343}
.sm-meta-part br , .sm-meta-part i{display:none}
.sm-meta-part a{color:#052843 !important; font-size:15px!important; font-family:latobold!important;}
.sm-grid-boxes-quote{font-size:15px!important; font-family:latoregular!important; color:#434343!important; line-height: 19px;}

.read_more_grid a {
  background: #2b98d5 none repeat scroll 0 0;
  color: #fff;
  display: block;
  font-family: bebas_neueregular;
  font-size: 24px;
  letter-spacing: 1px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}
.read_more_grid a:hover{ background:#f89b3f}
.button_blog {
    float: right;
    margin-top: 0px;
    margin-bottom: 60px;
}
.button_blog > a {

}

.button_blog > a {

background:#2c99d5;

  border-left: 1px solid #95cbea;
  border-right: 1px solid #95cbea;
  border-top: 2px solid #95cbea;
  color: #fff;
  display: block;
  padding: 13px 47px; font-family: bebas_neueregular; font-size: 24px;
}

.button_blog > a:hover{
background: #f89b3f;

border-left: 1px solid #ffad5b;
  border-right: 1px solid #ffad5b;
  border-top: 2px solid #ffad5b;}
  
  .post_content_image {
  float: left;
  margin-right: 25px;
  margin-bottom: 25px;
}
*/

/**********************Woocommerce************************/
/* WooCommerce Table Header */
table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table tr th span {
    font-weight: bold;
    color: #ffffff;
    border-bottom: 1px solid #4a6ea8;
    text-align: center;
}

/* WooCommerce Navigation */
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

nav.woocommerce-MyAccount-navigation ul li {
    display: inline-block;
    padding: 10px 40px !important;
}

nav.woocommerce-MyAccount-navigation ul li a {
    color: #ffffff !important;
    font-weight: bold;
}

/* WooCommerce Account Content */
.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: 100%;
    margin-bottom: 70px;
}

/* WooCommerce Orders Table */
table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table {
    width: 100%;
}

table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table tbody td {
    text-align: center;
    color: #ffffff;
}

/* -------------------- NEW: GLOBAL STYLING -------------------- */

/* All WooCommerce page text */
.woocommerce, .woocommerce-page {
    color: #ffffff;
    background-color: #063041;
}

/* Headings on WooCommerce pages */
.woocommerce h1, 
.woocommerce h2, 
.woocommerce h3, 
.woocommerce h4,
.woocommerce-page h1, 
.woocommerce-page h2, 
.woocommerce-page h3, 
.woocommerce-page h4 {
    color: #4a6ea8;
}

/* Links */
.woocommerce a, .woocommerce-page a {
    color: #f89b3f;
    text-align: left;
}

/* Form Labels and Placeholders */
.woocommerce label,
.woocommerce-page label {
    color: #ffffff;
}

.woocommerce input::placeholder,
.woocommerce-page input::placeholder {
    color: #cccccc;
}

/* Table Headers */
.woocommerce table th {
    color: #4a6ea8;
}

/* Table Body Text */
.woocommerce table td {
    color: #ffffff;
}

/* Buttons (Log in, Register, etc.) */
.woocommerce button.button,
.woocommerce a.button {
    color: #ffffff !important;
    background-color: #4a6ea8 !important;
}

/* .navybluecurv {
    margin-bottom: 30px !important;
    margin-left: -128px !important;
    margin-right: -128px !important;
    padding-left: 405px !important;
    padding-right: 405px !important;
} */
#pg-1323-4{
	height:0;
}
/**********************************************/

.post_content_area h1{color:#434343; font-size:24px; font-family:latobold; text-transform:uppercase; margin-bottom: 10px;}
.post_content_area h2{color:#052843 ; font-family:latobold ; font-size:21px; margin-bottom:30px;}
.post_content_area p {
  line-height: 20px;
}
.post_content_area p strong{font-weight:bold}
.single-post .content_area {
  padding: 25px 0;
}
.page-id-562 .poweredby {display:none !important}
#pg-990-1 p{
	line-height :20px;
}
.buy_now_text{
	text-align: center;
	padding: 30px 0px 0px;
}
.submit-quote-btn h2 a{
	font-size: 32px;
}
.u_will_be{
	position: relative;
    margin-top: -80px;
	z-index:99999;
	border-bottom: 4px solid #06486f;
}
#pg-990-3{
	margin-bottom :0px !important;
}
.u_will_be h2{
	font-size: 32px;
}
.buy-col-section{
	height: 215px;
}
#timeCounterHolder{
   	width: 100px;
    margin: 50px auto 20px;
    height: 100px;
    border: 2px solid #06496e;
    border-radius: 50%;
}
#timeCounterHolder #row,
#displayTimer{
    color:#f79b3e;
    font-size: 50px;
    text-align:center;
	margin-top: 20px;
}
.u_will_be p{
	margin-top: 30px;
}
.u_will_be p a{
	margin: 0px 5px;
}
.u_will_be .return-btn{
	background-color:#063041;
	color:#fff;
	padding: 10px;
	display:inline-block;
	width: 130px;
}

.u_will_be .go-btn{
	background-color:#f79b3e;
	color:#fff;
	padding: 10px;
	display:inline-block;
	width: 130px;
}

.power-row{
	z-index: 9999;
    position: relative;
	margin-top: -60px;
}
.power-back-row{
	padding: 0px !important;
	background:#989898 !important;
}
@media only screen and (min-width: 1500px){
	.quote_reuest_row::before , .contact_page_form::before , .sohowdoesitshows::before{transform: skew(0deg, 3deg);}
	.quote_reuest_row::after , .contact_page_form::after , .sohowdoesitshows::after {transform: skew(0deg, -3deg);}
	.navybluecurv::before  {transform: skew(0deg, 3deg);}
	.navybluecurv::after {transform: skew(0deg, -3deg);}
	.quickquote{margin-top: -90px;}
}
@media only screen and (max-width: 1280px){
	.container{width: 900px;}
	.menu_wrapper ul li a{padding: 12px 26px;}
	.page-id-1323 .navybluecurv {
		margin-bottom: 30px !important;
		margin-left: -190px !important;
		margin-right: -190px !important;
		padding-left: 205px !important;
		padding-right: 205px !important;
	}
	#pg-1323-4 {
		height: 0;
	}
}
@media only screen and (max-width: 1024px){
	.page-id-1323 .navybluecurv {
		margin-bottom: 30px !important;
		margin-left: -6.9% !important;
		margin-right: -6.9% !important;
		padding-left: 105px !important;
		padding-right: 105px !important;
	}
}
@media only screen and (max-width: 980px){
	.page-id-1323 .navybluecurv {
		margin-bottom: 30px !important;
		margin-left: -4.5% !important;
		margin-right: -4.5% !important;
		padding-left: 105px !important;
		padding-right: 105px !important;
	}
}
@media only screen and (max-width: 979px){
	.container{width:750px;}
	.menu_wrapper ul li a {	  
	  font-size: 15px;
	  padding: 7px 18px;
	}
	.header{height: 560px;}
	.copyright{font-size: 13px;}
	.menu_wrapper ul li{
		padding: 10px 0;
	}	.top-text{margin:30px auto 0;}	.top-text p{font-size:14px;}	.menu_wrapper{margin-top: 50px;}
}
@media only screen and (max-width: 799px){
		
	
}
@media screen and (min-width:768px)
{
	#header_menu , #mobile-menu{display:none}
}
@media screen and (max-width:768px)
{
	.page-id-1323 .navybluecurv {
		margin-bottom: 30px !important;
		margin-left: -1.2% !important;
		margin-right: -1.2% !important;
		padding-left: 105px !important;
		padding-right: 105px !important;
	}
}
@media only screen and (max-width: 767px){
	.woocommerce-form.woocommerce-form-track-order.track_order p.form-row.form-row-first, .woocommerce-form.woocommerce-form-track-order.track_order p.form-row.form-row-last {
		width: 100%;
		float: none;
	}
	.quote_reuest_row .wpcf7-form-control.wpcf7-submit{font-size: 16px; padding: 14px 26px;}
	.page_custom_menu ul li a {
	  color: #fff;
	  display: block;
	  padding: 10px 15px;
	}
	.page_custom_menu ul {
	  text-align: left;
	}	.top-text{margin: 20px auto 0; }	.top-text p{margin-bottom:10px; font-size:12px;}	.home_welcome_text{padding: 50px 0;}	
	.home_welcome_text h4{font-size: 36px;}	.home_welcome_text p{font-size: 18px; line-height: 30px;}
	.quote_reuest_row h5{font-size: 20px;}	.home_welcome_text a{font-size:18px;}
	.quote_reuest_row input, .quote_reuest_row textarea{font-size: 20px; height: 50px;}
	.quote_reuest_row span.wpcf7-list-item-label {
	  color: #fff;
	  font-size: 18px;
	  line-height: 50px;
	  margin-left: 11px;
	}
	.quote_reuest_row input[type="radio"]{margin-top: 17px;}
	
	#header_menu { display:block}
	.menu_wrapper{ display:none;}
	#nav-cover {   clear: none; float: left; height: auto; margin-top: 19px; overflow: visible; position: relative; width: auto;}
	
.button-cover {
	background: #f79b3f;
	border: none;
	color: #ffffff;
	font-family: 'Raleway', sans-serif;
	cursor: pointer;
	font-size: 15px;
	padding: 8px 20px;
	border-radius: 999px;
	position: fixed;
	top: 15px;
	left: 15px;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.button-cover label {
	float: left;
	line-height: 24px;
	text-transform: uppercase;
}

.button-cover span {
	float: left;
	margin-top: 2px;
	text-transform: capitalize;
	line-height: 20px;
}

.button-cover button,
.button-cover button:hover {
	background: url("images/nav-icon2.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
	border: none;
	cursor: pointer;
	height: 24px !important;
	width: 20px;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}

#side-bar-box .side-bar-box-inner button {
	height: 45px;
}

#mobile-menu {
	background: #565656;
	height: 100vh;
	margin: 0 auto;
	position: fixed;
	left: -100%;
	top: 0;
	width: 320px;
	z-index: 9999;
	visibility: visible;
	transition: all 0.5s ease-out 0s;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	overflow-y: auto; /* Allows scrolling inside menu */
}

#mobile-menu.active_menu {
	left: 0;
	transition: all 0.5s ease-out 0s;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
}

#menu2 {
	clear: both;
	max-height: calc(100vh - 60px);
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	clear: both;
	width: 100%;
}

#menu2 ul {
	padding: 0;
	margin: 0;
}

#menu2 ul li {
	border-top: 1px #065066;
	list-style: none;
	width: 100%;
	float: none;
}

#menu2 ul li.current-menu-item a {
	color: #f89b3f;
}

#menu2 ul li.current-menu-item ul li a {
	display: block;
}

#menu2 ul li a {
	color: #fff;
	display: block;
	font-size: 14px;
	padding: 12px 16px;
	text-decoration: none;
	text-transform: capitalize;
	transition: background 0.3s ease, color 0.3s ease;
}

#menu2 ul li a:hover {
	background: #065066;
	color: #f89b3f;
}

#menu2 ul li ul {
	width: auto;
	margin-top: 0 !important;
}

#menu2 ul li ul li a {
	padding-left: 24px;
}

#menu2 ul li ul li ul li a {
	padding-left: 36px;
}

#menu2 ul li ul li ul li ul li a {
	padding-left: 48px;
}

.mobile-menu-close {
	background: transparent;
	color: #ffffff;
	cursor: pointer;
	float: right;
	font-family: 'Raleway', sans-serif;
	font-size: 22px;
	margin: 15px;
	padding: 0;
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	border-radius: 50%;
	transition: background 0.3s ease;
}

	.navybluecurv h3{ font-size: 28px; line-height: 38px;}
	.navybluecurv p{font-size: 20px;}
	
	.header #header_menu {float: none;margin: 0 auto 26px;position: relative;width: 100%;}
	.header.headersmall #header_menu {  float: right;   margin: 24px auto 0;   position: relative;   width: auto; }

	.container {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto; /* optional: center the container */
}
	.custom-logo-link{margin-top: 15px; padding: 12px;}
	.custom-logo { height: auto; width: 110px; }
	.header { height: 360px;}
	.sohowdoesitshows > .panel-grid-cell{background: rgba(0, 0, 0, 0) url("/wp-content/uploads/2017/05/global_img.png") no-repeat scroll 0 0 / auto 228px;}
	.sohowdoesitshows h5, .testimonial_row h5 {
	  font-family: "latomedium";
	  font-size: 22px;
	  padding: 0 0 15px 30px;
	  text-align: left;
	}
	.quickquote .textwidget{padding: 14px 0; font-size: 25px;}
	.footer .widget_text {
	  float: none;
	  padding: 0;
	  text-align: left;
	  width: 100%;
	}
	.footer .logo_wrapper {
	  display: block;
	  text-align: left;
	  margin: 25px 0 0 0;
	}
	.copyright {
	  margin-bottom: 20px;
	  margin-top: 20px;
	  text-align: left;
	}
	td {
	  line-height: 22px;
	  padding: 0 9px 12px 0;
	  vertical-align: top;
	}
	.stepswise img {
	  height: auto !important;
	  width: 92px!important;
	}
	.stepswise p , .stepswise h4 , .quickquote .textwidget , .sohowdoesitshows h5, .testimonial_row h5{text-align:left}
	.testimonial_row hr{width: 100%;}
	.testimonial_slider__default .testimonial_quote{padding-left: 0 !important;}
	.pricing_table .pricing_intro h4, .page_title h4 {
	  font-size: 26px;
	  line-height: 31px;
	  margin-bottom: 1px;
	}
	.contact_page_form .row textarea {
	  height: 118px;
	}
	.contact_page_form .row input, .contact_page_form .row textarea, .contact_page_form .row select{font-size: 18px;}
	.contact_page_form_column::before {
		  background-image: url("images/rocket.png");
		  content: "";
		  display: block;
		  height: 220px;
		  position: absolute;
		  right: 0;
		  top: -18px;
		  width: 60%;
		  background-size: 100% auto;
		  background-repeat: no-repeat;
		}
		.contact_page_form::before{background: #318abd url("images/cloud.png") no-repeat scroll 0 0 / 63% auto;}
		.contact_page_form .reset , .contact_page_form .wpcf7-submit {margin-left: 0 !important;width: 100% !important; margin-bottom: 10px;}
		.button_blog {
		 
		  margin-top: 24px;
		}
		.sm-grid .grid-sm-boxes-in{width:100% !important}
}/* For Firefox */input[type='number'] {    -moz-appearance:textfield;}/* Webkit browsers like Safari and Chrome */input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {    -webkit-appearance: none;    margin: 0;}

.post b { font-weight:bold;
}

/*div.grid-sm-boxes-in:nth-child(4n+1) {clear: both;}*/

.estimate-li {
    line-height: 5px!important;
}

@media only screen and (max-width: 620px){
    .estimate-li {
        line-height: 25px!important;
    }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact .contact-item a {
  text-decoration: underline;
  color: #fff;
}

.footer-contact .social-icons {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 0.5rem;
}

.footer-contact .social-icons li img {
  width: 30px;
  height: 30px;
}

.footer-contact .payment-logo img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5rem;
}

/* Block 2: Logo + legal links */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  text-align: center;
}

/* Bordered container matching 140×157 ratio */
.logo-container {
  box-sizing: border-box;
  width: 140px;
  height: 157px;
  padding: 8px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

/* Ensure the image scales and stays centered */
.footer-logo-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* Copyright styling */
.footer-copy {
  margin: 0;
  font-size: 0.9rem;
}

/* Legal links in one row */
.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-legal-link:hover {
  text-decoration: underline;
}

/* Block 3: Contact Form 7 in footer, no backgrounds */
.footer-contact-form {
  padding: 1.5rem;
  background: none;      /* removed dark grey */
  border-radius: 8px;    /* optional—remove if you don’t want rounded corners */
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}

.footer-contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* inputs and textarea keep default bg, or make transparent too: */
.footer-contact-form .wpcf7-form-control {
  width: 100%;
  padding: 0 1rem 0.75rem;
  border: 1px solid #444;
  border-radius: 4px;
  background: white;
  color: black;
  font-size: 0.95rem;
}

/* focus outline stays visible */
.footer-contact-form .wpcf7-form-control:focus {
  outline: none;
  border-color: #f79b3f;
}

/* Submit button can keep its orange fill—or switch to outline if you like: */
.footer-contact-form input.wpcf7-submit {
  align-self: flex-end;
  background: #f79b3f;   /* keep or change to ‘none’ for transparent */
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-contact-form input.wpcf7-submit:hover {
  background: #e68a28;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5) url('../images/ajax-loader-eclipse.gif') no-repeat center center;
    display: none;
}

.site-announcement {
  background-color: #f79b3f;     /* SSS Orange */
  color: #000;                   /* black text */
  text-align: center;
  font-weight: bold;
  padding: 0.5rem 1rem;          /* adjust vertical/horizontal padding */
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  z-index: 9999;                 /* sit on top if you have sticky headers */
}
body.admin-bar .site-announcement {
  top: 32px;                     /* if you’re logged in and have the WP admin bar */
  position: relative;
}

/* ──────────────────────────────────────────────────────────────────────
   Page-Specific & Override Styles (migrated from Additional CSS)
   Paste this at the end of your child theme’s style.css
   ────────────────────────────────────────────────────────────────────── */

#pg-1326-1 {
    padding: 40px 5px 40px 5px;
}

#pg-1326-2 { 
    margin-bottom: 0px !important;
}

.home_welcome_text3 {
    text-align: left;
    line-height: 1.4em;
}

.home_welcome_text3 td {
    padding: 15px 0 15px 0 !important;
    padding-left: 0px !important;
}

.woocommerce-column__title {
    text-align: center;
    background-color: #17457b;
    color: #fff;
    font-size: 16px;
    padding: 10px 50px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.address {
    margin-top: 20px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    color: #17457b !important;
}

.my-account-header {
    color: #f89b3f;
}

/* Remove any unintended min-height/hidden overflow on grid containers */
#blog_posts .sm-grid,
#blog_faq2 .sm-grid {
    min-height: 0 !important;
    overflow: visible !important;
}

/* Experimental: Enable Firefox native masonry (no harm in trying) */
@supports (grid-template-rows: masonry) {
    #blog_posts .sm-grid {
        grid-template-rows: masonry;
    }
}

/* FAQ responsive fallback */
@media (max-width: 1024px) {
    #blog_faq2 .sm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #blog_faq2 .sm-grid {
        grid-template-columns: 1fr;
    }
}

/* Tile structure shared by both sections */
#blog_faq2 .grid-sm-boxes-in,
#blog_posts .grid-sm-boxes-in {
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

/* Full-width wrapper centering */
.site,
.site-content,
#page {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1200px;
    margin: 0 auto !important;
}

/* ─── Homepage CTA Widget (white background) ─── */
.homepage_cta {
  background-color: #ffffff;         /* white card */
  color: #0b3d5d;                    /* navy text */
  text-align: center;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

/* Headings */
.homepage_cta h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: #0b3d5d;
}
.homepage_cta h3 {
  font-size: 1.25rem;
  margin: 1em 0 0.5em;
  font-weight: 600;
  color: #0b3d5d;
}

/* Strong/emphasis accents */
.homepage_cta strong {
  color: #f49225;                    /* SSS orange */
}

/* Bare text paragraphs (your unwrapped lines) */
.homepage_cta p {
  margin: 0.75em 0;
  font-size: 1rem;
}

/* List styling */
.homepage_cta ul {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
}
/* ─── Inline Checkmarks ─── */
.homepage_cta ul li {
  list-style: none;
  padding-left: 0;           /* remove that extra indent */
  margin-bottom: 0.75em;
}

.homepage_cta ul li:before {
  content: '✔';
  display: inline-block;     /* flow with the text */
  margin-right: 0.5em;       /* spacing between ✔ and text */
  vertical-align: middle;    /* keep it aligned with the text */
  color: #f49225;            /* SSS orange accent */
  position: static;          /* ensure no absolute positioning */
}

/* CTA button */
.homepage_cta .cta-button {
  display: inline-block;
  background-color: #f49225;         /* SSS orange */
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-top: 1em;
}
.homepage_cta .cta-button:hover {
  background-color: #d47a1f;         /* darker orange on hover */
}