@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Arvo:400,400i,700,700i&display=swap');


/*====================================== style.css is here ========================================*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: bold;
}

q:before,
q:after {
	content: '';
}

abbr,
acronym {
	border: 0;
}

.clear_0 {
	clear: both;
	font-size: 0px;
	line-height: 0px;
	display: block;
}

.last {
	margin: 0 !important;
}

.pad_last {
	padding: 0 !important;
}

.no_bg {
	background: none !important;
}

.p-l {
	padding-left: 0;
}

.p-r {
	padding-right: 0;
}

.m-l {
	margin-left: 0;
}

.m-r {
	margin-right: 0;
}

section {
	width: 100%;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #7d7383;
	outline: 0;
	box-shadow: none;
}


* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
}

.padd-0 {
	padding: 0px;
}

.nopadding {
	padding: 0;
}

.nomargin {
	margin: 0;
}

a:focus {
	outline: none;
	text-decoration: none;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
}

input[type="submit"],
input[type="button"] {
	appearnce: none;
	-webkit-appearance: none;
}

button:focus {
	outline: none;
	box-shadow: none;
}

/**********************************************/
a {
	color: #000;
	text-decoration: none;
	outline: 0 none;
}

a:hover {
	color: #131a1c;
	text-decoration: none;
}

h1 {
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

h2 {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 40px;
}

h3 {
	font-size: 32px;
}

h4 {
	font-size: 28px;
}

h5 {
	font-size: 24px;
}

h6 {
	font-size: 22px;
}

p {
	font-size: 16px;
	color: #666666;
	font-family: 'Open Sans', sans-serif;

}

/***************/





body {
	font-size: 16px;
	background: #ffffff;
	font-style: normal;
	color: #7d7383;
	font-family: 'Open Sans', sans-serif;
}

.container {
	max-width: 1125px;
}

#wrapper {
	width: 100%;
}

.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9;
	background: transparent;
	margin-top: 45px;
}

.header.fixed-header {
	position: fixed;
	top: 0;
	z-index: 99;
	height: auto;
	width: 100%;
	margin-top: 0;
	background: transparent;
	animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}

	100% {
		transform: translateY(0px);
	}
}

/* navbar */
.navbar {
	padding: 0px;
	background: #fff;
	z-index: 9;
}


.navbar-expand-sm {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	-moz-flex-flow: column wrap;
	-webkit-flex-flow: column wrap;
	flex-flow: column wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.menu-item-has-children {
	position: relative;
}

.sub-menu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	/* left: 0; */
	left: 0%;
	width: 100%;
	/* transform: translateY(-2em); */
	transform: translateX(0%);
	z-index: -1;
	padding: 10px 10px 0 10px;
	width: 315px;
	text-align: left;
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}



.menu-item-has-children:focus .sub-menu,
.menu-item-has-children:focus-within .sub-menu,
.menu-item-has-children:hover .sub-menu {
	visibility: visible;
	/* shows sub-menu */
	opacity: 1;
	z-index: 1;
	top: 100%;
	margin-top: 0px;
	/* transform: translateY(0%); */
	transition-delay: 0s, 0s, 0.3s;
	/* this removes the transition delay so the menu will be visible while the other styles transition */
}




.navbar-nav,
.navbar-nav li {
	list-style-type: none;
	margin: 0;
}

.menu-item-has-children .caret_down {
	display: none;
}

.menu-item-has-children .caret_down i {
	font-size: 32px;
	position: relative;
	top: -5px;
	margin-left: 0;
	font-weight: normal;
	color: #ffffff;

}

.navbar-nav {
	text-align: center;
}

.navbar-nav > li {
	display: inline-block;
	padding: 10px 20px;
	position: relative;
}




.navbar-nav > li:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 38px;
	background: #B3B3B3;
	transform: translateY(-50%);
}

.navbar-nav > li:last-child:after {
	display: none;
}

.navbar-nav > li > a {
	color: #666666;
	display: block;
	padding: 0;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Arvo', serif;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 2.4px;
}

.sub-menu {
	background: #f2f2f2;
}

.navbar-nav li:hover > a {
	color: #7F2629;
}

.navbar-nav > li.menu-item-has-children:hover a:after {
	content: "";
	position: absolute;
	bottom: -7px;
	right: 0;
	left: 0;
	margin: auto;
	width: 0px;
	height: 0px;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #f2f2f2;
	display: none;
}



.navbar-nav > li.current_page_item > a {
	color: #7F2629;
}

.navbar-expand-sm .navbar-nav .nav-link {
	padding: 0;
}

.navbar-nav > li.menu-item-has-children:hover .sub-menu li a {
	border-radius: 0;
	background: transparent;
	color: #7d7383;
}

.navbar-nav > li.menu-item-has-children:hover .sub-menu li {
	padding: 8px 0px;
	text-align: left;
	position: relative;
}

.navbar-nav > li.menu-item-has-children:hover .sub-menu li:after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	height: 1px;
	background: #e1e1e1;
}

.navbar-nav > li.menu-item-has-children:hover .sub-menu li:last-child:after {
	display: none;
}

.sub-menu li a {
	text-align: left;
	color: #7d7383;
	font-family: 'Titillium Web', sans-serif;
	font-size: 18px;
}


.navbar-nav > li.menu-item-has-children .sub-menu li:hover {}

.navbar-nav > li.menu-item-has-children .sub-menu li.current-menu-ancestor a {
	color: #7d7383;
}

.navbar-nav > li.menu-item-has-children .sub-menu li:hover a {
	color: #7d7383;
	border-bottom: none;
}

.menu-item-has-children .sub-menu li.current-menu-ancestor {
	/* background: #cae8f2; */
}

.menu-item-has-children .sub-menu li {
	padding: 15px 0px;
	transition: 0.5s all;
}

.navbar-brand {
	position: relative;
	top: 0px;
	padding: 0;
	background: #7F2629;
	margin-right: 0;
	width: 254px;
}

.navbar-brand h4 {
	color: #ffffff;
	font-family: 'Open Sans', sans-serif;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 5.72px;
	margin: 0;
	line-height: 0.9;
}

.navbar-brand em {
	font-style: normal;
	letter-spacing: 1.03px;
	color: #ffffff;
	font-size: 17px;
	font-family: 'Arvo', serif;
	font-weight: 400;
	line-height: 1;

}


.quicklinks {
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	flex-wrap: wrap;
}



.links_select {
	display: inline-block;
	background: #999999;
	padding: 18px 18px 18px 90px;
	width: 254px;
}

.links_select a {
	font-family: 'Arvo', serif;
	font-size: 12px;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 3.84px;
}

.links_option {
	background: #E6E6E6;
	display: inline-block;
	width: 500px;
}

.links_option ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	margin: 0;
	height: 100%;
	align-items: center;
}

.links_option ul li {
	padding: 18px 17px;
}

.links_option ul li a {
	color: #4D4D4D;
	font-size: 11px;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 1.1px;
}

.searchsite {
	background: #202945;
	padding: 20px 10px 20px 30px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-moz-align-items: center;
	-ms-align-items: center;
	-webkit-align-items: center;
	align-items: center;
	width: 341px;
}

.searchsite label {
	font-family: 'Arvo', serif;
	font-weight: 700;
	color: #ffffff;
	font-size: 12px;
	margin-bottom: 0;
	margin-right: 15px;
	letter-spacing: 3.84px;
}

.inputsearch {
	position: relative;
	width: 50%;
}

.inputsearch:after {
	content: "";
	position: absolute;
	right: -5px;
	top: 72%;
	transform: translateY(-50%);
	background: url(../images/search_icon_white.svg)no-repeat;
	width: 29px;
	height: 24px;
	background-size: 60%;
	display: none;
}

.searchsite button {
	position: absolute;
	right: 0;
	background: transparent;
	border: none;
	width: 28px;
	height: 24px;
	top: -3px;
}

.searchsite input {
	width: 100%;
	border: 1px solid #ffffff;
	height: 24px;
	padding: 0 22px 0 8px;
	color: #fff;
	background: transparent;
}

/* coursesbanner */
#content {
	padding: 0px 0 0 0;
	margin-top: 0px;
	min-height: calc(100vh - 221px);
}

.hero_slider {
	width: 100%;
	position: relative;
}

.hero_section {
	width: 100%;
	position: relative;
}

.hero_banner {
	position: relative;
}

.hero_banner img {
	width: 100%;
}

.hero_content {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 100%;
}

.hero_content_text {
	/*	width: 40%;*/
}

.jumbotron {
	background: transparent;
	padding: 0;
	text-align: right;
	color: #ffffff;
}

.jumbotron h1 {
	font-family: 'Arvo', serif;
	font-size: 87px;
	color: #ffffff;
	text-align: right;
	font-weight: 700;
	letter-spacing: 1.75px;
	clear: both;
	line-height: 1;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.jumbotron p {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	color: #ffffff;
	text-align: right;
	font-weight: 700;
	width: 50%;
	/* display: flex; */
	float: right;
	clear: both;
	line-height: 1.8;
	margin-bottom: 15px;
}

.comman_btn {
	font-size: 16px;
	font-family: 'Arvo', serif;
	font-weight: 700;
	letter-spacing: 2.01px;
	color: #ffffff;
	padding: 10px;
	border: 1px solid #ffffff;
	clear: both;
	text-transform: uppercase;
	display: table;

}

.comman_btn:hover {
	color: #ffffff;
}

.jumbotron .comman_btn {
	float: right;
}


/*mission section*/
.mission_section {
	background: url('../images/mission.jpg') no-repeat;
	background-size: cover;
	width: 100%;
	background-position: top 80% center;

}

.red_sect {
	width: 100%;
	position: relative;
	margin-top: -110px;
}

.red_box {
	padding: 35px 35px 28px 25px;
	background: #7F2629
}

.red_box.light {
	background: #8F3F3D;
}

.red_box img {
	margin-bottom: 20px;
}

.red_box h3 {
	font-family: 'Arvo', serif;
	font-weight: 700;
	margin-bottom: 20px;
	color: #ffffff;
	letter-spacing: 4.5px;
	text-align: left;
	font-size: 22px;
	line-height: 1.4;
}

.red_box p {
	font-size: 15px;
	font-family: 'Open Sans', sans-serif;
	color: #ffffff;
	letter-spacing: 1.5px;
	padding-right: 20px;
	margin-bottom: 25px;
	line-height: 1.4;
	font-weight: 700;
}

.red_box .comman_btn {
	font-size: 12px;
	letter-spacing: 1.44px;
	padding: 0 12px;
	height: 32px;
	line-height: 32px;
}

.ourmission_style h3 {
	font-size: 67px;
	color: #ffffff;
	font-family: 'Arvo', serif;
	font-weight: 700;
	letter-spacing: 1.35px;
	line-height: 1;
	margin-bottom: 25px;
}

.ourmission_style p {
	color: #ffffff;
	font-family: 'Open Sans', sans-serif;
	font-size: 19px;
	letter-spacing: 0.38px;
	line-height: 1.8;
	margin-bottom: 35px;
}

.ourmission_style .comman_btn {
	font-size: 16px;
	height: 44px;
	line-height: 44px;
	padding: 0 15px;
}



.ourmission_style {
	padding: 120px 0;
}


/*jumping points*/
.jumping_points {
	width: 100%;

	background-position: center;
	background-size: cover;
	overflow: hidden;
	position: relative;
}

.jumping_points:after {
	content: "";
	position: absolute;
	width: 41%;
	background: url(../images/soybean_harvest_web_pic.jpg) no-repeat;
	top: 0;
	left: 0;
	z-index: -1;
	height: 100%;
	background-size: cover;
	background-position: center center;
}


.jumping_points:before {
	content: "";
	position: absolute;
	width: 100%;
	background: #3333337a;
	top: 0;
	left: 0;
	z-index: 0;
	height: 100%;
}

.jumping_heading {
	padding-right: 60px;
	padding-top: 40px;
	position: relative;
	z-index: 2;
}

.jumping_heading:after {
	content: "";
	position: absolute;
	right: 0px;
	top: 50%;
	width: 30px;
	height: 60px;
	border-right: solid 30px #ffffff;
	border-bottom: solid 30px transparent;
	border-top: solid 30px transparent;
}

.jumping_heading h4 {
	font-size: 67px;
	color: #ffffff;
	font-weight: 700;
	text-align: right;
	line-height: 1.2;
	letter-spacing: 1.35px;
	font-family: 'Arvo', serif;
	font-weight: 700;
}

.jumping_heading h4 span {
	font-size: 75px;
	letter-spacing: 1.51px;
}

.jumping_list {
	background: #ffffff;
	padding: 60px 0 40px 70px;
	position: relative;
}

.jumping_list:after {
	content: "";
	position: absolute;
	right: -100%;
	width: 100%;
	height: 100%;
	background: #ffffff;
	top: 0;
}

.jumping_list li {
	padding-left: 35px;
	margin-bottom: 40px;
	position: relative;
}

.jumping_list li:last-child {
	margin-bottom: 0;
}

.jumping_list li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 20px;
	border-left: solid 16px #7F2629;
	border-bottom: solid 12px transparent;
	border-top: solid 12px transparent;
}

.jumping_list li a {
	font-size: 20px;
	color: #202945;
	text-align: left;
	line-height: 1.2;
	font-family: 'Arvo', serif;
	font-weight: 700;
	letter-spacing: 3.2px;

}


.bridge_testi {
	width: 100%;
	background: url(../images/broadway-bridge.jpg) no-repeat;
	background-size: cover;
	background-position: bottom 63% center;
	position: relative;
	padding: 140px 0;
	z-index: 1;
}

.bridge_testi:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #6a1f23e8;
	z-index: -1;


}

.testi_desc h5 {
	font-size: 34px;
	font-family: 'Arvo', serif;
	font-weight: 700;
	letter-spacing: 0.69px;
	margin-bottom: 12px;
	color: #ffffff;
	text-align: center;

}

.testi_desc h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 52px;
	color: #ffffff;
	letter-spacing: 2.05px;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;

}

.footer {
	background: #202945;
	padding-bottom: 15px;

}

.footer_content {
	margin: 0;
	/*	display: block;*/

}

.footer_add {
	padding-top: 25px;
	/*	width: 63%;*/
	/*	display: inline-block;*/
	padding-right: 25px;

}

.footer_add p {
	font-size: 13px;
	color: #ffffff;
	text-align: right;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 10px;
	letter-spacing: 1.56px;
	font-weight: 700;

}

.footer_add p:last-child {
	margin-bottom: 0;
}

.footer_add p a {
	color: #ffffff;
}

.footer_brand {
	/*	width: 36%;*/
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	/*
	display: inline-block;
	vertical-align: top;
	padding-left: 25px;
*/
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	/*	padding-left: 30px;*/
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer_brand .navbar-brand {
	background: #ffffff;
	height: 103px;
	/*	display: inline-block;*/

}

.top_scroll {
	/*
	display: inline-block;
	vertical-align: top;
	position: relative;
	left: -4px;
*/
}

.footer_brand .navbar-brand h4 {
	color: #7F2629;
}

.footer_brand .navbar-brand em {
	color: #7F2629;
}

.top_scroll a {
	display: block;
	width: 110px;
	height: 103px;
	background: #4D4D4D;
	text-align: center;
	position: relative;
}

.top_scroll a:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	margin: 0 auto;
	width: 60px;
	height: 30px;
	border-bottom: solid 30px #ffffff;
	border-left: solid 30px transparent;
	border-right: solid 30px transparent;
}

.copyright {
	padding-top: 85px;
}

.copyright p {
	color: #0071BC;
	font-size: 12px;
	text-align: center;
	letter-spacing: 5.04px;
}

.copyright p a {
	color: #0071BC;
	font-weight: 400;
}


/*innerpages*/
.heroinner .hero_banner img {
	width: 100%;
	object-fit: cover;
	height: 530px;
	/*	background-position: center bottom 58%;*/
	position: relative;
	z-index: 1;
}

.heroinner .hero_banner:after {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	z-index: 2;
	background: #4d4d4d7a;
}

.heroinner .hero_content {
	top: 66%;
	z-index: 5;
}

.heroinner .jumbotron h1 {
	text-transform: uppercase;
	margin-bottom: 0;
}

.heroinner .jumbotron h5 {
	font-size: 31px;
	font-family: 'Arvo', serif;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 3.14px;
}

.inner_note {
	width: 100%;
	position: relative;
	margin-top: -35px;
	z-index: 2;
}

.note_red {
	width: 100%;
	background: #7F2629;
	padding: 35px 55px 65px 50px;
}

.note_red h5 {
	font-size: 27px;
	color: #999999;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.4;
	margin-bottom: 15px;
}

.note_red p {
	font-size: 17px;
	color: #ffffff;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	line-height: 2;
	margin-bottom: 0px;

}

.entry_option {
	background: #202945;
	padding: 22px 0;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	flex-wrap: wrap;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;

}

.entry_dropdown {
	width: 28%;
	margin: 0 28px;
	position: relative;
}

.entry_dropdown:after {
	content: "";
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 15px;
	border-top: solid 16px #202945;
	border-left: solid 13px transparent;
	border-right: solid 13px transparent;
}

.entry_dropdown select {
	padding: 0px 13px;
	font-family: 'Arvo', serif;
	font-weight: 700;
	color: #7F2629;
	font-size: 13px;
	font-family: 'Arvo', serif;
	border: 1px solid #7F2629;
	background: #ffffff;
	font-weight: 700;
	letter-spacing: 2.64px;
	color: #7F2629;
}

.form-control {
	border-radius: 0px;
	border: 1px solid #7F2629;
	background: #ffffff;
	height: 36px;
	line-height: 36px;
	color: #7F2629;
	font-size: 13px;
	font-family: 'Arvo', serif;
	font-weight: 700;
	padding: px 13px;
	letter-spacing: 2.64px;

}

.entry_option .search_filings {
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	margin: 0;
	-moz-align-items: center;
	-ms-align-items: center;
	-webkit-align-items: center;
	align-items: center;
}

.entry_option .search_filings label {
	width: 50%;
	font-size: 20px;
	font-family: 'Arvo', serif;
	font-weight: 700;
	letter-spacing: 7.33px;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 0;
}

.search_entry {
	position: relative;
	width: 50%;
}

.entry_search .search_entry input {
	background: transparent;
	border: 2px solid #fff;
}

/*
.entry_search .search_filings:after {
	content: "";
	position: absolute;
	right: 5px;
	background: url(../images/search_icon.svg) no-repeat;
	width: 28px;
	height: 22px;
	top: 55%;
	background-size: 80%;
	transform: translateY(-50%) rotate(-12deg);
}
*/

.entry_search {
	padding: 28px 45px;
}

select.form-control:not([size]):not([multiple]) {
	height: 36px;
}

.form-control:focus {
	outline: none;
}

select::-ms-expand {
	display: none;
}

select {
	-webkit-appearance: none;
	appearance: none;
}

.search_filings {
	width: 47%;
	position: relative;
	float: right;
	clear: both;
}

.search_filings span {
	position: absolute;
	right: 8px;
	width: 25px;
	top: 5px;
}

/*
.search_filings:after {
	content: "";
	position: absolute;
	right: 4px;
	background: url(../images/search_icon_red.svg) no-repeat;
	width: 28px;
	height: 22px;
	top: 55%;
	background-size: 80%;
	transform: translateY(-50%) rotate(7deg);
}*/

.search_filings {
	margin-top: 15px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.search_filings input {
	width: 100%;
	border: 2px solid #7F2629;
	background: #ffffff;
	padding: 12px 32px 12px 12px;
	font-size: 23px;
	color: #4D4D4D;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	text-transform: capitalize;
	height: 36px;
	letter-spacing: 2.3px;
}

.search_filings input::placeholder {
	text-transform: uppercase;
}

.data_added {
	width: 100%;
	margin-top: 80px;
	padding-bottom: 165px;
}

.top_heading {
	padding: 0 40px;
}

.top_heading h5 {
	font-size: 33px;
	color: #202945;
	font-family: 'Arvo', serif;
	font-weight: 700;
	margin-bottom: 15px;
	letter-spacing: 6.64px;
}

.data_entry_structure {
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	border-top: 1px solid #202945;
	border-bottom: 1px solid #202945;
	/*	padding: 0px 40px 0;*/
	margin-bottom: 100px;
}

.data_entry_structure h4 {
	font-size: 17px;
	font-family: 'Arvo', serif;
	font-weight: 700;
	color: #7F2629;
	padding: 52px 0 40px 0;
	text-transform: uppercase;
	letter-spacing: 3.44px;
}

.coluumn_half {
	width: 23%;
	border-right: 1px solid #202945;
	padding: 0 0 40px 40px;
}

/*
.data_entry_structure {
	padding: 0 40px;
}*/

.data_entry_structure ul {
	list-style: none;

}

.data_entry_structure ul li {
	font-size: 12px;
	text-transform: uppercase;
	color: #0071BC;
	margin-bottom: 6px;
}

.data_entry_structure ul li a {
	color: #0071BC;
	font-weight: 700;
	letter-spacing: 2.64px;
	font-family: 'Open Sans', sans-serif;
}

.data_entry_structure .issue ul li a {
	color: #4D4D4D;
}

.data_entry_structure .coluumn_half:last-child {
	border-right: none;
}

.red_sectioninner {
	background: #E6E6E6;

}

.red_sectioninner .red_sect {
	position: relative;
	margin-top: 0px;
	top: -40px;
	padding-bottom: 40px;
}


.heroinner2 .jumbotron h1 {
	text-transform: capitalize
}

.data_inner {
	margin-bottom: 100px;
}

.entry_search .search_entry {
	padding-left: 25px;
}

.entry_search .searchandfilter ul li {
	padding: 0;
}

.entry_search .searchandfilter ul li label {
	width: 100%;
	position: relative;

}

.entry_search .searchandfilter ul li label:after {
	content: "";
	position: absolute;
	right: 5px;
	background: url(../images/search_icon_white.svg) no-repeat;
	width: 28px;
	height: 22px;
	top: 55%;
	background-size: 80%;
	transform: translateY(-50%);
}



.data_entry_structure table thead tr th:nth-child(1) {
	width: 25%;

}

.data_entry_structure table thead tr th:nth-child(2) {
	width: 25%;
}

.data_entry_structure table thead tr th:nth-child(3) {
	width: 50%;
}

.data_entry_structure table tbody tr td:nth-child(1) {
	width: 25%;
	color: #0071BC;
}

.data_entry_structure table tbody tr td:nth-child(2) {
	width: 25%;
}

.data_entry_structure table tbody tr td:nth-child(3) {
	width: 50%;
}



.data_entry_structure table tbody tr td {
	padding-left: 35px;
	border-right: 1px solid #202945;
	padding-bottom: 7px;
	font-weight: 700;
	letter-spacing: 2.64px;
	font-size: 12px;
	font-family: 'Open Sans', sans-serif;
}

.data_entry_structure table {
	width: 100%;
}

.data_entry_structure table tbody tr:first-child td {
	padding-top: 20px;
}

.data_entry_structure table tbody tr:last-child td {
	padding-bottom: 20px;
}

.data_entry_structure table thead tr th {
	font-size: 17px;
	font-family: 'Arvo', serif;
	font-weight: 700;
	color: #7F2629;
	padding: 52px 0 10px 35px;
	text-transform: uppercase;
	letter-spacing: 3.44px;
	border-bottom: 1px solid #202945;
	border-right: 1px solid #202945;
}

.data_entry_structure table tbody tr td:last-child,
.data_entry_structure table thead tr th:last-child {
	border-right: none;
}

.no-result-page {
	margin: 40px auto;
}

.def-page {
	padding: 20px 0;
}



.def-page .page-title {
	font-size: 38px;
	color: #232c6a;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.2;
	font-family: 'Arvo', serif;
}

.def-page .entry-title {
	font-size: 42px;
	color: #232c6a;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.2;
	font-family: 'Arvo', serif;
}

.def-page .search-form {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
	padding: 40px 0;
}

.def-page .search-form svg {
	display: none;
}

.def-page .search-form label {
	display: none;
}

.def-page .search-form input.search-field {
	width: 25%;
	height: 42px;
	border-radius: 0;
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	text-align: left;
	color: #000;
	border: 1px solid #ccc;
	font-weight: 700;
	padding-left: 15px;
}

.def-page .search-form button.search-submit {
	width: 12%;
	height: 42px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	background: #7f2629;
	color: #fff;
	font-family: 'Arvo', serif;
	font-size: 18px;
	border-radius: 0;
	box-shadow: none;
	border: none;
}

.entry_dropdown {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	flex-wrap: wrap;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
}

.entry_dropdown .testDemo {
	width: 28%;
	margin: 0 28px;
	position: relative;
}

.entry_dropdown .testDemo h2 {
	display: none;
}

.entry_dropdown .testDemo h2.widget-title {
	display: block;
	    font-size: 27px;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4;
    margin-bottom: 15px;
        text-transform: capitalize;
            text-align: center;
                top: -60px;
    margin: 0 auto;
    left: 0;
    right: 0;
    position:absolute;
}

.entry_dropdown .testDemo:after {
	content: "";
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 15px;
	border-top: solid 16px #202945;
	border-left: solid 13px transparent;
	border-right: solid 13px transparent;
}

.entry_dropdown select {
	height: 36px;
	width: 100%;
	padding: 0px 32px 0 13px;
	text-transform: uppercase;
}

.entry_dropdown {
	margin: 0 0;
}

.entry_dropdown:after {
	display: none;
}


.red_sectioninner .red_sect {
	margin-top: 80px;
}

#widget-list-custom-post-type-posts-with-ajax-2-committee-target,
#widget-list-custom-post-type-posts-with-ajax-3-local_committee-target,
#widget-list-custom-post-type-posts-with-ajax-4-local_option_committ-target {
	display: none;
}


.search_filings form.searchandfilter {
	width: 100%;
}

.search_filings form.searchandfilter label {
	width: 100%;
}

.search_filings form.searchandfilter li.sf-field-submit {
	position: absolute;
	top: 0;
	right: 0;
	/* width: 25px; */
	background: transparent;
	border: none;
}

.search_filings form.searchandfilter li.sf-field-submit input {
	width: 25px;
	border: none;
	background: transparent;
}

.search_filings form.searchandfilter li.sf-field-submit:after {
	content: "";
	position: absolute;
	right: 5px;
	background: url(../images/search_icon_red.svg) no-repeat;
	width: 34px;
	height: 34px;
	background-size: 80%;
	top: 16px;
}


.data_entry_structure.custom_filling table thead tr th:nth-child(1) {
	width: 50%;
}

.data_entry_structure.custom_filling table thead tr th:nth-child(2) {
	width: 50%;
}

.data_entry_structure.custom_filling table tbody tr td:nth-child(1) {
	width: 50%;
}

.data_entry_structure.custom_filling table tbody tr td:nth-child(2) {
	width: 50%;
}

.data_entry_structure.custom_filling table thead tr th {
	border-bottom: none;
}

.def-page p {padding-bottom: 1.2em;}
.def-page h3,.def-page h2 {padding-bottom: 0.5em;}
.def-page ul {padding-bottom: 1.2em;list-style: disc;    margin-left: 20px;}
.def-page ol {padding-bottom: 1.2em;list-style:decimal;    margin-left: 20px;}
.def-page li {padding-bottom: 0.7em;}
.inner_note { margin-bottom: 1.5em;}

#content p {padding-bottom: 1.2em;}
.fillingFormTabs { width:33%; margin:0px; display:inline-block;}