@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

@font-face {
	font-family: 'Lucida Handwriting';
	/*a name to be used later*/
	src: url(../fonts/LucidaHandwritingStdRg.TTF);
	/*URL to font*/
}

@font-face {
	font-family: 'Calibri';
	/*a name to be used later*/
	src: url(../fonts/CalibriRegular.ttf);
	/*URL to font*/
}

:root {
	--color-green: #2C6100;
	--color-grey: #DCDEE2E5;
	--green-secondary: #6C9F40;
}




.text-green {
	color: var(--color-green);
}

.green-secoundary {
	color: var(--green-secondary);
}

.background-gray {
	background-color: #F3F3F3;
}

body {
	overflow-x: hidden;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul {
	font-family: 'Roboto', sans-serif;
	margin: 0px;
	padding: 0px;
}


h1 {
	font-family: poppins;
	font-size: 48px;
	font-weight: 700;
	line-height: 67px;
}

h2 {
	font-family: poppins;
	font-size: 42px;
	font-weight: 500;
	line-height: 67px;
}

h3 {
	font-family: roboto;
	font-size: 38px;
	font-weight: 700;
	line-height: 44px;
}

h3.primary-title {
	background-color: var(--green-secondary);
	color: #fff;
	padding: 10px 110px 10px 10px;
	clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
	display: inline-block;
}

h4 {
	font-family: roboto;
	font-size: 31px;
	font-weight: 500;
	line-height: 44px;
}

.site-name {
	line-height: 40px;
	margin-left: 10px;
	font-size: 24px;
}

.site-logo {
	font-family: Lucida Handwriting;
	font-size: 47px;
	color: var(--green-secondary);
	line-height: 1.4;
}

h5 {
	font-family: roboto;
	font-size: 23px;
	font-weight: 700;
	line-height: 44px;
}

h6.text-big {
	font-family: poppins;
	font-size: 26px;
	line-height: 39px;
	font-weight: 500;
}

section h3 {
	margin-bottom: 20px;
}

.normal-h3 {
	color: #000;
	background-color: transparent;
}

.outline-btn-green-wrap {
	filter: drop-shadow(0px 0px 0px var(--color-green)) drop-shadow(1px 1px 0px var(--color-green)) drop-shadow(0px 0px 0px var(--color-green)) drop-shadow(0px -1px 0px var(--color-green));
}

.outline-btn-green {
	clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
	background: #fff;
	color: var(--color-green);
	display: inline;
	padding: 8px 35px;
	text-decoration: none;
	font-weight: 600;
	font-size: 19px;
	font-family: 'poppins';
	line-height: 67px;
}

.outline-btn-green:hover {
	color: var(--color-green);
}

.explore-btn {
	clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
	background: linear-gradient(#2F6403, #6C9F40);
	color: #fff;
	display: inline;
	padding: 8px 70px;
	text-decoration: none;
	font-weight: 500;
	font-size: 18px;
	font-family: 'poppins';
	line-height: 67px;
}

.explore-btn:hover {
	color: #fff;
}

.explore-btn-wrap {
	filter: drop-shadow(0px 8px 0 #ccc);
}

.hollow-btn {
	clip-path: polygon(20% 0%, 100% 0%, 80% 99%, 0% 100%);
	color: #fff;
	background-color: var(--green-secondary);
	display: inline;
	padding: 10px 42px;
	text-decoration: none;
	font-weight: 400;
	border: 2px solid #FFF;
	position: relative;
	font-size: 18px;
}

.hollow-btn span::before {
	content: '';
	width: 2px;
	left: 9px;
	top: -13px;
	height: 80px;
	transform: rotate(35deg);
	position: absolute;
	background: #fff;
}

.hollow-btn span::after {
	content: '';
	width: 2px;
	right: 17px;
	top: -6px;
	height: 63px;
	transform: rotate(35deg);
	position: absolute;
	background: #fff;
}

.hollow-btn:hover {
	color: #fff;
}

.topic-highlighter {
	color: #000;
	padding: 40px 0 10px 0;
	font-weight: 800;
}

.topic-highlighter::after {
	content: ' ';
	display: block;
	width: 5%;
	height: 2px;
	background: var(--color-green);
	text-align: center;
	margin: 0 auto;
	margin-top: 5px;
}

.topic-highlighter-left {
	color: #000;
	padding: 40px 0 10px 0;
	font-weight: 600;
	font-family: 'poppins';
}

.topic-highlighter-left::after {
	content: ' ';
	display: block;
	width: 95%;
	height: 2px;
	background: var(--color-green);
	text-align: left;
	margin-top: 5px;
}

.topic-highlighter-left-single-line {
	color: #000;
	padding: 40px 0 10px 0;
	font-weight: 600;
	font-family: 'poppins';
}

.topic-highlighter-left-single-line::after {
	content: ' ';
	display: block;
	width: 8%;
	height: 2px;
	background: var(--color-green);
	text-align: left;
	margin-top: 5px;
}



/*navbar*/

.topbar {
	background-color: #121905;
	color: #fff;
	padding: 0.75rem;
	display: flex;
	justify-content: end;
}

.topbar ul li {
	display: inline-block;
	list-style: none;
}

.topbar ul li a {
	color: white;
	text-decoration: none;
	padding: 0 20px;
	border-right: 1px solid grey;
	font-weight: 400;
	font-family: 'poppins';
}

.topbar ul li:last-child a {
	border-right: 0px;
	padding-right: 8px;
}


.border-right {
	border-right: 1px solid #fff;
}

.navbar-middle {
	padding: 0;
}

.navbar-middle .navbar-brand {
	padding: 0;
}

.navbar-section {
	font-weight: 500;
}

.navbar-bottom {
	background-color: var(--color-grey);
}

.navbar-bottom-menus {
	list-style: none;
	display: flex;
	margin-bottom: 0;
	padding-left: 0;
}

.navbar-bottom-menus li {
	padding: 1rem 2rem;
	border-right: 1px solid #C8CFD5;
	font-weight: 400;
}

.navbar-bottom-menus li:first-child {
	padding: 1rem 1rem 1rem 0.5rem;
}

.navbar-bottom-menus a {
	text-decoration: none;
	color: #000;
	cursor: pointer;
}

.navbar-light .navbar-toggler {
	border: none;
}


.breadcrum-top {
	background-color: #EEEEEE;
	padding: 1rem 0;
	font-size: 13px;
	position: -webkit-sticky !important;
	position: sticky;
  	top: 0;
}

.breadcrum-top-left a {
	color: #7B7A7A;
	text-decoration: none;
	padding: 0 1rem;
}
.breadcrum-top-left:first-child a{
	padding-left: 10px;
}
.breadcrum-top-left i:last-child {
	display: none;
}

.breadcrum-top-left i {
	color: #7B7A7A;
	padding-right: 10px;
}

.breadcrum-top-right {
	display: flex;
	justify-content: end;
}

.breadcrum-top-right a {
	color: #787A7A;
	padding: 0 0.5rem;
}

.breadcrum-top-right span {
	padding: 0 0.5rem;
	font-weight: 500;
}

.breadcrum-social-links {
	border-right: 1px solid #7B7A7A;
}

.breadcrum-bottom-menus {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
	padding-left: 0;
	border-bottom: 1px solid #C4C4C4;
	font-size: 13px;
}

.breadcrum-bottom-menus li {
	padding: 1rem 0;
}

.breadcrum-bottom-menus li a {
	padding: 0 1rem;
	border-right: 1px solid #7B7A7A80;
	font-weight: 600;
	text-decoration: none;
	color: #000;
}

.breadcrum-bottom-menus li:last-child a {
	border: none;
}

.navbar-light .navbar-toggler {
	padding: 0;
}


/* Mega Menu */

.menu-level-2 {
	display: none;
	position: absolute;
	top: 186px;
	width: 90%;
	left: 5%;
	z-index: 10;
}
.menu-level-2 i {
	cursor: pointer;
	bottom: 2px;
    left: 5px;
    position: relative;
}
.menu-level-2 .menu-summary {
	color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 5px 0 8px 0;
	letter-spacing: -0.2px;
}
.menu-level-2 .menu-summary h5 {
	font-weight: 500;
	font-size: 26px;
	line-height: 30px;
}
.menu-level-2 .menu-summary i {
	font-size: 20px;
}

.menu-level-2 .menu-link-2 {
	position: relative;
	font-weight: 400;
	font-size: 22px;
	line-height: 26px;
	background-color: #fff;
	color: #000;
	padding: 1.5rem;
	margin: 0.5rem -0.2rem;
	border-left: 11px solid #6C9F40;
	text-transform: uppercase;
}
.menu-level-2 .menu-link-odd {
	position: relative;
	font-weight: 400;
	font-size: 22px;
	line-height: 26px;
	background-color: #fff;
	color: #000;
	padding: 1.5rem;
	margin: 0.5rem -0.2rem;
	border-left: 11px solid #0076A8;
	text-transform: uppercase;
}

.menu-level-2  .menu-link-2.service {
	background: url(../img/service_button.png);
    background-size: cover;
    height: 82%;
    border: none;
}
.menu-level-2  .menu-link-2.resource {
	background: url(../img/resource_button.png);
    background-size: cover;
    height: 82%;
    border: none;
}

.menu-level-2 .menu-link-2 i,
.menu-level-3 .menu-link-3 i {
	padding: 3px 6px;
	font-size: 13px;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	color: var(--color-green);
}

.menu-level-3 {
	display: none;
	position: absolute;
	left: 0;
	top: 101%;
	z-index: 12;
}

.menu-level-3 .menu-link-3 {
	font-weight: 400;
	font-size: 18px;
	line-height: 21px;
	background-color: #fff;
	color: #000;
	padding: 0.8rem 1.5rem;
	border-bottom: 1px solid #000;
}

.menu-link-1.expanded .menu-level-2 {
	display: block;
}
.menu-link-2.expanded{
	z-index: 11;
}
.menu-link-2.expanded .menu-level-3 {
	display: block;
}

.overlay {
	display: none;
	position: absolute;
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 5;
}


/* Mega menu small device */
.menu-small a {
	position: relative;
}
.menu-small .level-small-2 {
	display: none;
	padding-left: 16px;
}
.menu-small.expanded .level-small-2 {
	display: block;
}
.menu-small .level-small-3 {
	display: none;
	padding-left: 16px;
}
.link-small-2.expanded .level-small-3 {
	display: block;
}
.menu-small * {
	text-transform: uppercase;
}
.menu-small.has-menu .menu-small-link::after,
.link-small-2.has-menu > a::after {
	content: '';
    height: 10px;
    width: 10px;
    border-right: 2px solid rgba(0,0,0,.55);
    position: absolute;
    right: 20px;
	top: 10px;
    transform: rotate(135deg);
    border-top: 2px solid rgba(0,0,0,.55);
}
.menu-small.expanded .menu-small-link::after {
	transform: rotate(-45deg);
}
.link-small-2.expanded > a::after {
	transform: rotate(-45deg);
}




/*home page*/


.banner-img {
	background: url("../img/banner.jpg") rgba(0, 0, 0, 0.21);
	background-blend-mode: overlay;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 2rem 0;
	/*color: #fff;*/
	min-height: 300px;
	display: flex;
	align-items: center;
	height: 560px;
	border-bottom: 5px solid var(--color-green);
}

.banner-content {
	text-align: center;
	padding: 2rem 0;
	color: #fff;

}

.our-services .box {
	margin-bottom: -40px;
}

.our-services h5 {
	color: var(--color-green);
}

.card-wrap {
	padding: 1vw 10px;
	text-align: center;
	position: relative;
	height: 546px;
}

.card-image img {
	height: 250px;
	width: 100%;
}

.card-content-shadow {
	position: relative;
	top: -21%;
	margin: 0 20px;
	transition: 500ms;
	box-shadow: 0px 0px #ccc;
}

.card-content-shadow:hover {
	box-shadow: 5px 5px #bbb;
	transition: 500ms;
}

.card-content {
	background-color: rgba(232, 253, 214, 0.7);
	padding: 70px 0px 40px 10px;
	text-align: left;
	clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
}

.card-content h5 {
	font-size: 20px;
}

.card-content p {
	padding-bottom: 15px;
	padding-right: 10px;
	font-size: 14px;
}

.card-content h4 {
	color: var(--color-green);
	padding-bottom: 10px;
}

.card-btn {
	background-color: var(--color-green);
	padding: 9px 20px 9px 64px;
	color: #fff;
	clip-path: polygon(25% 0%, 100% 0, 100% 99%, 0% 100%);
	float: right;
	font-weight: 700;
	font-size: 19px;
	font-family: 'poppins';
}

.card-btn:hover {
	color: #fff;
}



.industries-bg {
	background: url("../img/new-back-1.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 5vw 1rem;
	/*min-height: 300px;*/
	display: flex;
	align-items: center;
	/*height: 60vh;*/
}

.industries-text p {
	font-size: 20px;
	font-weight: 23px;
}

.industries-img img {
	border-radius: 10px;
	border: 2px solid var(--color-green);
}

.industries-img a {
	text-decoration: none;
	color: #000;
}

.industries-img h6 {
	padding: 10px 0;
}


.firm-content {
	background-color: var(--green-secondary);
	color: #fff;
	margin-top: 1.5rem;
}

.firm-content h4 {
	padding: 1rem 0;
}

.firm-content p {
	padding: 0.5rem 0;
}

.image-wrap {
	background-color: #606060;
	height: 100%;
	display: flex;
}

.image-wrap img {
	margin: auto;
}

.icon-section img {
	border: 1px solid #bcbcbc;
	padding: 10px;
	border-radius: 5px;
	width: 73px;
	height: 73px;
}

.link-content-wrap {
	padding: 0;
	position: relative;
}

.link-content {
	clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
	background-color: rgba(0, 0, 0, 0.4);
	color: #fff;
	margin-top: 30px;
}
.link-content-overlay{
	width: 100%;
	height: calc(100% - 100px);
	position: absolute;
	background: rgba(153, 153, 153, 0.75);
	padding: 50px;
	display: none;
}

.link-content h4 {
	margin-bottom: 8px;
	font-size: 23px;
}

.link-content::before {
	content: '';
	background-color: #bbb;
	position: absolute;
	width: 100%;
	height: 8px;
	bottom: 8px;
}

.link-content i {
	padding: 3px 7px;
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 16px;
}

.link-content::after {
	content: '';
	background-color: #bbb;
	position: absolute;
	height: 100%;
	width: 8px;
	right: 5%;
	top: 0;
	transform: rotate(12deg);
}

.link-content h5 {
	padding: 10px 15px;
}

.news-home {
	background-color: #D2D3D4;
}

.news-img {
	background: url("../img/news-1.png") rgba(0, 0, 0, 0.2);
	background-blend-mode: overlay;
	color: #fff;
	max-width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	/*padding: 20px;*/
	min-height: 410px;
	margin: 10px 0;
	padding-top: 15px;
}

.news-img h6 {
	font-size: 36px;
	width: 65%;
	padding: 1rem 0.75rem;
}

.blog-img1 {
	background: url("../img/news-2.png") rgba(0, 0, 0, 0.2);
}

.blog-img2 {
	background: url("../img/news-3.png") rgba(0, 0, 0, 0.2);
}

.blog-img {

	background-blend-mode: overlay;
	color: #fff;
	max-width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 200px;
	padding-top: 15px;
	margin: 10px 0;
}

.blog-img h6 {
	font-size: 36px;
	padding: 1rem 0.75rem;
}

.blog-head {
	background-color: rgba(108, 159, 64, 0.5);
	clip-path: polygon(0 0, 100% 0%, 83% 99%, 0% 100%);
	padding: 0px 50px 0px 10px;
	/*width: 60%;*/
	display: inline-block;
}

#blog-head-wrap {
	clip-path: polygon(0 0, 100% 0%, 70% 99%, 0% 100%);
}

.blog-head h4 {
	font-size: 22px;
	font-weight: 400;
	display: inline-block;
}

.quick-links a {
	color: #fff;
	text-decoration: none;
}

.quick-links h4 {
	padding: 10px 30px;
}

.search-icon {
	color: var(--color-green);
	font-size: 14px;
}



/*footer*/

.footer-top-left {
	clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
	background-color: var(--green-secondary);
	padding: 2rem;
	color: #fff;
}

.footer-top-left h4 {
	font-size: 32px;
	line-height: 49px;
}

.footer-top-left h6 {
	font-size: 27px;
	line-height: 43px;
}

.footer-top-left h6 a {
	text-decoration: none;
	color: inherit;
}

.footer-top-left i {
	border: 2px solid;
	padding: 5px 10px;
	border-radius: 50px;
	font-size: 18px;
}

.footer-top-left-line-break {
	display: block;
}

.footer-top-right {
	padding: 2rem;
	color: var(--green-secondary);
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between
}

.footer-top-right h4 {
	font-size: 32px;
	line-height: 43px;
}

.footer-top-right h6 {
	font-size: 27px;
	line-height: 43px;
}

.footer-top-right i {
	border: 2px solid var(--green-secondary);
	padding: 5px 10px;
	border-radius: 50px;
	font-size: 18px;
}

.footer-top-right h6 a {
	text-decoration: none;
	color: inherit;
}


.footer-between {
	background-color: #000;
	display: flex;
	align-items: center;
	min-height: 200px;
	font-size: 10px;
	padding: 8rem 0 10rem 0;
	position: relative;
}

.footer-between-content {
	background-color: var(--green-secondary);
	color: #fff;
	padding: 10px 140px 10px 10px;
	clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
	display: flex;
}

.footer-between-content div {
	margin: 0 10px;
	padding: 0.5rem 1rem;
}

.scroll-top {

	position: absolute;
	top: -6%;
	right: 3%;
	font-size: 1rem;
	padding: 0.6rem 1rem;
	background-color: var(--green-secondary);
	border-radius: 50px;
}


.scroll-top a {
	color: #fff;
	text-decoration: none;
}

.footer-icon-bottom {
	position: absolute;
	font-size: 1.2rem;
	bottom: 3%;
	left: 3%;
}

.footer-icon-bottom a img {
	max-width: 75%;
}

.footer-between-icon {
	text-align: center;
}

.footer-between-content h6 {
	font-size: 25px;
}

.footer-between-icon i {
	border: 1px solid;
	padding: 1rem;
	border-radius: 50px;
	font-size: 1.25rem;
}

.footer-content-sm {
	text-align: center;
	display: none;
}

.footer-bottom {
	padding: 10px;
}

.footer-bottom-left {
	justify-content: end;
	display: flex;
}

.footer-bottom p {
	font-weight: 500;
}

.footer-bottom-left p {
	border-right: 1px solid;
	padding: 0 20px;
}

/*services*/

.top-banner {
	background-color: #E7E7E7;
	border-bottom: 3px solid #fff;
}

.top-banner-left {
	clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
	background-color: var(--green-secondary);
	color: #fff;
	padding: 4rem 1rem;
	position: relative;
	z-index: 1;
}

.top-banner-right {
	clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
	background-color: #fff;
	color: #fff;
	padding: 1rem;
	max-height: 235px;
	text-align: center;
	margin-left: -16rem;
	margin-bottom: 1rem;
	padding-left: 7rem;
}

.top-banner-right img {
	max-height: 200px;
}

.translation {
	color: #707070;
}

.translation-top {
	text-align: center;
	padding: 1rem 5rem;
}

.translation-right {
	padding: 1rem;
}

.translation-right h5 {
	color: #000;
	font-weight: 800;
	padding: 0.5rem 0;
	font-size: 26px;
	line-height: 30.47px;
}

.translation-right ul li {
	list-style: square;
	padding: 0.5rem 0;
	font-size: 18px;
	line-height: 25px;
}


.offering h4 {
	text-align: center;
}

.offering-content {
	background-color: #C4C4C4;
	padding: 2rem;
}

.offering-content-left {
	background-color: #EEEEEE;
	padding: 1rem;
	height: 100%;
}

.offering-content-left h5 {
	padding: 0.5rem;
	font-weight: 500;
	font-size: 27px;
	line-height: 31.64px;
}

.offering-content-left p {
	padding: 0.5rem;
	font-size: 18px;
	line-height: 25px;
}

.offering-img-wrap {
	display: flex;
	height: 100%;
	background: #fff;
}

.offering-title tbody tr.active{
	background-color: var(--green-secondary);
	color: #fff;
}

.services-category {
	display: flex;
}

.service-icon {
	width: 50px;
	height: 40px;
}

.services-category h6 {
	padding: 10px;
	display: flex;
	align-items: center;
}

.services-category h6 a {
	text-decoration: none;
	color: var(--color-green);
	font-size: 18px;
	line-height: 21.09px;
}
.related-service-crousel{
	position: relative;
}
.related-service-crousel .owl-prev{
	position: absolute;
    top: 35%;
    font-size: 30px !important;
    left: 2%;
    color: var(--color-green) !important;
}
.related-service-crousel .owl-next{
	position: absolute;
	top: 35%;
	font-size: 30px !important;
	right: 2%;
	color: var(--color-green) !important;
}

.related-news-crousel .owl-prev{
	position: absolute;
    top: -12%;
    font-size: 23px !important;
    right: 25px;
    color: var(--color-green) !important;
    margin-right: 30px;
}
.related-news-crousel .owl-prev i{
	border: 2px solid var(--color-green);
	border-radius: 50px;
	padding: 5px 10px;
}
.related-news-crousel .owl-next{
	position: absolute;
	top: -12%;
	font-size: 23px !important;
	right: 10px;
	color: var(--color-green) !important;
	margin-left: 30px;
}
.related-news-crousel .owl-next i{
	border: 2px solid var(--color-green);
	border-radius: 50px;
	padding: 5px 10px;
}


.service-block-wrap{
	max-height: 500px;
	overflow: scroll;
}

.quality-right {
	background: #E0E0E0;
	padding: 1rem 0 1rem 3rem;
}

.quality-right h6 {
	background-color: white;
	padding: 0.5rem 1rem;
}

.quality-right-content {
	background: var(--color-green);
	color: #fff;
	display: flex;
	padding: 1rem;
}

.quality-right-content i {
	font-size: 2rem;
	padding: 0.5rem;
}

.card-content-services {
	background-color: rgba(232, 253, 214, 0.7);
	margin: 0 20px;
	padding: 60px 0px 0px 10px;
	text-align: left;
	clip-path: polygon(0 25%, 101% 0%, 100% 100%, 0% 100%);
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
}

.card-content-services h4 {
	color: var(--color-green);
	padding-bottom: 10px;
	font-size: 27px;
	line-height: 67px;
	font-weight: 700;
}

.card-content-services p {
	color: rgba(232, 253, 214, 0.7);
}

.service-page-bottom h5,
.service-page-bottom h6,
.service-page-bottom p {
	padding-bottom: 1rem;
}

.service-page-bottom p {
	color: #707070;
}

.card-wrap-services {
	padding: 1vw 10px;
	text-align: center;
	position: relative;
	height: 375px;
}

.industries-text-services p {
	font-size: 15px;
	line-height: 17.58px;
	font-weight: 500;
}

.service-page-bottom h5 {
	font-size: 27px;
	line-height: 31px;
	font-weight: 500;
}

.service-page-bottom p {
	font-size: 18px;
	line-height: 25px;
}

.service-page-bottom h6 {
	font-size: 20px;
	line-height: 26px;
	font-weight: 700;
}

table {
	background-color: #606060;
	color: #fff;
	width: 100%;
}

tbody,
td,
tfoot,
th,
thead,
tr {
	padding: 1rem;
}

tr {
	border: 1px solid #fff;
}

th {
	border-right: 1px solid #fff;
}

/*our firm*/

.border-button {
	padding: 1rem;
}

.border-button a {
	color: var(--color-green);
	border: 1px solid var(--color-green);
	padding: 0.5rem 1rem;
	text-decoration: none;
	border-radius: 5px;
}

.overview h6 {
	font-size: 18px;
	line-height: 25px;
	font-weight: 700;
}

.overview p {
	font-size: 18px;
	line-height: 25px;
	font-weight: 400;
	padding: 1rem 0;
}

.overview-top-right {
	background: linear-gradient(to top, #000, var(--color-green));
}
.overview-top-right img{
	width: 100%;
	padding: 6px;
}
.vision {
	margin-bottom: 4rem;
}

.vision-left {
	background: linear-gradient(#2F6403, #6C9F40);
	padding: 3rem;
	color: #fff;
	position: relative;
	z-index: 1;
	margin-right: -5rem;
}

.vision-left h5,
.vision-left h6,
.vision-left p {
	padding: 0.5rem;
}

.vision-right {
	position: relative;
	top: 20%;
	margin-left: -5rem;
}

.culture-img {
	position: relative;
	display: flex;
	padding-top: 1rem;
	width: 100%;
}
.culture-img img{
	width: 100%;
}
.culture-img-content img{
	width: 25px;
}
.culture-img-content h6{
	padding: 0 10px;
}

.culture-wrap{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.culture-img-overlay{
	position: absolute;
    color: #fff;
    padding: 2rem;
    background: rgba(232, 253, 214, 0.8);
    color: var(--color-green);
    bottom: 0;
    height: 95.5%;
    display: none;
}
.culture-img-overlay-wrap{
    height: 49%;
}

.culture-content {
	background: rgba(232, 253, 214, 0.8);
	padding: 2rem 1rem !important;
	color: var(--color-green);
	margin-top: 1rem;
}

.culture-content i {
	padding: 0 0.5rem 0 0 !important;
}

.culture-content p {
	padding: 1rem 0;
}

.culture-img-content {
	position: absolute;
	background: rgba(232, 253, 214, 0.8);
	bottom: 0;
	left: 0;
	right: 0;
	color: var(--color-green);
	display: flex;
	align-items: center;
	padding: 1rem;
}

.culture-img-content i,
.culture-content {
	padding: 0 0.5rem;
}

.history-bg {
	background: url("../img/our-firm-3.png") rgba(0, 0, 0, 0.2);
	background-size: cover;
	background-position: center;
	background-blend-mode: overlay;
	min-height: 75vh;
	color: #fff;
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.history-top-content h6 {
	padding: 0.5rem 1rem;
}

.history-bottom-content{
	text-align: center;
}

.history-bottom-content ul li{
	list-style: none;
	display: inline-block;
	padding: 1rem;
	font-weight: 500;
	font-size: 20px;
}

.history-squares{
	width: 1.5rem;
	height: 1.5rem;
	background-color: #fff;
	margin: auto;
	margin-bottom: 0.5rem;
}

.history-squares:hover{
	background-color: var(--green-secondary);
}


.our-clients-bg {
	background: url("../img/our-firm-4.png") #557935CC;
	background-blend-mode: overlay;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	min-height: 60vh;
	color: #fff;
	padding: 1rem;
	margin-top: 2rem;
}

.our-clients-content {
	padding: 1rem;
	text-align: center;
}

.our-clients-content h4 {
	padding: 1rem;
	font-weight: 700;
}

.our-clients-content p {
	padding: 0.5rem;
}


.social-impact-bg {
	background-color: #444444;
	padding: 2rem;
}

.social-impact-left {
	background: url("../img/our-firm-5.png") rgb(49 66 35 / 92%);
	background-blend-mode: overlay;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #fff;
	padding: 1rem;
}

.social-impact-left h4 {
	padding: 1rem;
}

.social-impact-left p {
	padding: 0.5rem 1rem;
}

.social-impact-right {
	background: url("../img/our-firm-6.png") rgb(49 66 35 / 92%);
	background-blend-mode: overlay;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #fff;
	padding: 1rem;
}

.social-impact-right h4 {
	padding: 1rem;
}

.social-impact-right p {
	padding: 0.5rem 1rem;
}


/*Resources*/


.top-banner-simple {
	background-color: var(--green-secondary);
}

.top-banner-simple-content {
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 1rem;
}

.top-banner-simple-content h2 {
	padding: 1rem;
}

.resources-content-box {
	height: 100%;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid #43444432;
	transition: 500ms;
	box-shadow: 0px 0px #ccc;
}

.resources-content-box:hover {
	box-shadow: 8px 8px var(--color-grey);
	transition: 500ms;
}

.resources-image-box {
	padding-left: 5%;
	padding-top: 5%;
}

.resources-card-image {
	width: 100%;
}

.resources-card-content {
	padding: 5%;
}

.resources-card-content div {
	padding: 5px 0;
	color: #525252;
}

.resources-card-content div i {
	padding: 0 5px 0 0;
}

.resources-card-content div span {
	padding: 0 5px 0 0;
}

.resources-card-content h6 {
	color: var(--color-green);
}

.resources-card-content p {
	font-weight: 400;
	font-size: 1.3rem;
	padding-bottom: 1rem;
	padding-top: 0.5rem;
}

.resources-card-content a {
	color: var(--color-green);
	font-weight: 700;
}

.resources-breadcrum-right {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 5px 0;
	font-size: 13px;
}

.resources-breadcrum-right li {
	padding: 0 0.5rem;
	display: flex;
	align-items: center;
}

.resources-breadcrum-right li i {
	padding: 0 5px;
}

.resources-breadcrum-right li select{
	border: none;
}

.search-box.search-box-for-resources {
	font-size: 13px;
}

.resources-section-heading {
	display: flex;
	justify-content: space-between;
	padding: 40px 0 10px 0;
	align-items: end;
}


/*language learning*/

.btn-section {
	padding: 2rem 0;
}

.btn-section h4 {
	color: var(--green-secondary);
	padding: 0.5rem;
	padding-top: 2rem;
}

.language-top {
	padding: 1rem 0;
}

.language-top-right {
	padding: 1rem 0;
}

.language-top-right h5,
.language-top-right p {
	padding: 0.5rem;
}

.language-top-left {
	background: linear-gradient(to top, #000, var(--color-green));
}

.language-top-left img {
	padding: 6px;
	width: 100%;
}

.language-btn {
	padding: 5px;
	background-color: var(--green-secondary);
	border-radius: 50px;
	margin-bottom: 45px;
	max-width: 384px;

}


.inner-language-btn {
	background-color: var(--green-secondary);
	border-radius: 50px;
	border: 1px solid #fff;
}

.language-btn-outer {
	display: flex;
	justify-content: space-between;
}

.language-btn a {
	position: relative;
	top: 7px;
	color: #FFF;
	text-decoration: none;
	padding-left: 8px;
	width: 100%;
	text-align: center;
	font-weight: 700;
}

.language-btn i {
	background-color: #fff;
	color: var(--green-secondary);
	padding: 0.75rem 1rem;
	border-radius: 50px;
}

/*industry*/


.industry {
	padding: 1rem;
}

.industry-top-left {
	border: 5px solid var(--color-green);
}

.industry-top-left img {
	width: 100%;
}

.industry-top-right h4,
.industry-top-right p {
	padding: 0.5rem;
}

.industry-card-section {
	padding: 1rem;
}

.industry-card-section h4 {
	padding: 0.5rem 0;
}

.industry-card {
	padding: 1rem 0;
}

.industry-card-img img {
	width: 100%;
}

.industry-card-content {
	padding: 1.5rem 0.5rem;
	background-color: #EEEEEE;
	margin-left: 5%;
	position: relative;
}

.industry-card-triangle {
	position: absolute;
	left: -5.2%;
	top: -18%;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	background-color: #000;
	color: #000;
	z-index: -1;
}

/*contact us*/


.contact-us {
	padding: 2rem 0;
}

.contact-us p {
	color: #575757;
	font-weight: 400;
	padding: 0.5rem 0;
}

.contact-us-heading {
	text-align: center;
}

.contact-us-heading h4 {
	font-weight: 700;
	padding: 0.5rem 0;
}

.contact-us-card {
	border: 1px solid var(--color-green);
	margin-top: 1rem;
}

.contact-us-card img {
	width: 100%;
}

.contact-us-card-content {
	padding: 1rem;
}

.contact-us-card-content div {
	display: flex;
}

.contact-us-card-content i {
	padding: 0.5rem 0.6rem;
	color: var(--color-green);
	border: 1px solid var(--color-green);
	border-radius: 50%;
	margin: 0.5rem;
}

.contact-us-mid {
	border: 1px solid;
	margin-top: 3rem;
}

.contact-us-mid-top .row {
	margin: 0;
}

.contact-us-mid-top .row .col-6 {
	padding: 0;
	border-right: 1px solid #000;
}

.contact-us-mid-top .row .col-6 a {
	text-decoration: none;
	font-weight: 600;
	color: #000;
	padding: 1rem;
	display: block;
	background-color: #D7D7D7;
}

.contact-us-mid-bottom-left {
	padding: 1rem;
}

.contact-us-mid-bottom-left div {
	display: flex;
	padding-top: 2rem;
}

.contact-us-mid-bottom-left div span {
	padding: 0.5rem;
	color: var(--color-green);
	font-weight: 500;
}

.contact-us-mid-bottom-right img {
	width: 100%;
}

.contact-us-form {
	border: 1px solid;
	padding: 1rem;
	margin: 2rem 0;
}

.contact-us-form-heading {
	text-align: center;
}

.contact-us-form-heading h4 {
	font-weight: 700;
}

.contact-us-input {
	padding: 1rem 0;
}

.contact-us-input input {
	width: 100%;
	border: none;
	border-bottom: 1px solid;
	margin: 1rem 0;
}

.contact-us-title a{
	text-align: center;
}
.contact-us-mid-top .contact-us-title.active a{
	background-color: var(--green-secondary);
	color: #fff;
}


/*Resource-blog */

.banner-background {
	background: url(../img/Rectangle_221.jpg);
	width: 100%;
	height: 521px;
	background-size: cover;
	position: relative;
}

.banner-background .header-image {
	position: absolute;
	bottom: 0;
}

.header-image {
	border-radius: 10px 10px 0 0;
}

.underline {
	border-bottom: 2px solid #2C6100;
	color: var(--color-green);
	font-weight: 600;
	margin-bottom: 14px;
}

.blog-title {
	color: var(--color-green);
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 14px;
	line-height: 36px;
}

.blog-content p {
	color: #575757;
}

.share-button {
	color: #fff;
	clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
	font-weight: 600;
	line-height: 25px;
	text-decoration: none;
	display: flex;
	justify-content: center;
	margin: 16px 0;
	padding: 8px 0;
}

.share-button i {
	margin-top: 3px;
	margin-right: 10px;
}

.share-button.post {
	background: #3B5998;
}

.share-button.tweet {
	background: #1DA1F2;
}

.share-button.share {
	background: #0077B5;
}

.share-button.subscribe {
	background: #6C9F40;
}

.search-box {
	position: relative;
}

.search-box input {
	border: 1px solid var(--color-green);
	border-radius: 16px;
	padding-left: 32px;
	padding-bottom: 5px;
	padding-top: 5px;
	width: 80%;
}

.search-box i {
	color: var(--color-green);
	position: absolute;
	left: 10px;
	top: 10px;
}

.category a {
	display: block;
	color: #000;
	text-decoration: none;
	margin-top: 5px;
	font-weight: 600;
	line-height: 29px;
}

.overlay-box {
	background-blend-mode: overlay;
	color: #fff;
	max-width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 20px 3rem;
	min-height: 315px;
	margin: 10px 0;
}

#overlay-image-1 {
	background: url(../img_resource/image_62.png) rgba(0, 0, 0, 0.5);
	background-size: cover;
	background-repeat: no-repeat;
}

#overlay-image-2 {
	background: url(../img_resource/image_59.png) rgba(0, 0, 0, 0.5);
	background-size: cover;
	background-repeat: no-repeat;
	text-align: right;
}

.overlay-box a {
	text-decoration: none;
	color: #fff;
}

.overlay-box i {
	padding: 5px 9px;
	border: 2px solid #fff;
	border-radius: 50%;
}

.overlay-box a span {
	padding: 10px 20px;
}

.overlay-box .description {
	font-size: 1.5rem;
	margin-top: 1rem;
}

.resources-content-box.blog {
	border: none;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
	transition: 500ms;
}
.resources-content-box.blog:hover{
	box-shadow: 11px 12px 0px rgba(0, 0, 0, 0.25);
	transition: 500ms;
}

.resources-content-box.blog .resources-image-box {
	display: block;
	padding: 5%;
}

.resource-navigation {
	text-decoration: none;
}

.resource-navigation i {
	padding: 5px 9px;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	color: var(--color-green);
}



/*localization-services*/

.localization-top-left{
	background: linear-gradient(to top, #000, var(--color-green));
}

.localization-top-left img {
	width: 100%;
	padding: 6px;
}

.localization-top-right p {
	padding: 0.5rem 0;
}

.localization-top-right h6 {
	padding: 0.5rem 0;
	font-weight: 700;
}
.localization-top-right ul li{
	list-style: none;
	padding:0.5rem 1rem;
}
.localization-services-accordion{
	background: #236587;
	color: #fff;
	padding: 2rem;
}
.service-accordion-title ul li{
	list-style: none;
	padding: 1rem;
}

.service-accordion-title ul li.active{
	background-color: #fff;
	color: var(--color-green);
}

.service-accordion-content p{
	padding: 0.5rem;
}
.service-accordion-content h6{
	padding: 0.5rem;
}
.service-accordion-content ul li{
	list-style: none;
	padding: 0.5rem 1.5rem;
}
.service-accordion-content span{
	font-weight: 700;
}

.localization-services-accordion .service-accordion-content {
	display: none;
}
.localization-services-accordion .service-accordion-content.active {
	display: block;
}


/*language*/


.inventory-box{
	border-bottom: 1px solid #e5e5e5;
    margin-bottom: 7px;
    display: inline-block;
    width: 100%;
    padding-bottom: 12px;
}
.inv-head{
	padding: 10px;
}
.inv-body ul li{
	list-style: none;
	padding: 5px 10px;
}

/*resources arabic*/

.resources-single-top-left{
	background: linear-gradient(to top, #000, var(--color-green));
}
.resources-single-top-left img{
	width: 100%;
    padding: 6px;
}
.resources-single-top-right p{
	padding: 0.5rem 0;
}
.resources-single-top-right{
	max-height: 600px;
	overflow: scroll;
}

.resources-single-top-right h5{
	background-color: #d1d1d1;
	text-align: center;
	margin: 1rem 0;
	font-size: 18px;
}

.resources-single-top-right p a{
	text-decoration: none;
	color: #0c2b57;
}
.resources-single-top-right p a:hover{
	color: var(--green-secondary);
}

/*media queries*/

@media only screen and (max-width: 1025px) {
	.top-banner-right {
		margin-left: -14rem;
	}

	.top-banner-right img {
		max-width: 200px;
	}

	.top-banner-left {
		padding: 3rem 1rem;
	}

	.breadcrum-bottom-menus {
		font-size: 12px;
	}

	.blog-head h4 {
		font-size: 19px;
	}

	.news-img h6 {
		font-size: 27px;
		width: 75%;

	}

	.blog-img h6 {
		font-size: 27px;
	}

	.footer-between-content {
		padding: 10px 200px 10px 10px;
	}

	.footer-between-content h6 {
		font-size: 20px;
	}

	.vision-left {
		padding: 0.5rem;
	}

	.footer-top-left-line-break {
		display: inline;
	}
	.history-bottom-content ul li{
		padding: 0.7rem;
		font-size: 16px;
	}

}

@media only screen and (max-width: 992px) {
	.blog-content {
		border-radius: 10px;
		box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.25);
		margin-bottom: 26px;
		padding-left: 0px;
		padding-right: 0px;
	}

	.blog-content h4,
	.blog-content p {
		padding-left: 8px;
		padding-right: 8px;
	}

	.footer-top-right {
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
		background-color: var(--green-secondary);
		padding: 1rem;
		color: #fff;
		text-align: end;
		margin: 10px 0 35px;
		height: auto;
	}

	.footer-between {
		justify-content: center;
		padding: 6rem 0;
	}

	.footer-between-content {
		display: none;
	}

	.footer-content-sm {
		display: block;
		color: #fff;
	}

	.footer-content-sm .footer-content-sm-link {
		margin-bottom: 2rem;
	}

	.footer-content-sm .footer-content-sm-link .footer-between-icon {
		margin-bottom: 1rem;
	}

	.industries-text {
		text-align: center;
	}

	.topbar {
		justify-content: center;
	}

	.footer-top-left {
		margin: 10px 0;
	}

	.footer-top-right i {
		border: 2px solid #fff;
	}

	.footer-bottom {
		text-align: center;
	}

	.vision .vision-left {
		margin: 0;
		padding: 1rem;
	}

	.vision .vision-right {
		margin: 0;
		margin-bottom: 12%;
		top: 10%;
	}
	.link-content-overlay{
		padding: 100px;
	}
}

@media only screen and (max-width: 769px) {



	/*.footer-top-right{
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
		background-color: var(--green-secondary);
		padding: 1rem;
		color: #fff;
		text-align: end;
		margin: 10px 0 30px;
	}*/







	.footer-bottom-left {
		justify-content: center;
	}

	.vision-left {
		margin-right: 0;
		margin-bottom: 10px
	}

	.vision-right {
		top: 0;
	}

	.breadcrum-top {
		text-align: center;
	}

	.breadcrum-top-right {
		justify-content: center;
	}

	.breadcrum-bottom-menus {
		font-size: 10px;
	}

	.breadcrum-bottom-menus li {
		width: 50%;
		padding: 0.5rem 0;
	}

	.breadcrum-bottom-menus li a {
		border: 1px solid #000;
		padding: 6px;
		width: 90%;
		display: block;
		text-align: center;
	}

	.breadcrum-bottom-menus li:last-child {
		margin: auto;
	}

	.breadcrum-bottom-menus li:last-child a {
		border: 1px solid #000;
	}

	.blog-head h4 {
		font-size: 16px;
	}

	.news-img h6 {
		font-size: 27px;
		width: 100%;
	}

	.blog-img h6 {
		font-size: 27px;
	}

	h1 {
		font-size: 27px;
	}

	h3 {
		font-size: 29px;
		line-height: 33px;
	}

	h4 {
		font-size: 31px;
		line-height: 44px;
	}

	.site-name {
		font-size: 22px;
		letter-spacing: -0.04em;
		line-height: 34px;
	}

	.site-logo {
		font-size: 42px;
	}

	h5 {}

	h6.text-big {
		font-family: poppins;
		font-size: 26px;
		line-height: 27px;
		font-weight: 500;
	}

	.card-wrap {
		height: 480px;
	}

	.resources-breadcrum-right {
		justify-content: end;
	}

	.blog-content {
		margin-top: -20vh;
		z-index: 1;
	}

	.blog-title {
		font-size: 23px;
		line-height: 27px;
	}

	.banner-background {
		height: 288px;
	}
}

@media only screen and (max-width: 426px) {
	.footer-top-left {
		background-color: var(--green-secondary);
		color: #fff;
		text-align: center;
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
		margin: 0;
		margin-top: 10px;
	}

	.footer-top-left h4 {
		font-size: 20px;
		line-height: 23px;
	}

	.footer-top-left h6 {
		font-size: 17px;
		line-height: 43px;
	}

	.footer-top-right {
		background-color: #ADADAD;
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
		margin: 0;
		text-align: center;
	}

	.footer-top-right h4 {
		font-size: 20px;
		line-height: 23px;
	}

	.footer-top-right h6 {
		font-size: 17px;
		line-height: 43px;
	}

	.footer-top-left i,
	.footer-top-right i {
		border: 2px solid;
		padding: 3px 6px;
		border-radius: 50px;
		font-size: 12px;
	}

	.footer-between-icon i {
		font-size: 1rem;
	}

	.footer-bottom {
		display: none;
	}

	.top-banner-right {
		margin-left: -6rem;
		padding-left: 4rem;
	}

	.top-banner-right img {
		max-width: 120px;
	}

	.top-banner-left {
		padding: 2.5rem 1rem;
	}
	.topbar ul li a {
		font-size: 12px;
	}

	h1 {
		font-size: 14px;
		line-height: 21px;
	}

	h2 {
		font-size: 30px;
	}

	h3 {
		font-size: 16px;
		line-height: 18px;
	}

	h4 {
		font-size: 17px;
		line-height: 44px;
	}

	.site-name {
		font-size: 16px;
		letter-spacing: -0.04em;
		line-height: 20px;
	}

	.site-logo {
		font-size: 30px;
	}

	h5 {}

	h6.text-big {
		font-family: poppins;
		font-size: 9px;
		line-height: 13.5px;
		font-weight: 500;
	}

	.card-wrap {
		height: 460px;
	}

	.breadcrum-top {
		font-size: 9px;
	}

	.breadcrum-bottom-menus {
		font-size: 9px;
	}

	.resources-breadcrum-right {
		justify-content: center;
		font-size: 9px;
	}

	.search-box.search-box-for-resources {
		font-size: 10px;
		text-align: center;
	}

	.search-box.search-box-for-resources i {
		left: 50px;
	}

	.blog-title {
		font-size: 17px;
		line-height: 20px;
	}

	.banner-background {
		height: 142px;
	}

	.explore-btn {
		padding: 10px 60px;
		text-decoration: none;
		font-size: 20px;
	}

	.translation-top {
		padding: 1rem 2rem;
	}

	.translation-right h5 {
		font-size: 18px;
		line-height: 21.09px;
	}

	.translation-right ul li {
		font-size: 17px;
	}

	.services-category h6 a {
		font-size: 12px;
		line-height: 14px;
	}

	.industries-text-services p {
		font-size: 14px;
		line-height: 16.41px;
	}

	.offering-content-left h5 {
		font-size: 23px;
	}

	.outline-btn-green {
		padding: 10px 15px;
		text-decoration: none;
		font-size: 14px;
	}

	.overview h6 {
		font-size: 16px;
	}

	.overview p {
		font-size: 15px;
	}

	.language-btn a {
		font-size: 12px;
		line-height: 24px;
	}
	.link-content-overlay{
		padding: 60px;
	}
	.voice-tr th:nth-child(3),
	.voice-tr th:nth-child(4),
	.voice-tr th:nth-child(5){
		display: none;
	}
	.voice-tr td:nth-child(3),
	.voice-tr td:nth-child(4),
	.voice-tr td:nth-child(5){
		display: none;
	}

	.localization-services-accordion{
		padding: 0;
	}
	.history-squares{
		height: 1rem;
		width: 1rem;
	}
	.history-bottom-content ul li {
	    padding: 0.2rem;
	    font-size: 10px;
	}

}


@media only screen and (max-width: 321px) {
	.top-banner-right {
		margin-left: -5rem;
	}

	.top-banner-right img {
		max-width: 85px;
	}

	.top-banner-left {
		padding: 2rem 1rem;
	}

	.blog-head h4 {
		font-size: 12px;
	}

	.news-img h6 {
		font-size: 18px;
	}

	.blog-img h6 {
		font-size: 18px;
	}

	.card-wrap {
		height: 546px;
	}

	.search-box.search-box-for-resources i {
		left: 45px;
	}

	.translation-top {
		padding: 1rem;
	}
	.link-content-overlay{
		padding: 45px;
	}
	.site-name{
		font-size: 14px;
	}
	.history-squares{
		height: 0.75rem;
		width: 0.75rem;
	}
	.history-bottom-content ul li {
	    padding: 0.1rem;
	    font-size: 8px;
	}
}







iframe {
	margin: 3rem 0;
}




/* policy page */

.policycontent {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.policycontent p {
	padding: 0.5rem 0;
}

.policycontent h2 {
	font-size: 30px;
	padding: 1rem 0;
}

.policycontent a{
	text-decoration: none;
	color: var(--green-secondary);
}

/* voice page */

.innerrow {
	padding: 2px;
}

.voice-btn {
	width: 100%;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
}

.dropdownlink :hover {
	background-color: white;
	color: #000;
}


.highlightedbox {
	background: #fff;
	border-top: 4px solid #256637;
	border-radius: 4px;
	padding: 10px 20px;
	font-size: 16px;
	line-height: 24px;
	font-weight: lighter;
	font-style: italic;
	box-shadow: 0 3px 15px -5px #256637;
	text-align: center;
	margin: 1rem 0;
}

.voice-table {
	margin-top: 50px;
	margin-bottom: 40px;
}

.table-responsive {
	border-top: 2px solid #005571 !important;
}
.table{
	background: #fff;
}
.table tbody tr td {
	font-size: 16px;
	line-height: 24px;
	color: #646363;
	font-family: lato, sans-serif;
	font-weight: 400;
	text-align: center;
}

.voice-td i{
	color: #005571;
}

.voice-tr{
	border-bottom: 1px solid #005571;
}

.voice-tr th{
	text-align: center;
}

.voice-dropdown select{
	border: none;
}
.table-responsive {
	border-top: 2px solid #005571 !important;
}
.table{
	background: #fff;
}
.table tbody tr td {
	font-size: 16px;
	line-height: 24px;
	color: #646363;
	font-family: lato, sans-serif;
	font-weight: 400;
	text-align: center;
}

.voice-td i{
	color: #005571;
	cursor: pointer;
}

.voice-tr{
	border-bottom: 1px solid #005571;
}

.voice-tr th{
	text-align: center;
}

.voice-dropdown select{
	border: none;
}

.voice-tr {
	position: relative;
}
.audio-container {
	display: none;
	position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    background: var(--color-green);
    width: 100%;
}
.audio-container .content {
	height: 100%;
    display: flex;
    align-items: center;
	justify-content: space-between;
    padding: 0 2rem;
}
.audio-container i {
	color: #fff;
	cursor: pointer;
}
.audio-container img {
	height: 100%;
	width: 40%;
}
.audio-container .pause-audio {
	display: none;
}
.expose-btn input{
	margin-right: 10px;
	padding: 0 10px;

}


.user-form-wrapper {
	padding: 2rem 0;
	display: flex;
	justify-content: center;
}

.user-form-wrapper form .js-form-item{
	padding-bottom: 1rem;
	font-weight: bold;
}

.user-form-wrapper form label{
	padding-right: 10px;
}
.user-form-wrapper form .description {
	display: none;
}

.login-btn-wrapper{
display: flex;
justify-content: center;
padding-top: 2rem;
padding-bottom: 1rem;
}

.login-btn-wrapper li{
list-style: none;

}

.login-btn-wrapper li a{
text-decoration: none;
color: #333;
font-weight: 500;
background: #eee;
margin: 2px;
border-radius: 5px;
padding: 5px 10px;
}

.login-btn-wrapper li a.is-active {
	color: #fff;
	background-color: var(--green-secondary); 
}

#edit-account div:nth-child(2) label {
	padding-right: 36px;
}

#edit-account div:nth-child(2) input {
	width: 83%;
}
.js-pager__items li{
	display: none;

}
.resources-image-box img{
	max-width: 100%;
	height: auto;
}
.js-form-item-title label{
position: relative;
bottom: 27px;
left: 33px;
}
.js-form-item-title{
	position: relative;
top: 23px;
}
#edit-submit-resources{
	position: relative;
	top: 25px;
}