@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=Baloo+2:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/

body {
  word-break: break-word;
  /* font: 15px/25px "Poppins", sans-serif; */
  font-family: "Baloo 2", serif;
  color: #393939;
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #121652;
  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;
}

/***** 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;
}

@font-face {
  font-family: "Constantia";
  src: url(../fonts/constan.ttf) format("truetype");
}
/***** Custom Classes *****/

h1,
h2,
h3 {
  font-family: "Constantia";
  list-style: 1.3;
  font-weight: 600;
}

h1 {
  font-size: 55px;
  font-size: 72px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
  line-height: 23px;
}

p {
  font-size: 16px;
  line-height: 26px;
  font-family: "Baloo 2", serif;
  font-weight: 400;
}

/* General  css  */

.siteBtn {
  display: inline-block;
}

.p-btn {
  background: #121652;
  color: #fff;
  border-radius: 45px;
  padding: 12px 38px;
  border: 0px;
  box-shadow: -1px 9px 20px 0px #4444444f;
  font-weight: 500;
  display: inline-block;
  text-transform: capitalize;
  font-family: "Constantia";
}

.p-btn span {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  transition: 0.9s;
}

.p-btn:hover {
  background: #07093b;
  transform: translate(0px, -4px);
  color: #fff;
}

/* General  css  */

::-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 */

header .menuSec {
  padding: 20px 0;
  position: relative;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.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: #103741;
  font-size: 18px;
  font-family: "Baloo 2";
  transition: 0.9s;
  font-weight: 500;
}

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

.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: #121652;
}

.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:hover li {
  float: none;
}

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

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

.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;
}

header .menuSec .row {
  align-items: center;
}

/*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  */

section.banner {
  position: relative;
  text-align: center;
  background: #121652;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .bannertxt h1 {
  display: inline-block;
  color: #fff;
}

.banner .bannertxt ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 0px 0px;
  gap: 10px;
}

.banner .bannertxt ul li a {
  font-size: 24px;
  line-height: 34px;
  font-family: "Constantia";
  color: #fff;
  font-weight: 600;
}

.banner .bannertxt ul li span.gap {
  font-size: 27px;
  line-height: 30px;
  color: #fff;
  font-weight: 100;
  font-family: "Baloo 2";
  display: inline-block;
  margin-top: 8px;
}

/* Banner css end */

/* Support form css start  */

section.support .forwraper {
  width: 85%;
  margin: 0px auto;
}
.slick-slide{
  margin: 0;
}

section.support .supportxt {
  padding-left: 20px;
}

section.support .supportxt p {
  font-size: 20px;
  line-height: 35px;
  opacity: 70%;
}

section.support .supportxt h2 {
  text-transform: capitalize;
  font-size: 40px;
  color: #121652;
  font-weight: 600;
  font-family: "constantia" !important;
  line-height: 1.5;
  margin-bottom: 20px;
}

section.support .locker .secure-notice {
  align-items: center;
  background: #fbfbfb;
  border-top: 1px solid #f2f2f2;
  color: #989898;
  display: flex;
  font-size: 12px;
  height: 60px;
  justify-content: center;
  margin-top: 15px;
}

section.support .locker .secure-notice > i {
  font-size: 12px;
  padding: 8px;
}

section.support {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

section.support .coleft {
}

/* Support form css end */

section.support .formWraper {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  color: #696969;
  overflow: hidden;
  position: relative;
}

section.support .formWraper h4 {
  color: #333;
  font-size: 34px;
  font-weight: 600;
  line-height: 47px;
  width: 71%;
  margin: 0px auto;
  text-align: center;
  padding: 20px 0 40px;
}

section.support .formWraper .donate-btn a {
  align-items: center;
  border-radius: 4px;
  display: flex;
  filter: brightness(1);
  font-size: 22px;
  justify-content: center;
  line-height: 20px;
  margin-bottom: 16px;
  min-width: 236px;
  padding: 20px 28px !important;
  transition: 0.7s;
  border: 2px solid #121652 !important;
  background: #121652 !important;
  font-weight: 500;
  gap: 10px;
  color: #fff;
}

section.support .formWraper .donate-btn span {
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
}

section.support .formWraper .give-form-navigator {
  align-items: center;
  background: #fbfbfb;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  height: 70px;
  transition: transform 0.2s ease;
  width: 100%;
  position: relative;
}

section.support .formWraper .give-form-navigator .title {
  color: #424242;
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

section.support .formWraper .give-form-navigator .back-btn {
  background: none;
  border: none;
  border-radius: 6px 0 0 0;
  color: #424242;
  cursor: pointer;
  font-size: 12px;
  height: 100%;
  overflow: hidden;
  padding: 0 20px;
  position: absolute;
}

section.support .formWraper .content {
  margin: 20px 20px 16px;
  font-size: 18px;
  text-align: center;
}

section.support .give-total-wrap {
  width: 100%;
  margin-top: 30px;
}

/* == */
section.support .give-donation-amount {
  align-items: center;
  background-color: #fff;
  border: 1px solid #979797;
  border-radius: 4px !important;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.22);
  display: flex;
  float: none !important;
  margin: 5px auto 15px !important;
  max-width: 90%;
  overflow: hidden;
  padding: 18px 24px;
  position: relative;
  width: -moz-fit-content;
}

section.support
  .give-donation-amount
  span.give-currency-symbol.give-currency-position-before {
  border-right: 1px dotted #aaa !important;
  padding-right: 24px !important;
  font-size: 22px;
}

.give-donation-amount .give-amount-top {
  border: 0;
  color: #333;
  font-size: 42px;
  font-weight: 500;
  height: auto;
  line-height: 1;
  text-align: center;
  width: 100%;
  z-index: 1;
}

form.give-form .give-hidden,
form[id*="give-form"] .give-hidden {
  display: none;
}

/* ul for btns  */

ul.formbtns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin: 20px 20px 20px;
}

ul.formbtns button {
  width: 100%;
  font-family: "Montserrat", serif;
  border: 2px solid transparent;
  font-size: 18px;
  line-height: 22px;
  height: 70px;
  background: #121652;
  color: #fff;
  position: relative;
  font-weight: 500;
  border-radius: 7px;
  transition: 0.9s;
}

ul.formbtns button span {
  position: absolute;
  left: 21px;
  top: 19px;
  font-size: 14px;
}

ul.formbtns button:hover {
  color: #121652;
  border: 2px solid #121652;
  background: transparent;
}

/* === */

.donation-errors {
  margin: 30px 20px 20px 20px;
  padding: 30px 10px 30px 40px;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 0px 6px 0px #4444;
}

.donation-errors p {
  font-size: 18px;
  line-height: 28px;
  margin: 0px;
}

.donation-errors p strong {
  color: #000;
}

.donation-errors:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  left: 0;
  background: #ffba00;
  top: 0;
  border-radius: 5px 0 0 5px;
}

.who-give {
  margin: 30px 20px 20px 20px;
  position: relative;
  text-align: center;
}

.who-give h5 {
  font-family: "Montserrat";
}

.who-give p {
  line-height: 18px;
  opacity: 70%;
  margin-top: 13px;
}

.user-fields {
  margin: 30px 20px 20px 20px;
  position: relative;
}

.user-fields .fields {
  position: relative;
  width: 100%;
  margin-bottom: 14px;
}

.user-fields .fields input {
  width: 100%;
  background: #fff;
  border: 1px solid #b8b8b8 !important;
  border-radius: 4px !important;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.152);
  box-sizing: border-box;
  color: #828382;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 18px;
  position: relative;
  padding-left: 40px;
  font-family: "Montserrat";
}

.user-fields .fields i {
  position: absolute;
  left: 12px;
  top: 19px;
  color: #828382;
}

/* ==== radio  */

ul.for-radios {
  margin: 30px 20px 20px 20px;
  position: relative;
}

.settings {
  display: block;
  background: unset;
}

ul.for-radios .settings img.img-fluid.settings {
  width: 40%;
  margin: 0px auto;
  filter: brightness(0.5);
}

ul.for-radios .settings .st-img {
  margin: 20px 0 30px;
}

ul.for-radios .settings h3 {
  font-size: 18px;
  line-height: 26px;
  font-family: "Montserrat";
  font-weight: 600;
  text-align: center;
}

ul.for-radios .settings p {
  font-size: 18px;
  line-height: 28px;
  margin: 0px;
  text-align: center;
}

ul.for-radios .settings p strong {
  color: #000;
}
ul.for-radios .card.card-body {
  border: 0px;
}

/* ===== radios  */
ul.for-radios li:not(:last-child) {
  margin-bottom: 15px;
  align-items: center;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
  display: flex;
  justify-content: flex-start;
  padding: 14px 20px !important;
  position: relative;
}

ul.for-radios li input {
  padding: 0px;
  height: initial;
  width: initial;
  margin-bottom: 0px;
  display: none;
  cursor: pointer;
}

ul.for-radios li label {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  color: #333;
  font-weight: 600;
  width: 70%;
  padding-left: 39px;
}

ul.radiosss-payments li label::before {
  content: "";
  appearance: none;
  background-color: transparent;
  border: 1px solid rgb(183, 183, 183);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px,
    rgba(0, 0, 0, 0.05) 0px -15px 10px -12px inset;
  padding: 10px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 1px;
}

ul.radiosss-payments li input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  border-radius: 20px;
  left: 6px;
  border: 0px;
  width: 10px;
  height: 10px;
  background-color: #121652;
}

ul.for-radios li i {
  position: absolute;
  right: 40px;
  font-size: 30px;
}
/* ===== radios  */
/* ===== */

/* Summary  */
.about-donate {
  text-align: center;
  margin: 30px 0 20px;
}

.about-donate h6 {
  color: #6b6b6b;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  width: 70%;
  margin: 0px auto;
  line-height: 26px;
}

.about-summary {
  margin: 10px 20px;
}

.about-summary .dt-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f2f2f2;
  height: 64px;
}

.about-summary .dt-item h3 {
  font-size: 17px;
  color: #000;
  width: 66%;
  opacity: 60%;
  font-family: "Montserrat";
  font-weight: 700;
  line-height: 20px;
}

.about-summary .dt-item button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 0px;
  color: #121652;
  gap: 5px;
}

.about-summary .dt-item button span {
  text-decoration: underline;
}

.about-summary .dt-item button i {
  font-weight: 600;
}

.about-summary .dt-item p {
  margin: 0px;
  font-size: 15px;
  font-family: "Montserrat";
  font-weight: 500;
  width: 100%;
}

.about-summary .dt-item p span {
  float: right;
}

.about-summary .dt-item p b {
  font-size: 18px;
  color: #333;
}

/* Summary  */
/* ===== */

ul.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.slick-dots li button {
  display: none;
}

ul.slick-dots li {
  background-color: #e4e4e4;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 12px;
  margin: 7.5px;
  overflow: hidden;
  padding: 0;
  transition: background-color 0.2s ease;
  width: 12px;
  opacity: 1 !important;
}

ul.slick-dots li.slick-active {
  background-color: #747474;
  opacity: 1 !important;
}

section.support .donate-btn {
  margin: 0px 20px;
}

section.support .formWraper .donate-btn button {
  align-items: center;
  border-radius: 4px;
  display: flex;
  filter: brightness(1);
  font-size: 22px;
  justify-content: center;
  line-height: 20px;
  margin-bottom: 16px;
  min-width: 236px;
  padding: 20px 28px !important;
  transition: 0.7s;
  border: 2px solid #121652 !important;
  background: #121652 !important;
  font-weight: 500;
  gap: 10px;
  color: #fff;
  width: 100%;
}

/* Footer css  */

footer ul.social {
  display: flex;
  gap: 20px;
  margin: 0px;
  justify-content: center;
  align-items: center;
}

footer ul.social li a i {
  font-size: 16px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.9s;
  opacity: 1;
  border-radius: 45px;
  color: #fff;
  background: #121652;
}

footer {
  background: #cac8c2;
  text-align: center;
  padding: 80px 0px 60px;
}

footer .footerwapre {
  width: 40%;
  margin: 0px auto;
  text-align: center;
}

footer .footerwapre img.img-fluid {
  width: 60%;
  margin: 0px auto;
}

footer .footerwapre .logo-img {
  margin-bottom: 20px;
}

footer .copt {
  margin-top: 30px;
  text-align: center;
}

footer .copt p {
  font-weight: 600;
}

ul.m-0.ofline-steps {
  display: flex;
  flex-direction: column;
}

ul.m-0.ofline-steps li {
  padding: 0 !important;
  background: unset;
  box-shadow: unset;
  border: 0px;
}

ul.m-0.ofline-steps li p.m-0 b {
  color: #000;
}

/* ====? */
/* Selected class  */
/* ====? */
.selected-button {
  border: 2px solid #121652 !important;
  color: #121652 !important;
  background: #fff !important;
  box-shadow: 0px 0px 20px 1px #555555;
}

/* ===== */
.slick-slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slick-slide.slick-active {
  visibility: visible;
  opacity: 1;
}

.slick-list {
    height: auto !important;
}

.slick-list .slick-slide{
  height: 0;
}

.slick-list .slick-current{
  height: auto;
}

section.support .coleft {
    margin: 0 auto;
}
.dt-item select {
    border: unset;
    appearance: auto;
}



@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {

	ul.formbtns li:last-child {
    width: 88%;
    display: block;
}

ul.formbtns {
    display: inline-block;
    margin-bottom: 10px;
    width: 95%;
    text-align: center;
}

ul.formbtns li {
    margin-bottom: 20px;
    display: inline-block;
    width: 41%;
    /* margin: 0 auto; */
}
.fields i.fa-regular.fa-calendar {
    display: none;
}
}