@charset "utf-8";
/* CSS Document */

body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	background:#fff;
	text-align:center;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-family: 'Nunito Sans';
	font-weight:normal;
	}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin:0;padding:0;}
header, section, footer, aside, nav, main, article, figure {display: block;}
table, tr, td {border:0;}
a{outline: none; color:#333; text-decoration:none;}
a:hover {outline: none; text-decoration:none;}
img {border:none; height:auto; max-width:100%;}
li {list-style:none;}
*{box-sizing:border-box;}
.clearall{
	clear:both;
	font-size:1px;
	line-height:1px;
	height:1px;
	}
	
/*=========Fonts=======*/

@font-face {
    font-family: 'Nunito Sans';
    src: url('NunitoSans-ExtraBold.woff2') format('woff2'),
        url('NunitoSans-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('NunitoSans-Regular.woff2') format('woff2'),
        url('NunitoSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('NunitoSans-SemiBold.woff2') format('woff2'),
        url('NunitoSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('NunitoSans-Bold.woff2') format('woff2'),
        url('NunitoSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/*-----------------------
MAIN CSS START
------------------------*/
.container{
	width:1170px;
	margin:0 auto;
	padding:0;
	position:relative;
	}
p{
	letter-spacing: unset!important;
}
main{
	display:inline-block;
	width:100%;
	overflow: unset!important;
}

/*-----------------------
CSS FOR NAV BAR
------------------------*/	
.header{
	background:#fff;
	float:left;
	width:100%;
	padding:15px 0;
	}
.logo{
	margin:0 auto 0;
	display:block;
	width:140px;
	}		
 	
/*-----------------------
		BANNER
------------------------*/	
.bnr_section{
	float:left;
	width:100%;
	padding:30px 0 40px;
	
background: rgb(35,90,134);
background: -moz-linear-gradient(79deg, rgba(35,90,134,1) 0%, rgba(12,116,178,1) 57%);
background: -webkit-linear-gradient(79deg, rgba(35,90,134,1) 0%, rgba(12,116,178,1) 57%);
background: linear-gradient(79deg, rgba(35,90,134,1) 0%, rgba(12,116,178,1) 57%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#235a86",endColorstr="#0c74b2",GradientType=1);	
	}
.bnr_heading{
    font-size: 52px;
    line-height: 60px;
	color:#fff;
	font-weight:normal;
	}
.bnr_text{
	font-size:20px;
	line-height:26px;
	color:#fff;
	margin-top:18px;
	}	

/*-----------------------
		SECTION1
------------------------*/
.section_1{
	background:#fff;
	float:left;
	width:100%;
	padding:60px 0 70px;
	}
.s1_mid_wrap{
	float:left;
	width:100%;
	}	
.s1_left{
	float:right;
	width:51%;
	text-align:left;
	}
.common_heading{
	font-size:38px;
	line-height:44px;
	color:#304a6b;
	font-weight:800;
	}	
.common_heading span{ color:#2986b8;}	
	
.contact_box{
	float:left;
	width:100%;
	background:#fff;
	border-radius:12px;
	box-shadow:0 0 8px 4px rgba(0,0,0,0.1);
	padding:20px 25px 35px;
	margin-top:35px;
	}
.contact_header{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #e0e5e8;
	padding-bottom:16px;
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;	
	}
.header_left{
	display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
	}	
.header_left img{ width:57px;}			
.header_left p{
	width:calc(100% - 57px);
	text-align:left;
	padding-left:17px;
	font-size:28px;
	line-height:30px;
	color:#304a6b;
	font-weight:800;
	}
.header_right{
	}	
.available_text{
	font-size:13px;
	line-height:15px;
	color:#292929;
	font-weight:bold;
	border:1px solid #72efad;
	border-radius:22px;
	padding:5px 17px;
	}	
.available_text img{
	display:inline-block;
	vertical-align:middle;
	margin:-5px 7px 0 0;
	}	
.blink{
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
 	}	
@-webkit-keyframes blinker {
	  from {opacity: 1.0;}
	  to {opacity: 0.0;}
	}	

.contact_mid{
	float:left;
	width:100%;
	text-align:left;
	padding:20px 0 0;
	}	
.contact_text{
	font-size:20px;
	line-height:24px;
	color:#000;
	}	
	
.cont_btn_strip{
	float:left;
	width:100%;
	margin-top:30px;
	
 	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}	
.cont_btnbox{
	width:48%;
	text-align:center;
	}		
.btn_suprt_text{
	float:left;
	width:100%;
	font-size:16px;
	line-height:16px;
	color:#292929;
	font-weight:bold;
	}	
.btn_suprt_text img{
	display:inline-block;
	vertical-align:middle;
	margin:-4px 10px 0 0;
	}
.btn_suprt_call{
	float: left;
    width: 100%;
    font-size: 22px;
    line-height: 22px;
    color: #000;
    font-weight: bold;
    margin-top: 20px;	
	}	
.btn_suprt_call a:hover{ text-decoration:underline;}	
.btn_suprt_call img{
    width: 25px;
    margin: -7px 5px 0 0;
    display: inline-block;
    vertical-align: middle;	
	}	
a.cont_btn{
	display:inline-block;
	vertical-align:top;
	background:#31c976;
	width:100%;
	max-width:260px;
	height:56px;
	text-align:center;
	font-size:19px;
	line-height:56px;
	color:#fff;
	font-weight:bold;
	border-radius:12px;
	}
.contact_box2 .cont_btn_strip{
	justify-content: flex-start;
	}	
.contact_box2 .btn_suprt_call{ margin-top:0;}	
.contact_box2 .cont_btnbox{ width:100%; text-align:center;}		
.contact_box2 .cont_btnbox a.cont_btn{ max-width:360px;}	
	
/*========Form========*/	
.form-position{
	float:left;
	width:42%;
	text-align:center;
	}
.formBox{
	float:left;
	width:100%;
	background:#126ca5;
	border-radius:12px;
	overflow:hidden;
	}
.form_header{
    float: left;
    width: 100%;
	background:#126ca5;
	padding:20px 12px 25px;
	} 
.form_header p{
    font-size: 36px;
    line-height: 36px;
    color: #fff;
    font-weight: 800;	
	}
.form_strip{
    float: left;
    width: 100%;
    padding: 10px 20px;
	
background: rgb(44,119,173);
background: -moz-linear-gradient(79deg, rgba(44,119,173,1) 0%, rgba(41,129,188,1) 25%, rgba(38,139,204,1) 54%, rgba(36,146,214,1) 100%);
background: -webkit-linear-gradient(79deg, rgba(44,119,173,1) 0%, rgba(41,129,188,1) 25%, rgba(38,139,204,1) 54%, rgba(36,146,214,1) 100%);
background: linear-gradient(79deg, rgba(44,119,173,1) 0%, rgba(41,129,188,1) 25%, rgba(38,139,204,1) 54%, rgba(36,146,214,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2c77ad",endColorstr="#2492d6",GradientType=1);			
	}		
ul.frm_strp_list{
    float: left;
    width: 100%;
	
    display: -webkit-flex;
    display: flex;
	justify-content: center;
    column-gap: 24px;	
	}	
ul.frm_strp_list li{
    text-align: left;
    padding-left: 42px;
    position: relative;
	}
ul.frm_strp_list li:before{
	content:'';
	position:absolute;
	top:0;
	right:-15px;
	background:url(../../images/orderlookup/frm-shap.png) no-repeat;
	width:2px;
	height:43px;
	}	
ul.frm_strp_list li:last-child:before{ display:none;}	
ul.frm_strp_list li img{
	position:absolute;
	top:50%;
	left:0;
	width:33px;
	margin-top:-16px;
	}	
ul.frm_strp_list li p{
	font-size:17px;
	line-height:22px;
	color:#fff;
	font-weight:bold;
	}		
.form_mid{
	float:left;
	width:100%;
	padding:20px 30px 30px;
	text-align:center;
	}	
.frm_mid_text{
	font-size:18px;
	line-height:26px;
	color:#fff;
	text-align:left;
	}	
.frm_mid_text a{
	font-weight:bold;
	text-decoration:underline;
	color:#fff;
	}	

.Frm-Elements{
	float:left;
	width:100%;
	text-align:left;
	margin-top:25px;
	}	
.frm_mt{ margin-top:14px;}	
.all-label{
	float:left;
	width:100%;	
	font-size:18px;
	line-height:18px;
	color:#fff;
	font-weight:600;
	margin-bottom:8px;
	position:relative;
	}	
.all-label span{
	display:inline-block;
	vertical-align:middle;
	width:25px;
	height:25px;
	background:#fff;
	border-radius:50%;
	font-size:17px;
	line-height:25px;
	color:#000;
	font-weight:bold;
	text-align:center;
	margin:-3px 7px 0 0;
	}					
.all-fld{
	float:left;
	width:100%;
	font-size: 17px;
    width: 100%;
    height: 64px;
    background-color: #fff;
    outline: none;
    color: #000;
  	font-family: 'Nunito Sans';
    padding: 0 20px;
    -webkit-appearance: none;
    border: 1px solid #b0c2ce;
	border-radius:5px;
	-webkit-appearance:none;
 	}			
.frm-btn{
    display: inline-block;
    vertical-align: top;
    background: #31c976;
    width: 100%;
    height: 66px;
    text-align: center;
    font-size: 22px;
    color: #fff;
	font-family: 'Nunito Sans';
    font-weight: 800;
	border:1px solid #2bb67f;
    border-radius: 12px;
    margin-top: 24px;
	-webkit-appearance:none;
	outline:none;
	cursor:pointer;
	}


/*-----------------------
 Section 2
------------------------*/
.section_2{
	background:#f9f9f9;
	float:left;
	width:100%;
	padding:60px 0 70px;
	}
.faq-container{
	display:inline-block;
	vertical-align:top;
	width:100%;
	padding:10px;
	max-width:840px;
	margin-top:20px;
	}
.up-slide-dwn{
	float: left;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    margin-top: 25px;
    padding: 0 20px;
    position: relative;
	border:1px solid #97bfd4;
	}
.faq-innr{
	float:left;
	width:100%;
	}
.accordion{
	float:left;
	width:100%;
	text-align:left;
	background:url(../../images/orderlookup/close-btn.png) no-repeat right 0 center;
	padding:20px 28px 20px 0;
	font-size:21px;
	line-height:28px;
	font-weight:800;
	color:#2a2a2a;
	cursor:pointer;
	position:relative;
	}
.acdn-heading.accordion-open{
	background:url(../../images/orderlookup/open-btn.png) no-repeat right 0 center;
	border-bottom:1px solid #97bfd4;
	}
.acdn-content{
	float:left;
	width:100%;
	text-align:left;
	padding:20px 0 10px;
	}
.acdn-para{
	float:left;
	width:100%;
	font-size:18px;
	line-height:26px;
	color:#1a1a1a;
	letter-spacing:0.5px;
	margin-bottom:15px;
	}

.acdn_mt1{ margin-bottom:10px;}
.acdn_mb1{ margin-bottom:0;}
a.link_text{ color:#2986b8;}	
a.link_text:hover{ text-decoration:underline;}
ul.acdn_list{
    float: left;
    width: 100%;
    margin: 0 0 15px;
    padding: 0 0 0 25px;
	}

ul.acdn_list li{
	float: left;
    width: 100%;
    margin: 10px 0 0;
    padding: 0;
    list-style: disc;
	}
ul.acdn_list li p{ margin-bottom:0;}

/*-----------------------
CSS FOR FOOTER
------------------------*/
.footer{
	float:left;
    width:100%;
	text-align:center;
	}
.footer_img{
	margin:0 auto 0;
	display:block;
	}	

/*=======Media Query========*/
.show-mob, .show-tab {display: none;}
.fl{ float:left;}
.fr{ float:right;}	

@media only screen and (max-width:1200px){
.container{width:1004px;}

.common_heading{ font-size: 34px; line-height: 40px;}
.form-position{ width:44%;}
ul.frm_strp_list li p{ font-size: 14px; line-height: 20px;}
}


@media only screen and (max-width:1021px){
.container{width:750px;}
.show-desk {display: none;}
.show-tab {display: block;}

.bnr_heading{ font-size: 46px; line-height: 54px;}

.section_1{ padding:50px 0 60px;}
.s1_mid_wrap{ padding:0 80px;}
.form-position{ width:100%; margin-top:0;}
ul.frm_strp_list li p{ font-size: 17px; line-height: 22px;}
.s1_left{ width:100%; margin-top:40px;}

.section_2{ padding:50px 0 60px;}
}

@media only screen and (max-width:767px){
.container{width:100%; padding:0 15px; max-width:600px; box-sizing:border-box;}
.show-mob{display:block;}
.hide-mob{display:none;}

.header{ padding:12px 0;}
.logo{ width:110px;}

.bnr_section{ padding:20px 0 30px;}
.bnr_heading{ font-size: 30px; line-height: 38px;}
.bnr_text{ font-size: 18px; line-height: 24px; margin-top: 15px;}

.section_1{ padding:30px 0 35px;}
.s1_mid_wrap{ padding:0;}
.form_header{ padding:15px 10px 20px;}
.form_header p{ font-size: 28px; line-height: 32px;}
.form_strip{ padding:10px;}
ul.frm_strp_list{ flex-wrap: wrap; justify-content: space-between; column-gap: 6px;}
ul.frm_strp_list li{ padding-left:27px;}
ul.frm_strp_list li img{ width: 22px; margin-top: -11px;}
ul.frm_strp_list li p{ font-size: 13px; line-height: 18px;}
ul.frm_strp_list li:before{ display:none;}
.form_mid{ padding:15px 20px 30px;}
.frm_mid_text{ font-size: 16px; line-height: 22px;}
.all-label{ font-size:16px; line-height:16px;}
.all-fld{ font-size:16px; padding:0 15px; height:60px;}
.frm-btn{ height:60px;}

.s1_left{ margin-top: 35px;}
.common_heading{ font-size: 30px; line-height: 36px;}
.contact_box{ padding: 20px 20px 25px; margin-top: 30px;}
.form-position{ margin-top:0;}
.header_left img{ width:35px;}
.header_left p{ width: calc(100% - 35px); padding-left: 8px; font-size: 19px; line-height: 24px;}
.available_text{ padding:5px 10px;}
.contact_mid{ padding-top:15px;}
.contact_text{ font-size: 17px; line-height: 23px;}
.cont_btn_strip{ margin-top:0;}
.cont_btnbox{ width:100%; margin-top:30px;}
.contact_box2 .cont_btnbox{ width:100%; margin-top:25px;}

.section_2{ padding:30px 0 35px;}
.faq-container{ padding:0; margin-top:10px;}
.up-slide-dwn{ padding:0 15px; margin-top:15px;}
.accordion{ padding: 14px 28px 16px 0; font-size: 19px; line-height: 27px;}
.acdn-content{ padding:17px 0 8px;}
.acdn-para{ font-size:17px; line-height:25px;}



}