/*****************************
	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: 'Poppins', sans-serif;
	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
*****************************/
.clr-purp{
	color: #A10061;
}
.bg-purp{
	background-color: #A10061;	
}
.text-blue{
	color: #002581 !important;
}
.text-black{
	color: #000000;
}
.bg-blue{
	background-color: #002581 !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;
}
.sky-blue{
	color: #00A1ED;
}
.light-blue{
	color: #00A1ED;
}
.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: 2px solid #707070;
    border-radius: 25%;
}
.checkcontainer .radiobtn::after{
	content: '';
	width: 12px;
	height: 12px;
	border-radius: 25%;
	background-color: #ffffff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.checkcontainer input:checked ~ .radiobtn {
    border-color: #707070;
}
.checkcontainer input:checked ~ .radiobtn::after {
	background-color: #37D43C;
}

/*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: 1px solid #9E9E9E;
    padding: 18px 24px;
    width: calc(100% - 240px);
    height: 81px;
}
.getQuotes-box input::placeholder{
	color: #858585;
}
.getQuotes-box button{
	font-size: 30px;
    font-weight: 500;
    background-color: #37D43C;
    color: #fff;
    border: 0;
    padding: 14px 20px;
    border-radius: 0 5px 5px 0;
    min-width: 240px;
    height: 81px;
    line-height: 1;
    text-align: center !important;

}
/* 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);*/
	background-color: transparent;
	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:  #002581;
    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;
}
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-color: #fff;
    width: 100%;
    padding: 85px 0 20px 0;
    position: relative;
}
.home-banner > .container {
    position: relative;
}
.banner-content{
	display: flex;
    align-items: center;
    justify-content: center;
}
.home-banner h1{
	font-size: 55px;
	max-width: 685px;
	font-weight: bold;
    margin-top: 15px;
}
.home-banner h1 div{
	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: 25px;
}
.home-banner .inline-checkboxes{
	margin-top: 20px;
}
.sheild-with-text span{
	text-shadow: 1.6px 1.2px #fff;
}
.home-banner .getQuotes-box{
	margin-top: 24px;
	width: 500px;
}
.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;
}
.inner1 span{
	display: block;
}
.banner-right-img {
    
}
.banner-left-img {
   
}
.banner-left-img img{
	width: 100%;
    height: auto;
}
section.testimonials{
	padding: 55px 0 100px;
	position: relative;
}
.tes-title{
	background: url(./../images/bg-title.png) no-repeat center / contain;
    width: 100%;
    max-width: 1250px;
    height: 88px;
    padding: 0px 0 0px;
    background-position: center center;
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto 60px auto;
}
.testimonials .section-title{
	font-size: 46px;
    font-weight: bold;
    line-height: 56px;
    text-align: center;
    margin: 0 auto;
}
.testi-content{
	max-width: 1380px;
    margin: 0 auto;
    text-align: center;
    font-size: 23px;
    line-height: 30px;
} 
.testi-frst-cont{
	text-align: center;
    font-size: 23px;
    line-height: 30px;
}
.testi-sec-cont{
	text-align: center;
    font-size: 23px;
    line-height: 30px;
} 
.border-section {
    border-bottom: 3px solid #37D43C;
    width: 130px;
    margin: 70px auto 70px auto;
}
.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;
	font-weight: bold;
    text-align: left;
}
.why-choose-us .right-col h2 div{
	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  #002581;
    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;
    max-width: 397px;
    /*margin: auto;*/
    box-shadow: unset;
    margin-top: 25px;
}
section.why-choose-us .right-col .getQuotes-box > * {
    width: 198px;
    text-align: left;
}
section.why-choose-us .right-col .getQuotes-box > input{
	margin-bottom: 16px;
}

/***************************
	FOOTER
***************************/
.footer-logo{
	max-width: 208px;
	width: 100%;
}
.footer-widget .widget-title{
	font-size: 14px;
	color: #37D43C;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.footer-widget .footer-list li{
	display: inline-block;
	margin-bottom: 12px;
}
.footer-widget .footer-list li:last-child{
	margin-bottom: 0;
}
.footer-widget .footer-list li a{
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	display: block;
	line-height: 16px;
    padding: 0 5px;
}
.footer-widget .footer-list li.active a{
	color: #37D43C;
}
.footer-widget .footer-list li:not(:last-child){
	border-right: 1px solid #fff;
}
.footer-widget .footer-list li a:hover{
	text-decoration: none;
    color: #37D43C;;
}
.copy-right {
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.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;
        }
}