 @import url('https://fonts.googleapis.com/css2?family=Vollkorn:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');
.about {
	position: fixed;
	z-index: 10;
	bottom: 10px;
	left: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	transition: all 0.2s ease;
}
.about .bg_links {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(46, 149, 9, 0.85);
	border-radius: 100%;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	position: absolute;
}
.about .logo {
	width: 40px;
	height: 40px;
	z-index: 9;
	opacity: 0.9;
	transition: all 1s 0.2s ease;
	bottom: 0;
	left: 0;
}
.about .social {
	opacity: 0;
	left: 0;
	bottom: 0;
}
.about .social .icon {
	width: 100%;
	height: 100%;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	display: flex;
	transition: all 0.2s ease, background-color 0.4s ease;
	opacity: 0;
	border-radius: 100%;
	padding-left: 13px;
	padding-top: 12px;
}
.about .social.portfolio {
	transition: all 0.8s ease;
}
.about .social.portfolio .icon {
}
.about .social.dribbble {
	transition: all 0.3s ease;
}
.about .social.dribbble .icon {
}
.about .social.linkedin {
	transition: all 0.8s ease;
}
.about .social.linkedin .icon {
}
.about:hover {
	width: 105px;
	height: 105px;
	transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .logo {
	opacity: 1;
	transition: all 0.6s ease;
}
.about:hover .social {
	opacity: 1;
}
.about:hover .social .icon {
	opacity: 0.9;
}
.about:hover .social:hover {
	background-size: 28px;
}
.about:hover .social:hover .icon {
	background-size: 65%;
	opacity: 1;
}
.about:hover .social.portfolio {
	left: 0;
	bottom: calc(100% - 40px);
	transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.portfolio .icon:hover {
	background-color: #698fb7;
}
.about:hover .social.dribbble {
	bottom: 45%;
	left: 45%;
	transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.dribbble .icon:hover {
	background-color: #ea4c89;
}
.about:hover .social.linkedin {
	bottom: 0;
	left: calc(100% - 40px);
	transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.linkedin .icon:hover {
	background-color: #0077b5;
}
/* swiper */
.swiper-container {
	padding: 0;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.swiper-slide {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: left;
	transition: all 0.3s ease;
	background-position: fixed;
}
.swiper-item {
	width: 80%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	position: absolute;
}
.swiper-slide .number {
	width: auto;
	height: auto;
	position: absolute;
	right: 10px;
	bottom: -40px;
	font-size: 120px;
	-webkit-text-stroke: 1px white;
	color: transparent;
	font-weight: 600;
	opacity: 0.8;
}
 @media screen and (max-width: 512px) {
.swiper-slide .number {
	display: none;
}
.swiper-item {
	width: 90%;
}
}
.swiper-item:after {
	content: "";
	background-color: black;
	position: absolute;
	width: 100%;
	height: inherit;
	bottom: 0;
	z-index: 1;
	opacity: 0.1;
}
.swiper-item:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 30%;
	top: 0;
	z-index: 1;
	opacity: 0.2;
}
/* swiper arrows */

.swiper-arrows {
	width: 400px;
	height: 80px;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 0px;
	right: 20%;
}
 @media screen and (max-width: 512px) {
.swiper-arrows {
	right: 10%;
}
}
.swiper-button-prev, .swiper-button-next {
	width: 80px;
	height: 80px;
	background-image: none;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	bottom: 0;
	margin: 0;
	transition: all 0.3s ease;
}
.swiper-button-prev {
	right: 80px;
	left: auto;
	background-color: rgba(255, 255, 255, 0.7);
}
.swiper-button-next {
	right: 0px;
	background-color: rgba(255, 255, 255, 0.8);
}
.swiper-button-prev span, .swiper-button-next span {
	width: 10px;
	height: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	position: absolute;
	border: solid 2px #666666;
	border-left: 0;
	border-bottom: 0;
	transition: all 0.1s ease;
}
.swiper-button-prev span {
	transform: rotate(-135deg);
	left: 49%;
}
.swiper-button-next span {
	transform: rotate(45deg);
	right: 49%;
}
.swiper-button-prev:hover span, .swiper-button-next:hover span {
	width: 5px;
	height: 5px;
}
.swiper-button-prev:after, .swiper-button-next:after {
	width: 0px;
	height: inherit;
	content: '';
	position: absolute;
	background-color: white;
	transition: all 0.4s ease-in-out;
	z-index: -1;
	opacity: 0.8;
}
.swiper-button-prev:after {
	right: 0;
}
.swiper-button-next:after {
	left: 0;
}
.swiper-button-prev:hover:after, .swiper-button-next:hover:after {
	width: inherit;
}
.swiper-button-disabled {
	opacity: 1 !important;
}
.swiper-button-disabled.swiper-button-prev span, .swiper-button-disabled.swiper-button-next span {
	opacity: 0.2;
}

/* swiper arrows mobile */

@media screen and (max-width: 512px) {
.swiper-button-prev, .swiper-button-next {
	width: 60px;
	height: 60px;
	bottom: 0;
}
.swiper-arrows {
	height: 60px;
}
.swiper-button-prev {
	right: 60px;
}
.swiper-button-prev span {
	left: 45%;
}
.swiper-button-next span {
	right: 45%;
}
}
/* swiper pagination */

.swiper-pagination {
	height: 3px;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 60px !important;
	right: calc(20% - 60px);
	top: 20px;
	float: right;
	position: absolute;
	left: auto !important;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 10px 0px;
}
.swiper-pagination-bullet {
	background-color: white;
	opacity: 1;
	transition: all 0.3s ease-in-out;
	width: 30px;
	height: 3px;
	border-radius: 0px;
	opacity: 0.5;
}
.swiper-pagination-bullet:hover {
	width: 50px;
}
.swiper-pagination-bullet-active, .swiper-pagination-bullet-active:hover {
	width: 60px;
	transition: all 0.3s ease-in-out;
	left: 0;
	background-color: white;
	opacity: 1;
}

/* swiper pagination mobile */

@media screen and (max-width: 512px) {
.swiper-pagination {
	right: calc(10% - 60px);
}
.swiper-pagination-bullet, .swiper-pagination-bullet:hover {
	width: 15px;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 8px 0px;
}
.swiper-pagination-bullet-active, .swiper-pagination-bullet-active:hover {
	width: 25px;
}
}
/* text content */

.slide-text {
	text-align: left;
	color: white;
	opacity: 1;
	z-index: 2;
	width: 40%;
	max-width: 250px;
	padding: 30px;
 display:none;
	position: absolute;
	right: 5%;
 animation: transitionText 2s ease;
}

.slide-text.playText {
 display:block;
	animation: transitionText 2s ease;
}
 @keyframes transitionText {
 0% {
 right: -100%;
}
 100% {
 right: 5%;
}
}
.slide-text h1 {
	font-size: 25px;
	letter-spacing: 0.03em;
	margin: 0;
	padding: 0;
	font-weight: 400;
}
.slide-text p {
	margin: 10px 0 0 0;
	font-size: 16px;
	font-weight: 200;
}

/* text content mobile */

@media screen and (max-width: 512px) {
.slide-text {
	width: 60%;
}
.slide-text h1 {
	font-size: 15px;
	letter-spacing: 0.02em;
}
.slide-text p {
	font-size: 14px;
}
}
/* button */

.slide-text .btn {
	background-color: transparent;
	font-size: 14px;
	letter-spacing: 2px;
	color: white;
	position: relative;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	margin-top: 20px;
	border: 0;
	padding: 0 15px;
	left: 0;
}
.slide-text .btn:before {
	content: '';
	background-color: white;
	width: 2px;
	height: 20px;
	position: absolute;
	z-index: 2;
	left: -1px;
	top: -1px;
	border-radius: inherit;
	transition: all 0.3s ease-in-out;
}
.slide-text .btn:after {
	content: '';
	width: 0px;
	height: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	position: absolute;
	border: solid 2px transparent;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	top: 3px;
	left: -10px;
	transition: all 0.3s ease-in-out;
}
.slide-text .btn:hover::before {
	left: 11px;
	transform: rotate(90deg);
}
.slide-text .btn:hover::after {
	border: solid 2px white;
	border-left: 0;
	border-bottom: 0;
	left: 10px;
	width: 10px;
	height: 10px;
	opacity: 1;
}
img {
	max-width: 100%;
}
.slide-text .btn:hover {
	padding-left: 35px;
}
button:focus {
	outline: 0;
}
header {
	position: absolute;
	left: 0px;
	z-index: 200;
	left: 0px;
	right: 0px;
	top: 0px;
}
label.menu-toggle {
	margin:   0;
	cursor: pointer;
	display: inline-block;
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 4;
	transition: transform 0.3s ease;
}
.line {
	display: block;
	width: 35px;
	height: 5px;
	background: #365132;
	border-radius: 6px;
	transition: transform 0.3s ease;
}
.line + .line {
	margin-top: 5px;
}
.overlay {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.page {
	position: relative;
	padding: 50px;
	transition: transform 0.3s ease;
	z-index: 1;
}
nav ul {
	margin-top: 30px;
}
nav {
	position: fixed;
	top: 0px;
	right: 0;
	bottom: 0;
	width: 300px;
	background: #668c61;
	padding: 50px 30px 30px;
	transform: translateX(100%);
	transition: all 0.3s ease;
	z-index: 3;
}
nav:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 3;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
	opacity: 0;
	pointer-events: none;
}
nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-top: 30px;
}
nav li {
	margin: 15px 0;
	transform: translateX(350px);
	transition: transform 0.3s ease;
}
nav li:nth-child(n+1) {
	transition-delay: 0.03s;
}
nav li:nth-child(n+2) {
	transition-delay: 0.06s;
}
nav li:nth-child(n+3) {
	transition-delay: 0.09s;
}
nav li:nth-child(n+4) {
	transition-delay: 0.12s;
}
nav li:nth-child(n+5) {
	transition-delay: 0.15s;
}
nav li:nth-child(n+6) {
	transition-delay: 0.18s;
}
nav li:nth-child(n+7) {
	transition-delay: 0.21s;
}
nav li:nth-child(n+8) {
	transition-delay: 0.24s;
}
nav li:nth-child(n+9) {
	transition-delay: 0.27s;
}
nav li:nth-child(n+10) {
	transition-delay: 0.3s;
}
nav li:nth-child(n+11) {
	transition-delay: 0.33s;
}
nav li:nth-child(n+12) {
	transition-delay: 0.36s;
}
li:nth-child(n+13) {
	transition-delay: 0.39s;
}
nav li:nth-child(n+14) {
	transition-delay: 0.42s;
}
nav li:nth-child(n+15) {
	transition-delay: 0.45s;
}
nav li:nth-child(n+16) {
	transition-delay: 0.48s;
}
nav li:nth-child(n+17) {
	transition-delay: 0.51s;
}
nav li:nth-child(n+18) {
	transition-delay: 0.54s;
}
nav li:nth-child(n+19) {
	transition-delay: 0.57s;
}
nav li:nth-child(n+20) {
	transition-delay: 0.6s;
}
nav li:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	 
	box-shadow: 0 2px #fff;
	 
	transition: transform 0.2s ease;
}
nav li:hover:before {
	transform: scale(1.1, 1);
}
nav li a {
	display: block;
	text-align: center;
	position: relative;
	color: #fff;
	padding: 10px 30px;
	cusror: pointer;
	text-decoration: none;
	z-index: 2;
}
#menu-toggle {
	position: fixed;
	left: -99999999px;
}
#menu-toggle:checked ~ .menu-toggle {
	transform: rotate(-180deg);
	right: 64px;
}
#menu-toggle:checked ~ .menu-toggle .line-1 {
	transform: translateY(10px) rotate(45deg) scale(1.3, 1);
	transform-origin: 50%;
}
#menu-toggle:checked ~ .menu-toggle .line-2 {
	transform: scale(0);
}
#menu-toggle:checked ~ .menu-toggle .line-3 {
	transform: translateY(-10px) rotate(-45deg) scale(1.3, 1);
	transform-origin: 50%;
}
#menu-toggle:checked ~ nav {
	transform: translateX(0);
}
#menu-toggle:checked ~ nav:after {
	opacity: 1;
}
#menu-toggle:checked ~ nav ul li {
	transform: translateX(0);
}
#menu-toggle:checked ~ .overlay {
	opacity: 1;
	pointer-events: all;
}
#menu-toggle:checked ~ .page {
	transform: translateX(-300px);
}
.page {
	color: #fff;
}
.page h1 {
	font-size: 3.5rem;
	margin-top: 60px;
}
.bg_links .fa {
	color: #fff;
}
.btn-more {
	background-color: transparent;
	border: 2px solid #eee;
	padding: 10px 23px;
	color: #fff;
}
.page p {
	margin-bottom: 35px !important;
	font-size: 18px;
}
.main-logo {
	margin-top: 15px;
}
.main-content {
	padding: 90px 0px;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#8fafc9+20,8fafc9+20,8fafc9+20,ffffff+20,ffffff+20 */
	background: rgb(143,175,201); /* Old browsers */
	background: -moz-linear-gradient(left, rgba(161, 196, 179,.3) 30%, rgba(161, 196, 179,.3) 30%, rgba(161, 196, 179,.3) 30%, rgba(255,255,255,1) 30%, rgba(255,255,255,.3) 30%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(161, 196, 179,.3) 30%, rgba(161, 196, 179,1) 30%, rgba(161, 196, 179,.3) 30%, rgba(255,255,255,1) 30%, rgba(255,255,255,.3) 30%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(161, 196, 179,.3) 30%, rgba(161, 196, 179,.3) 30%, rgba(161, 196, 179,.3) 30%, rgba(255,255,255,1) 30%, rgba(255,255,255,1) 30%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8fafc9', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 */
}
.experiences {
	padding: 100px 0px 60px 0px;
	text-align: center;
	background: #f5f5f5 url(../images/bs2.jpg) bottom;
}
.experiences h3 {
	font-size: 44px;
}
.grid {
	position: relative;
	margin-bottom: 15px;
	list-style: none;
	text-align: center;
}
/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	width: 100%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}
.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}
.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.grid figure figcaption::before, .grid figure figcaption::after {
	pointer-events: none;
}
.grid figure figcaption, .grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}
.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
	border-bottom: 1px solid #ddd;
	margin-bottom: 10px;
}
.grid figure h2 span {
	font-weight: 800;
}
.grid figure h2, .grid figure p {
	margin: 0;
}
.grid figure p {
	font-size: 68.5%;
}
/* Individual effects */

/*---------------*/
/***** Lily *****/
/*---------------*/

figure.effect-lily img {
	max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}
figure.effect-lily figcaption {
	text-align: left;
}
figure.effect-lily figcaption > div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	height: 50%;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0 ); /* IE6-9 */
}
figure.effect-lily h2, figure.effect-lily p {
	-webkit-transform: translate3d(0, 40px, 0);
	transform: translate3d(0, 40px, 0);
}
figure.effect-lily h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}
figure.effect-lily p {
	color: rgba(255,255,255,0.8);
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
}
figure.effect-lily:hover img, figure.effect-lily:hover p {
	opacity: 1;
}
figure.effect-lily:hover img, figure.effect-lily:hover h2, figure.effect-lily:hover p {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
figure.effect-lily:hover p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
}
.sub-caption {
	font-size: 18px;
	line-height: 24px;
	color: #555;
	margin-bottom: 36px;
}
.custome {
	padding: 30px 0px 40px 0px;
	color: #fff;
	text-align: center;
	background: #000 url(../images/custome.jpg) center bottom;
}
.custome h3 {
	font-size: 44px;
}
.custome p {
	font-size: 15px;
	color: #fff;
}
.custome-btn {
	border: 2px solid #eee;
	padding: 8px 15px;
	color: #fff;
}
.section-padding {
	padding: 80px 0;
	background: #f1f4f3;
}
.section-title {
	text-align: center;
	margin-bottom: 60px;
}
.section-borders span {
	height: 5px;
	background: #6aaf08;
	width: 40px;
	display: inline-block;
	border-radius: 2px;
}
.section-borders span.black-border {
	background: #333;
	width: 30px;
	margin: 0 6px;
}
.client-testimonial-carousel .owl-dots button {
	height: 5px;
	background: #888 !important;
	width: 20px;
	display: inline-block;
	margin: 5px;
	transition: .2s;
	border-radius: 2px;
}
.client-testimonial-carousel button.owl-dot.active {
	background: #6aaf08  !important;
	width: 30px;
}
.client-testimonial-carousel .owl-dots {
	text-align: center;
	margin-top: 25px
}
.single-testimonial-item {
	position: relative;
	box-shadow: 0 0 2px #dadfd3;
	margin: 2px;
	padding: 20px;
	font-style: italic;
	padding-left: 85px;
}

.single-testimonial-item p {
	height: 190px;
	overflow-y: scroll;
}

.single-testimonial-item p::-webkit-scrollbar{
	width: 2px;
	border-radius: 10px;
}

.single-testimonial-item p::-webkit-scrollbar-track{
	background: #dddcdc;
	border-radius: 10px;
}

.single-testimonial-item p::-webkit-scrollbar-thumb{
	background: #adadad;
	border-radius: 10px;
}


.single-testimonial-item:before {
	font-family: "FontAwesome";
	content: "\f10d";
	font-weight: 900;
	position: absolute;
	left: 20px;
	top: 50%;
	font-size: 20px;
	color: #6aaf08;
	line-height: 30px;
	margin-top: -15px;
}
.single-testimonial-item:after {
	background: #ddd;
	content: "";
	height: 70%;
	left: 60px;
	position: absolute;
	top: 10%;
	width: 1px;
}
.single-testimonial-item h3 {
	font-size: 20px;
	font-style: normal;
	margin-bottom: 0;
}
.single-testimonial-item h3 span {
	display: block;
	font-size: 12px;
	font-weight: normal;
	margin-top: 5px;
}

.leadership-team {
	padding: 80px 80px;
	background: #0E1414;
}

.leadership-container {
}

.leadership-title{
	text-align: center;
}

.leadership-title h3 {
	display: inline-block;
	position: relative;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: white;
	padding-left: 24px;
	margin-bottom: 20px
}

.leadership-title h1 {
	font-family: "Manrope",sans-serif;
	font-size: 40px;
	font-weight: 500;
	line-height: 48px;
	color: white;
	margin: 20px;
	cursor: none;
	text-align: center;
}

.leadership-content {
	display: flex;
	gap: 20px;
}

.leadership-card {
	display: flex;
	color: white;
	overflow: hidden;
	width: 600px;
	font-family: "Manrope", sans-serif;
	border: 1px solid #888;
	justify-content: center;
	align-items: center;
}

.leadership-card img {
	width: 50%;
	object-fit: cover;
}

.leadership-card-content {
    padding: 20px;
    width: 100%;
}

.leadership-card-content h2 {
	font-size: 24px;
	font-weight: 700;
	color: white;
	line-height: 28.8px;
}

.leadership-card-content .role {
	font-size: 16px;
	font-weight: 400;
	line-height: 19.2px;
	color: white;
	margin-top: 5px;
}

.leadership-card-content .description {
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	color: white;
	margin-top: 10px;
}


#menu-toggle:checked ~ .menu-toggle .line {
	background: #fff !important;
}
footer {
	background: #333;
	padding-top: 30px;
	color: #fff;
}
footer h2 {
	font-size: 24px;
}
select {
	height: 32px !important;
}
.enbtn {
	margin-top: 20px;
	background: rgba(46, 149, 9, 0.85);
	border: none;
}
footer input {
	display: block;
	width: 100%;
	height: 34px !important;
}
footer .form-control {
	background-color: #bfbaba;
	background-clip: padding-box;
	border: 1px solid #444;
}
.footer-menu {
	padding-left: 0px;
	margin-left: 0px;
}
.footer-menu li {
	list-style: none;
}
.footer-menu li a {
	color: #eee;
}
.socials i {
	font-size: 24px;
	color: #eee;
	margin-right: 10px;
}


footer .form-control::placeholder {
    color: #555;
    
}

 .copys   {
		  margin-bottom: 3px;
	}
	
	footer .enbtn {
    
    background: rgba(95, 147, 77, 0.85);
	}
	
	input[type="radio"], input[type="checkbox"] {
		width:auto;
		
	}

@media screen and (max-width: 768px) {
	
	.socials {text-align:center;
	}
	
	.footer-address {
		text-align:center;
 
		
	}
	
	 .copys   {
		  margin-bottom: 3px;
		  text-align:center;
	}
	
	.footer-menu li {
		text-align:center;
	}
	footer h2 {
		text-align:center;
 
	}
	
	.experiences h3 {
    font-size: 34px;
	
	}
	
	.custome h3 {
		
    font-size: 30px;
	
	}
	
	.main-content    h1 {
		font-size: 1.8rem;
		
	}
	
	.main-content    p {
		text-align:justify;
	 
		
	}
	
	label.menu-toggle {
		position:absolute;
  
    top: -84px !important;
}
	
	 .page h1 {
		 display:none;
	 }
	 
	 .page p {
		 display:none;
	 }
	
	
	.line {
   
    background: #fff !important;
	
	}
	
	.main-logo  img {
		width:150px;
		
		
	}
	label.menu-toggle {
		right: 50px;
		
	}
	
	 
#menu-toggle:checked  ~  label.menu-toggle {
	position:fixed !important;
	top: 20px !important;
}
	
	.btn-more { 
	margin-left:10% !important;
	text-transform: uppercase;
 
	}
	
	header {
		background:/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

	}
	.page {padding-top:60px;
	}
	
}


@media only screen and (max-width: 767px) {
	.leadership-team {
		padding: 18px;
	}
	.leadership-card {
		width: 100%;
	}
	.leadership-content {
		display: flex;
		gap: 20px;
		align-content: space-between;
		flex-direction: column;
	}
	.leadership-title h1 {
		font-family: "Manrope", sans-serif;
		font-size: 30px;
	}
	.page {
		display: none;
	}
}