/*****************************
	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: 'Barlow', sans-serif !important;
	overflow-x: hidden;
	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
*****************************/
.text-blue{
	color: #0c4c7c !important;
}
.text-black{
	color: #000000;
}
.bg-blue{
	background-color: #0c4c7c !important;
}
.bg-lightgrey{
	background-color: #f7f7f7 !important;
}
.bg-darkgrey{
	background-color: #2d2d2d !important;
}
.bg-sky{
	background-color: #eef7ff !important;
}
.bg-skyblue{
	background-color: #00AFEF !important;
}
.bg-gray{
	background-color: #EEEEEE !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;
}
/*****************************
	COMPONENTS
*****************************/

/* Hamburger */
.hamburger {
    width: 30px;
    height: 11px;
    position: relative;
    cursor: pointer;
}
.hamburger .line{
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: #000;
	transition: .3s;
}
.hamburger .line.line1{
	top: 0;
}
.hamburger .line.line2{
	top: 8px;
}
body.menu-btn-clicked .line1 {
    transform: rotate(45deg);
    top: 4px !important;
}
body.menu-btn-clicked .line2{
	transform: rotate(-45deg);
	top: 4px !important;
}

/* Radio button */
.checkcontainer {
    display: block;
    position: relative;
    padding-left: 38px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 28px;
}
.checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkcontainer .radiobtn {
    position: absolute;
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
    border: 4px solid #a8a8a8;
    border-radius: 50%;
}
.checkcontainer .radiobtn::after{
	content: '';
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #a8a8a8;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.checkcontainer input:checked ~ .radiobtn {
    border-color: #4b9100;
}

/* Radio button 2 */
/*.custom-radio-btn2 {
    position: relative;
    width: fit-content;
}
.custom-radio-btn2 input {
    position: absolute;
    right: 0;
}
.custom-radio-btn2 label {
    padding: 6px 16px;
    border: 1px solid #0c4c7c;
    font-size: 12px;
    min-width: 90px;
    text-align: center;
    background: #fff;
    color: #0c4c7c;
    position: relative;
    cursor: pointer;
}
.custom-radio-btn2 input:checked ~ label{
	background-color: #0c4c7c;
	color: #fff;
}*/

/*Get quotes widget*/
.getQuotes-box{
	display: flex;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
	width: fit-content;
	border-radius: 10px;
}
.getQuotes-box input{
	font-size: 24px;
    border-radius: 5px 0 0 5px;
    border: 0;
    padding: 18px 24px;
    width: calc(100% - 240px);
    height: 66px;
}
.getQuotes-box input::placeholder{
	color: #858585;
}
.getQuotes-box button{
	font-size: 30px;
    font-weight: 500;
    background-color: #3E4095;
    color: #fff;
    border: 0;
    padding: 14px 20px;
    border-radius: 0 5px 5px 0;
    min-width: 240px;
    height: 66px;
}
/* Progressbar */
.custom-progress {
  padding:0;
  height:12px;
  overflow:hidden;
  background:#fff;
  border: 1px solid #0c4c7c;
  border-radius:10px;
}
.custom-progress .bar {
	position:relative;
  float:left;
  min-width:1%;
  height:100%;
  background:#0c4c7c;
}
.custom-progress .percent {
	position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  margin:0;
  font-family: 'Barlow', sans-serif;
  font-size:10px;
  color:white;
}
/* Custom button */
.custom-btn {
  border: 1px solid;
  overflow: hidden;
  position: relative;
}
.custom-btn:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
}
.custom-btn:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
/* Layer hover effect */
.layer-on-hover{
	overflow: hidden;
  	position: relative;
}
.layer-on-hover:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
}
.layer-on-hover:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
/*****************************
	HEADER
*****************************/
header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.0);
	transition: .3s;
	border-bottom: 1px solid rgba(0, 0, 0, 0.0);

}
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;
}
header .header-logo .logo{
	max-width: 415px;
    max-height: 47px;
	width: 100%;
}
.header-menu-box{
	position: relative;
}
.header-menu-box-inner {
	width: 540px;
    position: absolute;
    right: -16px;
    top: -50px;
    background-color: #3E4095;
    padding: 40px 16px 40px 40px; 
    color: #fff;
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    transition-timing-function: ease-in;
    border: 1px solid #ffffff1f;
}
.header-menu-box-inner .hamburger .line{
	background-color: #fff;
}
.menu-box-top .logo{
	max-width: 200px;
	width: 100%;
	filter: brightness(0) invert(1);
}
.menu-box-body {
    margin-top: 50px;
}
.menu-box-body ul{
	max-height: calc(100vh - 280px);
	overflow: auto;
}
.menu-box-body ul li{
	margin-bottom: 16px;
}
.menu-box-body ul li a{
	color: #fff;
}
.menu-box-bottom {
    margin-top: 50px;
}
.menu-box-bottom h6{
	color: #fff;
	font-weight: 700;
}
.menu-box-bottom a{
	color: #fff;
}
body.scrolled header{
	background-color: #fffffff0;
	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-banner-bg{
	background: url(./../images/banner-bg.png) no-repeat center/cover;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    box-shadow: inset 20px 0 0 490px rgb(232 237 241 / 70%);
    padding: 0 0 75px 0;
    position: relative;
}
section.home-banner {
    padding: 85px 0 0;
    box-shadow: 10px 5px 25px 10px #d8d5d3;
}
.home-banner > .container {
    position: relative;
}
.home-banner h1{
	font-size: 69px;
	max-width: 437px;
	font-weight: 400;
}
.home-banner h1 span{
	display: block;
}
.checkboxes{
	color: #6a6a6a;
	font-size: 24px;
}
.inline-checkboxes{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.inline-checkboxes .title{
	margin-right: 16px;
	display: inline-block;
}
.inline-checkboxes .checkcontainer{
	margin-left: 28px;
}
.home-banner .inline-checkboxes{
	margin-top: 60px;
}
.sheild-with-text span{
	text-shadow: 1.6px 1.2px #fff;
}
.home-banner .getQuotes-box{
	margin-top: 24px;
	width: 496px;
}
.home-banner .extra-info{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	margin-left: -15px;
	margin-right: -15px;
    max-width: 520px;
}
.home-banner .extra-info > div{
	padding-left: 16px;
	padding-right: 16px;
}
.home-banner .extra-info .inner1{
	width: calc(100% - 200px);
}
.home-banner .extra-info .inner1 p{
	text-shadow: 1.9px 1.2px #fff;
    font-size: 16px;
    color: #898989;
}
.home-banner .extra-info .inner2{
	width: 200px;
}
.sheild-with-text span{
	text-shadow: 1.6px 1.2px #fff;
	color: #898989;
}

.home-banner .extra-info .inner2 .count{
	font-size: 50px;
	font-weight: bold;
	color: #3E4095;
}
.banner-left-img {
    width: 100%;
    height: auto;
    margin-left: -75px;
    align-items: center;
    position: absolute;
    top: 0px;
}
.step-container{
	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;
}
.step-container  .step-container-body .getQuotes-box{
	display: flex;
    flex-wrap: wrap;
    max-width: 300px;
    margin: auto;
    box-shadow: unset;
    margin-top: 30px;
}
.step-container  .step-container-body .getQuotes-box > *{
	width: 100%;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 20%);
    text-align: center;
}
.step-container  .step-container-body .getQuotes-box > input {
    margin-bottom: 16px;
}
.sc-detail{
	display: flex;
    justify-content: center;
    align-items: center;
}
section.testimonials{
	padding: 220px 0 150px;
	/*overflow: hidden;*/
	position: relative;
	margin-top: -120px;
}
.testimonials .section-title{
	font-size: 50px;
    font-weight: 500;
    line-height: 60px;
    text-align: right;
    width: 300px;
    margin: 0 auto;
}
section.testimonials::before,
section.testimonials::after{
	content: "";
    width: calc(100% + 1%);
    height: 100px;
    position: absolute;
    
    left: 50%;
    background-color: #fff;
    transform: translateX(-50%) rotate(-3deg);
}
section.testimonials::before {
    top: -50px;
}
section.testimonials::after{
	bottom: -50px;
}
.providers{
	margin-top: -80px;
    position: relative;
    overflow: hidden;
}
.providers-slider .providers-slider-item .providers-slide-inner{
    min-height: 75px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.providers-slide-inner img{
	max-height: 40px;
}
.providers-slider .slick-dots{
	bottom: -60px;
}
.providers-slider .slick-dots li{
	width: 100px !important;
	height: 4px;
	background-color: #a6acb2;
}
.providers-slider .slick-dots li:after{
	content: "";
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: .3s;
	background-color: rgba(0, 0, 0, 0.0);
}
.providers-slider .slick-dots li.slick-active:after{
	width: 50%;
	background-color: #0c4c7c;
}
.providers-slider .slick-dots li button {
    display: none;
}
.providers > .container{
	padding-top: 130px;
	padding-bottom: 80px;
	position: relative;
}
.providers > .container::after {
    content: "";
    width: calc(100% + 20px);
    height: 60px;
    position: absolute;
    background: #00AFEF;
    top: -30px;
    left: -10px;
    overflow: hidden;
    transform: rotate(-3deg);
}
.why-choose-us .right-col{
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.why-choose-us .right-col h2{
	font-size: 50px;
	margin-top: 32px;
}
.why-choose-us .right-col h2 span {
    display: block;
}
.why-choose-us .center-col-img {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: auto;
}
section.why-choose-us .left-col .why-choose-desc {
    max-width: 282px;
}
section.why-choose-us .border-after {
    border-bottom: 3px solid #0C4C7C;
    width: 51px;
    margin-top: 40px;
}
section.why-choose-us .center-col-img .why-choose-section-img{
	margin: 0 auto !important;
}
section.why-choose-us .right-col .getQuotes-box {
    display: flex;
    flex-wrap: wrap;
    max-width: 300px;
    margin: auto;
    box-shadow: unset;
    margin-top: 25px;
}
section.why-choose-us .right-col .getQuotes-box > * {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 20%);
    text-align: center;
}
section.why-choose-us .right-col .getQuotes-box > input{
	margin-bottom: 16px;
}

/***************************
	FOOTER
***************************/
.footer-logo{
	max-width: 415px;
	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: 14px;
	margin: 0 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;
        }
}