* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body {
    color: #111111;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    font-family: "Satoshi-Regular", sans-serif;
    position: relative;
    --screen-width: calc(100vw - (100vw - 100%));
}
body,html{
	overflow-x: hidden;
}
html {
    scroll-behavior:smooth;
}

.alignleft {
    float: left;
}
.alignright {
    float: right;
}
html {
    overflow-x: hidden;
}
h1 {
}
h2 {
}
h3, .h3 {
    font-size: 45px;
    margin: 0;
}
h4, .h4 {
    font-size: 24px;
    margin: 0;
}
h5, .h5 {
    font-size: 20px;
    margin: 0;
}
h6, .h6 {
    font-size: 16px;
    margin: 0;
}
p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}
a, a:hover {
    text-decoration: none;
    transition: 0.3s all ease-in-out;
}
ul {
    margin: 0px;
    padding: 0;
}
.clearfix:before,.clearfix:after {
    content: '';
    display: table;
}
.clearfix:after {
    clear: both;
}
a {
    text-decoration: none;
}
@font-face {
    font-family: "Satoshi-Medium";
    src: url("Satoshi-Medium.ttf") format('truetype');
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: "Satoshi-Bold";
    src: url("Satoshi-Bold.ttf") format('truetype');
    font-style: normal;
    font-weight: 700;
}
@font-face {
    font-family: "Satoshi-Regular";
    src: url("Satoshi-Regular.ttf") format('truetype');
    font-style: normal;
    font-weight: 400;
}

/**********animation**********/
@media (prefers-reduced-motion: no-preference) {
    .animate-this {
        opacity: 0;
        transform: translateY(50px);
    }
    .animate-this.animated {
        animation: fade-in 0.8s ease-in-out forwards;
    }
    .animate-this.rtl {
        opacity: 0;
        transform: translateX(50px);
    }
    .animate-this.animated.rtl {
        animation: fade-in-right 0.8s ease-in-out forwards;
    }
    .animate-this.lft {
        opacity: 0;
        transform: translateX(-20px);
    }
    .animate-this.animated.lft {
        animation: fade-in-left 0.8s ease-in-out forwards;
    }
    @keyframes fade-in {
        to {
            opacity: 1;
            transform: translateY(0px);
        }
    }
    @keyframes fade-in-right {
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    @keyframes fade-in-left {
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
}
@keyframes tp-animate {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -10px);
    }
    100% {
        transform: translate(0, 0);
    }
}
/*****header*****/
.container {
    padding: 0px 20px;
}
.header {
    padding: 6px 0 0;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
	background: #FEBF56;
	transition: transform 0.85s ease, opacity 0.35s ease;
}
.header.stick{
    position: fixed;
    width: 100%;
    top: 0;
    animation: slideDown 0.85s ease forwards;
}
/* Smooth entry animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.header .container {
    max-width: 1200px;
}
.header-main {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	padding-bottom: 6px;
}
.header_contact {
	display: flex;
	gap: 24px;
}
.header_contact span {
	display: flex;
	gap: 6px;
	font-size: 13px;
	align-items: center;
}
.header_contact a {
	font-weight: 800;
	color: #000;
}
.header_contact span span a {
    font-weight: 400;
}
.header_contact span img {
	width: 30px;
}
.logo {
    width: 160px;
	position: relative;
}
.logo a{
	position: relative;
}
.logo img {
    width: 100%;
}

a:focus-visible {
    outline: none;
}

.navbar {
    padding: 10px 0px;
    flex-wrap: wrap;
    background: #0D408F;
}
.navbar-collapse {
    width: 100%;
	justify-content: space-between;
}
.nav-menu {
    gap: 28px;
    align-items: center;
}
.nav-menu li a {
    color: #FFFFFF;
    padding: 0 !important;
    position: relative;
}
.nav-menu li.active a{
	font-weight: Bold;
	font-family: "Satoshi-Bold", sans-serif;
}

.nav-menu li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #FFFFFF;
    -webkit-transition: all ease 250ms;
    margin: 0 auto;
}
.nav-menu li.active a:after {
    background-color: #FEBF56;
    width: 100%;
}
.navbar_main {
    display: flex;
    gap: 30px;
    align-items: center;
}
.navbar_top {
    padding-bottom: 10px;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
.nav-link:focus, .nav-link:hover {
	color: #FFFFFF;
}
/*****footer*****/
.footer {
    padding: 40px 0 0;
	background: url('../images/footer-bg.webp') no-repeat;
	background-size: 100% 100%;
}
.footer-logo {
    max-width: 530px;
	    margin: 0 auto;
    text-align: center;
}
.footer-logo img {
    width: 100%;
    max-width: 160px;
    margin-bottom: 15px;
}
.footer-logo p {
    margin-bottom: 20px;
    color: #fff;
}
.footer h4 {
    color: #F26722;
	text-transform: uppercase;
    font-size: 20px;
    font-family: "Satoshi-Bold", sans-serif;
    margin-bottom: 20px;
}
.footer_links ul li {
    display: block;
    margin-bottom: 8px;
}
.footer_links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}
.footer_contact {
	    display: flex;
    justify-content: center;
    gap: 80px;
	border-top: 1px solid #FFFFFF63;
	border-bottom: 1px solid #FFFFFF63;
	padding: 15px 0px;
}
.footer_contact a{
	margin-bottom: 8px;
	display: block;
	color: #FFFFFF;
}
.footer_contact img {
    width: 18px;
    margin: 0;
}
.footer_contact a, .footer_contact p{
	color: #FFFFFF;
	margin: 0;
	font-size: 14px;
}
.footer_contact a span, .footer_contact p span{
	border: 1px solid #FFFFFF33;
    border-radius: 8px;
    padding: 4px 12px 6px 8px;
    margin-right: 10px;
    display: inline-block;
    width: 34px;
}
.footer_links ul li a:hover{
	color: #FFFFFF;
}

.social-media {
    gap: 5px;
}
.social-media a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111111;
    border-radius: 100px;
}
.social-media a:hover{
	background-color: #FFFFFF;
}
.social-media a:hover img {
    filter: invert(1) brightness(0);
}
.social-media a img {
    width: 16px;
	margin: 0;
}
.footer-row {
    padding-bottom: 50px;
    position: relative;
}
.footer-btmrow {
    padding: 24px 0px;
    align-items: center;
}
.footer-btmrow p {
    margin: 0;
     color: rgba(255,255,255,0.6);
     font-family: "Satoshi-Medium", sans-serif;
 font-weight: 500;
}
.footer-btmrow p a {
    color: rgba(255,255,255,0.6);
}
.footer-btmain {
	justify-content: center;
}
.footer-btmain ul {
	display: flex;
	gap: 30px;
}
.footer-btmain ul li {
	display: inline-block;
}
.footer-btmain ul li a{
	text-decoration: underline;
 color: rgba(255,255,255,0.6);
font-family: "Satoshi-Medium", sans-serif;
 font-weight: 500;
     font-size: 14px;
}
/**********/
.banner_main {
	position: relative;
}
.banner_main:before {
	    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 510px;
    background: url(../images/vector2.png) no-repeat;
    background-size: 100%;
}
.banner_main h3 {
	color: #0D408F;
    font-weight: 700;
    text-align: left;
    font-size: 56px;
	font-family: "Playfair Display", serif;
	margin-bottom: 25px;
	margin-top: -10px;
}
.banner_main h3 span {
	display: inline-block;
	background: #FEBF56;
	padding: 0px 10px 6px;
    line-height: 58px;
}
a.btn-yellow {
	background: #FEBF56;
	border-radius: 16px;
	color: #111111;
	font-family: "Satoshi-Bold", sans-serif;
	padding: 18px 32px;
	display: inline-block;
	font-size: 14px;
}
a.btn-yellow:hover{
    background-color: #000000;
    color: #fff;
}
a.btn-outline {
    border: 1px solid #111111;
    border-radius: 16px;
	padding: 18px 32px;
    text-align: center;
    color: #111111;
    font-family: "Satoshi-Bold", sans-serif;
	display: inline-block;
	font-size: 14px;
}
a.btn-outline:hover{
	background-color: #000000;
    color: #fff;
}
.banner .owl-dots{
        margin-top: -24px;
}
.bann_desc {
        max-width: 390px;
}

/*****client-sec*****/
.client-sec {
	padding: 75px 0px;
}
.client-sec h3 {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 20px;
}
.client-sec h3:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/line.svg') no-repeat;	
	background-size: 100% 100%;
    width: 100%;
    height: 2px;
}
.card {
	background: rgba(255, 255, 255, 0.1);
    border: 1px solid #000000;
    padding: 20px 25px;
    padding: 2px;
    height: 115px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s all ease-in-out;
}
.client-inn .card:hover {
    box-shadow: 0 2px 40px rgba(151, 50, 0, 0.4);
    backdrop-filter: blur(14px);
    position: relative;
    transform: translateY(-5px);
}
.client-inn .card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.7px;
    background: linear-gradient(to left, #FF996700, #ff996785);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
}
.client-inn .card:hover:before {
    opacity: 1;
}
.card img{
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}
.card:hover img{
    filter: grayscale(0%);
}
.client-slider .card {
	background: transparent;
	padding: 20px 40px;
}
.home-client {
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	padding-top: 45px;
	    box-shadow: 0 0 50px 10px rgba(151, 50, 0, 0.7);
    backdrop-filter: blur(14px);
    position: relative;
}
.home-client h3 {
	font-size: 30px;
	text-transform: uppercase;
}
.client-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 24px;
}
.comon-padd {
    padding: 60px 0px;
}

/*****contact*****/
.contact_sec {
	background: url('../images/contact-bg.webp') no-repeat;
	background-size: 100% 100%;
}
.contact_sec .title {
	max-width: 760px;
	margin: 0 auto;
}
.contact_sec .title h6 {
	    color: #CB8900;
    font-family: "Satoshi-Bold", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.7px;
    position: relative;
    display: inline-block;
    padding-left: 10px;
}
.contact_sec .title h6:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: #CB8900;
    border-radius: 20px;
}
.contact_sec .title .h3 span {
    padding: 0px 10px 6px;
}
.contact_sec .title p{
	font-family: "Satoshi-Medium", sans-serif;
	font-weight: 500;
	font-size: 14px;
}
.contact_box {
	background: #012971;
	border-radius: 12px;
	padding: 30px 30px;
}
.contact_box .h6{
	font-family: "Satoshi-Medium", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	margin-bottom: 0;
	font-size: 16px;
}
.contact_box p{
	color: rgba(255,255,255,0.9);
	margin-bottom: 40px;
	font-size: 14px;
	    max-width: 300px;
}
.contact_box p a{
	color: #FFFFFF;
}
.contact_box .social-media {
    margin-top: 13px;
    gap: 10px;
}
.contact_box .social-media a {
    background: #FFFFFF;
    width: 55px;
    height: 55px;
}
.contact_box .social-media a img, .contact_box .social-media a svg {
    width: 26px;
}
.contactpage_form {
	z-index: 1;
	position: relative;
}


.contactpage_form label {
    font-size: 16px;
    color: #222222;
    text-transform: capitalize;
    font-family: "Satoshi-Bold", sans-serif;
}
.form div.halfs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
input, select {
    background: #FFFFFF;
    border: 0;
    border-radius: 12px;
    padding: 12px 15px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
	border: 1px solid #808080;
}
textarea {
    background: #FFFFFF;
    border: 0;
    border-radius: 12px;
    padding: 12px 15px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 150px;
	border: 1px solid #808080;
}

input[type="checkbox"][name="your-consent"] {
    display: none;
}
/* Label styling */
input[type="checkbox"][name="your-consent"] + .wpcf7-list-item-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(102, 102, 102, 0.6);
}
/* Custom box */
input[type="checkbox"][name="your-consent"] + .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border: 1px solid #000000;
    border-radius: 10px;
    background: transparent;
    transition: 0.3s;
}
/* Tick mark */
input[type="checkbox"][name="your-consent"]:checked + .wpcf7-list-item-label::after {
    content: "âœ”";
    position: absolute;
    left: 4px;
    top: -4px;
    font-size: 14px;
    color: #000000;
}
.wpcf7-list-item {
    margin: 0;
}
.contactpage_form input, .contactpage_form select {
    background: transparent;
    border: 0;
    border-radius: 8px;
       padding: 16px 12px;
    font-weight: 400;
    font-size: 13px;
    color: #000000;
	border: 1px solid #808080;
    width: 100%;
}
.contactpage_form textarea{
    background-color: transparent !important;
    border: 0;
    border-radius: 8px;
    padding: 16px 12px;
    font-weight: 400;
    font-size: 14px;
     color: #000000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
	height: 160px;
	resize: none;
}
.contactpage_form input:focus-visible , .contactpage_form textarea:focus-visible {
	outline: none;
}
.contactpage_form input::placeholder , .contactpage_form textarea::placeholder {
	 color: #000000;
}
input:-internal-autofill-selected , textarea:-internal-autofill-selected {
	background-color: transparent !important;
}
.infrastructure_desc::-webkit-scrollbar {
    width: 4px
}
.infrastructure_desc::-webkit-scrollbar-track {
    background: #0C665F1A;
}
.infrastructure_desc::-webkit-scrollbar-thumb {
    background-color: #0C665F;
    border-radius: 5px
}
.banner_inn  {
	justify-content: space-between;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 99;
}
.banner_inn .social-media {
    justify-content: center;
        margin-bottom: 40px;
}
.banner_mail a {
    font-size: 20px;
    color: #fff;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #fff;
}
.banner_mail a:last-child{
    margin-right: 0px;
    padding-right: 0px;
    border-right:  0px;
}
.banner_mail a img {
    width: 24px;
}
.banner_inn .social-media {
    margin-bottom: 12px;
}
.banner_inn .social-media a img {
    width: 20px;
}
.banner_inn .social-media a {
    width: 34px;
    height: 34px;
}
.impactswrap .impacts_box  {
	margin-bottom: 30px;
	text-align: right;
}
.impacts_box {
	transition: transform 0.3s ease;
}
.numcont p {
    font-size: 38px;
    line-height: 38px;
	margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}
.impacts_box h5 {
    font-size: 15px;
	text-transform: capitalize;
	font-family: "Satoshi-Bold", sans-serif;
}
.banner {
    position: relative;
    z-index: 9;
}
.banner:before {
	    content: '';
    position: absolute;
    left: 0;
    top: 58px;
    width: 100%;
    height: 140px;
    background: url(../images/vector1.png) no-repeat;
    background-size: 100%;
    background-position: right;
    z-index: 9;
}
.banner_main { 
	position: absolute; 
	left: 0; 
	right: 0; 
	top: 0; 
	width: 100%;    
	    height: 100%;
}
.banner_main .container {
    height: 100%;
}
.banner_inn {
	height: 100%;
	align-items: flex-end;
}
.banner_inn h6 { 
	font-size: 20px;  
	color: #FFFFFF; 
	margin-bottom: 10px; 
	display: block;
	font-family: "Satoshi-Bold", sans-serif; 
	font-weight: 700; 
	position: relative; 
	text-transform: uppercase; 
}
.banner_inn h6:before { 
	content: ''; 
	position: absolute; 
	right: 0; 
	top: 10px; 
	width: 46%; 
	height: 4px; 
	background: #F26722; 
}
.banner_img img {
    object-fit: cover;
	height: 740px;
}
.banner_inn h1 { 
	color: #FFFFFF; 
	margin-bottom: 30px; 
	    
}
a.btn-white { 
	background: #FFFFFF; 
	padding: 15px 30px 17px; 
	color: #01340F; 
	font-size: 18px;  
	font-family: "Satoshi-Bold", sans-serif; 
	display: inline-block; 
}
a.btn-white-outline {
    border: 1px solid #FFFFFF;
    padding: 15px 30px 17px;
    text-align: center;
    color: #FFFFFF;
	font-size: 18px;
    font-family: "Satoshi-Bold", sans-serif;
	display: inline-block;
}
a.btn-white-outline:hover{
	background-color: #FFFFFF;
    color: #01340F;
}
.banner-link { 
	gap: 12px; 
	margin-top: 30px; 
}
.banner-link a img, .banner-link a svg {
    margin-left: 4px;
    margin-top: -1px;
    width: 6px;
}
.banner-link a.btn-yellow:hover path {
    fill: #fff;
}
.banner_left {
	max-width: 535px;
	text-align: left;
	padding-bottom: 40px;
}
.banner_right {
	max-width: 450px;
	margin-left: auto;
}
.banner_right img{
	display: block;
	width: 100%;
}
.impactsbaner {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 30px;
}
.impactsbaner h5 {
	display: flex;
	align-items: center;
	font-size: 16px;
	gap: 6px;
	color: #111111;
	font-family: "Satoshi-Bold", sans-serif;
}
.impactsbaner li {
	display: flex;
	gap: 10px;
	align-items: center;
	font-family: "Satoshi-Bold", sans-serif;
	font-size: 14px;
}
.impactsbaner li img {
	display: flex;
    gap: 6px;
    align-items: center;
    font-weight: 700;
	font-family: "Satoshi-Bold", sans-serif;
}
.impactsbaner li img {
	width: 22px !important;
}

.certificate-slider .owl-dots {
    margin-top: 30px;
    text-align: center;
    display: block !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.certificate-slider .owl-stage-outer {    
	display: flex; 
	justify-content: center; 
}
.certificate-slider .owl-dots .owl-dot span{
    width: 6px;
    height: 6px;
    background: rgba(0, 46, 3, 0.3);
    display: block;
    border-radius: 50%;
    margin: 0 4px;
}
.certificate-slider .owl-dots .owl-dot.active span {
    background: #002D03;
	 width: 10px;
    height: 10px;
}

.impacts_sec { 
	background: #FEBF56; 
	padding: 30px 0px 22px; 
}
.homeabout_sec .impacts_sec { 
	background: rgba(0,0,0,0.5); 
}
.impacts_sec .impacts_box  { 
	width: 25%; 
	text-align: left; 
	position: relative; 
	margin: 0; 
}
.impacts_box:nth-child(3) .sign{
    display: none;
}
.impacts_sec .impacts_box:before { 
	    content: '';
    position: absolute;
    right: 40px;
    background: #000;
    width: 0.5px;
    height: 55px;
    top: 50%;
    transform: translateY(-50%);
}
.impacts_sec .impacts_box:last-child:before {  
	display: none; 
}
.homeabout_sec {
	background: #faf6f0;
	padding-bottom: 30px !important;
}
.homeabout_txt {
	margin-top: 35px;
    padding-left: 30px;
}
.about_titledesc p{
        font-size: 20px;
    line-height: 30px;
}
.about_titledesc p strong {
    font-family: "Satoshi-Bold", sans-serif;
	font-weight: 700;
}
.homeabout_box h6 {
	color: #1A2859;
	font-family: "Satoshi-Bold", sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1.7px;
	text-transform: uppercase;
	position: relative;
	padding-left: 10px;
}
.homeabout_box h6:before {
    content: '';
    position: absolute;
    left: 0;
        top: 6px;
    width: 5px;
    height: 5px;
    background:  #1A2859;
    border-radius: 20px;
}

.h3{
	font-size: 40px;
    line-height: 58px;
	margin-bottom: 10px;
	color: #0D408F;
	font-weight: 700;
    font-family: "Playfair Display", serif;
}
.h3 span {
    display: inline-block;
    background: #FEBF56;
    padding: 0px 10px 6px;
    line-height: 48px;
}
.homeabout_box .h3 span {
    padding: 0px 10px 8px;
}
.councelimpact {
	max-width: 982px;
	margin: 0 auto;
	flex-wrap: wrap;
	    gap: 10px;
	justify-content: center;
}
.councel_box {
	width: 23.3%;
	text-align: center;
	margin: 10px 0px;
	position: relative;
}
.councel_box:before {
	content: '';
    position: absolute;
        right: -54px;
    top: 39%;
    transform: translateY(-50%);
    width: 95px;
    height: 25px;
    background: url('../images/vector-up.png') no-repeat;
    background-size: 100%;
}
.councel_box:nth-child(even):before {
	content: '';
    position: absolute;
       right: -54px;
    top: 39%;
    transform: translateY(-50%);
    width: 95px;
    height: 25px;
    background: url('../images/vector-down.png') no-repeat;
    background-size: 100%;
}
.councel_box:nth-child(4):before, .councel_box:last-child:before {
	display: none;
}
.councel_box span {
	background: url('../images/circle.png') no-repeat;
	width: 130px;
	height: 130px;
	margin: 0 auto;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	    background-size: cover;
}
.councel_box span img {
	height: 45px;
	object-fit: contain;
}
.councel_box h5 {
	font-family: "Satoshi-Medium", sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.goal-text {
	background: #012971;
	padding: 20px 0px;
}
.goal-text p {
	margin: 0;
	    font-size: 22px;
    line-height: 32px;
}
.future-sec {
	background: #FEBF56;
}
.future-main {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
	color: #0B1F3A;
}
.future-main .h3{
	color: #0B1F3A;
	max-width: 780px;
	margin: 0 auto;
	margin-bottom: 20px;
	font-size: 46px;
}
.future-desc {
	margin-bottom: 25px;
}
.testimonial-sec {
	background: url('../images/testimonial-bg.webp') no-repeat;
	background-size: 100% 100%;
	position: relative;
	padding-bottom: 100px;
}

.testimonial-sec .title h6 {
	    color: #CB8900;
    font-family: "Satoshi-Bold", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.7px;
    position: relative;
    display: inline-block;
    padding-left: 10px;
}
.testimonial-sec .title h6:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: #CB8900;
    border-radius: 20px;
}
.testimonial-sec .title {margin-bottom: 50px;  }
.testimonial-sec .title .h3 span {
    padding: 0px 10px 7px;
}
.testimonial_box { background: #FFFFFF; border-radius: 24px; padding: 35px 25px;height: 100%;
z-index: 1;	position: relative; box-shadow: 0 0 7px rgba(0, 0, 0, 0.15); margin: 5px 0; }

.testimonial_txt {border-bottom: 1px solid #00000061; margin-bottom: 15px; padding-bottom: 30px;   }
.testimonial_txt span { border: 1px solid #D8D8D8; width: 55px; height: 55px; border-radius: 55px; 
display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.testimonial_txt span img { width: 36px !important; }
.testimonia_btm h5 { font-size: 18px; font-family: "Satoshi-Bold", sans-serif; font-weight: 700;text-transform: capitalize; }
.testimonial_txt .desc {
	overflow-y: auto;
    height: 150px;
    padding-right: 10px;
}
.testimonial_txt .desc::-webkit-scrollbar {
    width: 4px
}
.testimonial_txt .desc::-webkit-scrollbar-track {
    background: #E7E7E7;
}
.testimonial_txt .desc::-webkit-scrollbar-thumb {
    background-color: #FEBF56;
    border-radius: 5px
}

.about-sec {
	padding: 50px 0px;
	position: relative;
}

.gallery-sec {
	position: relative;
	padding-bottom: 150px;
	background: #faf6f0;
}
.gallery-sec:before {
	content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 90px;
    background: url('../images/vector3.png') no-repeat;
    background-size: 100%;
    background-position: right;
    z-index: 9;
}
.gallery-item{
    position: relative;
    transition: 0.3s all ease-in-out;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
      height: 370px;
    border-radius: 20px;
}
.gallery_slider {
    padding-left: calc((var(--screen-width) - 1300px) / 2);
}
.gallery_slider .owl-dots , .testimonial_slider .owl-dots {
    margin-top: 30px;
    text-align: center;
    display: block !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.gallery_slider .owl-dots .owl-dot span, .testimonial_slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(194, 123, 0, 0.2);
    display: block;
    border-radius: 50%;
    margin: 0 4px;
}
.gallery_slider .owl-dots .owl-dot.active span, .testimonial_slider .owl-dots .owl-dot.active span {
    background: #C37A00;
	width: 10px;
    height: 10px;
}
.gallery_slider .owl-dots , .testimonial_slider .owl-dots {
    margin: 10px 0;
    text-align: center;
    display: block !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    bottom: -50px;
    position: absolute;
    left: 0;
    right: 0;
}


#backtop { position:fixed;  right: 20px; bottom: 20px; cursor:pointer; width: 40px; height:40px; 
background-color:#ffffff; text-indent:-9999px; display:none; -webkit-border-radius:60px;
-moz-border-radius:60px; border-radius:60px; z-index: 9; border: 2px solid #012971; }
#backtop span {     position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -10px;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-bottom-color: #012971; }

.wpcf7 form.sent .wpcf7-response-output , .wpcf7 form .wpcf7-response-output{
    color: #000;
}

.contactpage_form input,
.contactpage_form select,
.contactpage_form textarea {
    background: #fff !important;
    color: #000000 !important;
    border: 1px solid #808080;
    
}

/* Autofill fix */
.contactpage_form input:-webkit-autofill,
.contactpage_form input:-webkit-autofill:hover,
.contactpage_form input:-webkit-autofill:focus,
.contactpage_form textarea:-webkit-autofill,
.contactpage_form select:-webkit-autofill {
    
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: #000 !important;
    
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}
.contactpage_form input[type=submit] {
    background: #FEBF56 !important;
    border: 0;
    padding: 16px 50px 16px;
    display: inline-block;
    font-family: "Satoshi-Bold", sans-serif;
    text-align: center;
    color: #000 !important;
    -webkit-appearance: none;
    cursor: pointer;
    border-radius: 12px;
	width: auto;
	text-transform: capitalize;
	transition: 0.3s all ease-in-out;
}
.contactpage_form input[type=submit]:hover {
    background: #000 !important;
    color: #fff !important;
}

.scroll-desc::-webkit-scrollbar {
    width: 4px
}
.scroll-desc::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
}
.scroll-desc::-webkit-scrollbar-thumb {
    background-color: #F26722;
    border-radius: 5px
}
.framework_sec {
    background: #FAF6F0;
    padding-bottom: 70px !important;
}
.framework_sec .title h6 {
	color: #1A2859;
	font-family: "Satoshi-Bold", sans-serif; 
	font-weight: 700; 
	text-transform: uppercase;
	letter-spacing: 1px;
    font-size: 13px;
}
.framework_sec .title {
        margin-bottom: 2.7rem !important;
}
.framework_sec .title h3 {
	color: #0D408F;
}
.framework_box {
	background: #FEBF5629;
	border-radius: 30px;
	padding: 40px 40px;
	width: 31.8%;
}
.framework_box:nth-child(3),.framework_box:nth-child(4),.framework_box:nth-child(6) {
    padding: 40px 25px 10px;
}
.framework_box span {
	display: block;
	margin-bottom: 15px;
}
.framework_box span img, .framework_box span svg {
	width: 48px;
}
.framework_main {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}
.framework_box:nth-child(1), .framework_box:nth-child(2){
	width: 48.8%;
}
.framework_box h5 {
	color: #0B1F3A;
	font-weight: 700;
    font-family: "Playfair Display", serif;
	margin-bottom: 20px;
	font-size: 24px;
}
.framework_box ul li {
	display: block;
	position: relative;
	padding-left: 30px;
	font-family: "Satoshi-Medium", sans-serif; 
	font-weight: 500;
	margin-bottom: 10px;
	    font-size: 16px;
}
.framework_box ul li:before {
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    bottom: 0px;
    width: 23px;
    height: 23px;
    background: url('../images/tick-arrow.svg') no-repeat;
    background-size: 100%;
    z-index: 9;
}
.showreel-item a{
	display: block;
	margin-bottom: 10px;
	position: relative;
}
.play-btn{
    position: absolute;
    top: 50%;
    left:0;
	right: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s;
	margin: 0 auto;
}
.play-btn svg{ 
	width: 40px;
	height: 40px;
}
.showreel-item {
	margin-bottom: 20px;
	border-radius: 30px;
}
.showreel-carousel h4{
	color: #111111;
	font-family: "Satoshi-Bold", sans-serif;
	font-weight: 700;
	font-size: 18px;
}
.podcast_sec {
	background: #faf6f0;
}
.showreel-item img {
	border-radius: 30px;
	    border: 1px solid #0074BB;
}
.showreel-carousel .owl-stage-outer{
    overflow: visible;
}

.showreel-carousel .owl-item{
    transform: scale(.9);
    transition: all .4s ease;
}

.showreel-carousel .owl-item.center{
    opacity: 1;
    transform: scale(1);
}

.showreel-carousel .owl-item.center .showreel-item{
    box-shadow: 0 15px 40px rgba(0,0,0,.2);
}
.showreel-carousel .owl-item .showreel-item img {
    height: 380px !important;
    object-fit: cover;
}
.showreel-carousel .owl-item.center .showreel-item img {
    height: 450px !important;
     object-fit: cover;
}
.programs_sec {
	background: url('../images/programs-bg.webp') no-repeat;
    background-size: 100% 100%;
}
.programs_main {
	display: flex;
	gap: 66px;
	padding-top: 45px;
}
.programs_sec .title {
	max-width: 311px;
	margin: 0 auto;
	margin-bottom: 70px;
}
.programs_box{
    position: relative;
}
.programs_border {
	border-top: 1px solid #FFFFFF29;
}
.programs_box::before{
    content: '';
    position: absolute;
    left: 0;
    top: -55px;
    width: 21px;
    height: 21px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background: #fff;
}

.programs_box::after{
        content: '';
    position: absolute;
    left: 6px;
    top: -49px;
    width: 9px;
    height: 9px;
    background: #FEBF56;
    border-radius: 50%;
}
.programs_box h5 {
	color: #FFFFFF;
	font-family: "Satoshi-Bold", sans-serif; 
	font-weight: 700;
	margin-bottom: 10px;
}
.programs_box {
	width: 24.3%;
}
.programs_box p{
	color: #FFFFFF;
}
.podcast_box h6 {
	color: #1A2859;
	font-family: "Satoshi-Bold", sans-serif; 
	font-weight: 700; 
	text-transform: uppercase;
	position: relative;
    padding-left: 10px;
    font-size: 13px;
	letter-spacing: 1.7px;
}
.podcast_box h6:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: #1A2859;
    border-radius: 20px;
}
.podcast_txt  {
	padding-top: 50px;
}
.topic_title  {
	border-top: 1px solid #949494;
	padding-top: 40px;
	margin-bottom: 50px;
}
.topic_title h5{
	font-weight: 700;
    font-family: "Playfair Display", serif;
	font-size: 26px;
	margin-bottom: 20px;
}
.topic_title ul {
	display: flex;
	gap: 10px;
	justify-content: center;
}
.topic_title ul li {
	background: #0D408F1A;
	padding: 4px 16px;
	color:#0D408F;
	font-family: "Satoshi-Bold", sans-serif; 
	border-radius: 30px;
	font-weight: 700; 
	display: inline-block;
}
.latest_sec h5{
	font-weight: 800;
    font-family: "Playfair Display", serif;
	font-size: 25px;
	margin-bottom: 40px;
}
.publication_sec {
	background: #fbf0df;	
	position: relative;
}
.publication_sec:before {
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    bottom: 0px;
    width: 100%;
    height: 223px;
    background: url('../images/public-bg.png') no-repeat;
    background-size: 100% 100%;
}
.publication_main  {
	gap: 70px;
	margin-bottom: 30px;
}
.publication_image {
	height: 300px;
	position: relative;
    left: 68px;
}
.publication_box:nth-child(3) .publication_image {
	left: 45px;
}
.publication_link a.btn-yellow {
        padding: 18px 20px;
}
.publication_image img {
	object-fit: contain;
    width: 100%;
    height: 100%;
}
.publication_sec h6 {
    color: #111111;
    font-family: "Satoshi-Bold", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.7px;
	margin-bottom: 10px;
	font-size: 13px;
}
.publication_box h6 {
    font-size: 19px;
     text-transform: capitalize;
     letter-spacing: 0;
}

.publication_sec p strong {
	font-family: "Satoshi-Bold", sans-serif;
    font-weight: 700;
}
.publication_link a img , .publication_link a svg {
	margin-left: 4px;
	margin-top: -1px;
	    width: 6px;
}
.publication_link a.btn-yellow:hover path {
    fill: #fff;
}
.whychose_sec {
	background: #faf6f0;
}
.whychose_sec .title {
    margin-bottom: 2.5rem !important;
}
.whychose_sec .title h6 {
    color: #CB8900;
    font-family: "Satoshi-Bold", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
	letter-spacing: 1.7px;
    position: relative;
    display: inline-block;
    padding-left: 10px;
}
.whychose_sec .title h6:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: #CB8900;
    border-radius: 20px;
}
.whychose_main {
	display: flex;
	gap: 10px;
}
.whychose_box {
	background: #FFFFFF;
	border-radius: 33px;
	padding: 45px 11px 20px 30px;
	width: 25%;
}

.whychose_box span{
	background: #FEBF56;
	border: 2px solid #FEBF56;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 100px;
	margin-bottom: 40px;
}

.whychose_box span img, .whychose_box span svg{
	width: 35px;
}
.whychose_box h6 {
	color: #000000;
	margin-bottom: 20px;
	font-family: "Satoshi-Medium", sans-serif; 
	font-weight: 500;
	font-size: 18px;
}
.whychose_box:hover {
	background: #012E6A;
	transition: 0.3s all ease-in-out;
}
.whychose_box:hover span {
	border: 2px solid #FFFFFF;
	background: transparent;
}
.whychose_box:hover h6, .whychose_box:hover P {
	color: #FFFFFF;
}
.whychose_box:hover span svg path{
	fill: #FFFFFF;
}
.founder_sec {
	background: #faf6f0;
	position: relative;
	padding-top: 150px;
	padding-bottom: 90px;
}
.founder_sec:before {
	content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 123px;
    background: url('../images/vector4.png') no-repeat;
    background-size: 100%;
    z-index: 9;
}
.founder_sec .title{
	padding: 0px 40px;
	margin-bottom: 40px;
}
.founder_sec .title h3{
	margin-bottom: 15px;
}
.founder_box {
	background: #1A2859;
	border-radius: 20px;
	display: flex;
	overflow: hidden;
	align-items: flex-end;
	max-width: 1000px;
	margin: 0 auto;
}
.founder_image{
	width: 300px;
	position: relative;
}
.founder_image:before{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90%;
    height: 120%;
    background: #FEC157;
}
.founder_image img {
	position: relative;
}
.founder_text {
	width: calc(100% - 300px);
}
.founder_top {
	padding: 40px 40px 40px 25px;
}
.founder_text h4 {
	color: #FFFFFF;
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
}
.founder_text h6 {
	color: #FEC157;
	text-transform: uppercase;
	font-family: "Satoshi-Bold", sans-serif; 
	font-weight: 700;
	letter-spacing: 1.5px;
	margin-bottom: 6px;
	font-size: 13px;
}
.founder_text span {
	color: #FEC157;
	font-family: "Satoshi-Bold", sans-serif; 
	font-weight: 700;
	font-weight: 500;
	margin-bottom: 6px;
	display: block;
	font-size: 12px;
	margin-bottom: 30px;
	text-transform: capitalize;
}
.founder_text p {
	color: #FFFFFFC4;
	margin-bottom: 20px;
}
.founder_text ul {
    display: flex;
    gap: 8px;
	flex-wrap: wrap;
}
.founder_text ul li {
    background: #C9972A1A;
    padding: 8px 8px;
    color: #C9972A;
    font-family: "Satoshi-Bold", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    font-size: 11px;
}
.founder_btm {
	background: #FEBF56;
	padding: 12px 20px;
	    border-radius: 10px 0 0 0;
}
.founder_btm p {
	color: #111111;
	margin: 0;
	font-family: "Satoshi-Medium", sans-serif;
    font-weight: 500;
}
.founder_btm p strong {
	font-family: "Satoshi-Bold", sans-serif;
    font-weight: 700;
}
/**********nav-icon**********/
.nav-icon { display: none; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: .5s ease-in-out; -moz-transition: .5s ease-in-out; -o-transition: .5s ease-in-out; transition: .5s ease-in-out; cursor: pointer;	z-index: 9;	width: 24px;
 height: 20px; position: absolute; top: 25px; right: 33px;  border-radius:4px; }
.nav-icon span{display: block; position: absolute; height: 2px; background: #000; opacity: 1; left: 6px; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg);
-o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: .25s ease-in-out; -moz-transition: .25s ease-in-out;	-o-transition: .25s ease-in-out; transition: .25s ease-in-out;}
.nav-icon span:nth-child(1) 	{ top: 0px;	width:24px; right: 0px;	left: auto;}
.nav-icon span:nth-child(2)	{top: 8px; width:24px;  right: 0px;  left: auto;}
.nav-icon span:nth-child(3)	 { top: 16px; width:24px;  right: 0px;  left: auto;}
.nav-icon.open span:nth-child(1){top: 8px;    right: 0px; -webkit-transform: rotate(135deg);	-moz-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg);}
.nav-icon.open span:nth-child(2){ 	opacity: 0; }
.nav-icon.open span:nth-child(3){top: 10px;-webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); -o-transform: rotate(-135deg);transform: rotate(-135deg);    right: 0px;  top: 8px;	}

.pos-rel { position: relative; }
.top-scroll { position: absolute; top: 30px; left: 0;}



/*****resposnive*****/
@media (min-width: 1850px) {
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1776px;
}
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1180px;
    }
}
@media (max-width: 1849.9px) {
.testimonial_slider {  
	padding-left: calc((var(--screen-width) - 1300px) / 2); 
}
}
@media (max-width: 1439px) {
    .testimonial_slider, .newtimeline-carousel {
        padding-left: calc((var(--screen-width) - 1120px) / 2);
    }
	.gallery-filter button {
    padding: 9px 18px 11px;
    font-size: 18px;
	}
}
@media (max-width: 1399px) {
    .gallery_slider {
        padding-left: calc((var(--screen-width) - 1140px) / 2);
    }
}
@media (max-width: 1365px) {
.item-3 .process-image {
    margin-left: 44px;
}
}
@media (max-width: 1279px) {
.header .container, .container { max-width: 95%; }
.framework_box span img {
    width: 54px;
}
.framework_box {
    width: 31.7%;
}
.topic_title ul li {
    padding: 10px 15px;
}
.banner_main h3 {
    font-size: 40px;
}
.banner_main h3 span {
    line-height: 42px;
}
.banner_img img {
    height: 630px;
}
.banner_main:before {
    height: 475px;
}
.h3 {
    font-size: 36px;
    line-height: 50px;
}
}
@media (max-width: 1179px) {
    .gallery_slider {
        padding-left: calc((var(--screen-width) - 980px) / 2);
    }
.whychose_box span {
    margin-bottom: 25px;
}
.whychose_box {
    padding: 30px 19px;
}
    .topic_title ul li {
        padding: 9px 9px;
        font-size: 14px;
    }
    .framework_box span svg {
        width: 45px;
    }
    .framework_box:nth-child(1), .framework_box:nth-child(2) {
    width: 48.6%;
}
    .framework_box {
        width: 31.4%;
            padding: 30px 24px;
    }
    .header_contact span {
    font-size: 15px;
}
.banner_main h3 {
    font-size: 44px;
}
.banner_main:before {
    height: 430px;
}
.programs_main {
    gap: 36px;
}
}
@media (max-width: 1079px) {
    .nav-menu {
    gap: 20px;
    }
.header .container { max-width: 95%; }
.container {  max-width: 95%;  }
.header_contact span {
    font-size: 14px;
}
.h3 {
    font-size: 36px;
    line-height: 51px;
    }
    .homeabout_box .h3 span {
    padding: 0px 10px 0;
}
    .homeabout_txt {
        margin-top: 20px;
    }
        .gallery_slider {
        padding-left: calc((var(--screen-width) - 900px) / 2);
    }
    .banner_main:before {
        height: 380px;
    }
    .impacts_sec .impacts_box:before {
    right: 25px;
    }
    .h3 {
        font-size: 32px;
        line-height: 48px;
    }
    .about_titledesc p {
    font-size: 18px;
    line-height: 28px;
}
.councel_box span {
    width: 110px;
    height: 110px;
}
.goal-text p {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
}
}
@media (max-width: 991.9px) {
body {
    overflow-x: hidden;
}
.navbar {
    padding: 0;
    background: #000;
}
    .header .container {
        position: relative;
    }
.header-main {
    padding-right: 40px;
}
.nav-menu {display:none; position:fixed; top: 78px; left:0;width: 100%; right:0;float:none;z-index:9999; 
background: #000000;  transition: all 0.3s ease-in-out;-webkit-transition: all 0.3s ease-in-out;-moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out;-o-transition: all 0.3s ease-in-out; padding: 0px; width: 100%; max-width: 100%; border: 0; border-radius: 0;  padding-bottom: 15px; }
nav ul {width: 100%;max-width: 100%;  display: block; justify-content: normal;    margin-top: 0;  padding: 0px;}
nav ul li {display: block;  float: none;  margin: 0; text-align: left; padding: 8px 40px; }
nav ul li:last-child{border:0px;}
nav ul li:not(:last-child) { margin-right: 0; }	
.nav-icon{display:block;  top: 9px; right: 0px; }
.nav_bg { position: absolute; right: 0; top: 0; border: 0; }
body.open { overflow: hidden; }
.open .nav-menu {display:block;  top: 38px; }
.stick .open .nav-menu {
               top: 0px;
    }
.logo:before { display: none; }
.navbar-collapse { padding: 0; }
.stick .nav-menu  { position: absolute;  top: 0px;}
.nav-icon {
        display: block;
        top: 3px;
        right: 21px;
    }
.comon-padd {  padding: 45px 0px;}
.form div.halfs { display: block;}
.footer_links ul { column-count: 2;}
.footer_links ul li { margin-bottom: 9px;}
.header.stick .navbar-collapse { box-shadow: none;}
.header_contact span span { display: none; }
    .banner_main h3 {
        font-size: 32px;
    }
    a.btn-outline , a.btn-yellow{
    padding: 16px 22px;
    }
        .banner_main:before {
        height: 290px;
    }
    .numcont p {
    font-size: 32px;
    line-height: 32px;
    }
    .h3 {
    font-size: 32px;
    line-height: 42px;
    }
    .homeabout_txt {
    margin-top: 10px;
}
.mb-3 {
    margin-bottom: 5px !important;
}
.mb-5 {
    margin-bottom: 1.4rem !important;
}
.councel_box {
    margin: 20px 0px;
}
.councel_box span {
    width: 100px;
    height: 100px;
}
.councel_box {
    width: 23.9%;
}

.councel_box:before {
    right: -39px;
    top: 37%;
    width: 65px;
    height: 19px;
}
.councel_box:nth-child(even):before{
    right: -39px;
    top: 37%;
    width: 65px;
    height: 19px;
}
.framework_box:nth-child(1), .framework_box:nth-child(2), .framework_box {
        width: 48.1%;
    }
    .header_contact {
    gap: 15px;
}
    .social-media a img {
    width: 19px;
    }
.programs_main {
    gap: 20px;
}

.podcast_txt {
    padding-top: 10px;
}
.podcast_txt p {
    margin-bottom: 10px;
}
.topic_title h5 { margin-bottom: 15px !important; }
.topic_title ul { flex-wrap: wrap; }    
.topic_title {
    padding-top: 25px;
}
.publication_image {
    height: 260px;
    left: 48px;
}
.publication_box:nth-child(3) .publication_image {
    left: 27px;
}
.whychose_main  { flex-wrap: wrap; }
.whychose_box { width: 48.6%; }   
.founder_sec {
    padding-top: 85px !important;
}
.founder_box  { flex-wrap: wrap; }
.founder_text {
    width: 100%;
}
    .gallery_slider {
        padding-left: calc((var(--screen-width) - 680px) / 2);
    }
    .gallery-sec {
    padding-bottom: 130px !important;
    }
    .gallery-sec:before {
    height: 59px;
    }
    .footer-row {
      padding-bottom: 20px;
    }
    .footer-btmain {
       flex-wrap: wrap;
       justify-content: center;
    }
    .testimonial_box {
     padding: 28px 28px;
    }
    .founder_text span {
        margin-bottom: 15px;
    }
    .showreel-carousel h4 {
    font-size: 16px;
}
.banner_main h3 span {
    padding: 0px 10px 3px;
}
.about_title p br { display: none; }
.future-main .h3 {
    font-size: 32px;
}
.contact_box .social-media a {
    width: 45px;
    height: 45px;
}
.banner:before {
    height: 110px;
        top: 20px;
}
.impacts_box h5 {
    font-size: 14px;
}
.impactswrap  {
    gap: 10px;
}
.impacts_sec .impacts_box:before {
  display: none;
}
.publication_main {
    gap: 30px;
}
.showreel-carousel .owl-item .showreel-item img {
     height: 230px !important;
}
 .showreel-carousel .owl-item.center .showreel-item img {
         height: 250px !important;
    }
}
@media (max-width: 767.9px) {
    .container, .header .container {
        max-width: 100%;
    }
        .comon-padd {
        padding: 30px 0px;
    }
.banner_inn {
    flex-wrap: wrap;
}
.header_contact span a.phone1 , .header_contact span a.phone2, .header_contact span a.mail{
    display: none;
}
.banner:before {
    height: 95px;
}
    .banner_main h3 span {
        line-height: 34px;
    }
    .councel_box span img {
    height: 38px;
    }
.banner_img img {
        height: 330px;
    }
.banner_main {
    position: relative;
    margin-top: -240px;
}
.logo {
        width: 150px;
    }
    a.btn-outline, a.btn-yellow {
        padding: 13px 22px;
    }
    .banner_right {
    max-width: 290px;
    margin: 0 auto;
}
.impactswrap {
    flex-wrap: wrap;
    justify-content: center;
}
.impacts_sec {
    padding: 20px 0px;
}
 .impacts_sec .impacts_box {
    padding: 6px 10px;
    width: 31%;
}   
.councel_box {
        width: 31.9%;
    }
.councel_box:nth-child(3):before , .councel_box:nth-child(6):before {
    display: none;
}
.councel_box:nth-child(4):before{
	display: block;
}
.goal-text {
    padding: 22px 0px;
}
.framework_main {
    flex-wrap: wrap;
        gap: 20px;
}
.framework_box:nth-child(1), .framework_box:nth-child(2), .framework_box {
        width: 100%;
    }
.programs_sec .title .h3{
    margin-bottom: 10px !important;
}
.programs_main {
    flex-wrap: wrap;
        padding-top: 0;
        padding-left: 20px;
}
.programs_box p {
    margin-bottom: 10px;
}
.podcast_txt p:last-child {
    margin-bottom: 0;
}
.programs_box {
    width: 100%;
}
.programs_box::before {
    left: -35px;
    top: 3px;
}
.programs_box::after {
    content: '';
    position: absolute;
    left: -29px;
    top: 9px;
}
.programs_border {
    border: 0;
}
 .programs_sec .title {
    margin-bottom: 30px;
}
.podcast_txt {
        padding-top: 0;
    }
.banner-link {
    margin-top: 15px;
}
.homeabout_sec .mb-5 {
    margin-bottom: 0.5rem !important;
}
.councel_box:last-child{
    margin-bottom: 0;
}
.framework_box {
        padding: 15px 24px;
    }
.topic_title {
    margin-bottom: 30px;
}
.latest_sec h5 {
    margin-bottom: 25px;
}
.showreel-carousel .owl-item {
    transform: scale(.9);
}
.publication_main  {
    flex-wrap: wrap;
        margin-bottom: 10px;
        gap: 20px;
}
.publication_box {
    width: 100%;
}
.publication_image {
        height: 240px;
        left: 63px;
        margin-bottom: 10px;
    }
    .whychose_box {
        width: 48.1%;
    }
    .contact_sec .title p:last-child {
        margin: 0;
    }
    .contact_box {
    margin-bottom: 30px;
}
.contact_box p {
    margin-bottom: 22px;
}
 .gallery_slider {
        padding-left: 40px;
    }   
        .gallery-sec:before {
        height: 47px;
    }
    .testimonial-sec .title {
    margin-bottom: 30px;
}
.footer_contact { flex-wrap: wrap; gap: 15px; padding: 18px 30px;}
.gallery-item img {
    height: 270px;
}
.future-main .h3 {
        font-size: 26px;
        line-height: 36px;
    }
.contact_box .social-media a img, .contact_box .social-media a svg {
    width: 22px;
}
.framework_box:nth-child(3), .framework_box:nth-child(4), .framework_box:nth-child(6) {
    padding: 20px 25px 10px;
}
    .goal-text p {
         font-size: 14px;
        line-height: 22px;
    }
    .about_titledesc p {
        font-size: 14px;
        line-height: 22px;
    }
    .homeabout_txt {
    padding-left: 0;
}
.framework_sec .title {
    margin-bottom: 1.5rem !important;
}
.publication_box:nth-child(2) .publication_image {
        left: 56px;
    }
.publication_box:nth-child(3) .publication_image {
        left: 40px;
    }
   .founder_image {
    width: 100%;
   }
   .founder_image:before {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.founder_image img {
    width: 280px;
    margin: 0 auto;
    display: block;
}
#backtop {
    right: 15px;
    bottom: 4px;
    width: 35px;
    height: 35px;
}
.footer {
    padding-bottom: 10px;
}
.contactpage_form input[type=submit] {
    padding: 14px 35px;
}
.testimonial-sec {
    padding-bottom: 70px;
}
.footer-logo {
    padding: 0px 30px;
}
.footer-btmain {
        padding: 0px 30px;
    }
    .h3 {
        font-size: 30px;
        line-height: 42px;
    }
        .header_contact {
        gap: 8px;
    }
.header_contact span img {
    width: 24px;
}
.latest_sec {
    margin: 0px 20px;
}
.latest_sec h5 {
    font-size: 22px;
}
.showreel-carousel .owl-item .showreel-item img {
     height: auto !important;
}
 .showreel-carousel .owl-item.center .showreel-item img {
         height: auto !important;
    }
    .showreel-item img {
    border-radius: 20px;
    }
    .framework_box ul li {
    font-size: 14px;
}
.framework_box h5 {
    font-size: 22px;
}
        nav ul li {
        padding: 8px 30px;
    }
}
@media (max-width: 575.9px) {
    .whychose_box {
        width: 100%;
    }
    .founder_sec .title {
    padding: 0;
    margin-bottom: 25px;
}
    .councel_box {
        width: 47.9%;
    }
    .councel_box:before, .councel_box:nth-child(4):before {
        display: none;
    }
    .gallery_slider {
        padding-left: 20px;
    }
    .gallery-sec {
        padding-bottom: 100px !important;
    }
    a.btn-outline, a.btn-yellow {
    border-radius: 10px;
    }
    .whychose_box p:last-child { margin-bottom: 0; }
    .founder_sec {
        padding-top: 60px !important;
    }
    .founder_top {
    padding: 35px 20px 35px 20px;
}
.contact_box {
    padding: 26px 21px;
}
.footer {
    padding: 25px 0 0;
}
.footer-btmrow {
    padding: 0 0px 25px;
}
.footer-logo img {
    margin-bottom: 10px;
}
    a.btn-outline, a.btn-yellow {
        padding: 12px 14px;
    }
    .banner_main h3 {
        margin-bottom: 15px;
    }
        .banner:before {
        height: 70px;
    }
    .banner_left {
    padding-bottom: 15px;
}
.impactsbaner li img {
    width: 23px !important;
}

}
@media (max-width: 479.9px) {
.gallery-sec:before {
        height: 32px;
    }

    .footer-btmrow p { margin-bottom: 10px; }
    .footer-btmain ul li a {
    font-size: 15px;
}
    .h3 {
        font-size: 26px;
        line-height: 36px;
    }
      nav ul li {
        padding: 8px 25px;
    }
    }
@media (max-width: 374.9px) {
.impacts_sec .impacts_box {
        width: 50%;
    }
    }


