****************************
	FONTS
*****************************/

@font-face {
    font-family: Roboto-Light;
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: Roboto-Regular;
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: Roboto-Bold;
    src: url(../fonts/Roboto-Bold.ttf);
}
@font-face {
    font-family: Roboto-Italic;
    src: url(../fonts/Roboto-Italic.ttf);
}


/*****************************
	BOOTSTRAP OVERRIDES
*****************************/
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 992px;
    }
}

@media only screen and (min-width:1441px) {
    .container {
        max-width: 1170px;
    }
}

/*****************************
	RESET
*****************************/
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a,
img,
button {
    transition: .3s;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

input:focus,
button:focus {
    outline: 0;
}

/*****************************
	GLOBAL STYLES
*****************************/
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-family: Roboto-Regular;
    transition: .3s;
    color: #666666;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

/*****************************
	UTILITIES
*****************************/
.color-black {
    color: #000000;
}

.text-blue {
    color: #0c4c7c !important;
}

.bg-blue {
    background-color: #0c4c7c !important;
}

.bg-lightgrey {
    background-color: #f7f7f7 !important;
}

.bg-darkgrey {
    background-color: #2d2d2d !important;
}

.bg-sky {
    background-color: #eef7ff !important;
}

.object-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-shadow1 {
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, .1);
}

.box-shadow2 {
    box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.05);
}

.weight-700 {
    font-weight: 700;
}

.w-fit-content {
    width: fit-content;
}

.fs-10 {
    font-size: 10px;
}

.overflow-hidden {
    overflow: hidden;
}

.hx-60 {
    height: 60px !important;
}

.fill-100 {
    width: 100%;
    height: 100%;
}
.form-group input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #979797;
  opacity: 1; /* Firefox */
}
/*****************************
	COMPONENTS
*****************************/


/*****************************
	HEADER
*****************************/
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.0);
    transition: .3s;
    border-bottom: 1px solid rgb(0 0 0 / 22%);
    box-shadow: 5px 5px 10px #e3e3e3;
}

header>.container {
    padding-top: 24px;
    padding-bottom: 24px;
    transition: .3s;
}

header .header-logo {
    display: inline-block;
}

header .header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

body.scrolled header {
    background-color: #ffffff;
    border-bottom: 1px solid #0c4c7c26;
}

body.scrolled header>.container {
    padding-top: 20px;
    padding-bottom: 20px;
}

body.menu-btn-clicked .header-menu-box-inner {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

/****************************
	MAIN CSS
****************************/
.section-home-inner {
    padding-top: 100px;
}

.main-heading {
    font-weight: bolder;
    font-size: 40px;
    font-family: 'Roboto-bold';
}

.heading {
    font-size: 17px;
    color: #000000;
    font-weight: 500;
}

.h-r-text {
    font-size: 18px;
    color: #000000;
}

.h-r-number {
    font-size: 14px;
}

.h-r-number img {
    height: 25px;
    padding: 0 8px;
}

.h-r-num {
    color: #0C2090;
    font-weight: bold;
    font-size: 16px;
}

.call-agent img {
    width: 53px;
}

.c-a-text {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 0 15px;
    z-index: 11;
}

.c-a-number {
    background: #0C2090;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    border-radius: 7px;
    padding: 16px;
    min-width: 300px;
    font-size: 14px;
    z-index: 1;
    right: 0;
}

.c-a-number img {
    width: 32px;
    height: 32px;
    z-index: 1;
}

.c-a-num {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-left: 10px;
}

.call-agent-wrap {
    max-height: 90px;
}

.call-agent .c-a-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: 2;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border: 3px solid #0C2090;
    background-color: #D8D8D8;
}

.call-agent .c-a-img img {
    width: 105px;
    height: 105px;
    border-radius: 50%;
}

/*Form*/
.card-body {
    position: relative;
    max-width: 780px;
    left: 25px;
    top: 15px;
}

.form-field-group {}

.form-field-group img {
    opacity: 1;
    z-index: 1;
    left: 9px;
    top: 17px;
    width: 22px;
    color: #979faf;
    position: absolute;
    transition: opacity .5s;
}

.form-group.zipcode {
    width: 28%;
    min-width: 275px;
}

.form-age{
    width: 17%;
    min-width: 175px;
}

.form-multiple {
    width: 18%;
    min-width: 135px;
}
.zipcode label,.form-age label {
    font-size: 16px;
    padding: 0px 0px 0px 5px;
    color: #000000;
}
.checkboxes label{
    font-size: 16px;
    color: #000000;
}
#zipcode,
#age {
    display: block !important;
    padding: 10px 8px 8px 38px !important;
    height: auto;
    border-radius: 10px;
    border: 1px solid #979797;
}

.btn-form-submit {
    background-color: #0C2090;
    color: #ffffff;
    padding: 17px;
    border-radius: 10px;
}
.get-my-quote {
    font-weight: 600;
}
.img-column {
    width: 180px;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
}

.after-logos {
    color: #979797;
}
#navlist li {
    display: inline;
    list-style-type: none;
    padding: 0 15px 0 15px;
    border-right: 1px solid #979797;

}

#navlist li:last-child {
    border-right: 0px;
}

ul#navlist li a {
    font-size: 15px;
    color: #979797;
}

.back-top {
    font-size: 15px;
    color: #979797;
}

.go-top-icon {
    color: #0C2090;
    border: 2px solid #0C2090;
    padding: 8px 8px 4px 6px;
    border-radius: 6px;
}
.go-top-icon a {
    color: #0c2090;
}

.section-home-inner{
    z-index: 1;
    background-image: url(../images/bg-home-top.png) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    box-sizing: border-box;
}


.go-top-icon i {
    font-size: 20px;
}

.right-col {
    text-align: right;
}

.footer-text {
    font-size: 11px;
}

.footer-logo img {
    height: auto;
    width: 100%;
}
.copy-right {
    font-size: 12px;
}



/*five star*/
.banner {
    border-bottom: 1px solid #AFAFAF;
    padding: 5px 0;
}

.star-counter {
    font-size: 40px;
    font-weight: bold;
    color: #000000;
}

.rate {
    float: left;
    height: 46px;
    padding: 10px 10px 0;
    display: inline-block;
}

.rate:not(:checked)>input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked)>label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

.rate:not(:checked)>label:before {
    content: '★ ';
}

.rate>input:checked~label {
    color: #ffc700;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #FBCA13;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

/*Fivestar End*/

section.home-banner {
   /* padding: 85px 0 0;*/
}

#logo-section {
    padding: 90px 0 50px;
}
#befor-footer-section{
    padding: 90px 0 50px;
}

.home-banner>.container {
    position: relative;
}

.home-banner>.container .banner-back-layer {
    position: absolute;
    right: -70px;
    top: -76px;
    max-width: 760px;
}

.home-banner h1 {
    font-size: 50px;
    max-width: 350px;
}

.home-banner h1 span {
    display: block;
}

.home-banner .extra-info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-left: -15px;
    margin-right: -15px;
}

.home-banner .extra-info>div {
    padding-left: 16px;
    padding-right: 16px;
}

.home-banner .extra-info .inner1 {
    width: calc(100% - 100px);
    font-style: italic;
}

.home-banner .extra-info .inner2 {
    width: 250px;
}

.home-banner .extra-info .inner2 .inner2b {
    display: none;
}

.home-banner .extra-info .inner2 .count {
    font-size: 50px;
    color: #0c4c7c;
}

.banner-left-img {
    max-width: calc(100% + 110px);
    margin-top: 70px;
    margin-bottom: -1px;
}

.home-banner .step-container {
    margin-top: 150px;
    z-index: 9;
}

.step-container-header .left-col img {
    max-width: 86px;
}

.step-container-header .left-col {
    font-size: 24px;
}

.step-container-header .right-col .img-box {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
}

/***************************
	FOOTER
***************************/
.footer-bottom .container {
    border-top: 1px solid #979797;
    padding: 10px 0 30px 0;
} 
.footer-bottom .container #navlist li {
    font-size: 10px;
}
.footer-bottom .container #navlist li a {
    font-size: 12px;
}
.footer-logo {
    max-width: 220px;
    width: 100%;
}

.footer-widget .widget-title {
    font-size: 14px;
    color: #0c4c7c;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-widget .footer-list li {
    display: block;
    margin-bottom: 12px;
}

.footer-widget .footer-list li:last-child {
    margin-bottom: 0;
}

.footer-widget .footer-list li a {
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    display: block;
    line-height: 16px;
}

.footer-widget .footer-list li.active a {
    color: #0c4c7c;
}

.footer-widget .footer-list li a:hover {
    text-decoration: none;
    color: #0c4c7c;
}

.footer-bottom {
    font-size: 14px;
}

.footer-bottom a {
    color: #0c4c7c;
}

.after-bottom .inner {
    font-size: 11px;
    max-width: 520px;
    margin: auto;
}

.go-to-top {
    position: relative;
    height: 10px;
    display: block;
}

.go-to-top img {
    position: absolute;
}

.arrow-up-animation {
    animation-name: arrow-up-animation;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-delay: 0s;
}

@keyframes arrow-up-animation {
    0% {
        top: 0px;
        opacity: 1;
    }

    100% {
        top: -25px;
        opacity: 0;
    }
}

.checkbox.checkbox-cars {
    padding-left: 0px;
}
.checkbox {
    padding-left: 40px;
}
.checkbox:first-child {
    padding-left: 0px;
}
.checkbox input[type="checkbox"], .checkbox input[type="radio"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
    left: 0px;
    right: 0px;
    position: relative;
}
.checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
    padding-top: 5px;
}
.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}
.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 23px;
    height: 23px;
    left: -2px;
    margin-left: -20px;
    border: 2px solid #979797;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
input[type="checkbox"].styled:checked + label:after, input[type="radio"].styled:checked + label:after {
    font-family: 'FontAwesome';
    content: "\f00c";
}
.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;  
    left: 0;
    top: 0;
    margin-left: -19px;
    padding-left: 2px;
    padding-top: 5px;
    font-size: 14px;
    color: #0c2090;
}

.custom-control-input:checked~.custom-control-label::before{
    background-color: transparent;
}











