/* body */
body {
    font-family: Lato;
	color:#2b2b2b;
	font-size: 15px;
	line-height:2;
}
a {
    color: #2d2d2d;
	text-decoration:none;
	transition:all 0.7s;
	-webkit-transition:all 0.7s;
	-moz-transition:all 0.7s;
	-o-transition:all 0.7s;
}
a:active,
a:focus,
a:hover {
    color: #2d2d2d;
	text-decoration:none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: Montserrat
}


.container {
	max-width: 1250px;
}
/* ======= common ====== */
/* section */
section{
    padding: 6rem 0
}
/* btn */
.theme-btn{
	display: inline-block;
    padding: 10px 30px;
    background-color: #2b2b2b;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
	text-align:center;
	border: 1px solid transparent;
	transition:all 0.7s;
	-webkit-transition:all 0.7s;
	-moz-transition:all 0.7s;
	-o-transition:all 0.7s;
}
.theme-btn:hover,
.theme-btn:active,
.theme-btn:focus{
	color:#fff;
}
.btn-default{
    background-size: 300% 100%;
    moz-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    -webkit-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
	background-image: linear-gradient(to right, #CC2A27, #b3211f);
}
.btn-default:hover{
	background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.btn-border{
	background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.btn-border:hover{
	background:#fff;
}
.btn-border:hover{
	color:#2b2b2b;
}
button,
button:focus{
	border:0;
	outline:0;
	border-radius:0;
}
button:hover{
	cursor:pointer;
}


.emergency-info {
	color:rgba(255,255,255,0.7);
	text-align:center
}

.btn-emergency{
	background-size: 300% 100%;
	moz-transition: all .7s ease-in-out;
	-o-transition: all .7s ease-in-out;
	-webkit-transition: all .7s ease-in-out;
	transition: all .7s ease-in-out;
	background-image: linear-gradient(to right, #FFC864, #e4b04e);
	color:#000 !important;
	font-weight: 700;
    font-family: Montserrat;
}

.btn-emergency:hover {
	background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

/* col bg */
.col-bg{
    width: 100%;
    padding: 30px 20px;
	margin-bottom:4px;
    display: inline-block;
    box-shadow: 0px 5px 10px 0px #eee;
    background: #fff;
    position: relative;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
}
.col-bg:hover{
	box-shadow: 0px 5px 10px 0px #ccc;
}

/* col hover */
.col-hover{
	position:relative;
	margin-bottom:30px;
}
.col-hover:after{
    content: '';
    display: block;
    width: 0;
    height: 5px;
    background: linear-gradient(to top left, #CC2A27 0%, #CC2A27 100%);
    transition: width .3s;
}
.col-hover:hover:after{
    width: 100%;
}
.col-hover-a:after{
	background:none;
}
.col-hover-c:after{
	content:"";
	position:absolute;
	left:0;
	right:0;
	bottom:-7px;
	text-align:center;
	margin:0px auto;
	width:100%;
	height:5px;
	background: linear-gradient(to top left, #CC2A27 0%, #CC2A27 100%);
}

/* icon bg */
.icon-bg{
	position: absolute;
    width: 70px;
    height: 70px;
	left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
	background: linear-gradient(to top left, #1b2fbb 0%, #cc115e 100%);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
}
.col-bg:hover .icon-bg{
	-webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
.iconbg-lx{
	z-index: 9;
    position: relative;
    color: #CC2A27;
    line-height: 100px;
	font-size: 100px;


}
.iconbg-sx{
	position:relative;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height:30px;
	background: linear-gradient(to top left, #CC2A27 0%, #CC2A27 100%);
	color:#fff;
	display:inline-block;
}
.iconbg-sx:hover{
	color:#fff;
	background: linear-gradient(to right, #CC2A27, #ae1c1a);
}

/* content center */
.col-center{
	text-align: center;
    width: 66.66%;
    left: 0;
    right: 0;
    position: relative;
    margin: 0 auto;
}

.form-control {
    border: 1px solid #333;
}

/* heading bg */
.head-bg{
	margin-bottom:40px;
}
.headbg-head{
	position:relative;
	margin-bottom:30px;
}
.headbg-head:after{
	content:"";
	position: absolute;
    left: 50%;
    margin-top: 15px;
    width: 100px;
    height: 2px;
    display: block;
    background:linear-gradient(to top left, #CC2A27 0%, #CC2A27 100%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* img full width */
.img-full{
	width:100%;
}
/* ======= end common ====== */

/* banner */
#banner{
	background: url(../images/slide.jpg);
	background-size: cover;
	background-position: center;
	padding-top: 12rem;
    padding-bottom: 6rem;
	position:relative;	
}

#banner.emergency-banner {
	background: url(../images/emergency.jpg);
	background-size: cover;
	background-position: center;
}

#banner.account-banner {
	background: url(../images/oaccount.jpg);
	background-size: cover;
	background-position: center;
}

#banner::before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background:rgba(0,0,0,0.6);
	z-index:2;
}

#banner::after{
	content:"";
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:8px;
	background:#CC2A27;
	z-index:4;

}

#banner .b-left {
	z-index:3;
}

#banner p {
	color: #fdfdfdb3;
	font-size: 2.2rem;
	margin-bottom: 30px;
}


#banner-2{
	background-image:url(../images/banner-2.png);
	background-size:cover;
	background-repeat:no-repeat;
	background-position: center;
	padding-top: 12rem;
    padding-bottom: 6rem;
	position:relative;
}
#banner .theme-btn,
#banner-2 .theme-btn{
	margin-top:10px;
	margin-right: 15px;
}
.b-left{
	margin:110px 0px;
	color:#fff;
	text-align:center;
}
.b-left h2{
	font-size:3.5rem;
	position: relative;
	margin-bottom: 50px;
}
.b-left h2:after{
	content:"";
	position: absolute;
	width:80px;
	height:6px;
	background:#CC2A27;
	margin:0 auto;
	margin-top:10px;
	bottom: -20px;
	left: calc(50% - 40px);
}

.b-right{
	text-align:right;
}

/* nav menu */
#mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-family: Montserrat;
}
#mainNav .navbar-brand {
    color: #fff;
    font-weight: 700;
}
#mainNav .navbar-nav-2 .navbar-brand{
	color:#2b2b2b;
}
#mainNav .navbar-nav {
    margin-top: 1rem;
    letter-spacing: .0625rem;
}
#mainNav .navbar-nav>li{
	margin-left:5px;
}
#mainNav .navbar-nav li a{
    color: #fff;
	padding:5px 20px;
}
#mainNav .navbar-nav-2 li a{
	color:#2b2b2b;
}
#mainNav .navbar-nav li a:after{
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width .3s;
}
#mainNav .navbar-nav-2 .navbar-nav li a:after{
	background: linear-gradient(to top left, #1b2fbb 0%, #cc115e 100%);
}
#mainNav .navbar-nav li a:hover:after,
#mainNav .navbar-nav>li>a.active:after{
    width: 100%;
}
.menu-btn{
	margin:-4px 0px;
}
#mainNav .navbar-nav .menu-btn a{
	color:#fff;
}
#mainNav li.menu-btn a:hover:after{
	width:0;
}
.menu-btn a{
	padding:10px 20px !important;
}
#mainNav .navbar-toggler {
    padding: 12px 15px;
	background: #fff;
	color: #000;
}


#mainNav.navbar-shrink{
	background: #CC2A27;
	transition: all 0.3s;
}

#mainNav.navbar-shrink .emergency-info{
	display: none;
}

#mainNav.navbar-shrink #logo {
	width:120px;
	transition: all 0.3s;
}

.navbar-shrink .navbar-nav-2 li a{
	color:#fff !important;
}
.navbar-shrink .navbar-nav-2 .navbar-brand{
	color:#fff !important;
}
.navbar-shrink .navbar-nav-2 li a:after{
	border-bottom:1px solid #fff !important;
}

#services{
	padding:80px 0px;
	text-align:center;
}

#services h4 {
	font-size: 1.2rem;
	margin-bottom: 25px;
	min-height:50px;
}

#services p {
	font-size: 18px;
	line-height: normal;
}


#why{
	padding:80px 0px;
	text-align:center;
}

#why h4 {
	font-size: 1.1rem;
	margin-bottom: 25px;
	min-height:50px;
}

#why p {
	font-size: 18px;
	line-height: normal;
}

#why .abtcol-content{
	margin-top:25px;
	min-height: 80px;
}

#services .abtcol-content{
	margin-top:25px;
	min-height: 180px;
}

#why .col-bg {
	opacity: 0.7;
}

/* features */
#about{
	padding:80px 0px;
	background:#f7f7f7;
	background-size:cover;
	text-align:center;
}

#about p {
	font-size: 1.1rem;
	line-height: 1.6;
}

/* preview */
#preview{
	padding:80px 0px;
	text-align:center;
}
#preview-owl{
	position:relative;
}
#preview-owl:before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	width:440px;
	height:827px;
	text-align:center;
	margin:0 auto;
	z-index:9;
	background:url(../images/g-phone.png) no-repeat;
}
#preview-owl .item{
	margin-top:88px;
	margin-bottom:30px;
}
#preview-owl .item img{
	width:100%;
	box-shadow: 0px 5px 10px 0px #ddd;
}
#preview-owl .owl-controls{
	margin-top:60px;
}

/* pricing */
#pricing{
	padding:80px 0px;
	text-align:center;
	background:#f1f1f1;
}
.pricing ul{
	margin:25px;
	padding:0px;
}
.pricing ul li{
	margin:0px;
	padding:0px;
	list-style:none;
	line-height:3;
}
.pricing .theme-btn{
	margin-top:30px;
	line-height:2;
}
.p-head{
	padding:15px;
	margin-bottom: 40px;
	color:#fff;
	background-image:linear-gradient(to right, #44bbff, #8f44ff);
}
#pricing .col-hover:hover .p-head{
	background-image:linear-gradient(to right, #8f44ff, #44bbff);
}

/* download */
#download{
	padding:60px 0px;
	text-align:center;
	background:#2b2b2b;
	color:#fff;
}
.download .theme-btn i{
	font-size:30px;
	display:block;
}
.download-btn .theme-btn{
	margin-bottom:20px;
}

/* f.a.q */
#faq{
	padding:80px 0px;
	text-align:center;
}
.toogle-col{
     position: relative;
	 margin: 40px 0px;
}
.toogle-panel-c{
	margin-bottom:0.5rem;
}
.toogle-title{
     display: block;
     position: relative;
     cursor: pointer;
	 border: 1px solid #e4e4e4;
	 background:#fff;
	 margin:0px;
	 padding:10px 60px;
}
.toogle-title:after{
     position: absolute;
	 font-family: FontAwesome;
     content: "\f067";
     top: 50%;
     left: 0;
     width: 0;
     height: 0;
     background: linear-gradient(to right, #44bbff, #8f44ff);
     color: #fff;
	 width:50px;
	 height:50px;
	 text-align:center;
	 line-height:50px;
	 transform: translate(0, -50%);
}
.toogle-panel{
     display: none;
     background-color: #fff;
     padding: 25px 25px;
     border: 1px solid #e4e4e4;
}
.toogle-panel p{
	margin:0px;
}
.toogle-title.active:after{
     position: absolute;
     content:"\f068";
	 background: linear-gradient(to top left, #1b2fbb 0%, #cc115e 100%);
}
.toogle-panel.active{
	display:block;
}

/* contact */
.contact{
	padding:80px 0px;
	text-align:center;
	font-size:18px;
}

/* map */
.map{
	width: 100%;
	position: relative;
}
.map iframe{
	width:100%;
	height:500px;
	border:0;
}
.cnt-info{
	margin-top:60px;
}

/* sub footer */
#sub-footer{
	padding:20px 0px;
	text-align:center;
	background-color:#202020;
}
#sub-footer p{
	color:#fff;
	margin-bottom:0;
}

#sub-footer a {
	color:#b1b0b0;
	margin-bottom:0;
}

.m-icon p{
	display:inline-block;
}
.m-icon a:hover{
	background:linear-gradient(to right, #44bbff, #8f44ff);
}

@media (min-width:992px) {
    #mainNav {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        -webkit-transition: padding-top .3s, padding-bottom .3s;
        transition: padding-top .3s, padding-bottom .3s
    }
    #mainNav .navbar-brand {
        font-size: 2em;
        -webkit-transition: font-size .3s;
        transition: font-size .3s
    }
    #mainNav .navbar-nav {
        margin-top: 0
    }
    #mainNav.navbar-shrink {
        padding-top: .5rem;
        padding-bottom: .5rem
    }
    #mainNav.navbar-shrink .navbar-brand {
        font-size: 1.5em
    }
}

@media (max-width:992px) {
	.b-right{
    	text-align: center;
	}
	#mainNav {
		background:#CC2A27;
		padding-top: 6px;
		padding-bottom: 5px;
		font-family: Montserrat;
	}

	#mainNav .navbar-nav li a{
		color:#fff;
	}

	.emergency-info{
		text-align: left;
	}

	#logo{
		width:110px;
	}

	.menu-btn {
    	margin: 20px 0px;
	}
	#mainNav .navbar-nav li a {
		padding: 5px 0px;
	}
	#banner{
		padding-top:5rem;
	}
	#preview-owl:before{
		display:none;
	}
	#banner-2{
		background:linear-gradient(to top left, #1b2fbb 0%, #cc115e 100%);
	}
}

@media (max-width:767px) {
	#sub-footer p{
		margin-top: 5px;
		margin-bottom: 5px;
	}
}

@media (max-width:400px) {
	.b-left h2{
		font-size:1.5rem;
	}
}



#contact {
    padding: 80px 0px;
    background: #f7f7f7;
    background-size: cover;
    text-align: center;
}

#selector .row {
	display: flex;
	
}

#selector #select-left {
	font-size: 1.2rem;
	padding: 20px;
	background: #000;
	color:#fff;
	margin-bottom: 20px;
	margin:0px;
	padding:40px;
	min-height: 600px;
	align-content: center;
}

#selector #select-right  {
	font-size: 1.2rem;
	margin-bottom: 25px;
	min-height: 50px;
	background: #CC2A27;
	color:#fff;
	margin:0px;
	padding:40px;
	min-height: 500px;
	align-content: center;
}

#selector .box {
	text-align: center;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    border: 0;
    border-radius: .25em;
    background: initial;
    background-color: #CC2A27 !important;
    color: #fff;
    font-size: 1em;
}


