/*
Theme Name: No Down Payment Theme
Theme URI: https://buynowpaylatercarinsurance.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: Custom theme for Buy Now Pay Later Car Insurance
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nodownpayment-theme
*/


/* === GLOBAL STYLES === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff url('/images/white-diamond.png') repeat;
  background-size: cover;
  max-width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* === HEADER === */
header {
  display: flex;
  justify-content: center;
  background-color: #1a0836;
  padding: 0 70px;
  border-bottom: 2px solid #14d47e;
  height: 140px;
}

.header-content {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;         /* Add this */
  max-width: 70%;   /* Optional: full size cap */
  flex: 1;             /* Allow it to grow */
}

.logo {
  display: flex;
  align-items: center;
  margin-right: auto; /* Pushes everything else to the right */
}

.logo img {
  width: 240px;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-direction: row;
  flex-grow: 1;
  font-size: medium;
  color: white;
  text-decoration: none;
  margin-top: 0px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 200;
  font-family: 'Oswald', sans-serif;
}

.main-nav a i {
  margin-left: 14px;
  color: #14d47e; /* green like your icons */
  font-size: 13px;
}

.sub-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: medium;
  list-style-type: none;
  align-items: first baseline;
  margin-top: 25px;
}

.sub-nav a {
  color: white;
  font-family: 'Oswald', sans-serif;
}

.sub-nav a:nth-child(1),
.sub-nav a:nth-child(2),
.sub-nav a:nth-child(3) {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
  padding: 9px 2px; /* space between text and line */
  transition: background-color 0.5s ease, color 0.5s ease;
  font-weight: 100;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a:hover i {
  color: white;
}

.sub-nav a:hover {
  color: #dd6c2e;
}

.cta {
  background-color: #14d47e;
  color: white !important;
  padding: 10px 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  width: auto;
  height: 30%;
  transition: background-color 0.5s ease, color 0.5s ease;
  margin-bottom: -10px;
}

.cta:hover {
  background-color: #dd6c2e;
}

/* === HERO SECTION === */

.hero {
  background-image: url('/wp-content/uploads/static-site/images/new-bnr-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  padding: 20px;
}

/* === HERO LEFT === */
.hero-left {
  font-size: large;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  width: 40%;
  margin-bottom: 13%;
  height: auto;
  margin-left: 4%;
  color: #14d47e;
}

.hero-left h1 {
  color: #14d47e !important;
  font-size: 38px;
  font-weight: 800 !important;
  text-shadow:
    3px 3px 6px rgba(0, 0, 0, 0.6),
    1px 1px 2px rgba(0, 0, 0, 0.8); /* layered for stronger effect */
  font-family: 'Oswald', sans-serif;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
}

.bottom-title {
  margin-top: 20px;
}

/* === HERO RIGHT === */
.hero-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  margin-left: 4%;
}

.hero-right h2 {
  color: #ff9d2f;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Lobster', cursive;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.6),
    0 0 2px rgba(0, 0, 0, 0.4);
  margin: 0 0 10px;
}

.hero-right p {
  font-size: 28px;
  font-family: 'Shadows Into Light', cursive;
  margin: 0 0 20px;
  color: white;
  font-weight: lighter;
}

/* === QUOTE FORM === */
.quote-form {
  display: flex;
  gap: 10px;
  align-items: stretch; /* ensures equal height */
  flex-wrap: wrap;
  width: 70%;
  margin-top: -10px;
  margin-bottom: 40px;
}

.quote-form input,
.quote-form button {
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  height: 48px; /* ✅ force consistent height */
  box-sizing: border-box;
}

.quote-form input {
  flex: 1;
  min-width: 110px;
  margin-bottom: 10px;
  border: 2px solid #14d47e;
}

.quote-form button {
  background-color: #ff6600;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap; /* ✅ prevent wrapping */
  padding: 0 30px; /* tighter left/right padding */
}

.quote-form button:hover {
  background-color: #e65c00;
}


/* === FEATURES SECTION === */
.timeline-features {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #ffffff;
  margin-top: -6%;
  position: relative;
  z-index: 1;
  align-items: stretch; /* <--- make all children equal height */
  border-top: 2px solid #dd6c2e;
  max-width: 100%;
  overflow: hidden;
}


.timeline-block {
  min-width: 29% !important;
  padding: 37px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  background-color: #14d47e;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  height: 200px;
}

.icon-wrapper img {
  width: 120px;
  height: auto;
  margin-left: 60px;
  margin-top: -20px;
}


.text h3 {
  font-size: 16px;
  color: #474a4b;
  margin-bottom: 10px;
  border-bottom: 1px dotted white;
  padding-bottom: 4px;
  font-weight: normal;
  font-family: 'Oswald', sans-serif;
}

.text p {
  font-size: 14px;
  color: #474a4b;
  font-family: 'Merriweather', serif;
  font-style: italic;
  margin: 0;
  font-weight: lighter;
}

.timeline-circle {
  position: relative;
  width: 100%;
  min-height: 200px; /* Set a fixed or min height to make the image visible */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible; /* Ensures absolute elements inside are visible */
}

/* Timeline Circles */
.timeline-circle img {
  position: absolute;
  top: 80px;               /* Use top instead of margin-top for absolute */
  left: 50%;               /* Center horizontally */
  transform: translateX(-50%); /* Perfect horizontal centering */
  border-radius: 50%;
  z-index: 1;
  width: 90px;             /* Use px instead of % for consistent sizing */
  height: auto;
  display: block;          /* Correct image display */
}

.play-button {
  font-size: 20px;
  color: #f5a623;
  font-weight: bold;
}

.text {
  max-width: 250px;
  height: 100%;
  padding: 10px;
  margin-right: -50px;
  line-height: 1.8;
  margin-top: -20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-block .icon-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-wrapper {
  flex-shrink: 0;
}

.icon-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}


.circle {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.timeline-block:not(:last-child) {
  border-right: 1px solid #fff;
}


.text-content {
  margin-left: 20px;
  max-width: 300px;
}

.timeline-wrapper {
  position: relative;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: white;
  z-index: 1;
}

.play-button {
  color: #f5a623;
  font-size: 24px;
  font-weight: bold;
}






/* ---------------------------------------------------------------------------------------------------------------------- */

/* General Reset */
/* h1, h2, h3, h4, h5, p, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: wrap;
}

/* Container */
 /* .main-content {
  width: 70%;
  justify-self: center;
  border-width: 6px;
  border-style: solid;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: white;
} 

/* Typography */
/* h1 {
  font-size: 28px;
  font-weight: bold;
  color: #e65c00;
  margin-bottom: 15px;
  font-family: 'Georgia', serif;
}

h2, h3 {
  font-size: 22px;
  margin: 20px 0 10px;
  color: #1a0836;
}

h5, h4 {
  font-size: 18px;
  font-weight: bold;
  color: #1a0836;
  margin-bottom: 10px;
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
  font-family: 'Verdana', sans-serif;
}

ul.bluetick,
ul.orangearr,
.rightCol ul {
  list-style: none;
  margin-left: 20px;
  padding-left: 0;
}

ul.bluetick li::before {
  content: "▶";
  color: #e65c00;
  margin-right: 8px;
}

ul.orangearr li::before {
  content: "›";
  color: #e65c00;
  margin-right: 8px;
}

.rightCol ul li::before {
  content: "✔";
  color: #14d47e;
  margin-right: 8px;
}

.main-content .row {
  display: block;
}

.col-md-8, .col-md-4 {
  width: 100%;
  max-width: 100%;
}

/* Layout */
/* Stack the layout instead of flex row */
/* #leftCol {
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
}

.rightCol {
  background-color: #f5f5f5;
  padding: 20px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}

/* CTA Section */
/* #partner {
  display: flex;
  background-color: #a5d6a7;
  padding: 15px;
  margin: 30px 0;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

#partner h4 {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

#partner input[type="text"] {
  padding: 10px;
  font-size: 16px;
  width: 180px;
  margin-left: 20px;
  border: 1px solid #ccc;
}

#partner button {
  background-color: #ff9900;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  margin-left: 15px;
  cursor: pointer;
  border-radius: 3px;
}

/* Final CTA Button */
/* .new-btn {
  display: inline-block;
  background-color: #ff9900;
  color: white;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  margin: 20px 0;
}

.new-btn:hover {
  background-color: #e67900;
}
*/

/* Fix for middle and right blocks to have circles aligned */
/* Responsive Fix */
@media screen and (max-width: 991px) {
 .timeline-wrapper {
  position: relative;
  padding: 100px 20px 120px;
}
	
.timeline-features {
    flex-direction: column;
    align-items: center;
  }
	

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  z-index: 0;
}
.icon-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

	
}
































/* ---------------------------------------------------------------------------------------------------------------------- */

@import url("/web/20210503175602cs_/https://nodownpaymentcarinsurance.org/css/flaticon.css");
@import url("/web/20210503175602cs_/https://nodownpaymentcarinsurance.org/css/font-awesome.min.css");

.main-content {
  display: flex;
  flex-direction:row;
  width: 70%;
  justify-self: center;
}

/* .first-container {
  width: 70%;
  justify-self: center;
  display: flex;
} */
.section-one { display: flex;margin-right: 30px;}
.why-us-img { display: flex;padding:30px;flex-direction:column;}
.greenbox-text { display: flex; flex-wrap:wrap; width: 45%; padding: 10px;}
.greenbox-text h4 { font-size: 18px;font-family:'Courgette',cursive;}
body{width:100%;height:auto;font-size:12px;font-family:Arial, Helvetica, sans-serif;color:#666;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}
.inter-link, .bubble{height:auto;position:relative;padding:30px 25px 20px 25px;display:inline-block;}
.inter-link h4{font-family:'Courgette',cursive !important;font-size:20px;line-height:19px;color:#0063BC !important;margin-bottom:25px !important;}
.first .bubble{border-top:3px solid #2ECC71;border-bottom:3px solid #2ECC71;}
.bubble h5, .bubble a{font-family:Georgia;font-size:16px !important;line-height:21px;color:#FF9800 !important;font-style:italic;}
.bubble{position:relative;width:auto;height:74px;padding:13px 15px 10px 15px !important;background:#f2f2f2;border:#2ecc70 solid 3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:2px 2px 8px 0px rgba(97, 97, 97, 0.85);-moz-box-shadow:2px 2px 8px 0px rgba(97, 97, 97, 0.85);box-shadow:2px 2px 8px 0px rgba(97, 97, 97, 0.85);margin-bottom:30px;}
.bubble:hover{background-color:#e2f5f3;border-top:3px solid #F93;border-bottom:3px solid #117DDD;border-left:3px solid #F93;border-right:3px solid #117DDD;}
.bubble:after{content:"";position:absolute;bottom:-23px;left:30px;border-style:solid;border-width:23px 12px 0;border-color:#f2f2f2 transparent;display:block;width:0;z-index:1;}
.bubble:before{content:"";position:absolute;top:70px;left:27px;border-style:solid;border-width:26px 15px 0;border-color:#2ecc70 transparent;display:block;width:0;z-index:0;}
.bubble .fa{font-size:20px;background-color:#003d73;border:1px solid #003d73;border-radius:8px;padding:6px !important;margin-right:10px;float:left;color:#fff;margin-top:4px;}
p{font-family:'Source Sans Pro', sans-serif;font-size:15px;color:#757575;text-align:justify;line-height:21px;margin-top:0px;margin-right:0px;margin-bottom:15px;margin-left:0px;}
p a{color:#003E73;font-style:italic;text-decoration:none}
p a:hover{color:#FF9900;border-bottom:1px dotted #999999;}
a{color:#2ECC71;text-decoration:none;-moz-transition:all 300ms ease-in-out;-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
a:hover{color:#2ECC71;text-decoration:none;-moz-transition:all 300ms ease-in-out;-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
button{-moz-transition:all 300ms ease-in-out;-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
.padding_right_0{padding-right:0;}
.padding_left_0{padding-left:0;}
h1{font-family:"Trebuchet MS","Book Antiqua";font-size:23px;color:#003E73;font-weight:normal;padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#CCCCCC;margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}
h2, h3{font-family:'Source Sans Pro', sans-serif;font-size:18px;color:#32985D;margin:0px;font-weight:normal;padding-top:10px;padding-right:0px;padding-bottom:15px;padding-left:0px;}
h4{font-family:'Source Sans Pro', sans-serif;font-size:18px;color:#32985D
;margin:0px;padding:0px 0px 5px 0px;font-weight:bold;}
h5{color:#7B7B7B;font-family:"Trebuchet MS","Book Antiqua";font-size:16px;margin:0px 0px 10px 0px;font-weight:normal;}
h6{font-family:"Trebuchet MS","Book Antiqua";font-size:20px;color:#00589F;font-weight:normal;margin:0px;}
h6 a{color:#00589F;background-image:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/arrow_hover.png);background-size:20px 20px;background-repeat:no-repeat;background-position:left 2px;margin-top:10px;margin-right:0px;margin-bottom:10px;margin-left:15px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:25px;display:block;}
.punchline{background:none repeat scroll 0% 0% #ffffff;padding:10px;line-height:25px;font-size:16px;font-family:Georgia;font-style:italic;margin:20px 0px;text-align:center;border-top:1px solid #B1BFCB;border-bottom:4px solid #E7D5C0;color:#FF8C00;}
.punchline a{color:#E87900;}
#main-contant{background-color:#FFF;padding:0px 30px;padding-top:0px;-webkit-box-shadow:0px 0px 20px 5px rgba(0, 0, 0, .40);-moz-box-shadow:0px 0px 20px 5px rgba(0, 0, 0, .40);box-shadow: 0px -4px 20px -4px rgba(0, 0, 0, .4); display: flex; flex-direction: row;}
.main-contant{background-color:#FFF;padding:0px 30px;padding-top:20px;-webkit-box-shadow:0px 0px 20px 5px rgba(0, 0, 0, .40);-moz-box-shadow:0px 0px 20px 5px rgba(0, 0, 0, .40);box-shadow: 0px -4px 20px -4px rgba(0, 0, 0, .4);}
.punchline a:hover{text-decoration:none;color:#003E73;}
#wrapper{width:1000x;height:auto;margin:0px auto;}
#wrapper_header{width:100%;background-color:#190938;border-bottom:2px solid #0BAD68;}
#logo{margin-top:8px;margin-right:0px;margin-bottom:15px;margin-left:0px;}
#wrapper_slider{width:100%;background-repeat:repeat-x;background-color:#fff;}
#slider{}
#menu{padding:0px;margin-top:45px;margin-bottom:0px;margin-left:0px;margin-right:0px;}
#menu{list-style:none;padding:0px;margin:0px;}
#menu li{display:inline;padding:5px;text-align:center;margin:0px;}
#menu li a{font-size:14px;font-family:"Trebuchet MS","Book Antiqua";font-weight:normal;padding:10px;width:auto;border-bottom:1px solid #FFF;color:#FFF;text-transform:uppercase;}
#menu .quote{border-bottom:2px #2ECC71 solid;background:#2ECC71;}
#menu .quote:hover{border-bottom:2px #f69f3c solid;background-color:#f69f3c;color:#FFF;}
#menu li a:hover{text-decoration:none;color:#f69f3c;border-bottom:2px solid #FFFFFF;}
#mainslider{}
#form{width:auto;height:auto;background-repeat:no-repeat;background-size:cover;}
#form h2{font-family:"Oswald",sans-serif;font-size:26px;color:#fff;margin:0px;padding:0px;font-weight:600;text-align:center;background-color:#F93;padding:15px;text-shadow:3px 3px 5px #A26222;}
#form h2 span{font-family:"Courgette",cursive;border-top:1px solid #fff;display:block;font-size:20px;margin-top:8px;padding-top:5px;color:#FFFFFF;text-shadow:none;letter-spacing:1px;}
#form h3{font-family:Tahoma, Geneva, sans-serif;font-size:16px;color:#fff;margin:0px;padding:0px;text-align:center;background-color:#000;padding:10px 0px;}
#form h4{font-size:15px;color:#fff;margin:0px;padding:0px;font-weight:normal;}
.field{padding:0px 0px;background-color:#fff;margin:10px;}
.field form{padding:20px 39px 5px 39px;}
#form .field h4{color:#676C72;}
#wrapper_bottom{}
.header{}
#header_slogan{width:100%;background-color:#FFFFFF;-webkit-border-radius-bottomleft:20px;-moz-border-radius-bottomleft:20px;border-bottom-left-radius:20px;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:0px;font-family:"Trebuchet MS","Book Antiqua";font-size:24px;color:#FF9933;padding:30px 0 21px 20px;font-weight:bold;}
#wrapper_bottom_main{}
.getbtn{width:100%;background:#f1eee8;text-align:center;padding:10px 0px 10px 0px;background:#}
.right-form{position:absolute;top:148px;width:370px;z-index:100;right:108px;background:rgba(199, 142, 2, 0.41);border-radius:0px;box-shadow:1px -2px 9px 9px #888888;}
.getbtn .btn a{display:block;font-family:Britannic Bold;color:#fff;font-size:22px;text-decoration:none;text-transform:uppercase;padding:10px 10px;text-align:center;-moz-border-radius:5px;background:#C66B02;}
.getbtn .btn a:hover{background:#C66B02;box-shadow:0px 3px 2px 1px #999999;background-image:-webkit-gradient(linear, left top, left bottom, from(#C66B02), to(#FFA53E));background-image:-webkit-linear-gradient(top, #C66B02, #FFA53E);background-image:-moz-linear-gradient(top, #C66B02, #FFA53E);background-image:-ms-linear-gradient(top, #C66B02, #FFA53E);background-image:-o-linear-gradient(top, #C66B02, #FFA53E);background-image:linear-gradient(top, #C66B02, #FFA53E);}
#deck{}
.textbg{background-repeat:no-repeat;height:35px;margin-top:5px;width:274px;margin-bottom:20px;background-color:#e6e2da;border:1px solid #A3ABB3;}
.textpro{height:33px;width:100%;border:none;background:none;padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-family:Arial, Helvetica, sans-serif;font-size:16px;-moz-transition:all 300ms ease-in-out;-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
.textpro:focus{color:#333;background:#f1f1f1;}
#leftCol{height:auto;margin-top:20px;margin-right:20px;margin-bottom:15px;padding-bottom:15px;}
#leftCol h1{font-family: 'Lobster', cursive;color:#FF8000;padding:5px 10px;font-size:30px;line-height:41px;font-weight: lighter;}
#leftCol .body-contant{padding:10px;}
#leftCol h2{color:#32985D;font-weight:bold;padding-bottom:10px;border-bottom:1px dotted #2C3E50;margin-bottom:10px;}
#leftCol h3{color:#32985D;font-weight:bold;padding-bottom:10px;border-bottom:1px dotted #2C3E50;margin-bottom:10px;}
#leftCol h4{color:#32985D;font-weight:bold;padding-bottom:10px;border-bottom:1px dotted #2C3E50;margin-bottom:10px;}
ul.orangearr {
  margin: 10px 0 10px 10px;
  padding: 0;
  list-style: none;
}

ul.orangearr li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  color: #757575;
  line-height: 1.5;
}

ul.orangearr .arrow-icon {
  width: 12px;
  height: 12px;
  margin-top: 4px; /* Align vertically */
  flex-shrink: 0;
}

ul.orangearr li a {
  text-decoration: none;
  color: #003366;
  border-bottom: 1px dotted #ccc;
}

ul.orangearr li a:hover {
  color: #FF9900;
}


ul.bluetick{margin-bottom:10px;margin-left:10px;list-style-type:none;padding:0px;}
ul.bluetick li{font-size:15px;color:#757575;line-height:19px;background-image:url("/images/bluearr.png");background-repeat:no-repeat;background-position:left 3px;font-family:"Source Sans Pro",sans-serif;padding-top:0;padding-right:0;padding-bottom:10px;padding-left:20px;}
#rightCol{background:#f5f5f5;border:1px solid #E1E1E1;margin-top:35px;background-repeat:no-repeat;background-size:100% 100%;}
.why-us{padding:0px;margin-top:-10px;background:#233f57 url("/images/why-us-bg.jpg") no-repeat bottom;color:#fff;}
.why-us p{color:#AEDAFB;line-height:19px;}
.why-us-bg{padding:15px;}
#rightCol .why-us ul{margin-bottom:20px;margin-top:20px;}
#rightCol .why-us ul li{color:#BBD6EA;font-size:14px;}
.no-deposit{padding:30px 15px 10px 15px;background:url("/images/no-deposite1.jpg") top right no-repeat, url("/images/no-deposite2.jpg") bottom left no-repeat #f2f2f2;}
.no-deposit a{text-align:center;margin-top:10px;font-size:16px;color:#FF9800;padding:12px 10px;margin-top:10px;max-width:60%;     background-color: #29435a;}
#rightCol ul{padding:0px;margin-top:15px;list-style-position:outside;list-style-image:url("/images/bullet.png");list-style-type:none;margin-right:0px;margin-bottom:0px;margin-left:20px;}
#rightCol ul li{border-bottom:1px dotted #C2C0C0;font-family:"Trebuchet MS","Book Antiqua";font-size:14px;font-weight:normal;line-height:17px;padding-top:6px;padding-right:0px;padding-bottom:5px;padding-left:0px;color:#434343;margin-bottom:10px;line-height:20px;}
#rightCol ul li:last-child{border-bottom:none;}
.why-us p{margin-top:7px;}
#rightCol h1{font-family:"Courgette",cursive;font-size:26px;color:#FF9800;border:none;font-weight:normal;margin:0px;padding-top:5px;padding-right:0px;padding-bottom:10px;padding-left:0px;border-bottom:1px solid #D18154;}
#rightCol h5{font-family:"Courgette",cursive;font-size:26px;color:#FF9800;border:none;font-weight:normal;margin:0px;padding-top:5px;padding-right:0px;padding-bottom:10px;padding-left:0px;border-bottom:1px solid #D18154;}
#rightCol ul li a{color:#003366;font-size:14px;}
#rightCol ul li a:hover{color:#FF9900;text-decoration:none;}
#services{float:left;padding-top:15px;border-top-width:1px;border-bottom-width:1px;border-top-style:dashed;border-bottom-style:solid;border-top-color:#ddd;border-bottom-color:#ddd;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}
#services p{font-family:"Trebuchet MS";font-size:14px;line-height:21px;text-align:center;color:#484848;}
.faq-block{width:100%;margin:0px auto;display:block;margin:0px 0px 0px 0px;position:relative;background-color:#2ECC71;border-top:2px solid #FF9933;padding-top:16px;padding-bottom:16px;box-shadow:7px 6px 12px 4px #B9F3D1;}
.faq-block p{color:#24613E;line-height:20px;font-family:georgia;font-style:italic;text-align:left;}
.block{padding:10px 40px;position:relative;display:inline-block;width:33%}
.block .read a{background-color:#204E35;font-size:11px;border-radius:6px;color:#FFEAC1;text-decoration:none;padding:6px 14px;}
.block h3{border-bottom:1px dashed #fff;margin-bottom:15px;padding-bottom:8px;margin-top:0px;padding-top:0px;color:#204E33;font-family:"Oswald",sans-serif;}
.options-or{position:absolute;top:0px;left:34%;bottom:0px;width:20px;margin-left:-20px;background-color:#ECEFEF;}
.options-or2{position:absolute;top:0px;left:67.5%;bottom:0px;width:20px;margin-left:-20px;background-color:#ECEFEF;}
.options-or-text{font-family:VWHeadlineOT-Black,sans-serif;font-weight:400;font-style:normal;text-transform:uppercase;position:absolute;top:50%;left:50%;margin-left:-46px;margin-top:-46px;line-height:92px;text-align:center;color:#8994A0;font-size:20px;}
.options-or-bg{font-style:normal;display:inline-block;background-repeat:no-repeat;width:92px;height:92px;background-image:url("/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/icon-desktop.png");}
.box{background-image:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/call.png);background-repeat:no-repeat;text-align:center;padding:10px 10px 50px 10px;}
.box:hover{background-image:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/call22.png);background-repeat:no-repeat;}
.slogan_box{padding-top:120px;padding-bottom:15px;border-bottom:1px dashed #999;font-family:"Trebuchet MS","Book Antiqua";font-size:28px;line-height:27px;color:#003D73;margin:0px 0 15px 0;}
.slogan_box a{text-decoration:none;color:#003D73}
.boxtext{padding:10px;}
.box1{background-image:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/board.png);background-repeat:no-repeat;text-align:center;padding:10px 10px 50px 10px;}
.box1:hover{background-image:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/board22.png);background-repeat:no-repeat;}
.box2{background-image:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/tie.png);background-repeat:no-repeat;text-align:center;padding:10px 10px 50px 10px;}
.box2:hover{background-image:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/tie22.png);background-repeat:no-repeat;}
#partner{text-align: left;
margin: 0;
display: flex;
background: rgb(64, 202, 140);
width: 100%;
padding: 15px 0px 10px 0px;
box-shadow: 0px 1px 5px 7px rgb(195, 225, 204);
border: 1px solid #FFF;
flex-direction: row;
margin-right: 20px;
}
#partner h4{font-family:"Tw Cen MT";font-size:23px;color:#E69B00;float:left;line-height:29px;font-weight:bold;text-align:left;border-bottom:none !important;color: #FFF; text-shadow: 0px 1px 5px #003d73;}
#partner h4 a{color:#F93;}
.client_box {
  font-family: "Trebuchet MS";
  font-size: 14px;
  color: #003D73;
  padding: 20px 0px;
  margin-right: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.client_box input {
  padding: 10px;
  border: 1px solid #003d77;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  width: 170px;
  box-sizing: border-box;
  margin: 0;
}

.client_box button {
  background-color: #ff8100;
  border: 1px solid #fff;
  padding: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  width: 170px;
  box-sizing: border-box;
  margin: 0;
  cursor: pointer;
}


.border {border-top: 1px dashed #003d73;
margin-top: 20px;}
.footer-section{display:flex;justify-content:flex-start;width:100%;background: #ff8100 url("/images/orange-bg.png") repeat;background-size: cover;padding: 0px 16%;border-bottom: 20px solid #003d73;}
.apply{padding:8px 0px;}
.apply p {margin-top: 20px;}
.footer-container {display: flex; flex-direction: row; width: 100%;}
.footer-row {display: flex; flex-direction: column; width: 100%;margin-right: 140px;}
.footer-div{display: flex;justify-content: flex-start;}
.footer-div p{font-family:"Courgette",cursive;font-size:28px;color:#FFF;line-height:39px;}
.footer-div span{font-family:"Courgette",cursive;font-size:20px;color:#FFF;line-height:30px;}
.footer-div .button{ width: 30%; -webkit-box-flex: 1;-webkit-flex: 1 1 auto;-ms-flex: 1 1 auto;flex: 1 1 auto;margin: 10px 0px 8px;padding: 10px 12px 12px 12px;border: 2px solid #f7f7f7;text-align: center;text-transform: uppercase;position: relative;overflow: hidden;-webkit-transition: .3s;transition: .3s;background: #003d73;font-size: 20px;font-weight: 700;font-family: "Oswald",sans-serif; }
.footer-div .button:hover{box-shadow: inset 0px 0px 0px 3px #f7f7f7;    background-color: #095869;}
.footer-div .button::after {    position: absolute;
    -webkit-transition: .3s;
    transition: .3s;
    content: '';
    width: 0;
    left: 50%;
    bottom: 0;
    height: 3px;
    background: #f7f7f7;
}
.footer-div .get-btn{}

#footer h4{font-family:"Oswald",sans-serif;font-size:19px;color:#2ECC71;margin:0px;padding:10px 0px 9px 0px;font-weight:normal;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#838383;}
.social-div{background-color:rgb(46, 204, 113);padding:20px 0px 10px 0px;}
#footer_main{padding-top:20px;}
.footerbox ul{padding:0px;margin:8px 0px 0px 0px;list-style:none;}
.footerbox ul li{line-height:25px;font-family:"Trebuchet MS","Book Antiqua";font-size:12px;}
.footerbox ul li a{color:#e0dada;font-size:14px;}
.footerbox ul li a:hover{color:#ffa53e;}
.footerbox2{text-align:center;padding-top:5px;}
.footerbox2 p{text-align:center;color:#fff;margin:0px;}
#footer_below {
  width: 100%;
  height: 60px;
  background-color: #353635;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 16%;
}

#footer_below .footer_links {
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

#footer_below .footer_links span {
  color: #fff;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.footer_links ul {
  list-style: none;
  list-style-position: inside;
}

.footer_links ul li {
  display: inline;
  margin: 0px 6px;
  padding-right: 7px;
}

.footer_links ul li a {
  text-decoration: none;
  height: 25px;
  width: 40px;
}

.footer_links ul li a:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
  text-decoration: none;
}

.clearFix{clear:both;}
#slider_container_1{float:left;padding:10px;width:640px;-moz-border-radius:10px 10px;-webkit-border-radius:10px 10px;border-radius:10px 10px;}
#SliderName{width:100%;height:320px;margin:auto;}
.SliderNameDescription{font-family:"Trebuchet MS","Book Antiqua";font-size:24px;text-align:center;color:#FFFFFF;padding-top:10px;padding-right:5px;padding-bottom:5px;padding-left:25px;text-transform:capitalize;line-height:31px;font-weight:normal;font-variant:small-caps;width:90%;}
#SliderNameNavigation{margin:5px 10px 0 0;padding-top:15px;height:15px;text-align:right;-moz-border-radius:6px 6px;position:relative;z-index:999;bottom:40px;}
#SliderNameNavigation a:link, #SliderNameNavigation a:active, #SliderNameNavigation a:visited, #SliderNameNavigation a:hover{margin:0 2px;font-size:0px;line-height:0px;padding:7px;text-decoration:none;background-image:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/nav.png);background-repeat:no-repeat;background-position:center center;}
#SliderNameNavigation a.active:link, #SliderNameNavigation a.active:active, #SliderNameNavigation a.active:visited, #SliderNameNavigation a.active:hover{background:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/nav_active.png) no-repeat center center;}
.title{padding:5px;color:#fff;border-radius:3px;background:#003e73;text-decoration: none !important; border: none !important;border-bottom: none !important;}
.boxtitle{height:auto;padding:10px;margin-top:5px;background:#f1f1f1;border:1px solid #81b1db;border-radius:3px;}
.boxtitle p{color:#333;}
.title h1{color:#fff;font-size:22px;border:none;margin:0;}
.btn2{font-family:Britannic Bold;font-size:26px;text-transform:uppercase;margin-top:10px;margin-left:10px;text-align:center;background:none;}
.btn2 a{display:inline-block;background:#000;color:#FFF;text-decoration:none;-moz-border-radius:5px;box-shadow:0px 3px 2px 1px #999999;border-radius:5px;background:#FF9900;background-image:-webkit-gradient(linear, left top, left bottom, from(#FF9900), to(#A86500))
;background-image:-webkit-linear-gradient(top, #FF9900, #A86500);background-image:-moz-linear-gradient(top, #FF9900, #A86500);background-image:-ms-linear-gradient(top, #FF9900, #A86500);background-image:-o-linear-gradient(top, #FF9900, #A86500);background-image:linear-gradient(top, #FF9900, #A86500);padding:10px;}
.btn2 a:hover{box-shadow:0px 3px 2px 1px #999999;background-image:-webkit-gradient(linear, left top, left bottom, from(#A86500), to(#FF9900));background-image:-webkit-linear-gradient(top, #A86500, #FF9900);background-image:-moz-linear-gradient(top, #A86500, #FF9900);background-image:-ms-linear-gradient(top, #A86500, #FF9900);background-image:-o-linear-gradient(top, #A86500, #FF9900);background-color:#FF9900;}
.selectbox{height:25px;width:120px;padding:3px;border:1px solid #CCCCCC;background-color:#FFFFFF;background-image:none;}
.applicationform .textbox{width:120px;;padding:3px;border:1px solid #CCCCCC;background-color:#FFFFFF;background-image:none;}
.phn{height:25px;width:35px;padding:3px;border:1px solid #CCCCCC;background-color:#FFFFFF;background-image:none;}
.phn3{height:25px;width:45px;padding:3px;border:1px solid #CCCCCC;background-color:#FFFFFF;background-image:none;}
.crmain{width:100%;}
.crtext{width:100%;font-family:Calibri;font-size:15px;font-style:normal;font-weight:bold;color:#333333;padding-top:4px;padding-bottom:8px;padding-left:5px;}
.crcheckbox{width:20px;float:left;padding-top:4px;padding-bottom:4px;margin-left:-2px;}
.crchckbox{height:15px;width:15px;border:1px solid #CCCCCC;}
.hide_text{font-family:Arial, Helvetica, sans-serif;font-size:10px;width:100%;color:#999999;line-height:10px;margin-left:-5px;text-align:justify;padding-left:18px;padding-top:5px;padding-bottom:8px;}
.social{margin-top:20px;text-align:left;border:#C7C7C7 solid 1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
.social img{border:none;margin-bottom:5px;margin-left:5px;}
.social h4{font-family:"Oswald",sans-serif;font-size:20px;color:#003e73;background:#EBEBEB;padding:15px;text-align:left;margin:0px 0px 10px 0px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:#C5C5C5;font-weight:normal;}
.social h5{font-family:"Trebuchet MS","Book Antiqua";font-size:20px;color:#003e73;background:#EBEBEB;padding:10px 10px 10px;text-align:left;margin:0px 0px 5px 0px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:#C5C5C5;font-weight:normal;}
.smallform{float:left;font-family:'Trebuchet MS';width:263px;margin-top:20px;border:#E6E6E6 solid 1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
.smallform-top{border:#E9E9E9 solid 1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-top-left-radius:5px;border-top-right-radius:5px;background-color:#E9E9E9;height:80px;font-size:26px;text-align:center;line-height:31px;padding-top:10px;text-shadow:2px 1px #B5B5B5;color:#003e73;}
.smallform .zip{text-align:center;border:#F90 1px solid;width:57%;padding:8px 5px 8px 5px;}
.smallform-btm{border:#E9E9E9 solid 1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-bottom-right-radius:5px;border-bottom-left-radius:5px;background-color:#E9E9E9;text-align:center;padding-bottom:8px;padding-top:10px;}
.smallform-mid{background-color:#003E73;font-size:14px;color:#FFF;line-height:21px;padding:10px 10px 20px;}
.info-box{height:auto;border:1px solid #DADADA;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;box-shadow:3px 2px 2px #C4C4C4;padding:8px;font-family:'Trebuchet MS';font-size:18px;color:#003e73;margin-left:auto;margin-right:auto;margin-bottom:25px;margin-top:0;width:90%;}
.info-boxmid{padding:3px;margin-top:15px;}
.info-boxbtm{padding:5px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ccc;text-align:left;}
.info-box a{color:#003e73;}
.info-box a:hover{border-bottom:#E1E1E1 1px solid;color:#F90;}
.videobox{margin-left:10px;width:30%;height:auto;border:1px solid #DADADA;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;box-shadow:3px 2px 2px #C4C4C4;padding:3px;float:left;}
.videotop{background:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/videos/images/video1.JPG);background-size:200px 100px;background-repeat:no-repeat;height:90px;border-top-left-radius:5px;border-top-right-radius:5px;}
.videobtm{border-top:1px solid #999;background-color:#003E73;color:#FFF;border-bottom-left-radius:5px;border-bottom-right-radius:5px;line-height:17px;padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;}
.videobtm a{color:#FFF;}
.smallbox{text-align:center;padding:8px;margin-top:15px;margin-bottom:20px;border-radius:5px;}
.smallbox img{background-color:#2ECC71;border-radius:50%;padding:10px;}
.smallbox img:hover{background-color:#2C3E50;}
.smallboxtxt{text-align:center;font-family:'Oswald', sans-serif;color:#2C3E50;font-size:16px;background-color:#FFF;padding:5px 18px;margin:15px auto;font-weight:300;text-decoration:none;text-transform:uppercase;}
.smallboxtxt:hover{color:#0BAD68;}
ul.faq{margin:0px;padding:0px;list-style:none;}
ul.faq li{font-weight:normal;padding-top:10px;padding-right:0px;padding-bottom:10px;padding-left:35px;background-image:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/ques.jpg);background-repeat:no-repeat;background-position:left center;color:#003366;font-family:"Trebuchet MS","Book Antiqua";font-size:17px;margin:0px;border-bottom-width:1px;border-bottom-style:dotted;border-bottom-color:#CCC;}
ul.faq li a{color:#003366;}
ul.faq li a:hover{color:#FE8C12;}
ul.faq p{margin:0px;padding-top:5px;padding-right:5px;padding-bottom:20px;padding-left:30px;}
.mosaic-block{position:relative;overflow:hidden;width:100%;height:200px;background:#111 url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/img/progress.gif) no-repeat center center;border:2px solid #999;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5);margin-bottom:10px;}
.mosaic-backdrop{display:none;top:0;height:180px;background-color:#FFF;}
.mosaic-backdrop img{height:100%;width:100%;}
.mosaic-backdrop{height:100%;}
.mosaic-overlay{display:none;z-index:5;position:absolute;height:180px;background:#000;}
.details{margin-top:10px;margin-right:10px;margin-bottom:15px;margin-left:10px;}
.details h4{line-height:21px;color:#fff;font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;font-size:18px;font-weight:bold;}
.details p{color:#fff;text-align:left;font-family:Arial, Helvetica, sans-serif;font-size:13px;margin-bottom:15px;line-height:17px;}
.details a{text-decoration:none;}
.bar2 .mosaic-overlay{border-top:#fff 1px solid;bottom:-60px;height:120px;opacity:0.75;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80);}
.bar2 .mosaic-overlay:hover{opacity:0.7;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80);}
#registerButton{height:60px;width:200px;background-image:url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/submit-btn.png);background-repeat:no-repeat;border:0px;float:none;text-align:center;}
.effect2{position:relative;width:100%;z-index:99999;}
.effect2:before, .effect2:after{z-index:-1;position:absolute;content:"";bottom:15px;left:10px;width:60%;top:80%;background:#777;-webkit-box-shadow:0 20px 10px #777;-moz-box-shadow:0 15px 10px #777;box-shadow:0 20px 10px #777;-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);-ms-transform:rotate(-3deg);transform:rotate(-3deg);}
.effect2:after{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);-ms-transform:rotate(3deg);transform:rotate(3deg);right:10px;left:auto;}
.zip-code-fild{width:100%;margin:20px 10px 10px 0px;}
.applicationform select{min-width:120px;background-color:#FFFFFF;background-image:none;border:1px solid #CCCCCC;height:25px;padding:3px;}
.applicationform .datemnth{min-width:50px;}
.navbar-default{background:none;border:none;float:right;margin:5p 0px 10px 0px;}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td{border:none;padding:3px;}
.table tr{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#CCC;}
.per_in td{width:27%;}
.per_in .text{font-family:Arial, Helvetica, sans-serif;font-size:9px;line-height:12px;color:#929292;width:96%;text-align:justify;}
.Residence select{width:60px !important;}
.view_column_value select{width:90px !important;}
.top-nav li{list-style:none;display:inline-block;padding:10px 0px;}
.top-nav a:hover i{color:#FFF;}
.top-nav li a{color:#fff;}
.top-nav li a i{margin-right:8px;vertical-align:middle;color:#2ecc71;}
#leftCol iframe{padding:0 45px;}
.detail_up{display:inline;left:0px;bottom:-60px;}
.countrymap{max-width:400px;}
.carousel-fade .carousel-inner .item{opacity:0;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;}
.carousel-fade .carousel-inner .active{opacity:1;}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right{left:0;opacity:0;z-index:1;}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right{opacity:1;}
.carousel-fade .carousel-control{z-index:2;}
.section-intro-index{position:relative;height:auto;color:white !important;background-color:black;background-image:url('/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/polygonal.png');background-repeat:no-repeat;background-position:center;background-size:cover;}
.layer-intro-index{background-color:#000;background-color:rgba(0, 0, 0, .9);-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=90)';}
.section-intro-index .item{min-height:374px;margin-top:30px;}
.carousel-caption h1{font-family:'Oswald', sans-serif;color:#FFF;text-shadow:none;border-bottom:none;font-size:27px;line-height:35px;text-align:left;padding:11px;font-weight:300;text-shadow:1px 1px 18px #000000;}
.carousel-caption{left:11%;padding-bottom:15px;}
.carousel-caption h1 span{color:rgb(255, 128, 0);}
@media (max-width:767px){.section-intro-index .item{min-height:343px;margin-top:36px;padding-bottom:46px;}
.section-intro-index .title-xl{margin-top:0;}
}
.layer-intro .carousel-indicators{display:none;}
.layer-intro .onload-class .carousel-indicators{display:block;}
.display-none{display:none !important;}
.wrapper-preloader{position:absolute;top:50%;right:0;left:0;margin-top:-41px;}
#preloader{font-size:24px;position:relative;overflow:hidden;width:1em;height:1em;margin:.8em auto;-webkit-animation:load6 1.7s infinite ease;animation:load6 1.7s infinite ease;text-indent:-9999em;border-radius:50%;}
@-webkit-keyframes load6{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);box-shadow:-.11em -.83em 0 -.4em #fff, -.11em -.83em 0 -.42em #fff, -.11em -.83em 0 -.44em #fff, -.11em -.83em 0 -.46em #fff, -.11em -.83em 0 -.477em #fff;}
5%,
95%{box-shadow:-.11em -.83em 0 -.4em #fff, -.11em -.83em 0 -.42em #fff, -.11em -.83em 0 -.44em #fff, -.11em -.83em 0 -.46em #fff, -.11em -.83em 0 -.477em #fff;}
30%{box-shadow:-.11em -.83em 0 -.4em #fff, -.51em -.66em 0 -.42em #fff, -.75em -.36em 0 -.44em #fff, -.83em -.03em 0 -.46em #fff, -.81em .21em 0 -.477em #fff;}
55%{box-shadow:-.11em -.83em 0 -.4em #fff, -.29em -.78em 0 -.42em #fff, -.43em -.72em 0 -.44em #fff, -.52em -.65em 0 -.46em #fff, -.57em -.61em 0 -.477em #fff;}
100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);box-shadow:-.11em -.83em 0 -.4em #fff, -.11em -.83em 0 -.42em #fff, -.11em -.83em 0 -.44em #fff, -.11em -.83em 0 -.46em #fff, -.11em -.83em 0 -.477em #fff;}
}
@keyframes load6{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);box-shadow:-.11em -.83em 0 -.4em #fff, -.11em -.83em 0 -.42em #fff, -.11em -.83em 0 -.44em #fff, -.11em -.83em 0 -.46em #fff, -.11em -.83em 0 -.477em #fff;}
5%,
95%{box-shadow:-.11em -.83em 0 -.4em #fff, -.11em -.83em 0 -.42em #fff, -.11em -.83em 0 -.44em #fff, -.11em -.83em 0 -.46em #fff, -.11em -.83em 0 -.477em #fff;}
30%{box-shadow:-.11em -.83em 0 -.4em #fff, -.51em -.66em 0 -.42em #fff, -.75em -.36em 0 -.44em #fff, -.83em -.03em 0 -.46em #fff, -.81em .21em 0 -.477em #fff;}
55%{box-shadow:-.11em -.83em 0 -.4em #fff, -.29em -.78em 0 -.42em #fff, -.43em -.72em 0 -.44em #fff, -.52em -.65em 0 -.46em #fff, -.57em -.61em 0 -.477em #fff;}
100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);box-shadow:-.11em -.83em 0 -.4em #fff, -.11em -.83em 0 -.42em #fff, -.11em -.83em 0 -.44em #fff, -.11em -.83em 0 -.46em #fff, -.11em -.83em 0 -.477em #fff;}
}
.item .animation{visibility:hidden;}
.onload-class .item-theme-first.active .animation{visibility:visible;-webkit-animation-fill-mode:both;animation-fill-mode:both;}
.item-theme.active .animation{visibility:visible;-webkit-animation-fill-mode:both;animation-fill-mode:both;}
.item-theme .an-delay-01,
.onload-class .item-theme-first.active .animation.an-delay-01{-webkit-animation-delay:.1s;animation-delay:.1s;}
.item-theme .an-delay-02,
.onload-class .item-theme-first.active .animation.an-delay-02{-webkit-animation-delay:.2s;animation-delay:.2s;}
.item-theme .an-delay-03,
.onload-class .item-theme-first.active .animation.an-delay-03{-webkit-animation-delay:.3s;animation-delay:.3s;}
.item-theme .an-delay-04,
.onload-class .item-theme-first.active .animation.an-delay-04{-webkit-animation-delay:.4s;animation-delay:.4s;}
.item-theme .an-delay-05,
.onload-class .item-theme-first.active .animation.an-delay-05{-webkit-animation-delay:.5s;animation-delay:.5s;}
.item-theme .an-delay-06,
.onload-class .item-theme-first.active .animation.an-delay-06{-webkit-animation-delay:.6s;animation-delay:.6s;}
.item-theme .an-delay-07,
.onload-class .item-theme-first.active .animation.an-delay-07{-webkit-animation-delay:.7s;animation-delay:.7s;}
.item-theme .an-delay-08,
.onload-class .item-theme-first.active .animation.an-delay-08{-webkit-animation-delay:.8s;animation-delay:.8s;}
.item-theme .an-delay-09,
.onload-class .item-theme-first.active .animation.an-delay-09{-webkit-animation-delay:.9s;animation-delay:.9s;}
.item-theme .an-delay-10,
.onload-class .item-theme-first.active .animation.an-delay-10{-webkit-animation-delay:1s;animation-delay:1s;}
.item-theme .an-delay-11,
.onload-class .item-theme-first.active .animation.an-delay-11{-webkit-animation-delay:1.1s;animation-delay:1.1s;}
.item-theme .an-delay-12,
.onload-class .item-theme-first.active .animation.an-delay-12{-webkit-animation-delay:1.2s;animation-delay:1.2s;}
.item-theme .an-delay-13,
.onload-class .item-theme-first.active .animation.an-delay-13{-webkit-animation-delay:1.3s;animation-delay:1.3s;}
.item-theme .an-delay-14,
.onload-class .item-theme-first.active .animation.an-delay-14{-webkit-animation-delay:1.4s;animation-delay:1.4s;}
.item-theme .an-delay-15,
.onload-class .item-theme-first.active .animation.an-delay-15{-webkit-animation-delay:1.5s;animation-delay:1.5s;}
.item-theme .an-delay-16,
.onload-class .item-theme-first.active .animation.an-delay-16{-webkit-animation-delay:1.6s;animation-delay:1.6s;}
.item-theme .an-delay-17,
.onload-class .item-theme-first.active .animation.an-delay-17{-webkit-animation-delay:1.7s;animation-delay:1.7s;}
.item-theme .an-delay-18,
.onload-class .item-theme-first.active .animation.an-delay-18{-webkit-animation-delay:1.8s;animation-delay:1.8s;}
.item-theme .an-delay-19,
.onload-class .item-theme-first.active .animation.an-delay-19{-webkit-animation-delay:1.9s;animation-delay:1.9s;}
.item-theme .an-delay-20,
.onload-class .item-theme-first.active .animation.an-delay-20{-webkit-animation-delay:2s;animation-delay:2s;}
.item-theme .an-duration-01,
.onload-class .item-theme-first.active .animation.an-duration-01{-webkit-animation-duration:.1s;animation-duration:.1s;}
.item-theme .an-duration-02,
.onload-class .item-theme-first.active .animation.an-duration-02{-webkit-animation-duration:.2s;animation-duration:.2s;}
.item-theme .an-duration-03,
.onload-class .item-theme-first.active .animation.an-duration-03{-webkit-animation-duration:.3s;animation-duration:.3s;}
.item-theme .an-duration-04,
.onload-class .item-theme-first.active .animation.an-duration-04{-webkit-animation-duration:.4s;animation-duration:.4s;}
.item-theme .an-duration-05,
.onload-class .item-theme-first.active .animation.an-duration-05{-webkit-animation-duration:.5s;animation-duration:.5s;}
.item-theme .an-duration-06,
.onload-class .item-theme-first.active .animation.an-duration-06{-webkit-animation-duration:.6s;animation-duration:.6s;}
.item-theme .an-duration-07,
.onload-class .item-theme-first.active .animation.an-duration-07{-webkit-animation-duration:.7s;animation-duration:.7s;}
.item-theme .an-duration-08,
.onload-class .item-theme-first.active .animation.an-duration-08{-webkit-animation-duration:.8s;animation-duration:.8s;}
.item-theme .an-duration-09,
.onload-class .item-theme-first.active .animation.an-duration-09{-webkit-animation-duration:.9s;animation-duration:.9s;}
.item-theme .an-duration-10,
.onload-class .item-theme-first.active .animation.an-duration-10{-webkit-animation-duration:1s;animation-duration:1s;}
@-webkit-keyframes fadeInSlider{0%{opacity:0;}
100%{opacity:1;}
}
@keyframes fadeInSlider{0%{opacity:0;}
100%{opacity:1;}
}
.item-theme.active .animation.fadeInSlider,
.onload-class .item-theme-first.active .animation.fadeInSlider{-webkit-animation-name:fadeInSlider;animation-name:fadeInSlider;}
@-webkit-keyframes fadeInLeftSlider{0%{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);opacity:0;}
100%{-webkit-transform:none;transform:none;opacity:1;}
}
@keyframes fadeInLeftSlider{0%{-webkit-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);opacity:0;}
100%{-webkit-transform:none;-ms-transform:none;transform:none;opacity:1;}
}
.item-theme.active .animation.fadeInLeftSlider,
.onload-class .item-theme-first.active .animation.fadeInLeftSlider{-webkit-animation-name:fadeInLeftSlider;animation-name:fadeInLeftSlider;}
@-webkit-keyframes fadeInLeftBigSlider{0%{-webkit-transform:translate3d(-2000px, 0, 0);transform:translate3d(-2000px, 0, 0);opacity:0;}
100%{-webkit-transform:none;transform:none;opacity:1;}
}
@keyframes fadeInLeftBigSlider{0%{-webkit-transform:translate3d(-2000px, 0, 0);-ms-transform:translate3d(-2000px, 0, 0);transform:translate3d(-2000px, 0, 0);opacity:0;}
100%{-webkit-transform:none;-ms-transform:none;transform:none;opacity:1;}
}
.item-theme.active .animation.fadeInLeftBigSlider,
.onload-class .item-theme-first.active .animation.fadeInLeftBigSlider{-webkit-animation-name:fadeInLeftBigSlider;animation-name:fadeInLeftBigSlider;}
@-webkit-keyframes fadeInRightSlider{0%{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);opacity:0;}
100%{-webkit-transform:none;transform:none;opacity:1;}
}
@keyframes fadeInRightSlider{0%{-webkit-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);opacity:0;}
100%{-webkit-transform:none;-ms-transform:none;transform:none;opacity:1;}
}
.item-theme.active .animation.fadeInRightSlider,
.onload-class .item-theme-first.active .animation.fadeInRightSlider{-webkit-animation-name:fadeInRightSlider;animation-name:fadeInRightSlider;}
@-webkit-keyframes fadeInRightBigSlider{0%{-webkit-transform:translate3d(2000px, 0, 0);transform:translate3d(2000px, 0, 0);opacity:0;}
100%{-webkit-transform:none;transform:none;opacity:1;}
}
@keyframes fadeInRightBigSlider{0%{-webkit-transform:translate3d(2000px, 0, 0);-ms-transform:translate3d(2000px, 0, 0);transform:translate3d(2000px, 0, 0);opacity:0;}
100%{-webkit-transform:none;-ms-transform:none;transform:none;opacity:1;}
}
.item-theme.active .animation.fadeInRightBigSlider,
.onload-class .item-theme-first.active .animation.fadeInRightBigSlider{-webkit-animation-name:fadeInRightBigSlider;animation-name:fadeInRightBigSlider;}
@-webkit-keyframes fadeInUpSlider{0%{-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);opacity:0;}
100%{-webkit-transform:none;transform:none;opacity:1;}
}
@keyframes fadeInUpSlider{0%{-webkit-transform:translate3d(0, 100%, 0);-ms-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);opacity:0;}
100%{-webkit-transform:none;-ms-transform:none;transform:none;opacity:1;}
}
.item-theme.active .animation.fadeInUpSlider,
.onload-class .item-theme-first.active .animation.fadeInUpSlider{-webkit-animation-name:fadeInUpSlider;animation-name:fadeInUpSlider;}
@-webkit-keyframes fadeInUpBigSlider{0%{-webkit-transform:translate3d(0, 2000px, 0);transform:translate3d(0, 2000px, 0);opacity:0;}
100%{-webkit-transform:none;transform:none;opacity:1;}
}
@keyframes fadeInUpBigSlider{0%{-webkit-transform:translate3d(0, 2000px, 0);-ms-transform:translate3d(0, 2000px, 0);transform:translate3d(0, 2000px, 0);opacity:0;}
100%{-webkit-transform:none;-ms-transform:none;transform:none;opacity:1;}
}
.item-theme.active .animation.fadeInUpBigSlider,
.onload-class .item-theme-first.active .animation.fadeInUpBigSlider{-webkit-animation-name:fadeInUpBigSlider;animation-name:fadeInUpBigSlider;}
.flip-container{perspective:1000;}
.flip-container:hover .flipper, .flip-container.hover .flipper{transform:rotateY(180deg);}
.flip-container, .front, .back{height:270px;}
.flipper{transition:0.6s;transform-style:preserve-3d;position:relative;}
.front, .back{backface-visibility:hidden;position:absolute;top:0;left:0;border:1px solid #dbdbdb;}
.front{z-index:2;transform:rotateY(0deg);padding:30px 40px;background-color:#f2f2f2;color:#FFF !important;border:none;}
.front h5{font-family:"Oswald",sans-serif;font-size:20px;line-height:27px;color:#2ECC71;text-align:center;text-transform:uppercase;}
.front img{margin-top:20px;}
.back{transform:rotateY(180deg);padding:20px;}
.back h5{font-family:"Oswald",sans-serif;font-size:20px;line-height:27px;text-align:center;color:#fff;text-transform:uppercase;display:block;margin:8px auto;}
.first .front{border-top:5px solid #2ECC71;border-bottom:2px solid #2ECC71;}
.second .front{border-top:5px solid #F93;border-bottom:2px solid #F93;}
.third .front{border-top:5px solid #42C8C8;border-bottom:2px solid #42C8C8;}
.first .back{background-color:#2ECC71;color:#FFF !important;border:none;}
.flipper .back h5{color:#fff;border-bottom:1px solid #FFF;padding-bottom:7px;}
.second .back{background-color:#F93;color:#FFF !important;border:none;}
.third .back{background-color:#42C8C8;color:#FFF !important;border:none;}
.flipper .back p{text-align:center;color:#FFF;padding-left:15px;padding-right:15px;}
.flipper .back strong{text-transform:uppercase;text-align:center;}
.new-application-form1{height:800px;width:770px;}
#leftCol .middle-banner{margin-top:30px;margin-bottom:30px;}
#leftCol .section1{padding:15px;background-color:#E5F6FB;}
#leftCol .section1 h2{font-family:'Courgette',cursive!important;font-size:24px;}
#leftCol .bigfont{font-size:49px;color:#1053AB;text-shadow:4px 0px 2px rgb(15, 150, 152);line-height:70px;font-weight:bold;font-family:'Oswald',sans-serif;padding-bottom:10px !important;}
#leftCol .section2{background-color:#DEF5E7;padding-left:10px;padding-right:10px;padding-bottom:10px;}
#leftCol .section2 h3{font-family:'Courgette',cursive!important;font-size:24px;}
#leftCol .section3{background-color:#FFF3E4;padding-left:10px;padding-right:10px;padding-bottom:10px;}
#leftCol .section3 h3, h4{font-family:'Courgette',cursive!important;font-size:24px;}
#leftCol .section3 h5{text-align:center;font-family:'Oswald',sans-serif;font-size:20px;}
#leftCol .section3 h6{font-size:24px;color:#1053AB;line-height:45px;font-weight:bold;font-family:'Courgette',cursive!important;border-bottom:1px dotted #2C3E50;}
#site-form{padding-bottom:30px;width:50%;margin:0px auto;}

.countdown-wrap {
	background-color: #1398B4;
	padding-bottom: 40px;
}

.countdown-wrap .ban-heading {
	display: block;
	font-size: 24px;
	line-height: 24px;
	font-weight: bold;
	color: #E0FF10;
	margin: 30px 0 10px;
}
.countdown-wrap .ban-text {
	display: block;
	color: #FFF;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 30px;
}
.countdown-wrap .btn-warning {
	color: #fff;
	background-color:  #FF9933;
	border-color:  #FF9933;
	font-size: 16px;
	font-weight: 600;
	border-radius: 50px;
	padding: 10px 21px;
}
.countdown-wrap .btn-warning:hover, .countdown-wrap .btn-warning:focus {
	color: #fff;
	background-color: #2ECC71;
	border-color: #2ECC71;
}
.countdown-wrap .btn-warning .glyphicon {
	margin-left: 5px;
	opacity: .5;
}
.countdown-wrap ul.countdown {
	list-style: none;
	margin-top: 35px;
	padding: 0;
	display: block;
	text-align: center;
	float: right;
}
.countdown-wrap ul.countdown li {
	display: inline-block;
	/*display: block;*/
	width: 70px;
	height: 84px;
	border: 2px solid #E0FF10;
	color: #E0FF10;
	border-radius: 5px;
	float: left;
	margin-right: 8px;
	text-align: center;
}
.countdown-wrap ul.countdown li span {
	display: block;
	font-size: 42px;
	line-height: 42px;
	font-weight: bold;
	margin: 7px 0 10px;
	color: #E0FF10;
	text-align: center;
}
.countdown-wrap ul.countdown li p {
	display: block;
	font-size: 18px;
	line-height: 1px;
	font-weight: bold;
	color: #ffffff;
	margin: 0;
	padding: 0;
	text-align: center;
}
.countdown-wrap .time-until {
	display: block;
	float: right;
	width: 100%;
	text-align: right;
	font-size: 35px;
	line-height: 35px;
	color: #E0FF10;
	margin-top: 10px;
	margin-right: 8px;
}
.side-fm{
	position:relative;
}
.side-fm .right-form{
	top:19px;
}

/* Underline From Left */
.new-btn {    border: 3px solid #F9B002;
    padding: 10px;
    display: block;
    width: 260px;
    text-align: center;
    font-size: 18px;
  background-color: #04405D;
    color: #fff;
    margin-bottom: 20px;
    font-family:Montserrat, Arial, sans-serif !important;
	font-weight:700;
	font-style:italic;
  justify-self: center;

	}

.ani-btn-6 {
	color: #fff;
	padding: 10px;
	position: relative;
	text-align: center;
	z-index: 1;
	overflow: hidden;
}
.ani-btn-6:before {
	background: #1d89ff;
top: 70%;
content: "";
height: 0;
left: 70%;
opacity: 0;
position: absolute;
transform: translateX(-68%) translateY(-52%) rotate(40deg);
	width: 100%;
	z-index: -1;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.ani-btn-6:focus::before, .ani-btn-6:hover::before {
	background: #fff;
	opacity: 1;
	height: 330%;
}

.new-application-form2 {
    height: 835px;
    width: 768px;
} 

.frameform {
/*background: linear-gradient(#7ccccc, #fbf6f6);*/
padding: 40px;
}

.frameform h1{
text-align: center;
border: none;
font-size: 36px;
font-weight:700;
color:#fff;
text-shadow:1px 1px 2px #000;
}

.frameform iframe{
border: 6px solid #45bf20;
border-radius: 10px;
box-shadow:  0px 0px 24px 0px #000000;

}

/* New Banner Css*/


.bottom-hero-container {
    position: relative;
    background:linear-gradient(rgba(23, 38, 39, 0.18), rgba(65, 138, 173, 0.16)), url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/new-bnr-bg.jpg);
    height: auto !important;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-left: 0;
    padding-right: 0;
	padding:30px 0 50px 0;
}

.bottom-hero-container-comm {
    position: relative;
    background:linear-gradient(rgba(23, 38, 39, 0.18), rgba(65, 138, 173, 0.16)), url(/web/20210503175602im_/https://nodownpaymentcarinsurance.org/images/comm-banner-bg.jpg);
    height: auto !important;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-left: 0;
    padding-right: 0;
	padding:30px 0 50px 0;
}




.header-rest {
    /*min-height: 55vh;*/
    color: #fff;
    padding-left: 0;
    padding-right: 0;
	padding: 30px 0px;
}

.bottom-hero-container h2.h1 {
	font-size: 3.5em!important;
    font-weight: 600!important;
    margin-bottom: 0!important;
    position: relative;
	text-shadow: 1px 1px 1px #0e3a61;
    color: #2ecc71;
    font-family: 'Fjalla One', sans-serif;
	text-transform:uppercase;
}

.bottom-hero-container-comm h2.h1 {
	font-size: 3.5em!important;
    font-weight: 600!important;
    margin-bottom: 0!important;
    position: relative;
	text-shadow: 1px 1px 1px #0e3a61;
    color: #2ecc71;
    font-family: 'Fjalla One', sans-serif;
	text-transform:uppercase;
}

.bottom-hero-container h3.h3 {
    font-family: 'Courgette', cursive;
    margin-bottom: 10px;
    position: relative;
    font-size: 30px !important;
   color: #ff950b;
text-shadow: 0px 1px 2px #01284b;
font-weight: 700;

}

.bottom-hero-container-comm h3.h3 {
    font-family: 'Courgette', cursive;
    margin-bottom: 10px;
    position: relative;
    font-size: 30px !important;
   color: #ff950b;
text-shadow: 0px 1px 2px #01284b;
font-weight: 700;

}


.bottom-hero-container h4.h4 {
   font-family: 'Shadows Into Light Two', cursive !important;
    margin-bottom: 10px;
    position: relative;
    font-size: 28px !important;
    color: #fff;
    margin-top: 10px!important;
	
}

.bottom-hero-container-comm h4.h4 {
   font-family: 'Shadows Into Light Two', cursive !important;
    margin-bottom: 10px;
    position: relative;
    font-size: 28px !important;
    color: #fff;
    margin-top: 10px!important;
	
}

.bottom-hero-container form {
    margin-bottom: 3.5em;
}

.bottom-hero-container-comm form {
    margin-bottom: 3.5em;
}

.zip-input.type-select {
    text-align: left;
    width: 100%!important;
    max-width: 450px;
}

.form-home input {
    font-size: 16px;
    font-weight: 300;
    padding: 15px 0px;
    line-height: 1em;
    height: inherit;
    margin-bottom: .5em;
    text-align: center;
    border: 1px solid #2ecc71;
    color: #a5a5a5;
    margin-left: 15px;
}
.zip-input {
    width: auto!important;
}

.btn-primary input[type=submit] {
    height: auto!important;
    line-height: 1em;
    height: inherit;
    margin-bottom: .5em;
    background-color:#ff9933;
    color: #fff!important;
    font-size: 1.33em;
    font-family: Lato,sans-serif;
    font-weight: 600;
    padding: .95em 1.55em!important;
    border: 0;
    border-radius: 5px;
}




@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-icon-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
color:#fff !important;
  margin-left: 0;
margin-top: 20px;
background-color: #fb7503;
padding: 10px 50px 10px 35px;
font-size: 20px;
color: #fff;
border: 1px solid #505b6f;
border-radius: 4px;

}
.hvr-icon-wobble-horizontal:before {
  content: "\f061";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  color:#fff !important;
}
.hvr-icon-wobble-horizontal:hover:before, .hvr-icon-wobble-horizontal:focus:before, .hvr-icon-wobble-horizontal:active:before {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  color:#fff !important;
}


/* commercial banner css  starts here*/

.commercial-vehicle-insurance {
margin-top:	20px;
min-height:200px;
font-family: 'Exo', sans-serif;
text-align:center;
border:1px solid #11608d;


	
}


.commercial-vehicle-insurance p {
  color: #0d81bf;
    font-size: 20px;
    margin-bottom: 5px;
    padding: 20px 10px 0px;
    font-family: Acme, sans-serif;
    text-transform: uppercase;
    font-weight: bold;

 
}

.main-vehicle-text {
	font-size:40px;
	color:#93bf13;
	margin-top:0px;
	line-height:42px;
	text-transform:uppercase;
	position:relative;
padding-bottom:15px;
	font-weight:800;
	 font-family:'Fjalla One', sans-serif;

   /* font-family: 'Acme', sans-serif;  */ 
} 




/*.main-vehicle-text:after {
	width:50px;
	height:3px;
	background-color:#FFFFFF;
	position:absolute;
	content:'';
	left:0;
	right:0;
	bottom:10px;
	margin:auto;	
	
		-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	
	
}*/






.commercial-vehicle-insurance span {
	margin-top:00px;
	display:inline-block;
	font-size:20px;
	color:#3a3a3a;
	margin-bottom:10px;
	font-weight:600;
	
		-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

	
	
	
}



.commercial-vehicle-insurance input {
   border-radius: 14px;
    width: 80%;
    margin: 20px auto;
    border: none;
    padding: 5px;
    border: 1px solid #38a2f3;
    height: 60px;
    text-align: center;
    box-shadow: 1px 1px 9px #8ed7f5;
    background-color: #ffffff;
    color: #000000;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;

}


.commercial-vehicle-insurance input:focus {
			box-shadow:none;
		background-color:#fff;

		
} 

 

.commercial-vehicle-bg {
padding:30px;
	background:linear-gradient(180deg,#2196f3,#57b6ce);

	
	
}

.commercial-vehicle-insurance button {
	width:80%;
	border:3px solid #FFFFFF;
	box-shadow: 3px 3px 15px #111;
	color:#3a3a3a;
	font-size:22px;
	border-radius:10px;
	padding:5px;
	
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

	
	
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c4ee34+0,88db29+100 */
background: #c4ee34; /* Old browsers */
background: -moz-linear-gradient(top, #c4ee34 0%, #88db29 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #c4ee34 0%,#88db29 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #c4ee34 0%,#88db29 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c4ee34', endColorstr='#88db29',GradientType=0 ); /* IE6-9 */


	
}



.commercial-vehicle-insurance button:hover  {
	
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#88db29+0,c4ee34+100 */
background: #88db29; /* Old browsers */
background: -moz-linear-gradient(top, #88db29 0%, #c4ee34 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #88db29 0%,#c4ee34 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #88db29 0%,#c4ee34 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#88db29', endColorstr='#c4ee34',GradientType=0 ); /* IE6-9 */

border:3px solid #FFFFFF;


	
	
}

.commercial-vehicle-insurance h6 {
    color: #0d81bf;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px 10px 0px;
    font-family: Acme, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}  

.commercial-vehicle-insurance button span {
	display:block;
	font-size:14px;
	margin-top:0px;
	margin-bottom:5px;
	color:#3a3a3a;

	
}

.commercial-vehicle-insurance ul {
		padding-left:12px;	
	padding-top:20px;

	
} 

.commercial-vehicle-insurance ul li {
    display: inline;
    font-size: 16px;
    margin-right: 12px;
    font-family: Acme, sans-serif;
    color: #487906;

}
 
.commercial-vehicle-insurance p {
    color: #3a3a3a; 
    font-size: 15px;
    margin-bottom: 5px;
    /* padding: 20px 10px 0px; */
} 


.commercial-vehicle-insurance ul li i {
    font-style: normal;
    font-size: 13px;
    font-weight: 400;
    margin-right: 3px;
    color: #f3aa27;
	

} 

