/* @import url('http://example.com/example_style.css'); */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/**
 * CSS @imports must be at the top of the file.      
 * Add them above this section.                             
 */







/* ==========================================================================


   1. BASE STYLES                                             


   ========================================================================== */


/** 
 * Box Sizing
 * 
 * Applies a natural box layout model to all elements so that width and padding 
 * are essentially combined, making responsive styles easier to manage.
 */

*, *:before, *:after { -webkit-box-sizing: border-box; box-sizing: border-box;
}

:root{
	--containerw: calc((100vw - 1440px) / 2);
}

html{
	font-size: 16px;
}
html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
} 

/* Website background color and default font styles */
body {
  background: #fff;
  color: #6C6C6C;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.1875rem;
}

/**
 * Page Center
 *
 * Apply .page-center to full-width modules.
 */

.container {
	float: none;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

img{
    max-width: 100%;
    height: auto;
}

a { 
    text-decoration: none;
    outline: none;
    color: #000;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
a:hover, a:focus { 
    text-decoration: none;
    outline: none;
    color: #38B6FF; 
}

hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #38B6FF;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #38B6FF;
  text-shadow: none;
}


/* ==========================================================================
   Typography
   ========================================================================== */


/* Basic text */
p {
    margin: 0 0 15px;
} 
p:last-child{
    margin: 0;
}
small {}
strong {
    font-weight: 700;
}
em {}
cite {}
code {}
pre {}

sup, sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin: 0px 0 20px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}


h1 {
    font-size: 80px;
	line-height: 96px;
}
h2 {
    font-size: 80px;
	line-height: 1.2;
}
h3 {
    font-size: 50px;
	line-height: 1.2;
}
h4 {
    font-size: 40px;
	line-height: 1.2;
}
h5 {
    font-size: 35px;
	line-height: 1.2;
}
h6 {
    font-size: 28px;
	line-height: 1.2;
}

/* Lists */
ul, ol {}
ul ul, ul ol, ol ol, ol ul {}
li {}

ul.unstyled, ol.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Quotes */
blockquote {}
blockquote p {}
blockquote small {}
blockquote small:before {}

q:before, q:after, blockquote:before, blockquote:after {}

.cmn_padd{
    padding-top: 75px;
    padding-bottom: 75px;
}
.cmn_padd_top{
	padding-top: 75px;
	padding-bottom: 0;
}
.cmn_padd_bottom{
	padding-bottom: 75px;
	padding-top: 0;
}
a.cmn_btn {
    background-color: #fff;
    display: inline-block;
    padding: 24px 55px ;
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
    color: #146789;
    position: relative;
	text-align: center;
	white-space: normal;
	overflow: hidden;
	z-index: 1;
	border-radius: 40px;
}
a.cmn_btn:hover{
	color: #fff;
}
a.cmn_btn.darkbtn{
	background-color: #146789;
	color: #fff;
}
a.cmn_btn.darkbtn:hover{
	color: #fff;
}
a.cmn_btn:before,
a.cmn_btn:after {
    content: "";
    position: absolute;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: #146789;
	z-index: -1;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}
a.cmn_btn:before {
    top: -50%;
}
a.cmn_btn:hover:before {
	top: 0;
}
a.cmn_btn:after {
    bottom: -50%;
}
a.cmn_btn:hover:after {
	bottom: 0;
}
a.cmn_btn.darkbtn:before,
a.cmn_btn.darkbtn:after {
	background-color: #000;
}


/* ==========================================================================
   Header
   ========================================================================== */

.custom_header {
    background: #EAF9FF;
    padding: 0px 100px;
	position: relative;
    z-index: 11;
}
.custom_header > .container-fluid > .row {
    align-items: center;
}
.custom_header .sec_logo{
	padding: 20px 0;
}
.header_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.ct_loginmenu {
    padding-left: 100px;
}
.custom_header .mainmenu ul.menu-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
}
.custom_header .mainmenu ul.menu-wrapper > li {
    display: inline-block;
    vertical-align: middle;
    padding: 38px 30px;
	position: relative;
}
.ct_loginmenu > a, 
.custom_header .mainmenu ul.menu-wrapper > li > a{
	color: rgba(20 103 137 / 80%);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.ct_loginmenu > a:hover,
.custom_header .mainmenu ul.menu-wrapper > li:hover > a,
.custom_header .mainmenu ul.menu-wrapper > li > a:hover,
.custom_header .mainmenu ul.menu-wrapper > li.current-menu-item > a{
	color: rgba(20 103 137 / 100%);
}

/*=== Submenu Css ===*/

.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    background-color: #EAF9FF;
    min-width: 275px;
    list-style: none;
    margin: 0;
    padding: 0;
	opacity: 0;
	visibility: hidden;
    box-shadow: 0px 0px 10px rgba(20 92 164 / 50%);
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transform: translateY(50px) scaleY(0);
	-moz-transform: translateY(50px) scaleY(0);
	-webkit-transform: translateY(50px) scaleY(0);
	-o-transform: translateY(50px) scaleY(0);
	-ms-transform: translateY(50px) scaleY(0);
}
.main_header .mainmenu .primary-menu-container > ul > li:hover > ul.sub-menu > li:hover > ul.sub-menu,
.main_header .mainmenu .primary-menu-container > ul > li:hover > ul.sub-menu{
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scaleY(1);
	-moz-transform: translateY(0) scaleY(1);
	-webkit-transform: translateY(0) scaleY(1);
	-o-transform: translateY(0) scaleY(1);
	-ms-transform: translateY(0) scaleY(1);
}
.main_header .mainmenu .primary-menu-container > ul > li > ul.sub-menu > li > ul.sub-menu {
    top: 0;
    left: 100%;
}
.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li > a {
    padding: 10px 40px 10px 10px;
    display: block;
    background-color: transparent;
	position: relative;
	color: rgba(20 103 137 / 80%);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	border-bottom: 1px solid rgba(20 103 137 / 80%);
}
.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li:last-child > a{
	border-bottom: 0 none;
}
.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li:hover > a, 
.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li > a:hover {
	color: rgba(20 103 137 / 100%);
}
.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li.menu-item-has-children > a:after{
	content: "\f0da";
    display: inline-block;
    font-family: FontAwesome;
    font-size: inherit;
    margin-left: 0px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 15px;
    font-size: 20px;
    line-height: 1;
    top: 10px;
}


/* ==========================================================================
   Content
   ========================================================================== */

/*=== Home Page Css ===*/

.pp_hbanner_wrap {
    height: calc(100vh - 100px);
    width: 100%;
    display: table;
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.pp_hbanner_wrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(20 103 137 / 50%);
}
.pp_hbanner_wrap .pp_binner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
}
.pp_hbanner_wrap .bann_caption {
    padding-bottom: 85px;
}
.pp_hbanner_wrap .bann_caption h1 {
    margin-bottom: 25px;
}
.pp_hbanner_wrap .bann_caption p {
    font-size: 24px;
    line-height: 43px;
}
.pp_jobsearch_form {
    background-color: #fff;
    padding: 25px 35px;
}
.pp_jobsearch_form .job_form .ct_flcol {
    width: calc(100% - 235px);
    max-width: calc(100% - 235px);
}
.pp_jobsearch_form .job_form .ct_frcol {
    width: 235px;
}
.pp_jobsearch_form .job_form .ct_flcol .form_fields {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.pp_jobsearch_form .job_form .ct_flcol .form_fields .form_grp {
    padding-left: 12px;
    padding-right: 12px;
}
.pp_jobsearch_form input.btnsearch {
    padding: 20px 35px;
    width: 100%;
}
.pp_jobsearch_form .form-control {
    padding: 20px 35px;
    color: #000;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.pp_jobsearch_form .job_form .ct_flcol .form_fields .chkbox_grp_field {
    padding-left: 12px;
    padding-right: 12px;
}
.chkbox_grp {
    display: flex;
    align-items: center;
}
.chkbox_grp .chkbox_col {
    margin-right: 40px;
}
.chkbox_grp .chkbox_col label {
    margin: 0;
    color: #000;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

/*=== Who We Are Sec css ===*/

.pp_aboutsec{
	background-color: #fff;
	background-image: url('../images/dimondbg.png');
	background-size: cover;
	background-position: center center;
}
.top_cnt {
    margin-bottom: 95px;
    text-align: center;
}
.top_cnt h2 {
    color: #146789;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 5px;
    text-transform: capitalize;
}
.top_cnt p {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 43px;
}
.pp_aboutsec .pp_aboutmain_cnt .wwr_img img {
    border-radius: 15px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 0px 0px rgba(0 0 0 /30%);
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
.pp_aboutsec .pp_aboutmain_cnt .wwr_img img:hover {
    box-shadow: 10px 10px 15px rgba(0 0 0 /25%);
}
.pp_aboutsec .pp_aboutmain_cnt .wwr_cnt {
    padding-left: 50px;
    color:  #000;
}
.pp_aboutsec .pp_aboutmain_cnt .wwr_cnt h5 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 15px;
}
.pp_aboutsec .pp_aboutmain_cnt .wwr_cnt p {
    font-size: 24px;
    font-style: normal;
    line-height: 40px;
    margin: 0 0 25px;
}
.pp_aboutsec .pp_aboutmain_cnt .wwr_cnt ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pp_aboutsec .pp_aboutmain_cnt .wwr_cnt ul li {
    position: relative;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    padding: 13px 0px 0 73px;
}
.pp_aboutsec .pp_aboutmain_cnt .wwr_cnt ul li:before {
    content: "\f00c";
    height: 48px;
    width: 48px;
    background-color: #146789;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
}

/*=== Guaranteed Sec Css ===*/

.pp_guaranteedsec {
	position: relative;
    color: #fff;
	background-color: rgba(20 103 137 / 100%);
}
.pp_guaranteedsec:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url('../images/dots.png');
	background-size: cover;
	background-position: center center;
	opacity: 0.2;
}
.pp_guaranteedsec > .container {
    position: relative;
	z-index: 1;
}
.pp_guaranteedsec .gur_cnt {
    padding-right: 100px;
	margin-bottom: 35px;
}
.pp_guaranteedsec h2 {
    font-weight: 500;
    line-height: 90px;
    margin: 0 0 20px;
}
.pp_guaranteedsec p {
    font-size: 24px;
    line-height: 43px;
}
.pp_guaranteedsec .gur_img img {
    border-radius: 15px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 0px 0px rgba(0 0 0 /30%);
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
.pp_guaranteedsec .gur_img img:hover {
    box-shadow: 10px 10px 15px rgba(255 255 255 /25%);
}


/*=== Services Section Css ===*/

.pp_servicesec {
    background-color: #F5FCFF;
}
.pp_servicesec .service_img img {
	border-radius: 15px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 0px 0px rgba(0 0 0 /30%);
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
.pp_servicesec .service_img img:hover{
	box-shadow: 10px 10px 15px rgba(0 0 0 /25%);
}
.pp_servicesec .pp_servicemain_cnt .service_cnt {
    padding-left: 50px;
    color: #000;
}
.pp_servicesec .pp_servicemain_cnt .service_cnt .scnt {
    margin-bottom: 35px;
}
.pp_servicesec .pp_servicemain_cnt .service_cnt h2 {
    font-weight: 500;
}
.pp_servicesec .pp_servicemain_cnt .service_cnt p {
    font-size: 24px;
    font-style: normal;
    line-height: 43px;
}

/*=== Blog Section Css ===*/

.pp_blogsec{
	background-image: url('../images/arrow.png');
	background-size: cover;
	background-position: center center;
	background-color: #fff;
	padding-left: 65px;
	padding-right: 65px;
}
.pp_blogsec .top_cnt h2 {
    font-weight: 500;
    color: #000;
}
.pp_blogsec .ctpost_item .post_img {
	height: 250px;
	overflow: hidden;
	margin-bottom: 30px;
	border-radius: 20px;
}
.pp_blogsec .ctpost_item .post_img a {
    display: block;
}
.pp_blogsec .ctpost_item .post_img img.postfimg {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    border-radius: 20px;
}
.pp_blogsec .ctpost_item:hover .post_img img.postfimg {
    transform: scale(1.2);
}
.pp_blogsec .ctpost_item .post_cnt h6 {
    color: #000;
    font-style: normal;
    font-weight: 600;
    line-height: 33px;
    margin: 0 0 12px;
}
.pp_blogsec .ctpost_item .post_cnt .post_meta {
    color: rgba(0 0 0 / 60%);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
}
.pp_blogsec .blogslider_wrap {
    position: relative;
}
.pp_blogsec .blogslider_wrap a.slidenav {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #000;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.pp_blogsec .blogslider_wrap a.slidenav.slide_prev {
    left: -60px;
}
.pp_blogsec .blogslider_wrap a.slidenav.slide_next {
    right: -60px;
}
.pp_blogsec .blogslider_wrap a.slidenav.slide_next i.fa {
    position: relative;
    right: -2px;
}

/*=== Job Filter Sec ===*/

.pp_jobfilter_sec .top_cnt {
    margin-bottom: 50px;
}
.pp_jobfilter_sec .top_cnt h2 {
    font-weight: 500;
    color: #000;
}
.pp_jobfilter_sec .jobfilter_nav {
    text-align: center;
	margin-bottom:70px;
}
.pp_jobfilter_sec .jobfilter_nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    background-color: #146789;
    padding: 10px;
    border-radius: 15px;
}
.pp_jobfilter_sec .jobfilter_nav ul li {
    display: inline-block;
}
.pp_jobfilter_sec .jobfilter_nav ul li a {
    padding: 22px 95px;
    min-width: 295px;
    display: block;
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 43px;
    background-color: transparent;
    border-radius: 8px;
}
.pp_jobfilter_sec .jobfilter_nav ul li.active a,
.pp_jobfilter_sec .jobfilter_nav ul li a:hover {
    background-color: #06587A;
}
.job_filteritem{
	display: none;
}
.job_filteritem.active-tab{
	display: block;
}
.job_filteritem .jobitem_inner {
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: #F5FCFF;
    padding: 50px 40px;
	margin-bottom: 50px;
    color: #000;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}
.job_filteritem .jobitem_inner:hover{
	background: #146789;
	color: #fff;
}
.job_filteritem .jobitem_inner:hover a{
	color: #fff;
}
.job_filteritem .jobitem_inner .title_wrap {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0 0 0 / 10%);
}
.job_filteritem .jobitem_inner .title_wrap h3 {
    font-family: Nunito;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}
.job_filteritem .jobitem_inner .title_wrap p.company {
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
	opacity: 0.6;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}
.job_specification {
    padding: 35px 0;
}
.job_specification ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.job_specification ul li {
    border-radius: 0px 5px 5px 0px;
    background: #E4F7FF;
    margin-bottom: 40px;
    padding: 10px 15px 10px 73px;
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}
.job_specification ul li:last-child{
	margin: 0 0 15px;
}
.job_filteritem .jobitem_inner:hover .job_specification ul li{
	background: rgba(24, 26, 38, 0.08);
	color: #fff;
}
.job_specification ul li span.icon {
    width: 48px;
    height: 48px;
    position: absolute;
    left: -10px;
    top: -5px;
    background-color: #146789;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}
.job_filteritem .jobitem_inner:hover .job_specification ul li span.icon {
	background-color: #fff;
	color: #146789;
}
.show_detailbtn a.showd_btn {
    border-radius: 8px;
    border: 1px solid #146789;
    display: block;
    color: #146789;
    text-align: center;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px 65px;
    width: 100%;
}
.job_filteritem .jobitem_inner:hover .show_detailbtn a.showd_btn{
	background-color: #fff;
	color: #146789;
}
.show_detailbtn a.showd_btn:hover{
	background-color: #146789;
	color: #fff;
}



/* ==========================================================================
   Footer
   ========================================================================== */

footer#main_footer {
    background-color: #146789;
    color: #fff;
}

.footer_top > .container {
    border-bottom: 1px solid rgba(255,255,255,.2);
	padding-top: 60px;
    padding-bottom: 60px;
}
.footer_logo {
    margin-bottom: 25px;
}
.footitle h6 {
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 33px;
    margin: 0 0 20px;
}
.foo_col .footer_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.foo_col .footer_menu ul li {
    display: block;
    margin-bottom: 30px;
}
.foo_col .footer_menu ul li a {
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}
.foo_col .footer_menu ul li:last-child {
    margin: 0;
}
.footer_des {
    max-width: 470px;
    margin-bottom: 40px;
}
.footer_des p {
    font-size: 18px;
    line-height: 32px;
}
.footer_socialicons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer_socialicons ul li {
    display: inline-block;
    margin-right: 10px;
}
.footer_socialicons ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    background-color: rgba(255,255,255,.2);
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
}
.footer_socialicons ul li a:hover {
    color: #146789;
    background-color: #fff;
}

/*=== Footer Bottom Css ===*/

.footer_bottom {
    padding: 50px 0;
}
.footer_bottom .row {
    align-items: center;
}
.footer_bottom .copyright_txt p {
    font-size: 18px;
    font-style: normal;
    line-height: 30px;
}
.footer_bottom .nextgen_logo {
    text-align: right;
}
.contac_details p {
    font-size: 18px;
    line-height: 26px;
}
.contac_details p a {
    color: #fff;
}
.contac_details p a:hover {
    color: #000;
}


/* ==========================================================================
   Forms
   ========================================================================== */
   
 
   
   


/* All Global Forms
   ========================================================================== */


/* Labels */

body label {
    margin: 0 0 10px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}



/* One Line Inputs */


body input[type="text"],
body input[type="password"], 
body input[type="datetime"], 
body input[type="datetime-local"], 
body input[type="date"], 
body input[type="month"], 
body input[type="time"], 
body input[type="week"], 
body input[type="number"], 
body input[type="email"], 
body input[type="url"], 
body input[type="search"], 
body input[type="tel"], 
body input[type="color"],
body input[type="file"],
body select.form-control,
body textarea,
body select {
    width: 100%;
    padding: 10px 15px;
    height: auto;
    min-height: auto;
    line-height: 1;
    border: 1px solid #000000;
    margin-bottom: 20px;
    border-radius: 8px;
	background: #FFF;
    color: #000;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
    outline: none;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}


body textarea.form-control{
    height: 145px;
    resize: none;
	border-radius: 0;
	background-color: transparent;
}
body select.form-control {
    appearance: auto;
    -moz-appearance: auto;
    -ms-appearance: auto;
    -o-appearance: auto;
    -webkit-appearance: auto;
}

body input[type="text"]:focus,
body input[type="password"]:focus, 
body input[type="datetime"]:focus, 
body input[type="datetime-local"]:focus, 
body input[type="date"]:focus, 
body input[type="month"]:focus, 
body input[type="time"]:focus, 
body input[type="week"]:focus, 
body input[type="number"]:focus, 
body input[type="email"]:focus, 
body input[type="url"]:focus, 
body input[type="search"]:focus, 
body input[type="tel"]:focus, 
body input[type="color"]:focus,
body input[type="file"]:focus,
body textarea:focus,
body select:focus {
    border-color: #000;
}

/* Separate Styles for Multiple Line Inputs */
body textarea {}
body textarea:focus {}

/* Separate Styles for Drop Downs */
body select {}
body select:focus {}

/* Multiple Selection Inputs */

body input[type="radio"] {}
body input[type="checkbox"] {}





/* Placeholder Text */
.form-control::-webkit-input-placeholder { /* Webkit Browsers */
   color: #c8c8c8 !important;
   opacity: 1; 
}
.form-control:-moz-placeholder { /* Firefox 18- */
   color: #c8c8c8 !important;
   opacity: 1;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
   color: #c8c8c8 !important;
   opacity: 1;
}
.form-control:-ms-input-placeholder { /* IE10 */
   color: #c8c8c8 !important;
   opacity: 1;
}

.bann_form .main_form form label.error {
    position: relative;
    top: -8px;
    color: #f00;
}

/* ==========================================================================
   Buttons                                              
   ========================================================================== */


/* All Global Buttons (Excluding CTAs)
   ========================================================================== */

.alm-btn-wrap button.blogload_more,
body input[type="submit"],
body input[type="button"] {
    cursor: pointer;
    -webkit-appearance: none;
	border-radius: 8px;
	background: #146789;
    width: auto;
    padding: 10px 20px 10px;
    color: #FFF;
	font-family: Roboto;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: center;
    white-space: normal;
    border: 0 none;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
	display: block;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}

.alm-btn-wrap button.blogload_more:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover {
    background: #000;
    color: #fff;
}

.alm-btn-wrap button.blogload_more:focus,
body input[type="submit"]:focus,
body input[type="button"]:focus {
    background: #000;
    color: #fff;
}

.alm-btn-wrap button.blogload_more{
	display: inline-block;
	background: #38B6FF !important;
	font-size: 1.125rem;
}
.alm-btn-wrap button.blogload_more:hover{
	background: #145CA4 !important;
}


.wpcf7-not-valid-tip {
    position: relative;
    top: -12px;
}
.wpcf7 form.failed .wpcf7-response-output, 
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 0 none;
    color: #f00;
    margin: 0 0 30px;
    padding: 0;
}

body.admin-bar #wprmenu_bar {
    width: 100%;
}
body.admin-bar #wprmenu_bar .menu_title {
    display: none;
}
html body div.wprm-wrapper {
    overflow: inherit;
}