@import url("reset.css");

@font-face {
    font-family: 'AirstreamNF';
    src: url('AirstreamNF.ttf');
    font-weight: normal;
    font-style: normal;
}

 

:root {
    --green-dark:   #1a3c2e;
    --green-mid:    #2d6a4f;
    --green-light:  #52b788;
    --gold:         #c9a84c;
    --gold-light:   #e8c96e;
    --cream:        #f8f5ee;
    --white:        #ffffff;
    --text-dark:    #1c1c1c;
    --text-muted:   #6b7280;
    --error-bg:     #fef2f2;
    --error-border: #fca5a5;
    --error-text:   #991b1b;
    --success-bg:   #f0fdf4;
    --success-border:#86efac;
    --success-text: #166534;
    --radius:       10px;
    --shadow:       0 4px 24px rgba(0,0,0,0.10);
    --shadow-hover: 0 8px 36px rgba(0,0,0,0.16);
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
/* ══════════════════════════════════════
   PAGE WRAPPER — two columns on wide screens
══════════════════════════════════════ */
.forms-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-size: 16px !important;
}
@media (max-width: 700px) {
    .forms-wrapper { grid-template-columns: 1fr; gap: 32px; }
}

/* ══════════════════════════════════════
   CARD
══════════════════════════════════════ */
.form-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 40px 36px 44px;
    position: relative;
    overflow: hidden;
}

/* decorative top bar */
.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-mid), var(--gold));
}

@media (max-width: 480px) {
    .form-card { padding: 32px 20px 36px; }
}

/* ══════════════════════════════════════
   HEADINGS
══════════════════════════════════════ */
.form-card h2 {
    font-family: 'arial', serif;
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 6px;
    line-height: 1.2;
}

.form-card .form-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 300;
}

/* ══════════════════════════════════════
   MESSAGES
══════════════════════════════════════ */
.form-msg {
    border-radius: var(--radius);
    padding: 13px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-msg::before { font-size: 1.1rem; }
.form-msg.error {
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error-text);
}
.form-msg.error::before { content: '⚠'; }
.form-msg.success {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success-text);
}
.form-msg.success::before { content: '✓'; }

/* ══════════════════════════════════════
   FORM GROUPS
══════════════════════════════════════ */
.needhelp{
	width:14%;
	float:left;
}
.needhelpsend{
	width:10%;
	float:left;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #d1d5db;
    border-radius: var(--radius);
    font-family: 'Lato', sans-serif;
   font-size: 16px !important;
    color: var(--text-dark);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-size: 16px !important;
    letter-spacing: 0.03em;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option { color: var(--text-dark); }

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* ══════════════════════════════════════
   CAPTCHA ROW
══════════════════════════════════════ */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.captcha-box {
    background: var(--green-dark);
    color: var(--gold-light);
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 10px 20px;
    border-radius: var(--radius);
    user-select: none;
    min-width: 100px;
    text-align: center;
    /* subtle noise / strikethrough lines to make it harder to OCR */
    text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
    border: 0px solid var(--green-mid);
    flex-shrink: 0;
}

.captcha-reload {
    background: #000;
    border: 1.5px solid #d1d5db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s, color 0.2s, transform 0.3s;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.captcha-reload:hover {
    background: var(--green-mid);
    color: var(--white);
    border-color: var(--green-mid);
    transform: rotate(180deg);
}

/* ══════════════════════════════════════
   SUBMIT BUTTON
══════════════════════════════════════ */
.btn-send {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 0px;
    background: #000;
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 3px 12px rgba(45,106,79,0.35);
}

.btn-send:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(45,106,79,0.40);
}

.btn-send:active {
    transform: translateY(0);
    opacity: 1;
}



body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color:#333;
}
 #sliderbottom {
float: left;
height: auto;
width: 100%;}

p {
padding: 10px;
}

.startstestimonial
{
	text-align:center;
}


.footerleft ul{
line-height:40px;
}

.fotterboxlogo
{
float:left;
width:20%;
}
.fotterbox
{
float:left;
width:30%;
}
.logofooter {
  text-align: right;
  margin-top: 65px;
  margin-left: 0px;
}

.footeradresstitel2 {
  text-transform: uppercase;
  color: #fff;
  font-size: 24px;
  font-family: 'Oswald',sans-serif;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 28px;
  margin-top: 26px;
}

.contacttile {
  text-transform: uppercase;
  color: #fff;
  font-size: 24px;
  font-family: 'Oswald',sans-serif;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 28px;
  margin-top: 26px;
}


    .special-button {
      background-color: #e7f8ff;       
      border: 4px solid #057a9b;        
      color: red;                      
      font-size: 14px;                 
      font-weight: bold;               
      padding: 6px 14px;              
      border-radius: 5px;             
      display: inline-block;
      text-align: center;margin-top: 10px;
      text-decoration: none;
      font-family: Arial, sans-serif;   
    }


.titlered
{
color: red;
font-style: italic;
text-transform: none;
font-size: 31px;
font-family: 'Oswald', sans-serif;
line-height: 1.1; 
font-weight: bold; 
margin-top: 30px;
margin-bottom: 20px;
}
.footeradresstitel
{font: 400 36px 'Arial',sans-serif;
text-transform: uppercase;
color: #fff;}
.footwecan {
  font-size: 17px;
  font-family: arial;
  font-style: italic;
  color: #fff;
  margin-top: 9px;
}
.saltfreeimg
{
width:100%;
height:330px;
}

.saltfreetitle {
  font-size: 33px;
  font-family: 'Oswald', sans-serif;
    color: #1a8cff;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 7px;  font-style: italic;

}

.saltfreetitle2 {
  font-size: 22px;
  font-family: 'Oswald', sans-serif;
  line-height: 1.1;
  color: #1a8cff;
  font-style: italic;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 7px;
}


.saltfreetitle3 {
  font-size: 30px;
  font-family: 'Oswald', sans-serif;
  color: #000;
  font-style: italic; font-weight: bold;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 7px;
}



.saltfreedescr {
  font-size: 16px;
  font-family: 'Oswald', sans-serif;   
  color: #1a8cff;  font-style: italic;

   line-height:30px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 7px;
}

#wrapper {
width: 100%; 
margin: 0 auto;
}

#needhelpimg
{
display:block;
}
.needhelpimg
{
display:none !important;
}

.clearboth
{
clear:both;
}

.formcalldisplay
{
display:block !important;
}
#formcalltoday
{
display:none;
color: #6ca3b8;
font-weight: 100;
font-size: 40px;
line-height: 44px;
text-align: center;
font-family: 'Oswald',sans-serif;
text-transform: uppercase;
padding-bottom: 14px;
}

.form-phone
{
color: #fff;
font-weight: bold;
font-family: 'Oswald',sans-serif;
font-size: 40px;
line-height: 17px;
margin-top:10px;
}

.open-hours {
  color: red;
  font-weight: bold;
  font-size: 36px; 
  margin-top:33px; margin-bottom:33px;
}


.contactext {
   
  font-weight: bold;
  font-size: 18px; 
  margin-top:20px;
}


#header {
float: left;
height: 155px;
width: 100%;
/* background: url("images/bghead.png") repeat; */
font-family:'Oswald';
background-color:#28627a;
}

#navigation {
float: left;
height: 45px;
width: 100%;
background: #202020;
}
#banner {
float: left;
height: auto;
width: 100%;
background: url("images/bannerbg.jpg") repeat;
font-family:'Oswald';
}

#contactbanner {
float: left;
height: auto;
width: 100%;
background: url("images/Water-Heaters-for-Sale2.png") no-repeat center center;
}

.banner
{
height: auto;
width: 100%;
}
.navbar-fixed {
top: 0;
z-index: 100;
position: fixed;
width: 100%;
}

#needhelp
{
float: left;
height: auto;
width: 100%;
padding-bottom:15px;
background:#245c73;
font-family:'Oswald';
}
#bbbangiecenter {
    margin: 0 auto;
    width: 70%;
 
}

.dbl-divider {
    margin: 30px 0;
    height: 6px;
    border-top: 1px solid rgba(0,0,0,.18);
    border-bottom: 1px solid rgba(0,0,0,.18);
    width: 100%;
}


.row {
    margin-right: -15px;
    margin-left: 15px;
}
.col-sm-3 {
    width: 21% !important;
}
.col-md-offset-2 {
    margin-left: 0% !important;
}
.col-md-8
{ 
width: 806px;
margin: 0 auto;
position: relative;
height: 367px;
}
/*
.col-md-8 {
    width: 83% !important; 
}*/

.col-md-8 {
width: 60%  !important; 
background-image: url(images/slide-back.png);
background-repeat: no-repeat;
background-size: contain;
}

.OurCustomerstitle
{
text-align: center;
font-size: 4.1em;
color: #212121;
line-height: 60px;
margin-top: 10px;
font-family: 'AirstreamNF', cursive;
text-transform: none;
}

.OurCustomerstitle2 {
    text-align: center;
    font-size: 1.7em;
	font-family:'hp simplified light';
    text-transform: uppercase;
    font-weight: 100;
    color: #212121;
}

#bbb-angie
{
float: left;
height: 200px;
width: 100%;
padding-bottom:15px;
margin-top:0px;
background: url("images/bbbanbg.jpg") repeat;
font-family:'Oswald';
}
#bbb-angie2
{
float: left;
height: auto;
width: 100%; 
margin-top:0px;
}
.bbblogo
{
float:left;
text-align:center;
width:33.3%;
margin-top: 50px;
}

#bottom-stripe-wave
{
float: left;
width: 100%;
padding-top:30px;padding-bottom:30px;
background-image: url(images/bottom-stripe-wave.png);
}
.bottombtn
{
float:left;
width:10%;
}
.bottombtnimg
{
width:125px;
height:auto;
text-align:center;
}

#scrolling-testimonial
{
float: left;
width: 100%;
padding-top:30px;padding-bottom:30px;
background-image: url(images/Indianapolis-Weilhammer-Plumbing-Reviews.png); 
}


#contentliquid {
float: left;
width: 100%;
}

#content {
margin:0 auto;
width: 80%;
}
#contentrecentblog {
margin:0 auto;
width: 90%;
}

#contenthead {
margin:0 auto;
width: 94%;
}


#contentfooter{
margin:0 auto;
width: 97%;
}



.logoleft
{
float:left;
width:35%;
}
.header24hrs
{
float:left;
width:39%;
text-align: left;
}
.headphone
{
float:left;
width:26%;
}

.24hrs
{
width: auto;
height: 95px;
margin-top: -24px;
vertical-align: middle;
}
.logoheadermobile
{
margin-top:5px; 
color: #fff;
font-size: 15px;
text-align:left;
font-family:Oswald;
text-transform: uppercase;
}
.solobtn
{
width:175px; height:auto;
}


.logo
{
margin-top: 8px;
line-height: 48px;
color: #fff;
font-size: 39px;
}

.servicetop
{
width: auto;
height: 130px;
margin-top: 10px;
vertical-align: middle;
}


.phone
{
color: #fff;
text-align: right;
line-height: 49px;
text-decoration: none;
font-family: 'Oswald',sans-serif;
font-size: 41px;
margin-top: 8px;
margin-bottom: 11px;
}

.freeestimatetop {
font-size: 15px;
font-style: italic;
font-family: 'Lato', sans-serif;
font-weight: 700;
text-transform: uppercase;
color: #fff;
text-align: right;
}

.footerformbox {
    background-color: #363636;
    padding: 0px;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    font-family: 'Oswald',sans-serif;
    margin-top: 0px;
    margin-bottom: 30px;
}
.foot-social {
    text-align: center;
    margin-top: -24px;
    background-color: #255d75;
    padding: 10px 29px 5px;
    float: left;
}
.follow {
    float: left;
    font: 700 1em/20px 'Lato', sans-serif;
    color: #fff;
    text-transform: uppercase;
    margin: 6px 17px 0 0;
}
.social-wrap {
    float: left;
}
ul.social-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.triangle {
    width: 0;
    height: 0;
    border-right: 0px solid transparent;
    border-left: 11px solid transparent;
    border-bottom: 24px solid #194b61;
    position: absolute;
    top: -24px;
    left: 4px;
}



#footermenu {
height: auto;
width: 100%;
background: #4d4d4d;
clear: both;
float: left;
padding-top: 19px;
padding-bottom: 19px;

}
#footer {
    height: auto;
    width: 100%;
    background: #363636;
    clear: both;
	padding-bottom: 8px;
}

#recentblog
{
height: auto;
width: 100%;
float:left;
background: rgba(255, 255, 255) url("images/Weilhammer-Plumbing-Company-Indianapolis-Indiana.png");
border-bottom: 40px solid #255d75;
background-repeat: repeat-x;
}

.blogboxborder
{
margin-top: 0px !important;
border: 15px solid #255e76;
height: auto;
width: 100%;
margin-left: 0px;
}

.blogbox
{
border-radius:45px; 
margin-top: 65px;
}
.blogboxgreycenter
{
border-radius: 32px;
padding: 10px;
height: 420px;
background: rgba(210, 210, 210, 0.7);
border: 10px solid #fff;
}
.blogboxgrey
{
 background: rgba(151, 151, 151, 0.7);
 border-radius:45px;
 border: 10px solid #fff;
 padding:10px;height:300px; 
}

.servicetitle {
    font-size: 37px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    color: #255e76;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 20px;
}
.servicetitle2 {
font-size: 26px;
font-family: 'Oswald', sans-serif;
font-weight: 100;
line-height: 1.1;
color: #255e76;
margin-top: 10px;
margin-bottom: 20px;
}

.buybox
{
border-radius:40px;
background-color:#eef2f9;
padding:20px;
font-style:italic;
font-size:16px;
margin-top:30px;
padding-bottom: 40px;
line-height:24px;

}
.faqsquestions
{
 font-family: 'Oswald',sans-serif;
font-size:20px;
font-style:italic;
font-weight:100;
margin-top:10px;
line-height:31px;
margin-bottom:10px;
text-align:left;
}

.faqsquestion
{
 font-family: 'Oswald',sans-serif;
font-size:20px; 
font-weight:bold;
margin-top:30px;
margin-bottom:0px;
text-align:left;
}
.Licensecon
{
margin-top: 35px;
margin-left: 43px;
font-family: 'Oswald',sans-serif;
font-size: 22px;
}
.googleratings
{
width: 306px;
height: auto;
border: 1px solid #e8e8e8;
border-radius: 10px;
}

.contactphone {
  font-family: 'Oswald',sans-serif;
  font-size: 32px;
  margin-top: 33px;
  color: #000;
  line-height: 43px;
}

.contactphone span{
color:#255e76;
}
.contactadd
{
font-family: 'Oswald',sans-serif;
font-size: 22px;
margin-top: 35px;
margin-bottom: 30px;
line-height: 35px;
float: left;
width: 50%;
}


.contactopen
{
font-family: 'Oswald',sans-serif;
font-size: 22px;
margin-top: 35px;
margin-bottom: 30px;
line-height: 35px;
float: left;
width: 25%;

margin-left: 25%;
}

.blogtitle
{
 font-family: 'Oswald',sans-serif;
font-size:18px;
margin-top:20px;
margin-bottom:20px;
text-align:center;
}
.PlumbingServicesbox
{
float:left;
width:33.3%;
}

.PlumbingServicesboxleft
{
padding-left:2%;
}

.PlumbingServicesboxcenter
{
padding-left:6%;
}
.PlumbingServicesboxright
{
padding-left:6%;
}

.PlumbingServicewatersofsul
{
font-size: 16px !important; 
 
}

.waterleaksul
{
font-size: 17px;
color: #4e4d50;
line-height: 32px;
list-style-image: url("images/li.png");
text-align: left;
list-style-position: inside;
margin-left: 120px;
}
.waterleaksulright
{
font-size: 17px;
color: #4e4d50;
line-height: 32px;
list-style-image: url("images/li.png");
text-align: left;
list-style-position: inside;
margin-left:134px;
}
 
.AreasWeServeul
{
font-size: 17px;
color: #4e4d50;
line-height: 30px;
list-style-image: url("images/li.png");
text-align: left;
list-style-position: inside; 
margin-left: 139px;
}

.PlumbingServicesul
{
font-size: 17px;
color: #4e4d50;
line-height: 30px;
list-style-image: url("images/li.png");
text-align: left;
list-style-position: inside; 
margin-left: 50px;
margin-bottom: 36px;
}
.cityServicesTitle
{
color: #0066cc;
font-size: 32px;
font-family: 'Oswald', cursive;
text-transform: none;
text-align: center;
line-height: 22px;
margin-top: 44px;
margin-bottom: 36px;
}
.ServicesAreaTitle
{
    color: #255e76;
    font-size: 41px;
    font-family: 'Oswald', cursive;
    text-transform: none;
    text-align: center;
    line-height: 22px;
    margin-top: 40px;
    margin-bottom: 33px;
}

.PlumbingServicesTitle
{
    color: #255e76;
    font-size: 35px;
    font-family: 'Oswald', cursive;
    text-transform: none;
    text-align: center;
    line-height: 22px;
    margin-top: 40px;
    margin-bottom: 25px;
}

.PlumbingServicesTitleoffer
{
  color: #255e76;
font-size: 24px;
font-family: 'Oswald', cursive;
text-transform: none;
text-align: center;
line-height: 22px;
margin-top: 23px;
margin-bottom: 25px;
}

.blogdate
{
text-align:center;
font-family: 'Oswald',sans-serif;
font-size:15px;
margin-top:17px;
text-align:center;
margin-bottom:17px;
}

.blogdescr
{
font-size: 15px;
margin-top: 10px;
text-align: center;
margin-bottom: 10px;
line-height: 31px;
font-weight: 100;
}

.blogdescrcenter
{
padding-left: 4px;
padding-right: 4px;
font-size: 15px;
margin-top: 10px;
text-align: center;
margin-bottom: 10px;
line-height: 23px;
font-weight: 100;
}


/*Main Form Wrapper*/
.vasplus_programming_blog_wrapper 
{
	width:100%;
	margin: 0 auto;
	-webkit-border-radius: 15px;
	text-align:center; 
	font-size:11px; 
}

/*Input and Textare Field Style*/

.vpb_input_fields {
color:#000000;
width:96%;box-shadow: 0 0 6px #666666;-moz-box-shadow: 0 0 6px #666666;-webkit-box-shadow: 0 0 6px #666666;  font-size:12px; font-weight:normal;height:40px; padding:3px;padding-left:10px;padding-right:10px; padding-top:2px;border: 0px solid  #F1F1F1;outline:none;border-radius: 2px;-moz-border-radius: 2px;-webkit-border-radius:2px; margin-bottom:2px;
}

.vpb_input_fields2 {
color:#000000;
width:100%;box-shadow: 0 0 6px #666666;-moz-box-shadow: 0 0 6px #666666;-webkit-box-shadow: 0 0 6px #666666;  font-size:12px; font-weight:normal;height:28px; padding:3px;padding-left:10px;padding-right:10px; padding-top:2px;border: 0px solid  #F1F1F1;outline:none;border-radius: 2px;-moz-border-radius: 2px;-webkit-border-radius:2px; margin-bottom:2px;
}	
.vpb_input_fields:focus { 
 outline:none;border: 0px solid #4195fc;
}

/*Captcha Box wrapper*/
.vpb_captcha_wrapper 
{
width:99%;
height:auto;
background-color: #FFF;
text-align:center;
position:relative;
font-family:Verdana, Geneva, sans-serif;
font-size:11px;
float:left;
}

/*Success Message Style*/
.vpb_success {width:290px;font-family:Verdana, Geneva, sans-serif; font-size:11px; padding:10px; background:#FFFFB7; border:1px solid #F1F1F1;box-shadow: 0 0 20px #cbcbcb;-moz-box-shadow: 0 0 20px #cbcbcb;-webkit-box-shadow: 0 0 20px #cbcbcb;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px; line-height:20px; color:#000000;}


/*Error Messages Style*/
.vpb_info {  text-align:left;border: 1px solid #999; padding:8px 10px 8px 10px; font: bold 12px verdana;-moz-box-shadow: 0 0 5px #888; -webkit-box-shadow: 0 0 5px#888;box-shadow: 0 0 5px #888;text-shadow: 2px 2px 2px #ccc;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;font-family:Verdana, Geneva, sans-serif; font-size:11px; line-height:20px;font-weight:normal;color: black;background: #BDE5F8; }

.ccc{ text-decoration:none; color:#7d5894;}
.ccc:hover{ text-decoration:underline;}

/*Vasplus Button*/
.vpb_general_button 
{
margin: 0;
background-color: #212121;
font-family: 'Oswald',sans-serif;
font-size: 2.1em;
text-transform: uppercase;
font-weight: bold;
color: #7a7a7a;
border: none;
padding: 10px 20px;
width: 95%;
box-shadow: 0px 4px 0px #000000;
height: auto;
line-height: normal;
text-align: center;
background: #212121;border-radius: 4px;
text-shadow: none;box-sizing: border-box;vertical-align: middle;
margin-left:5%;
}
.vpb_general_button:hover 
{
background-color: #141414;
Cursor: pointer; 
}
.vpbenerabuton {
  margin: 0;
    margin-left: 0px;
  background-color: #212121;
  font-family: 'Oswald',sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  color: #7a7a7a;
  border: none;
  padding: 3px 20px;
  width: 86%;
  box-shadow: 0px 4px 0px #000000;
  height: auto;
  line-height: normal;
  text-align: center;
  background: #212121;
  border-radius: 4px;
  text-shadow: none;
  box-sizing: border-box;
  vertical-align: middle;
  margin-left: 5%; 
  float: left;
}


/*Vasplus Button*/
.vpb_general_buttonfoot 
{
 
background-color: #212121;
font-family: 'Oswald',sans-serif;
font-size: 1em;
text-transform: uppercase;
font-weight: bold;
color: #7a7a7a;
border: none;
padding: 10px 20px;
width: 100%;
box-shadow: 0px 4px 0px #000000;
height: auto;
line-height: normal;
text-align: center;
background: #212121;border-radius: 4px;
text-shadow: none;box-sizing: border-box;vertical-align: middle;
margin-left:0%;
}
.vpb_general_buttonfoot:hover 
{
background-color: #141414;
Cursor: pointer; 
}




.back_to_tutorial {
	
background-color: #c83804;
  border: 1px solid #951100;box-shadow: 0 2px 3px #951100;-moz-box-shadow: 0 2px 3px #951100;-webkit-box-shadow: 0 2px 3px #951100;
  -webkit-border-radius: 8px;-moz-border-radius: 8px;border-radius: 8px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(255, 115, 100, 0.4), 0 1px 3px #333333;
  box-shadow: inset 0px 0px 0px 1px rgba(255, 115, 100, 0.4), 0 1px 3px #333333;
  color: #fff;
  font: bold 15px/1 "helvetica neue", helvetica, arial, sans-serif;
  padding: 12px 0 14px 0;
  text-align: center;
  text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.8);
  width: 200px; }
.back_to_tutorial:hover 
{
    background-color: #00b8b3;
    cursor: pointer; }
.back_to_tutorial:active 
{
    background-color: #d43c28;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d43c28), color-stop(50%, #ad3224), color-stop(50%, #9c1500), color-stop(100%, #700d00));
    background-image: -webkit-linear-gradient(top, #d43c28 0%, #ad3224 50%, #9c1500 50%, #700d00 100%);
    background-image: -moz-linear-gradient(top, #d43c28 0%, #ad3224 50%, #9c1500 50%, #700d00 100%);
    background-image: -ms-linear-gradient(top, #d43c28 0%, #ad3224 50%, #9c1500 50%, #700d00 100%);
    background-image: -o-linear-gradient(top, #d43c28 0%, #ad3224 50%, #9c1500 50%, #700d00 100%);
    background-image: linear-gradient(top, #d43c28 0%, #ad3224 50%, #9c1500 50%, #700d00 100%);
    -webkit-box-shadow: inset 0px 0px 0px 1px rgba(255, 115, 100, 0.4);
    box-shadow: inset 0px 0px 0px 1px rgba(255, 115, 100, 0.4); 
}


 .footaddrescenters
 {
float:left;
font: 100 22px 'Oswald', sans-serif;
text-transform: uppercase;
color: #fff;
margin-top:55px;
width: 66%;
line-height: 25px;
 }
  

.foot-social{text-align:center; margin-top: -24px; background-color:#255d75; padding:10px 29px 5px; float:left;}
.social-wrap {float:left;}
.triangle {width: 0; height: 0; border-right: 0px solid transparent; border-left: 11px solid transparent; border-bottom: 24px solid #194b61; position: absolute; top: -24px; left: 4px;}
.follow {float:left; font:100 14px 'Oswald', sans-serif; color:#fff; text-transform:uppercase; margin: 6px 17px 0 0;}
ul.social-list{margin:0; padding:0; list-style:none;}
ul.social-list li{display:inline-block; margin:0 3px;}
ul.social-list li a{display:block; background-image:url(images/sprite.png); background-repeat:no-repeat;}
ul.social-list li.facebook a{width:29px; height:29px; background-position:0px 0px;}
 
ul.social-list li.googleplus a{width:29px; height:29px; background-position:-102px 0px;}
 ul.social-list li.yelp a{width:29px; height:29px; background-position:-34px 0px;}
ul.social-list li.youtube a{width:29px; height:29px; background-position:-136px 0px;}
 

.foot-address, .foot-email, .foot-phone a, .foot-phone {font:100 22px 'Oswald', sans-serif; text-transform:uppercase; color:#fff; margin-top:8px;}
.foot-phone a{color:#84d7f7; font-size:1.5em;}
.foot-phone {margin-top:8px;}
.foot-phone a:hover, .foot-phone a:active, .foot-phone a:link, .foot-phone a:visited {color:#84d7f7; text-decoration:none;}
.foot-address {margin-top:30px;}
.add-icon {display: block; float:left; width: 8px; height: 16px; background: url(images/sprite.png) -159px -46px no-repeat; margin: 2px 15px 0 4px;}
.ph-icon {display: block; float:left; width: 9px; height: 12px; background: url(images/sprite.png) -175px -48px no-repeat; margin: 5px 15px 0 2px;}
.email-icon {display: block; float:left; width: 11px; height: 8px; background: url(images/sprite.png) -195px -50px no-repeat; margin: 5px 15px 0 1px;}
.foot-email a{color:#fff;}

.foot-center {text-align:center;}
img.foot-logo {float: right; margin: 37px 24px 0 0;}
 

.footerrightform
{
float:right;
width:33.3%;
padding-top:15px;
}



.footerleft
{
float:left;
width:20%;
padding-top:15px;
}
.footer-title {
    font: 500 1.25em/24px 'Oswald', sans-serif;
    color: #80d7f5;
    text-transform: uppercase;
}
.thickline {
    width: 27%;
    height: 4px;
    background-color: #80d7f5;
    float: left;
}
.needhlpimg
{
float:left;
width:25%;
padding-top:15px;
}
.needhlpimgform
{
float:left;
width:100%; 
}
.needhelppics
{
width:300px;
height:auto;
}

.needhelpform
{
float: right;
width: 73%;
margin-top: 20px;
padding-top:15px;
margin-left: 2%;
}


.needhelpformser
{
float: left;
width: 100%;
margin-top: 20px;
padding-top:15px;
margin-left: 2%;
}

.titlefaqs {
    font-size: 55px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    color: #255e76;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 7px;
}

.titlefaqsub {
  font-size: 28px;
font-family: 'Oswald', sans-serif;
font-weight: 100;
line-height: 1.1;
color: #255e76;
margin-top: 10px;
margin-bottom: 30px;
}

#contentneedhelp
{
margin: 0 auto;
width: 92%;
}
.conversionwavewhite {
    width: 100%;   
    top: 0;
    height: 10px;
    background-image: url(images/convwavewhite.png);
    background-repeat: repeat-x;
    transition: opacity .3s ease-in-out;
    opacity: 1;
}

.conversionwaveblue {
    width: 100%;   
    top: 0;
    height: 10px;
    background-image: url(images/conv-wave.png);
    background-repeat: repeat-x;
    transition: opacity .3s ease-in-out;
    opacity: 1;
}

.conversionwave {
    width: 100%;   
    top: 0;
    height: 10px;
    background-image: url(images/conv-wave.png);
    background-repeat: repeat-x;
    transition: opacity .3s ease-in-out;
    opacity: 1;
}

.plumbingimgbutton
{
 display: flex !important;
 flex-flow: row nowrap !important;
 justify-content: space-between;
}


#plumbingservicebtn
{
background-image: url(images/plumbingbg.jpg);
background-repeat: repeat;
width: 100%;
padding-top: 0px;
padding-bottom: 2px;
height: auto;
float: left;
margin-bottom: 10px;
}

.PlumbingRepairServicetitle
{
color: #cc1e24;
font-size: 3.8em;
font-family: 'AirstreamNF', cursive;
text-transform: none;
text-align: center;
line-height: 1.42857143;
margin-top: 36px;
margin-bottom: 25px;
}
.PlumbingRepairServicedescr
{font-size: 1.2em;
font-weight: 100;
color: #5e5e5e;
margin-bottom: 34px;
text-align: center;
font-family: 'Lato', sans-serif;
line-height: 1.42857143;
}
.plumbingservicebox
{
width:70%;
margin:0 auto;
}

a.bloglinks
{ 
color: #8B0000; 
}
a.bloglinks:hover
{
color: #8B0000;
text-decoration:none;
}

a.city
{ 
color: #0066cc; 
}
a.city:hover
{
color: #0260be;
text-decoration:none;
}


a.mn
{ 
color: #1a8cff; 
}
a.mn:hover
{
color: #333;
text-decoration:none;
}

a.mm
{
line-height: 30px;
color: #fff;
font-family: 'Oswald',sans-serif;
text-transform: uppercase;
}
a.mm:hover
{
color: #fff;
text-decoration:none;
}
  a.PlumbingRepairServicebtn
{
    color: #fff;
    font-family: 'Oswald',sans-serif;
    text-transform: uppercase;
    background-color: #255d74;
    padding: 12px 21px;
    font-size: 1.3em;
    display: inline-block;
	 text-decoration:none;
    border-radius: 4px;
    box-shadow: 0px 5px 0px #164356;
}


a.PlumbingRepairServicebtn:Hover
 {
color: #fff;
text-decoration: none;
background-color: #33697f;
}

.foot-noextra {
    font-weight: 100;
    font-style: italic;
    font-size: 1em;
	text-transform:uppercase;
	color:#fff;
}

.angies-list-logo
{
border-radius:10px;
width:290px;
height:auto;
}

#CentralIndiana
{
background-image: url(images/bgCentralIndiana.png);
background-repeat: repeat;
width: 100%; 
padding-top:20px;
padding-bottom:20px;
margin-top: 2px;
height:auto;
float: left;
}
.CentralIndianapicsman
{
width:420px;
height:auto;
}
.CentralIndianapics
{
float: left;
width: 45%;
margin-left: 5%;
}
.CentralIndianadescr
{
float:right;
width:50%;
padding-top: 30px;
}
.CentralIndianaTitle
{
font-family: 'AirstreamNF', cursive;
text-transform: none;
font-size: 3.5em;
line-height: 30px;text-align: center;
color: #4c4c4c;
margin-top:5px;
}
.CentralIndianaTitle2
{
font-family: 'Oswald',sans-serif;
text-transform: uppercase;
font-size: 2.4em;
padding-bottom: 19px;
margin-bottom: 19px;
border-bottom: 1px solid rgba(33,33,33,.17);
font-weight: bold;
text-align: center;
margin-top: 17px;
}

.CentralIndianaDescr
{
color: #5c5c5c;
font-weight: 100;
font-size: 18px;
font-family: 'Lato', sans-serif;
line-height: 1.42857143;
font-style: italic;
text-align: center;
}

.contactfrmfieldservice
{
width:50%; float:left;margin-bottom: 0px;
}

.contactfrmfieldservice2
{
width:25%; float:left;margin-bottom: 0px;
}



.contactfrmfield
{
width:15%; float:left;margin-bottom: 0px;
}
.contactfrmfield2
{
width:10%; float:left;margin-bottom: 0px;
}
.contactfrmfield3
{
width:15%; float:left;margin-bottom: 0px;
}

.bodyph
{
font-weight:bold;
}

.buyerstitle
{
font-size: 37px;
font-family: 'Oswald', sans-serif;
font-weight: 700;
line-height: 1.1;
color: #ff0000;font-weight: bold; 
text-transform: uppercase;
margin-top:24px;
margin-bottom:7px;
}

.buyerstitle2
{
font-size: 20px;
font-family: 'Oswald', sans-serif;
font-weight: 100;
line-height: 1.1;
color: #ff0000;
margin-top: 10px;
margin-bottom: 25px;
}

.title3
{
font-size: 22x;  
line-height: 1.1;
color: #255e76;  
margin-top:20px;
margin-bottom:20px;
}
.titlebtmspace
{
margin-bottom:20px !important;
}
.title{
font-size: 27px;
font-family: 'Oswald', sans-serif; 
line-height: 1.1;
color: #255e76;
font-weight: bold; 
text-transform: uppercase;
margin-top:30px;
margin-bottom:7px;
}

.title2{
font-size: 20px;
font-family: 'Oswald', sans-serif;
font-weight: 100;
line-height: 1.1;
color: #255e76;   
margin-top:10px;
margin-bottom:20px;
}
.bodydescrcolor
{
border-top:40px solid #e0b385;
}

.testimonialdescr
{
font-size: 21px;
font-family: 'Lato',sans-serif;
font-weight: 100;
line-height: 30px;
color: #4e4d50;
margin-bottom:20px;
}

.bodytext
{
font-size: 17px;
font-family: 'Lato',sans-serif;
font-weight: 100;
line-height: 1.42857143;
color: #4e4d50;
margin-bottom:20px;
}
.testimonialtitle
{
font-family: 'Oswald',sans-serif;
font-weight: bold;
text-transform: uppercase;
color: #255d75;
font-size: 1.5em;
margin-top: 30px;
margin-bottom: 10px;
border-bottom: 1px solid #89d7f7;
width: 98%;
margin-left:1%;
text-align:center;
}
.col-sm-9 {
    width: 94% !important;
	text-align: center;
	margin-left:2% !important;
}

.carousel-control {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 2% !important;
}
	
.testimonial-text {
color: #747474;
font-style: italic;
font-weight: lighter;
font-size: 13px;
height: 125px;
text-align:center;
}

.hrblog
{
 border: 0; height: 1px; background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
.hrtestimonial
{
 border: 0; height: 1px; background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
 margin-top:33px;
 margin-bottom:33px;
}

 a.readmore {
    padding: 6px 15px;
    display: inline-block;
    border-radius: 3px;
    border: 2px solid #212121;
    font-family: 'Oswald',sans-serif;
    text-transform: uppercase;
    font-weight: 100;
    color: #212121;
    font-size: 14px;
    line-height: 20px;
}

 a.readmore:hover {
  color: #212121;
 }
.tetimonialimg
{
width: 130px;
height:138px;
float: left;
border-radius: 50%;
overflow: hidden;
border: 5px solid #FFF;
box-shadow: 0px 0px 10px rgba(0,0,0,.3);
margin: 30px 2px 5px 10px;

}
#test-slide {
  /*  background-image: url(images/slide-back.png);
    background-repeat: no-repeat;
    background-size: contain; */
    width: 806px;
    margin: 0 auto;
    position: relative;
    height: 367px;
}

    /* carousel */
#quote-carousel 
{
  padding: 0 10px 30px 10px;
  margin-top: 30px;
}

/* Control buttons  */
#quote-carousel .carousel-control
{
  background: none;
  color: #222;
  font-size: 2.3em;
  text-shadow: none;
  margin-top: 130px;
}
/* Previous button  */
#quote-carousel .carousel-control.left 
{
  left: -12px;
}
/* Next button  */
#quote-carousel .carousel-control.right 
{
  right: auto;
}
/* Changes the position of the indicators */
#quote-carousel .carousel-indicators 
{
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: -19px;
}
/* Changes the color of the indicators */
#quote-carousel .carousel-indicators li 
{
  background: #c0c0c0;
}
#quote-carousel .carousel-indicators .active 
{
  background: #333333;
}
#quote-carousel img
{
  /*width: 250px;
  height: 100px */
}
/* End carousel */

.item blockquote {
    border-left: none; 
    margin: 0;
}

.item blockquote img {
    margin-bottom: 10px;
}

.item blockquote p:before {
    content: "\f10d";
    font-family: 'Fontawesome';
    float: left;
    margin-right: 10px;
}
.reviewsadvice{
    font-family: 'Oswald',sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff0000;
    font-size: 28px; 
    margin-bottom: 7px; 
	margin-top:10px;
 }
.reviewstitle{
    font-family: 'Oswald',sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff0000;
    font-size: 39px; 
    margin-bottom: 7px; 
	margin-top:10px;
 }
.starrating
{
font-family: 'Oswald',sans-serif;
color: #000000;
font-size: 15px;
padding-bottom: 10px;
margin-bottom: 10px; 
}

.testmonialstile{
    font-family: 'Oswald',sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #255d75;
    font-size: 1.5em; 
    
}
.testmonialstile2{
    font-family: 'Oswald',sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #444;
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #89d7f7;    
	width:9%;
}
.testmonialstiletext {
color: #747474;
font-style: italic;
font-weight: lighter;
font-size: 13px;
margin-bottom: 30px;
line-height: 24px;
}

.plumbingimgbtn
{
width:170px;
height:auto;
}

 .satisfaction100
 {
width: 300px;
height: auto;
margin-top: -20px;
 }

/**
  MEDIA QUERIES
*/

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    #quote-carousel 
    {
      margin-bottom: 0;
      padding: 0 40px 30px 40px;
    }
    
}

/* Small devices (tablets, up to 768px) */
@media (max-width: 768px) { 
    
    /* Make the indicators larger for easier clicking with fingers/thumb on mobile */
    
    #quote-carousel .carousel-indicators {
        bottom: -20px !important;  
    }
    #quote-carousel .carousel-indicators li {
        display: inline-block;
        margin: 0px 5px;
        width: 15px;
        height: 15px;
    }
    #quote-carousel .carousel-indicators li.active {
        margin: 0px 5px;
        width: 20px;
        height: 20px;
    }
}


.col-md-80
{
width: 66.66666667%;
float: left;
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}


.media-carousel 
{
  margin-bottom: 20;
  padding: 0 40px 30px 40px;
  margin-top: 50px;
}
/* Previous button  */
.media-carousel .carousel-control.left 
{
  left: -12px;
  background-image: none;
  background: none repeat scroll 0 0 #222222;
  border: 4px solid #FFFFFF;
  border-radius: 23px 23px 23px 23px;
  height: 40px;
  width : 40px !important;
  margin-top: 130px
}
/* Next button  */
.media-carousel .carousel-control.right 
{
  right: -12px !important;
  background-image: none;
  background: none repeat scroll 0 0 #222222;
  border: 4px solid #FFFFFF;
  border-radius: 23px 23px 23px 23px;
  height: 40px;
  width : 40px !important;
  margin-top: 130px
}
/* Changes the position of the indicators */
.media-carousel .carousel-indicators 
{
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: -19px;
}
/* Changes the colour of the indicators */
.media-carousel .carousel-indicators li 
{
  background: #c0c0c0;
}
.media-carousel .carousel-indicators .active 
{
  background: #333333;
}
.media-carousel img
{
  width: 250px;
  height: 100px
}
/* End carousel */

.youtubevideo
{
width:560px;
height:315px;
margin-top:40px;
margin-bottom:40px;
}

.HardWater
{
text-align: center;
color: #444;
font-size: 40px;
font-family: 'Oswald', sans-serif;
font-weight: 700;
line-height: 1.1;
text-transform: uppercase;
margin-top: 37px;
margin-bottom: 31px;
}

.HardWater2
{
text-align:center;
color:#444;
font-size: 20px; 
font-weight: 700;
line-height: 1.1;
text-transform: uppercase;
margin-top: 10px;
margin-bottom: 25px;
}

.titleshoping
{
text-align: center;
color: #c00040;
font-size: 35px;
font-family: 'Oswald', sans-serif;
font-weight: 700;
line-height: 1.1;
text-transform: uppercase;
margin-top: 55px;
margin-bottom: 10px;
}

.titleshoping2
{
text-align:center;
color:#c00040;
font-size: 33px;
font-family: 'Lato', sans-serif;
font-weight: 700;
line-height: 1.1; 
margin-bottom:50px;
}

.WaterleaksBox
{
width:85%;
margin:0 auto;
}

.WaterHeaterServicesBox
{
width:58%;
margin:0 auto;
}
.firstchild
{
float:left;
width:50%;
}

.secondchild
{
float:left;
background-color:#245c73;
width:50%;
padding:20px 50px 50px 50px;
margin-top:40px;
}


.WaterwholeBox
{
width:67%;
float:left;
margin:0 auto;
}

.WaterwholeBox2
{
width:33%;
float:left;margin-top: 30px;
}


.POPULARMECHANICS
{
font-size: 27px;
font-family: 'Oswald', sans-serif;
font-weight: 100;
line-height: 1.1;
color: #444; 
text-transform: uppercase;
margin-top: 40px;
margin-bottom: 45px;
text-align:center;
}


.citybtnborder
{
border: 5px solid #255e76;
padding-top: 7px;
}


.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: 2% !important;
}

.RECENTBLOGSTITLE
{
display:none;
}

.waterheaterbox
{
float:left;
width:60%;
}
.waterheaterboximage
{
float:right;
width:40%;
}
.waterheaterboxinsideimg
{
text-align:center;
width:390px;
height:auto;
margin-top:30px;
margin-left:20px;
}
.aboutpics
{
width:100%;
height:auto;
}

.watersoftboxinsideimg
{
text-align:center;
width:300px;
height:auto;
margin-top:44px;
margin-left:20px;
}
.waterleakimgright {
    text-align: center; 
    margin-top: 47px;
    margin-left: 30px;
	}
	
	.slapleaksright {
    text-align: center; 
    margin-top: 4px;
    margin-left: 50px;
	}
.sumppumboxinsideimg {
    text-align: center;
    width: 349px;
    height: auto;
    margin-top: 8px;
    margin-left: 20px;
}

.historypicsleft
{
	float:left;
 
}
.historypics
{
	height:250px;
	width:auto;
	border: 8px solid #000;
	
}

@media only screen and (min-width:150px) and (max-width:700px){
	
	
.footeradresstitel2 { 
  font-size: 14px;font-family:'Oswald',sans-serif;
  
}


.fotterboxlogo
{
float:left;
width:100%;
}
.fotterbox
{
float:left;
width:100%;
}
	
 #contentfooter {
  margin: 0 auto;
  width: 80%;
}

#quote-carousel {
  padding: 0 10px 30px 10px;
  margin-top: 30px;
  width: 90%;
  margin-left: 5%;
}

.footeradresstitel
{font: 400 16px 'Arial',sans-serif;
text-transform: uppercase;
color: #fff;}
	.historypics {

    height: 71px;
    width: auto;
    border: 3px solid #000;

}
.saltfreetitle {
    font-size: 25px;
}
.saltfreetitle2 {
    font-size: 20px;
}


.saltfreedescr {
  font-size: 15px;
  font-family: 'Oswald', sans-serif;   
  color: #1a8cff;  font-style: italic;
   line-height:24px;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 7px;
}
 .footaddrescenters
 {
float:left;
font: 100 12px 'Oswald', sans-serif;
text-transform: uppercase;
color: #fff;
margin-top:55px;
width: 100%;
 }
 
 .logofooter
 {
float:left;
width: 100%;
   text-align: left;
    margin-top: 0px;
    margin-bottom: 10px;
 }
 
.waterheaterboxinsideimg
{
text-align:center;
width:225px;
height:auto;
margin-top:30px;
margin: 0 auto;
display: block;
}

.slapleaksright {
text-align: center; 
margin: 0 auto;
display: block;
margin-top:24px;
}
.waterleakimgright {
    text-align: center; 
   margin: 0 auto;
display: block;
	}
.sumppumboxinsideimg {
    text-align: center;
    width: 250px;
    height: auto;
 margin: 0 auto;
display: block;
}
.watersoftboxinsideimg
{
text-align:center;
width:220px;
height:auto;
margin-top:22px;
margin-left:20px;
display: block;
margin: 0 auto;
}

.waterheaterbox
{
float:left;
width:100%;
}
.waterheaterboximage
{
float:left;
width:100%;
}


.RECENTBLOGSTITLE
{
display:block;
color: #ff0000;
text-align:center;
font-size:28px;
font-weight:bold;
}

#recentblog {
    height: auto;
    width: 93%; margin-left:3%;
    float: left;
    background: rgba(255, 255, 255) url("images/Weilhammer-Plumbing-Company-Indianapolis-Indiana.png");
    border-bottom: 40px solid #255d75;
    background-repeat: repeat-y;
}


#contentrecentblog {
margin:0 auto;
width: 99%;
}
.WaterleaksBox {
    width: 99%;
    margin: 0 auto;
}

.waterleaksul {
    font-size: 14px;
    color: #4e4d50;
    line-height: 30px;
    list-style-image: url("images/li.png");
    text-align: left;
    list-style-position: inside;
    margin-left: 10px;
}

.waterleaksulright
{
    font-size: 16px;
    color: #4e4d50;
    line-height: 32px;
    list-style-image: url("images/li.png");
    text-align: left;
    list-style-position: inside;
    margin-left: 10px;
}
 
.titlefaqsub {
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
    line-height: 1.1;
    color: #255e76;
    margin-top: 10px;
    margin-bottom: 30px;
}
.servicetitle {
    font-size: 26px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    color: #255e76;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 12px;
}
.titlered {
    color: red;
    font-style: italic;
    text-transform: none;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto !important;
}
.PlumbingServicesboxleft
{
padding-left:0%;
}

.PlumbingServicesboxcenter
{
padding-left:0%;
}
.PlumbingServicesboxright
{
padding-left:0%;
}

.titlefaqs {
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    color: #255e76;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 7px;
}


.blogtitle {
    font-family: 'Oswald',sans-serif;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.blogboxborder {
    margin-top: 0px !important;
    border: 15px solid #255e76;
    height: auto;
    width: auto;
    margin-left: 0;
}
.blogdescr {
    text-align: center;
    font-family: 'Oswald',sans-serif;
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 10px;
}
.blogbox {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.navbar-fixed {
    top: 0;
    z-index: 100;
  position: relative;
    width: 100%;
}

 .satisfaction100
 {
width: 240px;
height: auto;
margin-top: 0px;
 }



#quote-carousel .carousel-control.right {
    right: 3px;
}


.plumbingimgbutton
{
 display: block !important;
 flex-flow: column nowrap  !important;
 justify-content: space-between;
}

.WaterHeaterServicesBox
{
width:99%;
margin:0 auto;
}
.firstchild
{
float:left;
width:99%;
}
.secondchild
{
float:left;
width:99%;
}


.WaterwholeBox
{
width:99%;
float:left;
margin:0 auto;
}


.WaterwholeBox2
{
width:99%;
float:left;
margin:0 auto;
}


.contactfrmfieldservice {
  width: 100%;
  float: left;
  margin-bottom: 0px;
}
.contactfrmfieldservice2 {
  width: 50%;
  float: left;
  margin-bottom: 0px;
}
.youtubevideo
{
margin-top:30px;
margin-bottom:30px;
width:250px;
height:141px;
}
.PlumbingServicesbox
{
float:left;
width:99%;
}
.PlumbingServicesTitle {
    color: #255e76;
    font-size: 16px;
    font-family: 'Oswald', cursive;
    text-transform: none;
    text-align: center;
    line-height: 22px;
    margin-top: 23px;
    margin-bottom: 11px;
}
.titleshoping {
    text-align: center;
    color: #c00040;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 10px;
}
.titleshoping2 {
    text-align: center;
    color: #c00040;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}
#content {
    margin: 0 auto;
    width: 90%;
}

#bottom-stripe-wave {
    float: left;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: url(images/bottom-stripe-wave.png);
    background-repeat: repeat-x;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 66%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}
.testimonialtitle {
    font-family: 'Oswald',sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #255d75;
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #89d7f7;
    width: 100%;
}

.testimonial-text {
    color: #747474;
    font-style: italic;
    font-weight: lighter;
    font-size: 13px;
    height: auto;
	padding-bottom:10px;
}
.col-md-8 {
   background-image: none;
    background-repeat: no-repeat;
    background-size: contain;
	background-color:#FFF;
    width: 100% !important;
    margin: 0 auto;
    position: relative;
    height: auto;
}.title {
    font-size: 15px;
    font-family: 'Oswald', sans-serif; 
    line-height: 1.1;
    color: #255e76;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 17px;
    margin-bottom: 10px;
}
.faqsquestion {
    font-family: 'Oswald',sans-serif;
    font-size: 17px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 0px;
    text-align: left;
}
.footerleft {
    float: left;
    width: 50%;
    padding-top: 0px;
}


.footerrightform
{
float:left;
width:100%;
padding-top:15px;
}


.plumbingservicebox {
    width: 94%;
    margin: 0 auto;
}

.PlumbingRepairServicetitle {
    color: #cc1e24;
    font-size: 24px;
    font-family: 'AirstreamNF', cursive;
    text-transform: none;
    text-align: center;
    line-height: 22px;
    margin-top: 23px;
    margin-bottom: 25px;
}
.PlumbingRepairServicedescr {
    font-size: 15px;
    font-weight: 100;
    color: #5e5e5e;
    margin-bottom: 34px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    line-height: 23px;
}

.CentralIndianapics {
    float: left;
	text-align:center;
	margin-bottom: 10px;
    width: 99%;
	margin-left: 0%;
}
.CentralIndianapicsman {
    width: 220px;
    height: auto;
}

.CentralIndianadescr {
    float: left;
    width: 99%;
}
.CentralIndianaTitle {
    font-family: 'AirstreamNF', cursive;
    text-transform: none;
    font-size: 32px;
    line-height: 30px;
    text-align: center;
    color: #4c4c4c;
	  margin-top: 5px;
}

.CentralIndianaTitle2 {
    font-family: 'Oswald',sans-serif;
    text-transform: uppercase;
    font-size: 17px;
    padding-bottom: 19px;
    margin-bottom: 19px;
    border-bottom: 1px solid rgba(33,33,33,.17);
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}

.CentralIndianaDescr {
    color: #5c5c5c;
    font-weight: 100;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    line-height: 1.42857143;
    font-style: italic;
}
#bbb-angie {
    float: left;
    height: auto;
    width: 100%;
    padding-bottom: 15px;
    margin-top: 0px;
    background: #8fc3d9;
    font-family: 'Oswald';
}

.bbblogo {
    float: left;
    text-align: center;
    width: 99%;
    margin-top: 27px;
}
#bbbangiecenter {
    margin: 0 auto;
    width: 86%;
}

.angies-list-logo
{
border-radius:10px;
width:200px;
height:auto;
}
.bottombtn
{
float:left;
width:33%;
}

.logoleft
{
display:none;
}
.header24hrs
{
display:none;
}
.headphone
{
display:none;
}


#header {
float: left;
height: 57px;
width: 100%;
background: #373737;
font-family:'Oswald';
}

#navigation {
float: left;
height: 1px;
width: 100%;
background: #373737;
}
.needhlpimg {
    float: left;
    width: 100%;
    padding-top: 15px;
	vertical-align: middle;
}
.needhelppics
{
width:200px;
height:auto;
}

.needhelpform {
    float: left;
    width: 100%;
    margin-top: 20px;
    padding-top: 15px;
    margin-left: 0%;
}

.contactfrmfield
{
width:50%; float:left;
margin-bottom: 9px;
}

.contactfrmfield2
{
width:50%; float:left;margin-bottom: 0px;
}
.contactfrmfield3
{
width: 99%;
float: left;
margin-bottom: 0px;
margin-top: 18px;
}

.POPULARMECHANICS {
    font-size: 12px;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
    line-height: 24px;
    color: #444;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 7px;
}
.bodytext {
    font-size: 14px;
    font-family: 'Lato',sans-serif;
    font-weight: 100;
    line-height: 1.42857143;
    color: #4e4d50;
    margin-bottom: 20px;
}
.HardWater {
    text-align: left;
    color: #444;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-top: 12px;
    margin-bottom: 10px;
	margin-left: 12px;
}
.testmonialstile2 {
    font-family: 'Oswald',sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #444;
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #89d7f7;
    width: 35%;
}
.testmonialstiletext {
    color: #747474;
    font-style: italic;
    font-weight: lighter;
    font-size: 12px;
    margin-bottom: 30px;
    line-height: 19px;
}
.PlumbingServicesul {
    font-size: 14px;
    color: #4e4d50;
    line-height: 27px;
    list-style-image: url("images/li.png");
    text-align: left;
    list-style-position: inside;
    margin-left: 1px;
	margin-bottom: 1px;
}
.AreasWeServeul
{
  font-size: 14px;
    color: #4e4d50;
    line-height: 27px;
    list-style-image: url("images/li.png");
    text-align: left;
    list-style-position: inside;
    margin-left: 1px;
}

.title2 {
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
    line-height: 1.1;
    color: #255e76;
   
    margin-top: 0px;
    margin-bottom: 20px;
}
.reviewsadvice{
    font-family: 'Oswald',sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff0000;
    font-size: 19px; 
    margin-bottom: 7px; 
	margin-top:10px;
 }
.reviewstitle {
    font-family: 'Oswald',sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff0000;
    font-size: 20px;
    margin-bottom: 7px;
    margin-top: 24px;
}
.buyerstitle
{
font-size: 22px;
font-family: 'Oswald', sans-serif;
font-weight: 700;
line-height: 1.1;
color: #255e76;font-weight: bold; 
text-transform: uppercase;
margin-top:24px;
margin-bottom:7px;
}
.ServicesAreaTitle
{
    color: #255e76;
    font-size: 20px;
    font-family: 'Oswald', cursive;
    text-transform: none;
    text-align: center;
    line-height: 22px;
    margin-top: 40px;
    margin-bottom: 25px;
}

.needhelpimg {
    display: block;
    text-align: center;
	vertical-align: middle;
}

.OurCustomerstitle {
    text-align: center;
    font-size: 30px;
    color: #212121;
    line-height: 43px;
    margin-top: 10px;
    font-family: 'AirstreamNF', cursive;
    text-transform: none;
}
.OurCustomerstitle2 {
    text-align: center;
    font-size: 19px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 100;
    color: #212121;
}
.dbl-divider {
    margin: 16px 0;
    height: 6px;
    border-top: 1px solid rgba(0,0,0,.18);
    border-bottom: 1px solid rgba(0,0,0,.18);
    width: 100%;
}
.bottombtnimg {
    width: 100px;
    height: auto;
    text-align: center;
}
.foot-noextra {
    font-weight: 100;
    font-style: italic;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}


.foot-address, .foot-email, .foot-phone a, .foot-phone {
    font: 100 12px 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #fff;
    margin-top: 8px;
}



.cityServicesTitle {
    color: #0066cc;
    font-size: 22px;
    font-family: 'Oswald', cursive;
    text-transform: none;
    text-align: center;
    line-height: 29px;
    margin-top: 39px;
    margin-bottom: 0px;
}
.faqsquestions {
    font-family: 'Oswald',sans-serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 100;
    margin-top: 10px;
    line-height: 23px;
    margin-bottom: 10px;
    text-align: left;
}
.testimonialdescr {
    font-size: 15px;
    font-family: 'Lato',sans-serif;
    font-weight: 100;
    line-height: 25px;
    color: #4e4d50;
    margin-bottom: 20px;
}
.contactadd {
    font-family: 'Oswald',sans-serif;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 100;
    line-height: 27px;
	width:99%;
}

.contactopen {
    font-family: 'Oswald',sans-serif;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;margin-left: 10px;
    font-weight: 100;
    line-height: 27px;
	width:99%;
}


.Licensecon
{
margin-top: 12px;
font-family: 'Oswald',sans-serif;
font-size: 17px;
margin-left: 0px;
}

.googleratings
{
width: 206px;
height: auto;
border: 1px solid #e8e8e8;
border-radius: 10px;
}





}


@media only screen and (min-width:768px) and (max-width:1024px){
#contentrecentblog {
margin:0 auto;
width: 99%;
}

.googleratings
{
width: 206px;
height: auto;
border: 1px solid #e8e8e8;
border-radius: 10px;
}
#content {
    margin: 0 auto;
    width: 99%;
}
.logoleft {
    float: left;
    width: 27%;
}
.headphone {
    float: left;
    width: 40%;
}
.header24hrs {
    float: left;
    width: 29%;
    text-align: center;
}
.phone {
color:#fff;
text-align: right;
line-height: 30px;
text-decoration: none;
font-family: 'Oswald',sans-serif;
font-size: 27px;
margin-top: 18px;
}
.freeestimatetop {
font-size: 13px;
font-style: italic;
font-family: 'Lato', sans-serif;
font-weight: 700;
text-transform: uppercase;
color: #fff;
text-align: right;
}
.servicetop {
  width: auto;
height: 91px;
margin-top: 38px;
vertical-align: middle;
}
.logo {
    margin-top: 20px; 
    line-height: 37px;
    color: #fff;
    font-size: 17px;
}
#contenthead {
    margin: 0 auto;
    width: 99%;
}
#formcalltoday {
    display: none;
    color: #6ca3b8;
    font-weight: 100;
    font-size: 22px;
    line-height: 44px;
    text-align: center;
    font-family: 'Oswald',sans-serif;
    text-transform: uppercase;
    padding-bottom: 14px;
}
.form-phone {
    color: #fff;
    font-weight: bold;
    font-family: 'Oswald',sans-serif;
    font-size: 25px;
    line-height: 17px;
    margin-top: 10px;
}
.CentralIndianaDescr {
    color: #5c5c5c;
    font-weight: 100;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    line-height: 1.42857143;
    font-style: italic;
    text-align: center;
}
.blogboxborder {
    margin-top: 0px !important;
    border: 15px solid #255e76;
    height: 333px;
    width: 92%;
    margin-left: 20px;
}
.blogboxgreycenter { 
    padding: 10px;
    height: 323px;
}
.contactadd {
font-family: 'Oswald',sans-serif;
font-size: 15px;
margin-top: 35px;
margin-bottom: 30px;
line-height: 27px;
float: left;
width: 33.3%;
}
.contactopen{
	font-family: 'Oswald',sans-serif;
font-size: 15px;
margin-top: 35px;
margin-bottom: 30px;
line-height: 27px;
float: left;
width: 33.3%;
}

.nav-menu .menu-link {
    display: block;
    text-decoration: none;
    color: #999999;
    padding-bottom: 15px;
    padding-top: 11px;
    font-family: Oswald;
    font-size: 13px;
    text-transform: uppercase;
}
#contentneedhelp {
    margin: 0 auto;
    width: 99%;
}
.needhlpimg {
    float: left;
    width: 21%;
    padding-top: 22px;
}
.needhelppics {
    width: 160px;
    height: auto;
}
.needhelpform {
    float: right;
    width: 77%;
    margin-top: 20px;
    padding-top: 15px;
    margin-left: 0%;
}

.vpb_general_button {
    margin: 0;
    margin-left: 0px;
    background-color: #212121;
    font-family: 'Oswald',sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    color: #7a7a7a;
    border: none;
    padding: 10px 20px;
    width: 39%;
    box-shadow: 0px 4px 0px #000000;
    height: auto;
    line-height: normal;
    text-align: center;
    background: #212121;
    background-color: rgb(33, 33, 33);
    border-radius: 4px;
    text-shadow: none;
    box-sizing: border-box;
    vertical-align: middle;
    margin-left: 42%;
    
}
.contactfrmfield3 {
    width: 15%;
    float: left;
    margin-bottom: 0px;
    margin-top: 7px;
}
.PlumbingRepairServicetitle {
    color: #cc1e24;
    font-size: 3em;
    font-family: 'AirstreamNF', cursive;
    text-transform: none;
    text-align: center;
    line-height: 1.42857143;
    margin-top: 5px;
    margin-bottom: 11px;
}
.CentralIndianapicsman {
    width: 275px;
    height: auto;
}
.CentralIndianaTitle2 {
    font-family: 'Oswald',sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    padding-bottom: 19px;
    margin-bottom: 19px;
    border-bottom: 1px solid rgba(33,33,33,.17);
    font-weight: bold;
    text-align: center;
    margin-top: 17px;
}
#bbbangiecenter {
    margin: 0 auto;
    width: 99%;
}

.bottombtnimg {
    width: 78px;
    height: auto;
    text-align: center;
}
.plumbingimgbtn
{
width:110px;
height:auto;
}
.bbbangiimg
{
width:200px;
height:auto;
}
.angies-list-logo
{
border-radius:10px;
width:200px;
height:auto;
}
 .plumbingservicebox {
    width: 75%;
    margin: 0 auto;
}
.title {
    font-size: 23px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    color: #255e76;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 7px;
}
.faqsquestions {
    font-family: 'Oswald',sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 100;
    margin-top: 10px;
    line-height: 31px;
    margin-bottom: 10px;
    text-align: left;
}
.PlumbingServicesul {
    font-size: 14px;
    color: #4e4d50;
    line-height: 30px;
    list-style-image: url("images/li.png");
    text-align: left;
    list-style-position: inside;
    margin-left: 24px;
	margin-bottom: 27px;
}
.AreasWeServeul
{
 font-size: 14px;
    color: #4e4d50;
    line-height: 30px;
    list-style-image: url("images/li.png");
    text-align: left;
    list-style-position: inside;
    margin-left: 24px;
}
.titleshoping {
    text-align: center;
    color: #c00040;
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-top: 47px;
    margin-bottom: 10px;
}

.titleshoping2 {
    text-align: center;
    color: #c00040;
    font-size: 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 35px;
}

.WaterHeaterServicesBox {
    width: 78%;
    margin: 0 auto;
}

.col-md-8 {
    width: 99% !important;
    background-image: url(images/slide-back.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.col-md-offset-2 {
    margin-left: 0% !important;
}

#quote-carousel .carousel-control.right {
    right: 1px;
}

.testimonial-text {
    color: #747474;
    font-style: italic;
    font-weight: lighter;
    font-size: 12px;
    height: 130px;
}

.tetimonialimg {
    width: 100px;
    height: 100px;
	}
	
	#scrolling-testimonial {
    float: left;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 10px;
    background-image: url(images/Indianapolis-Weilhammer-Plumbing-Reviews-tab.png);
}
.blogboxgrey { 
background: rgba(151, 151, 151, 0.7);
  border-radius: 45px;
    padding: 10px;border: 10px solid #fff;
    height: 240px;margin-bottom: 20px;
	}
	
.col-md-4
{
float:left;
}

 .satisfaction100
 {
width: 200px;
height: auto;
margin-top: -10px;
 }

 .WaterleaksBox {
    width: 90%;
    margin: 0 auto;
}
.waterleaksul {
    font-size: 15px;
    color: #4e4d50;
    line-height: 32px;
    list-style-image: url("images/li.png");
    text-align: left;
    list-style-position: inside;
    margin-left: 37px;
}

#recentblog {
    height: auto;
    width: 100%;
    float: left;
    background: url("images/Weilhammer-Plumbing-Company-Indianapolis-Indiana-tab.png");
    background-repeat: repeat;
    border-bottom: 40px solid #255d75;
    background-repeat: repeat-x;
}
}


@media only screen and (min-width:1680px) and (max-width:1050px){
.blogdescrcenter
{
font-size: 15px;
margin-top: 10px;
text-align: center;
margin-bottom: 10px; 
font-weight: 100; 
line-height: 40px;
padding-left: 20px;
padding-right: 20px;
}

}

















  .ft-wrap {
   width: 100%;
    margin: 0 auto;
    background: #4d4d4d;
   
    border-radius: 6px;
    overflow: hidden;
    color: #cfd8e3;
  }

  /* ---- Top strip ---- */
  .ft-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 22px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .ft-top-left {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #9fb0c3;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .ft-top-left::after {
    content: "";
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    display: inline-block;
  }

  .ft-top-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .ft-cursive {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    color: #4fb8d0;
  }

  .ft-top-right::before {
    content: "";
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    display: inline-block;
    order: -1;
  }

  .ft-top-sub {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #9fb0c3;
  }

  /* ---- Main grid ---- */
  .ft-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.35fr;
    gap: 30px;
    padding: 44px 40px;
  }

  .ft-col-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .ft-col-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1c8fa8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .ft-col-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
  }

  .ft-col-head h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
  }

  .ft-links {
    list-style: none;
  }

  .ft-links li + li {
    margin-top: 13px;
  }

  .ft-links a {
    color: #b7c3d1;
    text-decoration: none;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
  }

  .ft-links a:hover {
    color: #4fb8d0;
  }

  .ft-links a svg {
    width: 12px;
    height: 12px;
    stroke: #4fb8d0;
    flex: 0 0 auto;
  }

  /* ---- Form column ---- */
  .ft-form-col h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .ft-form-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #9fb0c3;
    margin-bottom: 22px;
  }

  .ft-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
  }

  .ft-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #0b1b30;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 0 12px;
  }

  .ft-field svg {
    width: 15px;
    height: 15px;
    stroke: #6d7f93;
    flex: 0 0 auto;
    margin-right: 8px;
  }

  .ft-field input,
  .ft-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #e6ecf2;
    font-size: 14px;
    padding: 13px 0;
    font-family: inherit;
  }

  .ft-field textarea {
    resize: vertical;
    min-height: 90px;
    padding-top: 13px;
  }

  .ft-field input::placeholder,
  .ft-field textarea::placeholder {
    color: #6d7f93;
  }

  .ft-security {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 18px 0 20px;
    flex-wrap: wrap;
  }

  .ft-security-label p:first-child {
    font-size: 13.5px;
    font-weight: 700;
    color: #dfe6ee;
  }

  .ft-security-label p:last-child {
    font-size: 12px;
    color: #8494a8;
    margin-top: 2px;
  }

  .ft-security-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ft-code {
    background: #0b1b30;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 12px 18px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #dfe6ee;
    font-size: 14px;
  }

  .ft-refresh {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #0b1b30;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
  }

  .ft-refresh svg {
    width: 16px;
    height: 16px;
    stroke: #9fb0c3;
  }

  .ft-submit {
    width: 100%;
    background: #1c8fa8;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease;
  }

  .ft-submit:hover {
    background: #17798e;
  }

  .ft-submit svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
  }

  /* ---- Bottom bar ---- */
  .ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 40px;
    background: #0b1b30;width: 98%;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .ft-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b7c3d1;
  }

  .ft-tagline svg {
    width: 16px;
    height: 16px;
    stroke: #4fb8d0;
  }

  .ft-badges {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
  }

  .ft-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #b7c3d1;
  }

  .ft-badge svg {
    width: 16px;
    height: 16px;
    stroke: #4fb8d0;
  }

  /* ---- Responsive ---- */
  @media (max-width: 992px) {
    .ft-main {
      grid-template-columns: 1fr 1fr;
      row-gap: 40px;
    }
  }

  @media (max-width: 640px) {
    .ft-top { padding: 20px 24px; justify-content: center; text-align: center; }
    .ft-top-left::after,
    .ft-top-right::before { display: none; }
    .ft-main { grid-template-columns: 1fr; padding: 36px 24px; gap: 36px; }
    .ft-row { flex-direction: column; }
    .ft-bottom { flex-direction: column; text-align: center; padding: 24px; }
    .ft-badges { justify-content: center; }
  }
  
  
  .cf-wrap {
    width: 100%;
    margin: 0;
    background: #2c2c2c;
    border-radius: 0;font-family: Oswald;
    padding: 40px 60px 44px;
  }

  .cf-inner {
    max-width: 1400px;
    margin: 0 auto;
  }

  .cf-rule {
    width: 380px;
    max-width: 100%;
    height: 0px;
    background: #5aa7c9;
    margin-bottom: 26px;
  }

  .cf-grid {
    display: flex;
    flex-direction: column;
  }

  .cf-outer-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  /* ---- Left block ---- */
  .cf-address-block {
    flex: 0 1 auto;
  }

  .cf-heading {
    color: #ffffff;
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 26px;
    white-space: nowrap;
  }

  .cf-body-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .cf-address {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
  }

  .cf-line {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .cf-line .cf-label {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-right: 6px;
  }

  .cf-line a {
    color: #5ab6d8;
    font-weight: 800;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 0.3px;
  }

  .cf-line a:hover { text-decoration: underline; }

  .cf-email {
    margin-top: 6px;
  }

  .cf-email a {
    color: #5ab6d8;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.3px;
    word-break: break-all;
  }

  .cf-email a:hover { text-decoration: underline; }

  .cf-logo {
    flex: 0 0 auto;
    width: 165px;
    height: 165px;
    background: #2f6f87;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    overflow: hidden;
  }

  .cf-logo img {
    width: AUTO;
    height: 100%;
    object-fit: contain;
  }

  /* ---- Right block ---- */
  .cf-right {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;margin-top: -64px;
  }

  .cf-follow {
    width: 100%;
    max-width: 400px;
    background: #2f6f87;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .cf-follow-label {
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
  }

  .cf-socials {
    display: flex;
    gap: 10px;
  }

  .cf-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .cf-social svg {
    width: 18px;
    height: 18px;
    stroke: #2f6f87;
    fill: #2f6f87;
  }

  .cf-special {
    width: 100%;
    max-width: 400px;
    background: #dff1fb;
    border: 3px solid #2f9fc9;
    border-radius: 4px;
    padding: 20px 22px;
    text-align: center;
  }

  .cf-special p {
    color: #e01f26;
    font-weight: 800;
    font-size: clamp(18px, 2.4vw, 24px);
    letter-spacing: 0.5px;
    font-family: Impact, 'Arial Narrow', sans-serif;
    text-transform: uppercase;
  }

  .cf-tagline {
    text-align: right;
    width: 100%;
    max-width: 400px;
  }

  .cf-tagline p {
    color: #ffffff;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }

  /* ---- Responsive ---- */
  @media (max-width: 900px) {
    .cf-right { align-items: center; }
    .cf-follow, .cf-special, .cf-tagline { max-width: 100%; }
    .cf-tagline { text-align: center; }
  }

  @media (max-width: 900px) {
    .cf-wrap { padding: 36px 40px 40px; }
  }

  @media (max-width: 700px) {
    .cf-wrap { padding: 30px 24px 34px; }
    .cf-body-row { justify-content: center; text-align: center; }
    .cf-heading { white-space: normal; text-align: center; }
    .cf-address, .cf-line, .cf-email { text-align: center; }
    .cf-logo { margin: 0 auto; }
    .cf-rule { margin: 0 auto 26px; }
  }

  @media (max-width: 480px) {
    .cf-heading { font-size: 22px; }
    .cf-line a { font-size: 18px; }
    .cf-follow { flex-direction: column; }
    .cf-logo { width: 130px; height: 130px; }
  }