body {
	padding: 0px;
	margin: 0px;
	font-family: 'Poppins';
}
img {
	max-width: 100%;
	height: 0 auto;
}
a {
	text-decoration: none !important;
}
a:focus {
	outline: none;
	outline: 0px auto -webkit-focus-ring-color;
	outline-offset: 0px
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
	outline: none;
	outline-offset: 0px;
}
a:focus, a:hover {
	text-decoration: none !important;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype'),
        url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.eot');
    src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff'),
        url('../fonts/Poppins-Medium.ttf') format('truetype'),
        url('../fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
        url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.ttf') format('truetype'),
        url('../fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	padding: 10px 0;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.darkHeader {
	background: #fff;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
	padding: 5px 0;
}
.logo img {
	width: 150px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.darkHeader .logo img {
	width: 70px;
}
.header_menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.header_menu ul li {
	position: relative;
	margin-right: 20px;
}
.header_menu ul li a {
	display: block;
	color: #1b1b1b;
	font-style: normal;
	font-size: 15px;
	text-decoration: none;
	position: relative;
	z-index: 99;
	text-transform: uppercase;
	padding: 27px 0;
	font-weight: 500;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.header_menu ul li a:hover, .header_menu ul li.active a {
	color: #86b626;
}
.header_btn1 {
	display: inline-flex;
	vertical-align: top;
	align-items: center;
	background: url("../images/bg_btn.png") no-repeat center;
	background-size: 100%;
	padding: 15px 25px;
	font-weight: 600;
	margin: 12px 10px 0 0;
}
.header_btn1 img {
	width: 17px;
	margin-right: 5px;
}
.header_btn2 {
	display: inline-block;
	vertical-align: top;
	font-size: 13px;
	background: url("../images/bg_btn2.png") no-repeat center;
	background-size: 100%;
	padding: 10px 30px;
  	line-height: 1.2;
	margin: 12px 0 0;
}
.header_btn2 strong {
	font-weight: 600;
	font-size: 15px;
}
.home_banner_section {
	background: url("../images/banner_bg.jpg") no-repeat;
	background-size: cover;
	padding: 330px 0 160px;
}
.banner_hand1 {
	position: absolute;
	bottom: -55px;
	left: -50px;
}
.banner_hand2 {
	position: absolute;
	bottom: 0;
	right: -100px;
}
.banner_heading {
	font-weight: bold;
	font-size: 36px;
	color: #111;
	line-height: 1.1;
}
.banner_text {
	color: #414040;
	font-size: 15px;
	font-weight: 500;
	margin-top: 20px;
}
.banner_btn1 {
	display: inline-block;
	background: #fff;
	border: 1px solid #265184;
	padding: 10px 22px;
	border-radius: 5px;
	font-weight: 500;
	margin: 25px 10px 0 0;
	color: #265184 !important;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.13);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.banner_btn1:hover {
	background: #1a4c8f;
	color: #fff !important;
}
.banner_btn2 {
	display: inline-block;
	background: #90b543;
	padding: 11px 22px;
	border-radius: 5px;
	font-weight: 500;
	margin: 25px 10px 0 0;
	color: #fff !important;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.13);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.banner_btn2:hover {
	background: #1a4c8f;
}
.banner_btn3 {
	display: inline-block;
	background: #faa80c;
	padding: 11px 22px;
	border-radius: 5px;
	font-weight: 500;
	margin: 25px 0 0;
	color: #111 !important;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.13);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.banner_btn3:hover {
	background: #1a4c8f;
	color: #fff !important;
}
.home_leadership_section {
	padding: 80px 0;
}
.home_leadership_section_heading {
	color: #080808;
	font-weight: bold;
	font-size: 32px;
	line-height: 1.2;
}
.home_leadership_section_heading strong {
	color: #265184;
}
.home_leadership_section_subheading {
	font-weight: 600;
	color: #d94e2d;
}
.home_leadership_block_number {
	color: #0a91d2;
	font-weight: bold;
	font-size: 55px;
	line-height: 1.1;
}
.home_leadership_block:nth-child(2) .home_leadership_block_number {
	color: #faa80c;
}
.home_leadership_block:nth-child(3) .home_leadership_block_number {
	color: #ef076f;
}
.home_leadership_block:nth-child(4) .home_leadership_block_number {
	color: #82b221;
}
.home_leadership_block_text {
	color: #363636;
	font-weight: 500;
	line-height: 1.3;
	margin-top: 10px;
}
.home_leadership_block {
	margin-top: 50px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.home_leadership_block:last-child {
	border-right: none;
}
.home_programme_section {
	background: url("../images/programme_bg.jpg") #82b221 no-repeat;
	background-size: cover;
	padding: 70px 0 0;
}
.home_programme_box {
	background: #fff;
	min-height: 100%;
	border-radius: 20px 20px 0 0;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.13);
	margin: 20px 20px 0;
	padding-bottom: 55px;
}
.home_programme_box_heading {
	font-weight: bold;
	font-size: 20px;
	line-height: 1.2;
	padding: 20px 20px 0;
	color: #222;
}
.home_programme_box_text {
	color: #555;
	padding: 20px 20px 0;
	font-size: 15px;
}
.home_programme_box_btn {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: url("../images/right_arrow.png") #265184 no-repeat center right 20px;
	background-size: 8px;
	color: #fff !important;
	padding: 10px 40px 10px 20px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.home_programme_box_btn:hover {
	background-color: #ef076f;
}
#programme_slide .owl-stage {
	display: flex;
}
#programme_slide .owl-item {
	min-height: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px !important;
}
#programme_slide .item {
	flex: 0 0 auto;
	max-width: 100%;
}
#programme_slide {
	margin-top: 20px;
}
#programme_slide .owl-prev {
	background: url("../images/prev_icon.png") no-repeat center !important;
	background-size: 100% !important;
	width: 25px;
	height: 25px;
	border-radius: 0;
	font-size: 0 !important;
	float: left;
}
#programme_slide .owl-next {
	background: url("../images/next_icon.png") no-repeat center !important;
	background-size: 100% !important;
	width: 25px;
	height: 25px;
	border-radius: 0;
	font-size: 0 !important;
	float: right;
}
#programme_slide .owl-dots {
	display: none !important;
}
#programme_slide .owl-nav {
	position: absolute;
	top: 50%;
	left: -35px;
	right: -35px;
	transform: translate(0, -50%);
	margin-top: 0;
}
.home_process_section {
	background: url("../images/process_bg.jpg") no-repeat bottom right;
	background-size: cover;
	padding: 70px 0;
}
.home_process_section:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	width: 90%;
	background: #FFFFFF;
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
}
.home_process_section .container {
	position: relative;
	z-index: 9;
}
.home_process_subheading {
	font-weight: 500;
	font-size: 15px;
	color: #0d0d0d;
	letter-spacing: 1px;
}
.home_process_block_number {
	background: #fff;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	padding: 10px;
	text-align: center;
	box-shadow: inset 0px 11px 20.79px 6.21px rgba(0, 0, 0, 0.15);
	margin-right: 15px;
}
.home_process_block_number span {
	background: #d94e2d;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	font-size: 25px;
	font-weight: bold;
	padding-top: 10px;
	color: #fff;
	display: block;
}
.home_process_block:nth-child(2) .home_process_block_number span {
	background: #87b728;
}
.home_process_block:nth-child(3) .home_process_block_number span {
	background: #da2c69;
}
.home_process_block:nth-child(4) .home_process_block_number span {
	background: #eeaa3d;
}
.home_process_block_heading {
	font-weight: 600;
	color: #222;
	font-size: 19px;
	line-height: 1.2;
}
.home_process_block_text {
	color: #555;
	font-size: 15px;
	margin-top: 10px;
}
.home_process_block {
	margin-top: 50px;
}
.home_about_section {
	padding: 80px 0;
}
.home_about_section_text {
	color: #666;
	margin-top: 20px;
}
.home_about_section_btn {
	display: inline-block;
	background: #90b543;
	padding: 11px 22px;
	border-radius: 5px;
	font-weight: 500;
	margin: 25px 0 0;
	color: #fff !important;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.13);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.home_about_section_btn:hover {
	background: #1a4c8f;
}
.home_about_section_img img {
	border-radius: 10px;
}
.home_refer_section {
	background: #265184;
	padding: 50px 0;
}
.home_refer_section_logo img {
	background: #fff;
	border-radius: 50%;
}
.home_refer_section_subheading {
	font-size: 17px;
	letter-spacing: 2px;
	color: #82b221;
}
.home_refer_section_heading {
	font-weight: bold;
	font-size: 31px;
	line-height: 1.2;
	margin-top: 10px;
}
.home_refer_section_btn1 {
	display: inline-block;
	background: #fff;
	padding: 11px 25px;
	border-radius: 5px;
	font-weight: 500;
	margin: 25px 10px 0 0;
	color: #222 !important;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.13);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.home_refer_section_btn1:hover {
	background: #dc316f;
	color: #fff !important;
}
.home_refer_section_btn2 {
	display: inline-block;
	background: #faa80c;
	padding: 11px 25px;
	border-radius: 5px;
	font-weight: 500;
	margin: 25px 0 0;
	color: #111 !important;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.13);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.home_refer_section_btn2:hover {
	background: #90b543;
	color: #fff !important;
}
.home_support_section {
	background: url("../images/support_bg.jpg") no-repeat center;
	background-size: cover;
	padding: 50px 0 0;
}
.home_support_section:before {
	background: rgba(250, 168, 12, 0.9);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.home_support_section .container {
	position: relative;
	z-index: 9;
}
.home_support_section_heading {
	font-weight: bold;
	font-size: 30px;
	color: #080808;
	line-height: 1.3;
}
.home_support_section_btn1 {
	display: inline-block;
	background: #265184;
	padding: 11px 25px;
	border-radius: 5px;
	font-weight: 500;
	margin: 25px 10px 0 0;
	color: #fff !important;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.13);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.home_support_section_btn1:hover {
	background: #dc316f;
}
.home_support_section_btn2 {
	display: inline-block;
	background: #fff;
	padding: 11px 25px;
	border-radius: 5px;
	font-weight: 500;
	margin: 25px 0 0;
	color: #111 !important;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.13);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.home_support_section_btn2:hover {
	background: #90b543;
	color: #fff !important;
}
.home_service_request_section {
	padding: 50px 0;
}
.home_service_request_section_text {
	color: #080808;
	font-weight: bold;
	font-size: 28px;
	line-height: 1.2;
}
.home_service_request_section_text a {
	color: #080808;
}
.home_service_request_section_text strong {
	color: #265184;
}
.footer {
	background: url("../images/footer_bg.jpg") #030e1e no-repeat;
	background-size: cover;
	padding: 0 0 20px;
}
.footer_top_heading {
    font-size: 23px;
	color: #111;
	font-weight: bold;
	text-transform: uppercase;
}
.footer_contact_info ul {
	padding: 0;
	margin: 20px 0 0;
}
.footer_contact_info ul li {
	color: rgba(255, 255, 255, 0.9);
	position: relative;
	list-style: none;
	font-size: 15px;
	margin-top: 10px;
	padding-left: 30px;
}
.footer_contact_info ul li img {
	position: absolute;
	top: 2px;
	left: 0;
	max-width: 19px;
}
.footer_contact_info ul li a {
	color: rgba(255, 255, 255, 0.9);
}
.footer_social {
	margin-top: 20px;
}
.footer_social img {
	width: 35px;
}
.footer_social a {
	margin-right: 5px;
}
.footer_abn {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	margin-top: 20px;
}
.footer_form_box {
	background: #fff;
	padding: 30px 20px 10px;
	border-top: 1px solid #eee;
}
.footer_menu ul {
    list-style-type: none;
    padding: 0;
    margin: 18px 0 0;
}
.footer_menu ul li {
    position: relative;
    margin-top: 3px;
}
.footer_menu ul li a {
	color: rgba(255, 255, 255, 0.9);
	font-style: normal;
	text-decoration: none;
	font-size: 15px;
	position: relative;
	z-index: 99;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.footer_menu ul li a:hover, .footer_menu ul li.active a {
	color: #87b728;
	padding-left: 2px;
}
.footer_top_block {
	padding-top: 45px;
}
.footer_bottom {
	margin-top: 20px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
}
.footer_bottom a {
	color: #fff;
}
#back-to-top {
	background: #dc316f;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
	text-transform: uppercase;
    cursor: pointer;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}
#back-to-top.show {
    opacity: 1;
}
.footer_form p {
	margin-bottom: 0 !important;
}
.footer_form input {
	width: 100%;
	background: #daefff;
	border-radius: 4px;
	min-height: 44px;
	margin-top: 10px;
	border: none !important;
}
.footer_form textarea {
	resize: none;
	background: #daefff;
	border-radius: 4px;
	height: 90px;
	margin-top: 10px;
	border: none !important;
}
.footer_form .wpcf7-submit {
	width: auto;
	background: #82b221 !important;
	border-radius: 4px;
	min-height: 44px;
	margin-top: 10px;
	border: none !important;
	font-size: 15px;
	font-weight: 500;
}
.footer_form .wpcf7-spinner {
	display: block !important;
}
.footer_form {
	margin-top: 10px;
}
.site-content, .site-main .widecolumn {
    margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
    background: url("../images/banner_bg.jpg") #eee no-repeat center !important;
    background-size: cover !important;
    max-width: 100% !important;
    padding: 240px 0 70px !important;
    margin: 0 0 50px !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}
/*
.page .entry-header:before, .blog_page_header:before {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
*/
.page .entry-content {
	max-width: 100% !important;
	padding: 0px !important;
}
.content-area, .content-sidebar {
    padding-top: 0px !important;
}
.page .entry-title, .blog_page_title {
    color: #111;
	position: relative;
    font-size: 32px;
	font-weight: bold;
    text-transform: uppercase;
    z-index: 99;
	margin-bottom: 3px;
}
.breadcrumb-container {
    width: 100%;
	color: #265184;
	position: relative;
	font-size: 15px;
}
.breadcrumb-container a {
	color: #265184;
}
.page {
	margin-top: 0 !important;
}
.inner_page_heading {
	color: #111;
	font-weight: bold;
	font-size: 27px;
	line-height: 1.2;
	position: relative;
	padding-bottom: 12px;
}
.inner_page_heading strong {
	color: #265184;
}
.inner_page_heading:before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 35px;
	border-bottom: 4px solid #90b543;
	border-radius: 30px;
}
.inner_page_text {
	color: #666;
	margin-top: 20px;
}
.inner_page_mid_section {
	background: url("../images/programme_bg.jpg") #90b543 no-repeat;
	background-size: cover;
	padding: 60px 0;
	margin: 60px 0;
}
.inner_page_mid_section .inner_page_heading {
	color: #fff;
}
.inner_page_mid_section .inner_page_heading:before {
	border-color: #fff;
}
.inner_page_mid_section .inner_page_text {
	color: rgba(255, 255, 255, 0.9);
}
.inner_page_mid_section2 {
	background: url("../images/programme_bg2.jpg") #265184 no-repeat;
	background-size: cover;
	padding: 60px 0;
	margin: 60px 0;
}
.inner_page_mid_section2 .inner_page_heading {
	color: #fff;
}
.inner_page_mid_section2 .inner_page_heading:before {
	border-color: #fff;
}
.inner_page_mid_section2 .inner_page_text {
	color: rgba(255, 255, 255, 0.8);
}
.inner_page_mid_section2 .inner_page_text strong {
	color: rgba(255, 255, 255, 1);
	font-weight: 600;
}
.inner_page_list ul {
	padding: 0;
	margin: 0;
}
.inner_page_list ul li {
	list-style: none;
	position: relative;
	padding-left: 24px;
	color: #666;
	margin-top: 4px;
}
.inner_page_list ul li:before {
	background: url("../images/check.png") no-repeat;
	background-size: 100%;
	width: 17px;
	height: 17px;
	position: absolute;
	content: "";
	top: 3px;
	left: 0;
}
.inner_page_list ul li strong {
	font-weight: 600;
}
.inner_page_mid_section .inner_page_list ul li, .inner_page_mid_section2 .inner_page_list ul li {
	color: rgba(255, 255, 255, 0.9);
}
.inner_page_bottom_box {
	background: #faa80c;
	margin-top: 60px;
	text-align: center;
	padding: 40px 30px;
	border-radius: 10px;
}
.inner_page_bottom_box_heading {
	color: #111;
	font-weight: bold;
	font-size: 27px;
	line-height: 1.2;
	padding-bottom: 12px;
	position: relative;
}
.inner_page_bottom_box_heading:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	width: 40px;
	border-bottom: 3px solid #111;
	border-radius: 30px;
	transform: translate(-50%, 0);
}
.inner_page_bottom_box_text {
	color: rgba(0, 0, 0, 0.8);
	margin-top: 20px;
}
.inner_page_img img {
	border-radius: 10px;
}
.about_mission_box_inner {
	background: #5d752c;
	min-height: 100%;
	border-radius: 10px;
	padding: 30px 20px;
}
.about_mission_box_heading {
	color: #fff;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;
}
.about_mission_box_text {
	color: rgba(255, 255, 255, 0.85);
	margin-top: 15px;
}
.about_mission_box_inner img {
	width: 60px;
}
.contact_page_info {
	position:relative;
	padding-left:47px;
	color:#666;
	margin-top:25px;
}
.contact_page_info a {
	color:#666;
}
.contact_page_info strong {
	color:#222;
	font-weight: 500;
	font-size:18px;
}
.contact_page_info img {
	position: absolute;
	top: 10px;
	left: 0;
	width: 30px;
}
.contact_form {
	margin-top: 10px;
}
.contact_form p {
	margin-bottom: 0 !important;
}
.contact_form input {
    margin-top: 15px;
    min-height: 45px;
    border: 1px solid #ccc !important;
    width: 100%;
	border-radius: 4px;
}
.contact_form select {
	background: url("../images/dropdown.png") #fff no-repeat center right 10px;
	width: 100%;
	border-radius: 4px;
	min-height: 45px;
	margin-top: 15px;
	border: 1px solid #ccc !important;
	padding: 0 30px 0 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.contact_form textarea {
    margin-top: 15px;
    height: 150px;
    border: 1px solid #ccc !important;
	resize: none;
	border-radius: 4px;
}
.contact_form .contact_btn input {
    min-height: 45px;
    border: none !important;
    width: auto;
    background: #90b543 !important;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
}
.contact_map {
	margin-top: 60px;
}
.contact_map iframe, #post-13 {
	margin-bottom: 0 !important;
}
.rmp-submenu .rmp-menu-item-link {
	height: auto !important;
	line-height: 1.2 !important;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}
.footer_fixed_buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 99;
}
.footer_btn1 {
	background: #dc316f;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}
.footer_btn2 {
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	padding: 10px 12px 0;
}
.footer_btn3 {
	background: #82b221;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}
.thankyou_btn {
	display: inline-block;
	background: #90b543;
	padding: 10px 20px;
	border-radius: 35px;
	margin: 20px 0 0;
	color: #fff !important;
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.13);
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.thankyou_text {
  color: #666;
}
.error_container {
	display: flex;
	min-height: 100vh;
	align-items: center;
	text-align: center;
}
.error_container img {
	margin-bottom: 20px;
}



/*========== Responsive ===========*/

@media only screen and (min-width : 300px) and (max-width : 1023px) {
.header_menu, .header_btn1 {
  display: none;
}
.header {
  padding: 3px 0 !important;
}
.header_btn2 strong {
  font-size: 13px;
}
.header_btn2 {
  font-size: 11px;
  margin: 6px 0 0;
}
.logo img {
  width: 70px;
}
.darkHeader .logo img {
  width: 55px;
}
.banner_hand1 {
  left: -30px;
  width: 100px;
  bottom: 20px;
}
.banner_hand2 {
  right: -40px;
  width: 100px;
  bottom: 20%;
}
.banner_heading, .home_leadership_section_heading, .page .entry-title, .blog_page_title {
  font-size: 25px;
}
.home_banner_section {
  padding: 150px 0 50px;
}
.banner_btn1 {
  padding: 9px 18px;
  margin: 20px 5px 0;
  font-size: 15px;
}
.banner_btn2, .banner_btn3 {
  padding: 9px 18px;
  margin: 20px 5px 0;
  font-size: 15px;
}
.home_leadership_block:nth-child(2) {
  border-right: none;
}
.home_leadership_block_number {
  font-size: 35px;
}
.home_leadership_block_text {
  font-size: 14px;
}
.home_leadership_block {
  margin-top: 25px;
}
.home_leadership_section, .home_programme_section, .home_process_section, .home_about_section, .home_refer_section, .home_service_request_section {
  padding: 40px 0;
}
#programme_slide .owl-nav {
  position: static;
  transform: none;
  margin-top: 10px;
}
#programme_slide .owl-prev, #programme_slide .owl-next {
  float: none;
}
.home_programme_box {
  margin: 15px;
}
.home_process_section {
  background: #e0edf7;
}
.home_process_block {
  margin-top: 30px;
}
.home_process_block_number span {
  width: 45px;
  height: 45px;
  font-size: 20px;
  padding-top: 8px;
}
.home_process_block_number {
  width: 60px;
  height: 60px;
}
.home_process_block_heading {
  font-size: 16px;
}
.home_about_section_img {
  margin-bottom: 30px;
}
.home_about_section_btn {
  padding: 10px 20px;
  margin: 20px 0 0;
  font-size: 15px;
}
.home_refer_section_logo img {
  width: 120px;
}
.home_refer_section_subheading {
  font-size: 15px;
  margin-top: 20px;
}
.home_refer_section_heading {
  font-size: 24px;
  line-height: 1;
}
.home_refer_section_btn1, .home_refer_section_btn2, .home_support_section_btn1, .home_support_section_btn2 {
  padding: 9px 18px;
  font-size: 15px;
}
.home_support_section_heading {
  font-size: 22px;
}
.home_support_section_img img {
  width: 250px;
  margin-top: 30px;
}
.home_service_request_section_text {
  font-size: 18px;
}
.footer_top_heading {
  font-size: 20px;
}
.footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}
.footer {
  padding: 0 0 60px;
}
#back-to-top {
  bottom: 55px;
}
.page .entry-header, .blog_page_header {
  padding: 150px 0 55px !important;
  margin: 0 0 45px !important;
}
.inner_page_heading, .inner_page_bottom_box_heading, .about_mission_box_heading {
  font-size: 22px;
}
.inner_page_img {
  margin-bottom: 25px;
}
.inner_page_mid_section, .inner_page_mid_section2 {
  padding: 40px 0;
  margin: 40px 0;
}
.inner_page_bottom_box {
  margin-top: 40px;
  padding: 30px 20px;
}
.contact_right {
  margin-top: 40px;
}
.contact_form .contact_btn input {
  min-height: 43px;
  font-size: 15px;
}
}

@media only screen and (max-width : 320px) {

}

@media only screen and (min-width : 321px) and (max-width : 480px) {

}

@media only screen and (min-width : 481px) and (max-width : 767px) {

}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
.banner_hand1 {
  width: 140px;
}
.banner_hand2 {
  width: 140px;
  bottom: 0;
}
.contact_right {
  margin-top: 0;
}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
.header_menu ul li a {
  font-size: 14px;
}
.header_menu ul li {
  margin-right: 15px;
}
.header_btn1 {
  padding: 15px 20px;
  font-size: 15px;
}
.header_btn2 {
  font-size: 12px;
  padding: 10px 24px;
}
.banner_hand1 {
  width: 250px;
}
.banner_hand2 {
  width: 250px;
}
.home_banner_section {
  padding: 230px 0 100px;
}
.home_service_request_section_text {
  font-size: 23px;
}
}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
.banner_hand1 {
  width: 140px;
}
.banner_hand2 {
  width: 140px;
  bottom: 0;
}
.contact_right {
  margin-top: 0;
}
}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {

}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
.banner_hand1 {
  width: 140px;
}
.banner_hand2 {
  width: 140px;
  bottom: 0;
}
.contact_right {
  margin-top: 0;
}
}

/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

}

@media screen and (min-width: 1424px) {

}

@media screen and (min-width: 1624px) {

}

@media screen and (min-width: 1920px) {
.home_banner_section {
  padding: 400px 0 200px;
}
}

@media screen and (min-width: 2048px) {
.home_banner_section {
  padding: 400px 0 200px;
}
}

@media screen and (min-width: 2550px) {
.home_banner_section {
  padding: 400px 0 200px;
}
}