/* BASIC SETUP */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --indigo: #213a72;
  --grey-dark: #2c3541;
  --grey-light: #A0B0C5;
  --light-blue: #f3f6f9;
  --golden: #e6c262;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
@font-face {
  font-family: 'athleticsbold';
  src: url('../webfonts/athletics_bold-webfont.woff2') format('woff2'),
  url('../webfonts/athletics_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'athleticsextrabold';
  src: url('../webfonts/athletics_extrabold-webfont.woff2') format('woff2'),
  url('../webfonts/athletics_extrabold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
a{
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.heading {
  color: var(--indigo);
  font-weight: bold;
}
.heading-white {
  color: white;
  font-weight: bold;
  font-size: 42px;
}
.heading-form {
  font-size: 32px;
  font-family: 'athleticsbold';
}
.description {
  color: var(--grey-dark);
}
.description-white {
  color: white;
  font-size: 16px;
}
.heading-large {
  font-size: 72px;
  font-family: 'athleticsextrabold';
}
.heading-medium {
  font-size: 42px;
  font-family: 'athleticsbold';
}
.heading-small {
  font-size: 36px;
  font-family: 'athleticsbold';
}
h1,h2,h3,h4{color:#213a72}
.description-large {
  font-size: 24px;
}
.description-medium {
  font-size: 16px;
}
.description-small {
  font-size: 14px;
}
.btn-primary {
  background: var(--indigo);
  color: white;
  padding: 20px 50px;
  font-size: 18px;
  border-radius: 12px;
  border-color: var(--indigo);
}
.btn-primary:hover {
  background: var(--grey-dark);
  border-color: var(--grey-dark);
}
.btn-outline-primary {
  color: var(--grey-dark);
  padding: 20px 50px;
  font-size: 18px;
  border-radius: 12px;
  border-color: var(--grey-light);
}
.btn-outline-primary:hover {
  background: var(--grey-dark);
  border-color: var(--grey-dark);
}
.btn-sm {
  background: var(--indigo);
  padding: 15px 35px;
  color: white;
  font-size: 16px;
}
.btn-secondary {
  background: var(--indigo);
  color: white;
  font-size: 16px;
  padding: 15px;
  border-radius: 12px;
}
.btn-secondary:hover {
  background: var(--grey-dark);
}
.btn-outline-secondary {
  border-color: var(--grey-dark);
  font-size: 14px;
  padding: 10px 20px;
  color: var(--grey-dark);
  margin-left: 10px;
}
.btn-success {
  background: var(--golden);
  color: white;
  font-size: 16px;
  padding: 15px 35px;
  border-radius: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-color: var(--golden);
}
.btn-success:hover {
  background: var(--light-blue);
  color: var(--indigo);
  border-color: var(--light-blue);
}
.btn-light {
  background: white;
  color: var(--indigo);
  font-size: 16px;
  padding: 15px 35px;
  border-radius: 12px;
  border-color: white;
}
.btn-light:hover {
  background: none;
  color: var(--light-blue);
}
.swiper-slide{
  height: auto;
}
.swiper-button-next,
.swiper-button-prev{
  width: 50px;
  height: 50px;
  background-color: #E3E6E9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 150px;
  font-size: 18px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.swiper-button-next:after,
.swiper-button-prev:after{
  font-weight: bold;
  color: #213A72;
  font-size: 18px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover{
  background-color: var(--indigo);
}
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after{
  color: var(--light-blue);
}
.swiper-navigation-top-right{
  position: absolute;
  top: -40px;
  width: 100%;
  text-align: right;
}
.swiper-navigation-top-right .swiper-button-prev,
.swiper-navigation-top-right .swiper-button-next,
.swiper-navigation-bottom-center .swiper-button-prev,
.swiper-navigation-bottom-center .swiper-button-next{
  position: relative;
  right: auto;
  left: auto;
}
.swiper-navigation-bottom-center{
  position: relative;
  top: 30px;
  width: 100%;
  text-align: center;
}
@media (max-width: 991px){
  .swiper-navigation-top-right {
    position: relative;
    top: 30px;
    width: 100%;
    text-align: center;
  }
}
/* NAVBAR CSS */
header {
  padding-left: 15px;
  padding-right: 15px;
}
.navbar-brand img{width: 136px;}
nav .navbar-nav > .nav-item {
  margin-right: 7px;
}
nav .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  color: var(--grey-dark);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav .navbar-nav .dropdown-menu .nav-link {font-size: 14px;border-radius: 0;}
nav .navbar-nav .dropdown-menu .active .nav-link {    background: #F3F6F9;
    color: #213a72;
    font-weight: 500;}
nav .navbar-nav .nav-item .nav-link:hover {
  background: var(--indigo);
  color: white;
}
nav .nav-mobile {
  display: none;
}
.nav-right .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav-right .navbar-nav .nav-item .nav-link {
  color: var(--indigo);
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-right .navbar-nav .nav-item .nav-link:hover {
  color: var(--grey-dark);
  background: none;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: var(--indigo);
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link{
  color: #fff;
}
@media (max-width: 1199px) {
  .nav-right .navbar-nav {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  nav .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  nav .navbar-nav .nav-link {
    padding: 10px;
    margin-right: 0;
  }
  nav .navbar-nav .nav-link:hover {
    background: var(--indigo);
  }
  nav .nav-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px 0;
    margin-bottom: 10px;
  }
  nav .navbar-nav .nav-item {
    text-align: left;
    margin-right: 0px !important;
    width: 100% ;
  }
  nav .nav-mobile .nav-item{
   width: auto;
 }
 #nav-mobile{
  background-color: rgb(230, 238, 255);
  border-radius: 10px;
  padding: 15px;
}
.navbar-toggler:focus{
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar-light .navbar-toggler:focus,
.navbar-light .navbar-toggler:hover {
  background-color: transparent;
}
.navbar-light .navbar-toggler {
  border: none;
}
.navbar-toggler span.icon-bar {
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}
.navbar-toggler span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}
.navbar-toggler span:nth-child(3) {
  opacity: 0;
}
.navbar-toggler span:nth-child(4) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}
.navbar-toggler.collapsed span:nth-child(2),
.navbar-toggler.collapsed span:nth-child(4) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.navbar-toggler.collapsed span:nth-child(3) {
  opacity: 1;
}
.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #000;
  margin-top: 4px;
}
}
/* HERO CSS */
.hero .description-large {
  margin-top: 30px;
  margin-bottom: 37px;
}
.hero .hero-btns {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
}
.hero .hero-btns .btn-primary {
  margin-right: 30px;
}
@media (max-width: 991px) {
  .hero {
    text-align: center;
  }
}
@media (max-width: 460px) {
  .hero .hero-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-bottom: 37px;
  }
  .hero .hero-btns .btn-primary {
    margin-right: inherit;
    margin: 15px 0px;
  }
}
/* ABOUT PROJECT CSS */
.about {
  position: relative;
}
.about:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 70%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color:#F3F6F9;
  z-index: -1;
}
.about .content {
  margin: 0 64px;
}
.about .content .description-medium {
  margin-top: 32px;
}
.about .content .btn-sm {
  margin-top: 32px;
}
@media (max-width: 991px) {
  .about {
    text-align: center;
    background: var(--light-blue);
  }
  .about:before{
    content: none;
  }
  .about .content {
    margin-top: 36px;
  }
}
/* NEWS CSS */
.news {
  background: var(--light-blue);
}
.news-slider-blk{
  position: relative;
}
.news-slider-container .swiper-slide{
  padding: 15px;
}
.news-slide {
  border-radius: 17px;
  border: none;
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.16);
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  height: 100%;
}
.news .card .card-img-top {
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
	height: 190px;
    object-fit: cover;
}
.news .card .card-title, .news .card .card-title a {
  color: var(--indigo);
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
-webkit-line-clamp: 3;
overflow: hidden;
-webkit-box-orient: vertical;   
}
.news .card .card-text {
  color: var(--grey-dark);
  font-size: 14px;
}
/* About Us CSS */
.aboutUs .about-content {
  margin: 0 64px;
}
@media (max-width: 991px) {
  .aboutUs {
    text-align: center;
  }
  .aboutUs .img-fluid {
    margin-top: 40px;
  }
}
/* Report CSS */
.report-content {
  background: var(--indigo);
  padding: 45px 65px;
  border-radius: 17px;
}
.report-content .description-white {
  margin-top: 25px;
}
.buttons-report {
  margin-top: 30px;
}
.report-content .buttons-report .btn-success {
  margin-right: 23px;
}
@media (max-width: 991px) {
  .report-content {
    text-align: center;
  }
}
/* FUNDERS CSS */
.funder-swiper-blk{
  position: relative;
}
.funder-slider-container .swiper-slide {
  padding: 15px;
}
.funders .card {
  background: var(--light-blue);
  border-radius: 20px;
  padding: 35px 0 15px 0;
  border: none;
  height: 100%;
}
.funders .card .card-title, .funders .card .card-title a,.partners-swiper-blk  .card .card-title,.partners-swiper-blk  .card .card-title a{
  font-size: 18px;
  font-weight: bold;
  color: var(--indigo);
  margin-top: 25px;
}
.funders .card .card-text {
  font-size: 14px;
  color: var(--grey-dark);
  margin-top: 25px;
}
.card-link {
  text-decoration: none;
  color: var(--indigo);
  margin: 32px 25px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  padding: 5px 10px;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.card-link::before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: var(--indigo);
  z-index: -1;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  border-radius: 4px;
}
.card-link:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.card-link:hover{
  color: #fff;
}
.funders .fund-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* PARTNERS CSS */
.partners {
  position: relative;
}
.partners:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--light-blue);
  z-index: -1;
}
.partners-slider-container .swiper-slide {
  padding: 15px;
}
.partners .card {
  background: white;
  border-radius: 20px;
  padding: 35px 0 15px 0;
  border: none;
  height: 100%;
  -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}
.partners .card .card-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--indigo);
  margin-top: 25px;
}
.partners .card .card-text {
  font-size: 14px;
  color: var(--grey-dark);
  margin-top: 25px;
}
.partners .fund-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media(max-width: 991px){
  .partners:before{
    content: none;
  }
  .partners {
    background: var(--light-blue);
  }
}
/* TEAMS CSS */
.teams-slider-container .swiper-slide{
  padding: 15px;
}
.teams .card {
  border-radius: 17px;
  margin-top: 20px;
  -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
  border: none;
}
.teams .card .card-title {
  color: var(--indigo);
  font-size: 20px;
  font-weight: bold;
}
.teams .card .card-text {
  color: var(--grey-dark);
  font-size: 16px;
}
.teams .card .card-img-top {
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
}
/* BLOG CSS */
.blog{
  background: var(--light-blue);
}
.blog-slider-container .swiper-slide {
  padding: 15px;
}
.blog .card {
  border-radius: 17px;
  border: none;
  -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}
.blog .card .card-img-top {
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
	height: 190px;
    object-fit: cover;
}
.blog .card .card-title, .blog .card .card-title a {
  color: var(--indigo);
  font-size: 20px;
  font-weight: bold;
	display: -webkit-box;
-webkit-line-clamp: 3;
overflow: hidden;
-webkit-box-orient: vertical;   
}
.blog .card .card-text {
  color: var(--grey-dark);
  font-size: 14px;
}
/* TESTIMONIALS CSS */
.testimonials .img-fluid {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.testimonials .testimonial-name {
  font-size: 18px;
  color: var(--indigo);
  font-weight: bold;
}
.testimonials .testimonial-description {
  font-size: 14px;
  color: var(--indigo);
}
/* FOOTER CSS */
.footer {
  margin-bottom: 0;
  background: -o-linear-gradient(bottom, #f3f6f9 454px, #fff 50%);
  background: linear-gradient(360deg, #f3f6f9 454px, #fff 50%);
  text-align: left;
}
.footer .footer-logo-text {
  font-weight: bold;
  font-size: 16px;
  color: var(--indigo);
}
.footer .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.footer .social-icons li {
  list-style: none;
}
.footer .social-icons li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  color: var(--indigo);
  margin: 10px;
}
.footer .fg-2 li {
  list-style: none;
  margin-bottom: 20px;
}
.footer .fg-2 li i {
  color: var(--indigo);
  font-size: 30px;
}
.footer .fg-2 li .footer-link {
  color: var(--indigo);
  font-size: 18px;
  font-weight: 300;
}
::-webkit-input-placeholder {
  color: var(--light-blue) !important;
  opacity: 0.5;
}
::-moz-placeholder {
  color: var(--light-blue) !important;
  opacity: 0.5;
}
:-ms-input-placeholder {
  color: var(--light-blue) !important;
  opacity: 0.5;
}
::-ms-input-placeholder {
  color: var(--light-blue) !important;
  opacity: 0.5;
}
::placeholder {
  color: var(--light-blue) !important;
  opacity: 0.5;
}
.footer .form {
  background: var(--indigo);
  padding: 40px;
  border-radius: 38px;
}
.footer .form .form-outline .form-control {
  background: none;
  color: var(--light-blue);
  font-size: 18px;
  font-weight: 100;
  border-color: #A0B0C5;
  border-radius: 10px;
}
.footer .form .form-outline .form-control:not(textarea){
  height: 56px;
}

/* Additional Css*/
.testimonials .img-fluid{width:77px;height:77px;object-fit:cover;border-radius:100px;}
.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    position: absolute;
    vertical-align: .255em;
    border-top: 0.26em solid;
    border-right: 0.26em solid transparent;
    border-left: 0.26em solid transparent;
    right: 0;
    text-indent: -3222px;
    top: 18px;
    right: 0px;
}
.part-listing .teams .card{height:100%;}
.part-listing  .swiper-slide_{margin-bottom: 50px !important;}
.part-listing  .image_wrap img{    height: 141px;
    object-fit: contain;
    padding-top: 15px;}
.home-partner .card > a > img{    height: 110px;mix-blend-mode: multiply;
    object-fit: contain;}
/* Additional Css*/
@media (min-width: 1200px){
.navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.8rem;
    padding-left: .8rem;
}}
@media (max-width: 991px) {
  .footer {
    background: var(--light-blue);
  }
}
@media (max-width: 1400px) {
  .heading-large {
    font-size: 52px;
  }
  .heading-medium, .heading-white {
    font-size: 36px;
  }
  .news .card .card-title,
  .news .card .card-title a,
  .teams .card .card-title,
  .blog .card .card-title,
  .blog .card .card-title a {
    font-size: 18px;
  }
  .btn-primary, .btn-outline-primary {
    padding: 15px 40px;
  }
  .about:before {
    height: 80%;
  }
  .heading-form {
    margin-bottom: 26px !important;
  }
}
@media (max-width: 1360px) {
  nav .navbar-nav .nav-item {
    margin-right: 10px;
  }
  nav .navbar-nav .nav-item .nav-link {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .report-content {
    padding: 45px 45px;
  }
}
@media (max-width: 991px) {
  .heading-large {
    font-size: 52px;
  }
  .description-large {
    font-size: 20px;
  }
  .btn-primary, .btn-outline-primary {
    padding: 15px 30px;
  }
  section {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .heading-large {
    font-size: 40px;
  }
  .heading-medium {
    font-size: 36px;
  }
  .heading-small {
    font-size: 30px;
  }
  .description-large {
    font-size: 20px;
  }
  .description-medium {
    font-size: 14px;
  }
  .description-small {
    font-size: 12px;
  }
  .heading-white {
    font-size: 28px;
  }
  .about .content,.aboutUs .about-content,.report-content .buttons-report .btn-success {
    margin: 0px;
  }
  .about .content .btn-sm {
    margin-top: 12px;
  }
  .footer .form {
    background: var(--indigo);
    padding: 30px;
    border-radius: 18px;
  }
  .btn-primary, .btn-outline-primary, .btn-success, .btn-light {
    padding: 12px 18px;
  }
  .hero .description-large {
    margin-top: 20px;
    margin-bottom: 8px;
  }
}
