@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 10px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 10px 13px;
    font-size: 14px;
    font-family: 'Poppins';
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #ebb700;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
.topSec ul {
    display: flex;
    gap: 20px;
    justify-content: end;
    margin: unset;
}
.topSec::before {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 60%;
    background-color: #000;
    content: '';
    height: 1px;
}
ul.top-ul li a {
    font-size: 14px;
    font-family: 'Poppins';
    color: #000000;
}
header .row {
    align-items: center;
}
ul.top-ul li select {
    border: unset;
    -webkit-appearance: auto;
    padding: 0 10px;
}
header {
    background-color: #f3f3f300;
    z-index: 999;
    position: relative;
}

.topSec {
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */




.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 26px;
    height: 10px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #55565a;
    background-clip: padding-box;
    border: 0;
    /* border-top: 10px solid transparent; */
    /* border-bottom: 10px solid transparent; */
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    /* border-radius: 20px; */
}
.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: #f5f5f500;
}
.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}
.carousel-indicators .active {
  margin: 0;
  background-color: #ebb700;
  width: 26px;
  height: 12px;
}
.banner_img {
    position: absolute;
    right: 0;
    top: 50px;
}

.banner_img img {
    width: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 540px;
}
.banner_text h1 {
    font-size: 66px;
    line-height: 76px;
}
.banner_text h1 span{
  display: block;
}
.banner_text h3 {
    font-size: 36px;
    line-height: 46px;
    color: #cbcbcb;
}
a.btn-1 {
    font-size: 16px;
    color: #000000;
    background-color: #ebb700;
    padding: 13px 20px !important;
    border-radius: 4px;
    letter-spacing: 2px;
}
a.btn-2 {
    padding: 13px 28px !important;
    font-size: 16px !important;
    background-color: #00338d;
    color: #fff !important;
    border-radius: 5px;
    letter-spacing: 2px;
}
ul.ankar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
img.img-fluid {
    width: 70%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 660px;
}
section.main_slider {
    position: relative;
}
.carousel-indicators {
    justify-content: end;
    position: absolute;
    bottom: 0px;
    right: 54px;
    left: 0;
}
section.main_slider::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    content: '';
    background-color: #ebb700;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
/*banner css end*/
/*section good start*/
section.good {
    padding: 120px 0px;
}
.good-txt h3 {
    font-size: 56px;
    line-height: 66px;
    color: #000000;
    margin-bottom: 10px;
}

.good-txt p {
    font-size: 15px;
    color: #525151;
    margin-bottom: 25px;
}

/*section good end*/
/*ways start*/

section.ways {
    padding: 100px 0px;
    background-color: #f6f6f6;
}
.way-txt h3 {
    font-size: 56px;
    line-height: 60px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
}
section.ways .row{
  align-items: center;
}
.way-main-bx {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
}

.way-img img {
    width: 100%;
    border-radius: 10px;
}

.way-txt-bx {
    margin-top: 15px;
    height: 149px;
}

.way-txt-bx h3 {
    font-size: 36px;
    line-height: 46px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.way-txt-bx p {
    font-size: 16px;
    color: #525151;
    margin-bottom: 16px;
}

.way-txt-bx a {
    position: absolute;
    bottom: -18px;
}

/*leading start*/
section.leading {
    padding: 100px 0px;
    background-image: url(../images/leading-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    margin-bottom: 45px;
}
.laeding-img img {
    width: 100%;
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
}

.laeding-img {
    position: absolute;
    bottom: -90px;
    width: 41%;
}
.leading-txt h3 {
    font-size: 56px;
    line-height: 66px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.leading-txt p {
    font-size: 16px;
    color: #fff;
    width: 94%;
    margin-bottom: 30px;
}
/*leading end*/
/*the-world start*/
section.the-world {
    padding: 180px 0px 100px 0px;
    position: relative;
}
.the-world-img {
    position: relative;
    z-index: 999;
}

.world-txt {
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.world-txt h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 6px;
}

.world-txt p {
    font-size: 16px;
    margin: unset;
    color: #fff;
    font-weight: 200;
    width: 80%;
    margin: 0 auto;
}
.the-world-img-2 {
    position: relative;
    z-index: 99;
}
.the-world-img img {
    width: 100%;
    height: 310px;
    border-radius: 10px;
}

.the-world-img-2 img {
    width: 100%;
    height: 390px;
    border-radius: 10px;
}
.the-world-img.tw {
    margin-top: 10px;
}
.the-world-img-2.tw {
    margin-top: 10px;
}
.main-bx-world-txt h2 {
    font-size: 56px;
    color: #000000;
    line-height: 66px;
    font-weight: 700;
    margin-bottom: 10px;
}

.main-bx-world-txt {
    background-color: rgb(247, 247, 247);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    position: absolute;
    right: 80px;
    width: 40%;
    /* padding: 20px; */
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 80px;
    padding-left: 48px;
    top: 23%;
    padding-top: 80px;
    padding-right: 40px;
}

.main-bx-world-txt h2 span {
    display: block;
}
.main-bx-world-txt p {
    font-size: 16px;
    color: #555555;
    line-height: 28px;
}
.main-bx-world-txt h4 {
    font-size: 36px;
    color: #00338d;
    font-weight: 700;
    line-height: 46px;
}
/*the-world end*/
section.making-global {
    padding: 100px 0px;
    background-image: url(../images/making-impact.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.making-txt {
    text-align: center;
}
.making-txt h3 {
    font-size: 56px;
    line-height: 66px;
    color: #fff;
    padding-bottom: 5px;
    border-bottom: 4px solid #fff;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px !important;
}
.making-txt ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.making-txt ul li h4 {
    font-size: 44px;
    line-height: 50px;
    font-weight: 700;
    color: #ebb700;
    margin: 0;
}

.making-txt ul li h4 span {
    display: block;
    font-size: 24px;
    color: #fff;
}

.making-txt ul li {
    border-left: 2px solid #ebb700;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 31px;
    padding-top: 22px;
}

.making-txt ul li:first-child {
    border: unset;
}
/*media start*/

section.news-media {
    padding: 100px 0px;
}

.news-txt {
    text-align: center;
    margin-bottom: 20px;
}

.news-txt h3 {
    font-size: 56px;
    line-height: 60px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-txt p {
    font-size: 18px;
    color: #5b5a5a;
    margin: 0 auto;
    width: 75%;
    line-height: 30px;
}
.med-img h5 {
    background-color: #ebb700;
    width: fit-content;
    padding: 10px 3px;
    margin: 0;
    font-size: 20px;
    color: #000;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.med-img h5 span {
    display: block;
}

.med-img {
    position: relative;
}
.med-img-2{
   position: relative;
}
.med-img-2 h5 {
    background-color: #ebb700;
    width: fit-content;
    padding: 10px 3px;
    margin: 0;
    font-size: 20px;
    color: #000;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.med-img-2 h5 span {
    display: block;
}
.med-img img {
    width: 100%;
    height: 379px;
    object-fit: cover;
    border-radius: 10px;
}
.med-img-2.tw {
    margin-top: 20px;
}

.med-img-2 img {
    width: 100%;
    height: 179px;
    object-fit: cover;
    border-radius: 10px;
}
.med-txt-left h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.med-txt-left p {
    font-size: 16px;
    text-align: justify;
    width: 80%;
    line-height: 28px;
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}

.med-txt-left ul {
    display: flex;
    gap: 20px;
}

.med-txt-left ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.med-txt-left ul li p {
    font-size: 12px;
    text-align: unset;
    margin: 0;
    border: unset;
}

/* FOOTER SECTION CSS START  */

footer.footerSec {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0 30px;
  overflow: hidden;
  background-color: #112e57;
}

footer .footerLogo {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 15px 5px 0;
  position: relative;
}

footer .footerLogo img {
  transition: 0.9s;
  position: relative;
  margin: 0px;
  z-index: 4;
  cursor: pointer;
}

footer .footerLogo img:hover {
  transform: translate(0px, 3px);
}

footer p br {
  display: none;
}

.footer-about p {
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 19px;
  text-align: justify;
  font-size: 15px;
}

.footer-about img {
  display: table;
  margin: 0px auto;
  margin-top: 11px;
}

footer h6 {
  position: relative;
  font-size: 29px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 24px;
  margin-bottom: 14px;
  color: #fff;
  font-family: 'Oswald';
}

footer h6:before {
  position: absolute;
  content: "";
  width: 92%;
  bottom: 14%;
  left: 0%;
  height: 3px;
  background: #ebb700;
}

.foot-useful-link ul {
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.foot-useful-link ul li a {
  color: #fff;
  font-weight: 400;
  transition: 0.9s;
  display: inline-block;
  text-transform: uppercase;
  line-height: 31px;
}

.foot-useful-link ul li a:hover {
  filter: brightness(0.7);
  transform: translate(0px, 4px);
  text-decoration: underline;
}

footer .foot-useful-link {
  position: relative;
  padding-left: 18px;
}

footer .foot-quick-links {
  position: relative;
  padding-right: 30px;
}

.foot-quick-links ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.foot-quick-links ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-weight: 400;
  transition: 0.9s;
}

.foot-quick-links ul li a:hover {
  transform: translate(3px, 0px);
}

footer .news-letter {
  position: relative;
  margin-left: 3%;
}

footer .news-letter p {
  font-size: 15px;
  line-height: 28px;
}

footer .news-letter form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: baseline;
}

footer .news-letter form input {
  width: 100%;
  color: #777777;
  font-weight: 400;
  height: 60px;
  border: 0px;
  border-radius: 6px;
  padding: 20px;
  transition: 0.9s;
}

footer .news-letter form input::placeholder {
  color: #777777;
}

footer .news-letter form input:hover {
  transform: translate(7px, 0px);
}
.let-txt {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    padding: 20px 0px;
    position: relative;
    margin-bottom: -26px;
}
footer .news-letter form button {
  border: 0px;
}

footer .news-letter form button:hover {
  background: #000;
  color: #fff;
  cursor: pointer;
  transform: translate(0px, -3px);
}

.footer-btm {
  text-align: center;
}

footer.copyright {
  padding: 0px 0px 20px;
  position: relative;
  background: #112e57;
}

footer.copyright p {
  margin: 0px;
  text-transform: uppercase;
  font-size: 16px;
  color: #ffff;
  padding-top: 5px;
}

footer.copyright p a {
  position: relative;
  color: #fff;
}

footer.copyright p a:hover {
  text-decoration: underline;
  color: #4acfa2;
}
.news-letter h4 {
    font-size: 29px;
    color: #fff;
    margin-top: 50px;
}
footer .footerLogo:before {
  position: absolute;
  width: 150%;
  height: 100%;
  right: 0;
  top: 0;
  border: 1px solid #3fabeb;
  content: "";
  display: none;
  border-radius: 5px;
}

.news-letter ul.social {
  display: flex;
  gap: 20px;
  margin: 0px;
}



footer.copyright .footer-btm {
  background: #ebb700;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}

footer.copyright:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  right: 0;
  background: #fff;
  opacity: 40%;
}


.let-txt h2 {
    font-size: 60px;
    color: #00338d;
    text-align: center;
    line-height: 70px;
    font-weight: 700;
    margin: 0;
}
.menuSec a.btn-1:hover {
    color: #000;
}


.news-letter ul.social li a i {
    color: #fff;
}
.news-letter ul.ankar {
    justify-content: flex-start;
}
ul.social.d-flex li a i {
    color: #fff;
    font-size: 30px;
}
.banner_text ul.social {
    margin-top: 5%;
    gap: 13px;
}
/* Footer end   */


/*inner-banner start*/
section.main_slider.inn .carousel-inner {
    overflow: unset;
}

section.main_slider.inn .carousel-item {
    display: block;
}
section.main_slider.inn img.img-fluid {
    height: 500px;
}
section.main_slider.inn img.img-fluid {
    height: 500px;
    width: 77%;
}

section.main_slider.inn .banner_img {
    width: 58%;
}

section.main_slider.inn .banner_img img {
    height: 400px;
    object-fit: cover;
}
section.main_slider.inn .banner_text {
    padding-top: 0%;
}
/*innner-banner end*/
section.ways.inn .way-txt.text-center p {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
}

section.ways.inn {
    background-color: unset;
}

section.membership-type {
    padding: 100px 0px;
}
.mem-txt {
    text-align: center;
    margin-bottom: 50px;
}

.mem-txt h3 {
    font-size: 56px;
    font-weight: 700;
    color: #000000;
}

.main-bx-types {
    text-align: center;
    background-color: #f5db7f;
    padding: 30px 20px;
    border-radius: 10px;
    height: 270px;
}

.main-bx-types p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}

.main-bx-types h4 {
    font-size: 36px;
    line-height: 40px;
    color: #000000;
    font-weight: 700;
}
section.clubs-types {
    padding: 100px 0px;
    background-color: #f5f5f5;
}
section.clubs-types h2 {
    font-size: 56px;
    color: #000000;
    line-height: 60px;
    margin-bottom: 40px;
}
.clud-type-bx {
    background-color: #fff;
    padding: 30px 20px;
    text-align: center;
    border: 2px dotted #ebb700;
    border-radius: 10px;
    height: 300px;
}

.clud-type-bx h3 {
    font-size: 48px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 10px;
}
.clud-type-bx p {
    font-size: 16px;
    line-height: 26px;
}
section.FIND-CLUB.inn {
    padding: 100px 0px;
}
.main-bx-in-club {
    padding: 16px;
    background-color: #f5db7f;
    border-radius: 10px;
    padding-left: 31px;
}
.main-bx-in-club h3 {
    font-size: 56px;
    line-height: 60px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
}
.main-bx-in-club p {
    font-size: 14px;
    color: #3a3a3a;
}
.main-bx-in-club form input {
    width: 84%;
    padding: 12px;
    border: 1px solid #7a6d3f;
    background-color: unset;
    border-radius: 5px;
    color: #000;
}
.main-bx-in-club form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #7a6d3f;
    background-color: unset;
    border-radius: 5px;
    color: #000;
    -webkit-appearance: auto;
}
.main-bx-in-club button {
    padding: 12px 30px;
    border: unset;
    background-color: #00338d;
    color: #fff;
    position: relative;
    right: 18px;
}

.news-inpage-txt {
    text-align: center;
}

section.new-in {
    padding: 100px 0px;
}
.news-inpage-txt h3 {
    font-size: 56px;
    line-height: 60px;
    color: #000;
    margin-bottom: 10px;
}
.news-inpage-txt p {
    font-size: 16px;
    color: #797979;
    margin-bottom: 23px !important;
    width: 80%;
    margin: 0 auto;
}
.news-img-inn img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.news-img-inn h5 {
    font-size: 16px;
    color: #000000;
    margin: 0;
    background-color: #ebb700;
    border-radius: 5px;
    width: fit-content;
    padding: 10px;
    position: absolute;
    top: 20px;
    left: 15px;
}

.news-img-inn {
    position: relative;
}
.news-txt-inn h4 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 10px;
    line-height: 30px;
    font-weight: 700;
}
.news-txt-inn {
    padding: 20px;
    border: 1px solid #969696;
    border-radius: 10px;
    border-top: unset;
    position: relative;
    margin-top: -12px;
    padding-top: 36px;
}

.news-txt-inn p {
    font-size: 14px;
    color: #666565;
}
.news-txt-inn a {
    font-size: 14px;
    color: #ebb700;
    text-decoration: underline;
}
section.new-in a.btn-2 {
    margin: 0 auto;
    display: block;
    width: fit-content;
}
/*join-club start*/
section.join-club {
    padding: 100px 0px;
}
.main-tell-us.form {
    padding: 30px 30px;
    border: 2px solid #dfe0e0;
}

.main-tell-us.form h4 {
    font-size: 34px;
    line-height: 40px;
    color: #000000;
    text-align: center;
    font-weight: 700;
}

.main-tell-us.form input {
    width: 100%;
    padding: 10px 10px;
    outline: none;
    border: 1px solid #dfe0e0;
    border-radius: 5px;
    margin-bottom: 30px;
}

.main-tell-us.form button {
    padding: 12px 30px;
    background-color: #ebb700;
    border: unset;
    width: auto;
    margin: 0 auto;
    display: block;
}
/*about page start*/
section.about-pg {
    padding: 100px 0px;
}
.abt-txt-pg {
    text-align: center;
    margin-bottom: 20px;
}

.abt-txt-pg h3 {
    font-size: 56px;
    line-height: 56px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 700;
}

.abt-txt-pg p {
    font-size: 16px;
    color: #797979;
    line-height: 28px;
}
.abt-logo h3 {
    font-size: 48px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 15px;
}

.abt-logo p {
    font-size: 16px;
    color: #797979;
}
section.abt-miss {
    margin-bottom: 100px;
    background-image: url(../images/abt-miss.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
}
.abt-txt-miss {
    text-align: center;
}

.abt-txt-miss h3 {
    font-size: 56px;
    line-height: 60px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.abt-txt-miss p {
    color: #fff;
    font-size: 16px;
    margin: 0 auto;
    width: 80%;
    margin-bottom: 40px;
}
section.making-history {
    background-color: #f5f5f5;
    padding: 100px 0px;
}

.making-history-txt {
    text-align: center;
    margin-bottom: 30px;
}

.making-history-txt h4 {
    font-size: 56px;
    line-height: 60px;
    font-weight: 700;
    color: #000000;
}

.making-history-txt p {
    font-size: 16px;
    color: #797979;
}
.main-bx-mak img {
    width: 100%;
    height: 184px;
    object-fit: cover;
}

.main-bx-mak-txt h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    font-family: 'Oswald';
    margin-top: 10px;
    margin-bottom: 2px;
    color: #fff;
    text-transform: uppercase;
}
.main-bx-mak-txt h5 span{
  display: block;
}
.main-bx-mak-txt p {
    font-size: 14px;
    color: #fff;
    text-align: justify;
    line-height: 22px;
}

.main-bx-mak {
    position: relative;
    z-index: 1;
    margin: 30px 0px;
}

.main-bx-mak::before {
    position: absolute;
    top: -17px;
    left: -14px;
    width: 100%;
    content: '';
    background-color: #00338d;
    height: 499px;
    z-index: -1;
    border-radius: 10px;
}

.main-bx-mak-txt {
    width: 100%;
    padding: 10px 30px;
    padding-left: 0;
}
/*testimonial start*/
section.testimonials {
    padding: 100px 0px;
}
.test-main-bx img {
    width: 100px;
    margin: 0 auto;
}

.test-main-bx {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e2e2e2;
    border-radius: 13px;
    height: 410px;
}

.test-main-bx p {
    font-size: 18px;
    line-height: 31px;
    color: #4d4d4d;
    margin: 20px 0px 50px;
}

.test-main-bx h5 {
    font-size: 21px;
    color: #000;
    font-weight: 700;
}
section.testimonials .slick-slide {
    margin: 0px 10px;
}
section.testimonials .slick-active {
    opacity: 1;
}
.test-main-bx span {
    display: block;
    font-size: 16px;
    color: #00338d;
}
section.testimonials .slick-prev:before {
    position: absolute;
    left: -30px;
    content: '\f060';
    font-family: 'FontAwesome';
    background-color: #00338d;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
section.testimonials .slick-next:before {
    position: absolute;
    right: -30px;
    content: '\f061';
    font-family: 'FontAwesome';
    background-color: #00338d;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
.test-slid .slick-prev, .test-slid .slick-next{
  top: 40%;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before{
  opacity: 1;
}
.test-txt h3 {
    font-size: 56px;
    color: #000000;
    line-height: 66px;
    text-align: center;
}

section.leader-ship-pg {
    padding: 120px 0px;
}
.leader-ship-txt-pg {
    text-align: center;
}

.leader-ship-txt-pg h3 {
    font-size: 56px;
    line-height: 60px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000000;
}
.leader-ship-txt-pg p {
    font-size: 16px;
    color: #4e4e4e;
    width: 86%;
    margin: 0 auto;
}
.main-led-bx {
    margin-top: 30px;
    background: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
}
.main-led-bx h2 {
    font-size: 45px;
    line-height: 50px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}
.led-txt-slid {
    background-color: #00338d;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 150px;
}
.main-led-slid .slick-active {
    opacity: 1;
}
.led-txt-slid h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 5px;
}

.led-txt-slid h5 {
    font-size: 11px;
    color: #ebb700;
    line-height: 15px;
    margin-bottom: 5px;
    font-weight: 700;
}

.led-txt-slid h5 span {
    display: block;
}
.main-led-slid .slick-slide {
    margin: 0px 10px;
}
.led-txt-slid ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.led-txt-slid ul li p {
    font-size: 12px;
    color: #fff;
    margin: 0;
}

.led-txt-slid ul li i {
    color: #fff;
}
.main-led-slid .slick-slide{
  height: auto;
}
.led-txt-slid h6 {
    font-size: 13px;
    color: #ebb700;
    margin: 0;
}

.led-img img {
    height: 326px;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.main-led-slid .slick-prev, .main-led-slid .slick-next {
    position: absolute;
    top: -72px;
    right: 0;
    left: auto;
}
.main-led-slid .slick-prev {
    right: 46px;
}
.main-led-slid .slick-next:before {
    position: absolute;
    right: 0px;
    content: '\f061';
    font-family: 'FontAwesome';
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    border: 1px solid #ebb700;
}
.main-led-slid .slick-prev:before {
    position: absolute;
    right:  0px;
    content: '\f060';
    font-family: 'FontAwesome';
    background-color: #ebb700;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}

/* Blog Detail Page Start */

section.blog-detail-page {
    position: relative;
    padding: 100px 0;
    /* background: #eaf2fd; */
}

section.blog-detail-page::before {
    position: absolute;
    content: "";
    background: url(../images/abt-before.png);
    width: 285px;
    height: 904px;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
}

.det-img-main img {
    width: 100%;
    box-shadow: 0 0 20px 2px #3e3e3e2b;
}

.recent-posts h2 {
    font-weight: 400;
    font-size: 41px;
    margin-bottom: 17px;
    font-family: 'Oswald';
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.recent-posts span {
    font-family: 'Bebas Neue', cursive;
    font-size: 54px;
    line-height: 60px;
    color: #85c75d;
    font-weight: 500;
    margin: 0 0 10px;
}

.det-txt-sml ul li i {
    color: #000;
    font-size: 19px;
}

.det-head h2 {
    font-weight: 400;
    font-size: 60px;
    margin-bottom: 30px;
    line-height: 63px;
    font-family: 'Oswald';
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
}

.det-head span {
    font-family: 'AlbraMedium';
    font-size: 61px;
    line-height: 62px;
    color: #06b6ea;
    font-weight: 500;
    margin: 0 0 10px;
}

.det-txt-main p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
}


/* Blog Details */

.blog-post {
    display: grid;
    grid-template-columns: auto auto;
    gap: 25px;
    align-items: center;
    margin-bottom: 33px;
}

.det-txt-sml p {
    font-size: 21px;
    font-family: 'AlbraMedium';
    line-height: 25px;
}

.det-txt-sml ul {
    margin-bottom: 0;
    width: 100%;
    display: inline-flex;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    /* padding: 5px 0; */
    height: 40px;
    padding: 0 10px;
}

.det-txt-sml ul li {
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

li.date {
    border-right: 1px solid #cccccc;
    padding-right: 15px;
}

li.comments {
    padding-left: 15px;
}

.det-head ul {
    margin-bottom: 30px;
    display: flex;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000000;
    /* padding: 5px 0; */
    /* height: 40px; */
    padding: 15px 10px;
}

.det-head ul li {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.det-head ul li i {
    color: #06b6ea;
    font-size: 22px;
}
.det-head ul li.date {
    padding-right: 25px;
}

.det-head ul li.comments {
    padding-left: 25px;
}

.det-txt-main p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 35px;
}

footer.footerSec.detFooter {
    background-color: #ffffff;
}

section.blg-det-sec {
    padding: 80px 0;
    position: relative;
}

.det-head {
    margin-top: 20px;
}
/* Blog Details */
/*bolg-detail end*/
.banner_text.ser {
    width: 71%;
}

section.paertnership {
    padding: 120px 0px 100px;
}


.partnership-txt {
    text-align: center;
}

.partnership-txt h3 {
    font-size: 36px;
    color: #ebb700;
    line-height: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.partnership-txt h5 {
    font-size: 49px;
    line-height: 55px;
    color: #000;
    font-weight: 700;
}

.partnership-txt {
    text-align: center;
}

.partnership-txt h3 {
    font-size: 36px;
    color: #ebb700;
    line-height: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.partnership-txt h5 {
    font-size: 49px;
    line-height: 55px;
    color: #000;
    font-weight: 700;
}

.part-main-bx {
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    box-shadow: 0 0 3px #00000069;
    border-radius: 10px;
    width: 96%;
    height: 233px;
}
.part-main-bx h4{
  font-size: 36px;
  color: #000;
  line-height: 40px;
  font-weight: 700;
}
.part-main-bx p{
  font-size: 16px;
  color: #525151;
  line-height: 28px;
}
.vido-img {
    position: relative;
}
.vido-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 9px solid #ffff;
    border-radius: 10px;
}

.vido-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* top: 0; */
    bottom: -141px;
    z-index: 99;
    right: 130px;
}
 .vido-img a img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    border: unset;
}

.global-slid .slick-active {
    opacity: 1;
}
section.global {
    position: relative;
    margin-bottom: 100px;
    margin-top: 100px;
}
.vid-txt {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 3px #0000008a;
    height: 352px;
    padding-top: 60px;
    margin-top: -63px;
    position: relative;
    width: 100%;
}
.vid-txt h4 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    line-height: 36px;
    font-weight: 700;
}

.vid-txt h4 span {
    display: block;
}
.vid-txt p{
  color: #4b4a4a;
  font-size: 14px;
}
.global-txt {
    text-align: center;
    position: relative;
    z-index: 99;
}

.global-txt h3 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 45px;
}
section.global::before {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    content: '';
    background-image: url(../images/ser-bg-sec.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 620px;
}
section.global .slick-prev:before {
    position: absolute;
    left: -30px;
    content: '\f053';
    font-family: 'FontAwesome';
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    border: 1px solid #00338d;
    opacity: 1;
}
section.global .slick-next:before {
    position: absolute;
    right:  -30px;
    content: '\f054';
    font-family: 'FontAwesome';
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    border: 1px solid #00338d;
    opacity: 1;
}

section.together {
    padding-bottom: 100px;
}
section.together h2 {
    text-align: center;
    color: #000000;
    font-weight: 700;
    font-size: 56px;
    line-height: 60px;
}
.together-img {
    text-align: center;
    padding: 20px;
    border: 3px dashed #dddfe0;
    border-radius: 10px;
    height: 239px;
}

.together-img h5 {
    margin-top: 25px;
    font-size: 24px;
    color: #000000;
    font-weight: 700;
    line-height: 34px;
}

.together-img h5 span {
    display: block;
}
section.impct {
    background-image: url(../images/making-impact.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    margin-bottom: 100px;
}
.impct-txt {
    text-align: center;
}

.impct-txt h3 {
    font-size: 56px;
    color: #fff;
    line-height: 60px;
    margin-bottom: 10px;
}

.impct-txt p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 29px;
}
section.map {
    padding-bottom: 100px;
}

.map-txt {
    text-align: center;
}

.map-txt h3 {
    font-size: 56px;
    line-height: 60px;
    color: #000;
}

.map-txt img {
    width: 100%;
  
}

.ban-par-txt {
    text-align: center;
}

.ban-par-txt p {
    font-size: 16px;
    background: #000000b8;
    padding: 12px;
    border-radius: 14px;
    color: #fff;
    margin-bottom: 0px;
    letter-spacing: 1px;
}

.banner-bottom-row {
    background: #f5f5f5;
    padding: 50px 0px;
}
ul.ankar a.btn-1 {
    padding: 13px 36px !important;
}
.inner-icons {
    background: #f4f4f4;
    padding: 30px 0px;
}

.inner-icons ul.social.d-flex li a i {
    background: #000;
    padding: 4px 5px;
    border-radius: 4px;
    font-size: 17px;
}

ul.social.d-flex {
    gap: 20px;
    margin-bottom: 0px;
}

.abt-logo img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}
.blog-top-field input {
    border: 1px solid #0000002b;
    padding: 12px 10px;
    border-radius: 7px 0px 0px 7px;
    width: 35%;
}

button.btn-2 {
    padding: 13px 28px !important;
    font-size: 16px !important;
    background-color: #00338d;
    color: #fff !important;
    border-radius: 5px;
    letter-spacing: 2px;
    border: unset;
    margin-left: -10px;
}
.heading-txt-donation h2 {
    margin-bottom: 10px;
    color: #000;
}
.donation-para-head h2 {
    font-size: 34px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}

.empowering-txt h3 {
    font-size: 24px;
    font-weight: bold;
    text-transform: capitalize;
    border: unset;
    padding: 12px 20px;
    border-radius: 7px;
    background: #ebb700;
    margin-bottom: 10px;
}

.empowering-txt h4 {
    font-size: 24px;
    font-weight: bold;
    text-transform: capitalize;
    border: 1px solid #00000045;
    padding: 12px 20px;
    border-radius: 7px;
    background: #fff;
    margin-bottom: 10px;
    text-align: center;
}
.one-time-box p {font-size: 15px;text-transform: capitalize;border: 1px solid #00000045;padding: 12px 20px;border-radius: 5px;background: #112e57;margin-bottom: 13px;color: #fff;}

.field-donate input {
    padding: 12px 20px;
    width: 100%;
    border: 1px solid #00000042;
    border-radius: 5px;
    margin-bottom: 13px;
}

.field-donate input::placeholder {
    font-family: 'Poppins';
    font-weight: 500;
    color: #00000066;
    text-transform: capitalize;
}

.btn-group .select {
  position: relative;
}
.btn-group .select input:checked + label {
  background-color: #ffc107;
}
.btn-group .select input:checked + label:hover, .btn-group .select input:checked + label:focus, .btn-group .select input:checked + label:active {
  background-color: #ffc107;
}
.btn-group .select input {
  opacity: 0;
  position: absolute;
}
.btn-group .select .button_select {
  margin: 0 10px 10px 0;
  display: flex;
  background-color: transparent;
}
.btn-group .select .button_select:hover, .btn-group .select .button_select:focus, .btn-group .select .button_select:active {
  background-color: transparent;
}

.option {
  position: relative;
}
.option input {
  opacity: 0;
  position: absolute;
}
.option input:checked + span {
  background-color: #ffc107;
}
.option input:checked + span:hover, .option input:checked + span:focus, .option input:checked + span:active {
  background-color: #ffc107;
}
.option .btn-option {
  margin: 5px 22px 19px 0;
  display: flex;
  background-color: transparent;
}
.option .btn-option:hover, .option .btn-option:focus, .option .btn-option:active {
  background-color: transparent;
}


.btn-group.col-xs-12 .btn {
    padding: 10px 66px;
}

.btn-warning {
    border-color: #00000030;
}
label.option.lstoption .btn-option {
    margin-right: unset !important;
    /* margin: 0 -1px 10px 0 !important; */
}
.mainbtns-like-donate.donor-btns .btn-group.col-xs-12 .btn {
    padding: 13px 76px;
}
.donor-select select {
    padding: 12px 20px;
    width: 100%;
    border: 1px solid #00000042;
    border-radius: 5px;
    margin-bottom: 13px;
    appearance: auto;
}
button.donot-btn {
    padding: 13px 28px !important;
    font-size: 16px !important;
    background-color: #003cff;
    color: #fff !important;
    border-radius: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: unset;
}

.maia-row-donation {
    border: 2px solid #00000026;
    padding: 40px 40px;
    border-radius: 10px;
}

.donation-sec {
    padding: 100px 0px;
}
.sub-txt-causes-detail h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    color: #00338d;
    margin-bottom: 10px;
}

.sub-txt-causes-detail h4 {
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Poppins';
    font-size: 16px;
    color: #000;
    margin-bottom: 0px;
    margin-top: 20px;
}
.text-causes-detail h2 {
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}
.img-causes-detail img {
    border-radius: 10px;
    margin-bottom: 30px;
}
.sub-txt-causes-detail {
    margin-top: 30px;
}
.facts-txt ul li {
    text-align: center;
}

.facts-txt ul li h3 {
    margin-bottom: 0px;
}

.facts-txt ul li p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    margin-bottom: 0px;
    border-bottom: 1px solid #000;
    padding-bottom: 12px;
}

.facts-txt {
    background: #ebb700;
    border-radius: 10px;
}

.facts-txt ul li {
    padding: 20px 30px;
}
li.lst-li p {
    border-bottom: unset !important;
}
.txt-box-cases-det h3 {
    font-size: 24px;
    margin-bottom: 0px;
    color: #00338d;
    text-transform: uppercase;
}

.txt-box-cases-det h2 {
    font-size: 30px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0px;
}

.txt-box-cases-det p {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: justify;
}

.txt-box-cases-det {
    padding: 10px 12px;
}

.cases-detail-box {
    border: 1px solid #00000040;
    border-radius: 10px;
    padding-bottom: 20px;
}
.facts-heading h3 {
    font-size: 46px;
    text-transform: uppercase;
}

.facts-heading p {
    font-size: 14px;
}

.causes-detail-sec {
    padding: 100px 0px;
}