/*******************
 * Reset style
 * *****************
 */

@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,800;0,900;1,800&display=swap");
@import url("https://fonts.googleapis.com/css?family=Varela+Round:400%7CNunito:regular,500,600,700&display=swap");
html,
body {
  height: 100%;
}
li {
  list-style: none;
}
input,
button,
textarea {
  outline: none;
  border: none;
}
select,
button:focus,
button:active,
input,
.page-link:focus {
  outline: none;
  box-shadow: none !important;
}
textarea {
  resize: vertical;
  box-shadow: none !important;
}

.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active,
.btn.focus,
.btn:focus {
  box-shadow: none !important;
}

body {
  font-family: Nunito, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800 !important;
}

.navbar-absolute {
  position: absolute;
  z-index: 1010;
  width: 100%;
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }
}
iframe {
  border: 0;
  outline: 0;
  width: 100% !important;
}
.btn {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.no-hover:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}
.btn:hover:not(.no-hover) {
  transform: scale(1.1); /* translateY(-1px)*/
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}
input:not(.custom-file)[type="file"] {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  outline: none;
  cursor: inherit;
  font-size: 100px;
}

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 7rem;
  z-index: 10;
}
/* Declare heights because of positioning of img element */
.carousel-item {
  height: 38rem;
  background-color: #777;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
}
@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
.card {
  border: 1px solid rgba(111, 111, 111, 0.125);
}
.noscroll {
  overflow-x: hidden;
  overflow-y: hidden;
}
.progress-xs {
  height: 5px;
}
.popout {
  cursor: pointer;
  max-width: 880px;
  display: none;
  padding: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: rgb(255, 255, 255);
  font-size: 14px;
  border-radius: 3px;
  position: fixed;
  top: 75px;
  z-index: 1100;
  overflow: hidden;
  width: 40.857%;
  text-align: center;
  left: 29%;
  right: 20%;
}
.popout-error {
  background: rgba(255, 0, 0, 0.9) !important;
}
/************ Version 1.3 **************/
.description img {
  max-width: 100% !important;
  height: auto !important;
}

/************ Version 1.4 **************/
#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 99999;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="text"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: rgb(255, 255, 255);
  background: rgba(0, 0, 0, 0);
  font-size: 60px;
  font-weight: 300;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
}
#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
}
#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  padding: 10px 17px;
  font-size: 60px;
  font-weight: 100;
}

button.btn-trans {
  background-color: transparent;
  border: 2px solid #fff;
  margin-top: 10px;
  text-transform: uppercase;
  padding: 9px 20px;
  color: #fff;
}
button.no-shadow {
  text-shadow: none;
}

button:hover.btn-trans,
button:focus.btn-trans,
button:active.btn-trans {
  background-color: #f45302;
  border: 2px solid #f45302;
  color: #fff;
}
/************ Version 1.5 **************/
.truncate {
  white-space: normal !important;
  overflow: hidden;
  position: relative;
  max-height: 500px;
}

.truncate:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: hsla(0, 0%, 100%, 0);
  background-image: linear-gradient(hsla(0, 0%, 100%, 0), #fff 75%);
  z-index: 40;
}
.readmoreBtn {
  cursor: pointer;
  position: absolute;
  bottom: 15px;
  z-index: 45;
}

/************ Version 1.6 **************/
.btn-shadow {
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.btn-donate {
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: bold;
}

.btn-donate-embed {
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

/************ Version 1.7 **************/
select.form-control,
select.form-control:focus {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

i.featured-icon {
  color: #ff9800;
}
.box-featured {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  padding: 2px 6px;
  border-radius: 50px;
  color: #ff9800;
  font-size: 25px;
  text-shadow: 0 0px 2px #adadad;
}

.padding-15 {
  padding: 15px;
}

/************ Version 1.8 **************/
.description iframe {
  max-height: 500px !important;
}
/************ Version 1.9 **************/
.fb-comments iframe {
  max-height: inherit !important;
}

/************ Version 1.9.1 **************/
a:hover.btnLike,
a:focus.btnLike,
a:active.btnLike {
  text-decoration: none;
}
/************ Version 2.0 **************/
.wordBreak {
  word-break: break-word !important;
}
/************ Version 2.1 **************/
.btnDisabled {
  background-color: #a2a2a2;
  color: #fff;
}
/************ Version 2.2 **************/
@media (min-width: 768px) {
  .modalContactOrganizer {
    width: 450px;
    margin: 30px auto;
  }
}
.modalContactOrganizer .modal-body {
  padding: 25px;
}
.closeLight,
.closeLight:hover,
.closeLight:focus {
  color: #fff;
  opacity: 1;
}
.selectReward {
  display: block;
  color: inherit;
  position: relative;
}
.selectReward:hover,
.selectReward:focus,
.selectReward:active {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cardSelectRewardBox {
  display: none;
}
.cardSelectReward {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  background-color: rgba(244, 83, 2, 0.9);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.headerModalOverlay:before {
  content: "";
  position: absolute;
  width: 100%;
  background: rgba(5, 5, 5, 0.7);
  left: 0;
  top: 0;
  display: block;
  bottom: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.showBanner {
  position: fixed;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  bottom: 0;
  padding: 10px;
}
img.imgDonations {
  max-width: inherit !important;
}

/************ Version 3.2 **************/
a.btn-whatsapp,
a:hover.btn-whatsapp,
a:active.btn-whatsapp,
a:focus.btn-whatsapp {
  background-color: #29a628;
  border-color: #29a628;
  color: #fff;
  margin-bottom: 5px;
}

/************ Version 3.8 ************/
.carousel-cover:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.2);
  left: 0;
  top: 0;
}
.dropdown-toggle::after {
  margin-left: 0.1em;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.dropdown-toggle[aria-expanded="true"]:after {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.nav-link {
  color: white;
  border-radius: 3px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
  text-transform: uppercase;
  margin-top: 0.2em;
}
.nav-link:hover:not(.search):not(.btn),
.nav-link:active:not(.search):not(.btn),
.nav-link:focus:not(.search):not(.btn) {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
}

.nav-link.search:hover,
.nav-link.search:active,
.nav-link.search:focus {
  color: white;
}
.btn {
  font-weight: bold;
}
.dd-menu:before {
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  vertical-align: middle;
  content: "";
  top: -5px;
  left: 10px;
  right: auto;
  color: #ffffff;
  border-bottom: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-left: 0.4em solid transparent;
}
.dd-menu-user:before {
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  vertical-align: middle;
  content: "";
  top: -5px;
  right: 10px;
  left: auto;
  color: #ffffff;
  border-bottom: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-left: 0.4em solid transparent;
}
.dropdown-menu {
  padding-top: 0.955rem;
  border: 0;
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  transition: all 150ms linear;
  margin-top: 10px !important;
}

.dropdown-toggle::after {
  margin-left: 0.1em;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.dropdown-toggle[aria-expanded="true"]:after {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.dropdown-toggle::after {
  font-weight: 400;
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  content: "\f107";
  font-size: 12px;
  top: 50%;
  right: 24px;
  margin-top: -5px;
}
.text-shadow-trans {
  text-shadow: 0 1px 4px #333333b3;
}
.navbar .nav-item {
  margin-left: 2px;
  margin-right: 2px;
}

.sidebar-overlay .navbar .navbar-collapse {
  z-index: 100;
}

/*** 991 ***/
@media (max-width: 991px) {
  .navbar .navbar-collapse.show {
    right: 0;
  }
  .navbar .navbar-collapse {
    position: fixed;
    right: -100%;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    overflow-y: scroll;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    padding: 5px;
    text-align: center;
  }
  .dd-menu:before,
  .dd-menu-user:before {
    display: none;
  }
  .carousel-caption .display-4 {
    font-size: 3.1rem;
  }
  .item h5 {
    line-height: 1.2 !important;
  }
  .social-links {
    text-align: center !important;
    margin-top: 10px;
  }
  .list-social {
    float: none !important;
  }
  .copyright {
    text-align: center;
  }
  .btn-create {
    margin-top: 10px;
  }

  .navbar .navbar-collapse .close-menu {
    color: #fff;
    padding: 2px 4px;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    font-size: 25px;
    text-align: center;
    font-weight: 100;
    text-decoration: none;
  }

  .navbar .navbar-nav .nav-item {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.25rem;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    display: block;
    padding: 0.625rem;
  }
} /* max-width 991 */

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar .navbar-nav .nav-item .nav-link:not(.btn).active {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: white;
  background-color: #007bff;
}

[class^="ribbon-"] {
  position: absolute;
  margin-bottom: 80px;
}
[class^="ribbon-"]:before,
[class^="ribbon-"]:after {
  content: "";
  position: absolute;
}

.ribbon-1 {
  width: 30px;
  height: 40px;
  background: #ff9800;
  top: -6px;
  left: 25px;
}
.ribbon-1:before {
  height: 0;
  width: 0;
  border-bottom: 6px solid #d07e05;
  border-right: 6px solid transparent;
  right: -6px;
}
.ribbon-1:after {
  height: 0;
  width: 0;
  border-left: 15px solid #ff9800;
  border-right: 15px solid #ff9800;
  border-bottom: 10px solid transparent;
  bottom: -10px;
  left: 0;
}
.ribbon-1 i {
  position: absolute;
  top: 40%;
  left: 30%;
  color: #fff;
}
.item > a::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.item h5 {
  line-height: 3;
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  margin-top: -30px;
  color: #fff;
  z-index: 5;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #565656;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}
.owl-theme .owl-dots .owl-dot span {
  position: relative;
  background-color: #d6d6d6;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}
.owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  border-radius: 50%;
  width: 0;
  height: 0;
  /*background-color: rgba(0, 0, 0, 0.1);*/
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}
.owl-theme .owl-dots .owl-dot.active span::before,
.owl-theme .owl-dots .owl-dot:hover span::before {
  top: -5px;
  left: -5px;
  width: 19px;
  height: 19px;
  border: 1px solid #565656;
}
.bg-dark-2 {
  background-color: #1b1b1b;
}
.bg-dark-3 {
  background-color: #212121;
}
.link-footer,
.ico-social {
  color: #999;
}
.btn-main:hover i {
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
}
.btn-main i {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.bg-sections > div {
  color: white;
  position: relative;
}
.jumbotron-bottom,
.bg-sections {
  background: url("../img/cover.jpg") no-repeat center center #d1d1d1;
  background-size: cover;
  position: relative;
}
.jumbotron {
  border-radius: 0 !important;
}
.bg-cover:before,
.bg-sections::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.3);
  left: 0;
  top: 0;
}
.parallax-cover {
  background-repeat: repat;
  background-attachment: fixed;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}
main > div.section:nth-child(odd) {
  background-color: white;
}
main > div.section:nth-child(even) {
  background-color: #f8f9fa !important;
}
form.login-form {
  width: 350px;
}
.alert-danger {
  color: #ffffff;
  background-color: #ff0000;
  border-color: #ff012a;
}
.bg-danger {
  color: #ffffff;
  background-color: #ff0000 !important;
}
.custom-control-input:not(:disabled):focus ~ .custom-control-label::before {
  box-shadow: none;
}
.custom-checkbox .custom-control-input ~ .custom-control-label,
.custom-control-label {
  font-size: 0.875rem;
  cursor: pointer;
}
a.fb-button {
  background-color: #3b5998;
  font-weight: normal;
}
a.google-button,
a:hover.google-button,
a:focus.google-button {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  font-weight: normal;
}

.alert-dismissible .close {
  color: #fff;
  text-shadow: none;
}
.input-group-text {
  background: transparent;
}
.input-group-text i {
  color: #bdbdbd;
}
.alert-success {
  background-color: #00a65a;
  border-color: #00a65a;
  color: #fff;
  width: fit-content;
}
.campaigns {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}
.campaigns:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.error-page h1 {
  font-size: 10rem;
  line-height: 9rem;
  font-weight: 700;
  color: #ec2522;
}
.wrap-center {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 20;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.error-link {
  color: #ec2522;
}
.wrap-container {
  max-width: 550px;
  margin: 0 auto;
}
.wrap-container-lg {
  width: 650px;
  margin: 0 auto;
}
.avatar-wrap {
  width: 125px;
  height: 125px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
.button-avatar-upload {
  color: #fff;
  width: 100%;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
}
a:hover.button-avatar-upload {
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
}
.progress-upload {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  line-height: 125px;
  display: none;
}
.page-link:hover {
  color: #fff;
}
.page-link {
  border-radius: 4px;
  border: none;
  margin-right: 2px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.item > a::after {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.5s linear;
}
.item > a:hover::after {
  background: rgba(0, 0, 0, 0.1);
}
.filer-input-dragDrop {
  display: block;
  width: 100%;
  margin: 0 auto 25px auto;
  padding: 50px 0;
  color: #8d9499;
  color: #97a1a8;
  cursor: pointer;
  border: 2px dashed #c8cbce;
  text-align: center;
  border-radius: 6px;
  -webkit-transition: box-shadow 0.3s, border-color 0.3s;
  -moz-transition: box-shadow 0.3s, border-color 0.3s;
  transition: box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}
.filer-input-dragDrop:hover {
  border-color: #868686;
}
.filer.dragged .filer-input-dragDrop {
  border-color: #aaa;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.08);
}

.filer.dragged .filer-input-dragDrop * {
  pointer-events: none;
}

.filer.dragged .filer-input-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filer.dragged .filer-input-text,
.filer.dragged .filer-input-choose-btn {
  filter: alpha(opacity=30);
  opacity: 0.3;
}

.filer-input-dragDrop .filer-input-icon {
  font-size: 70px;
  margin-top: -10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filer-input-text h3 {
  margin: 0;
  font-size: 18px;
}

.filer-input-text span {
  font-size: 12px;
}

.filer-input-choose-btn {
  display: inline-block;
  padding: 8px 14px;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: bold;
  color: #8d9496;
  border-radius: 3px;
  border: 1px solid #c6c6c6;
  vertical-align: middle;
  background-color: #fff;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.filer-input-choose-btn:hover,
.filer-input-choose-btn:active {
  color: inherit;
}

.filer-input-choose-btn:active {
  background-color: #f5f5f5;
}
.previewPhoto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: none;
  cursor: default;
}
.btn-remove-photo {
  position: absolute;
  top: 20px;
  right: 20px;
}
.text-underline {
  text-decoration: underline;
}
.custom-select {
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23a5a5a5' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    no-repeat right 0.75rem center/8px 10px;
}
.text-strong-small {
  font-weight: 600;
  font-size: 20px;
  color: #333;
}
.text-percentage {
  float: right;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}
.social-share a {
  color: #797979;
  font-size: 18px;
}
.likeButton {
  cursor: pointer;
}
.btn-absolute {
  position: absolute;
  right: 20px;
  padding: 2px 10px;
}
#url_campaign,
#embedCode {
  padding-right: 110px;
}

#updates li {
  list-style: none;
  padding-bottom: 46px;
  padding-left: 30px;
  position: relative;
  border-left: 2px solid #ededed;
}
#updates li:last-child {
  padding-bottom: 0px;
}
#updates li:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #ededed;
  border-radius: 50%;
  left: -13px;
  top: 0;
  transition: all 0.6s;
  z-index: 9;
}
#updates li:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 25px;
  background-color: #ededed;
  left: 0;
  top: 10px;
}
#listDonations li {
  margin-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}
.facebook-btn {
  color: #3e5c9b !important;
}
.twitter-btn {
  color: #1da1f2 !important;
}
/*********** v3.9 *********/
.fixed-top {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: #44403bbd;
  box-shadow: 0px 5px 10px 0px #aaa;
}

/*********** v4.0 *********/
#desc li {
  list-style: inherit;
}
#desc ol,
#desc ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.fb-messenger {
  color: #448aff !important;
}
.btn-telegram {
  color: #20a0e1 !important;
}
.btn-whatsapp {
  color: #50b154 !important;
}
a:hover.social-share {
  text-decoration: none;
}
a.social-share i {
  color: #797979;
  font-size: 32px;
}
/*********** v4.6 *********/
.dropdown-menu-macos {
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.dropdown-menu-macos .dropdown-item {
  border-radius: 0.25rem;
}
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.mr-1,
.mx-1 {
  margin-right: 0.25rem;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem;
}
.mr-3,
.mx-3 {
  margin-right: 1rem;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem;
}
.mr-5,
.mx-5 {
  margin-right: 3rem;
}
.ml-1,
.mx-1 {
  margin-left: 0.25rem;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem;
}
.ml-3,
.mx-3 {
  margin-left: 1rem;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem;
}
.ml-5,
.mx-5 {
  margin-left: 3rem;
}
.pr-1 {
  padding-right: 0.25rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.pr-4 {
  padding-right: 1.5rem !important;
}
.pr-5 {
  padding-right: 3rem !important;
}
.pl-1 {
  padding-left: 0.25rem !important;
}
.pl-2 {
  padding-left: 0.5rem !important;
}
.pl-3 {
  padding-left: 1rem !important;
}
.pl-4 {
  padding-left: 1.5rem !important;
}
.pl-5 {
  padding-left: 3rem !important;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}
a:not([class*="btn"]) {
  text-decoration: none;
}
a:not([class*="btn"]):not([class*="nav-link"]):not(
    [class*="dropdown-item"]
  ):not([class*="list-group-item"]):not([class*="page-link"]):hover {
  text-decoration: underline;
}
.bg-success {
  background-color: #28a745 !important;
}
[placeholder] {
  text-overflow: ellipsis;
}
.card-settings > .list-group-flush > .list-group-item {
  border-width: 0 0 0px !important;
}
.icon-dashboard {
  background-color: #2687072e;
  border-radius: 50%;
  color: #00ad1d !important;
  width: 3rem !important;
  height: 3rem !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  font-size: 24px;
}
.inner-wrap {
  position: relative;
  z-index: 1;
}
.icon-wrap {
  position: absolute;
  top: -30px;
  right: 10px;
  z-index: 0;
  font-size: 115px;
  color: rgba(0, 0, 0, 0.1);
  transform: rotate(20deg);
}
.table thead th {
  vertical-align: bottom;
  border: none;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  color: #afafaf;
  font-size: 14px;
}
.table td,
.table th {
  padding: 0.75rem;
  vertical-align: top;
  border: none;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  font-size: 14px;
}
.table tbody {
  border: none !important;
}
.pagination {
  margin-top: 10px;
}
.modal-content {
  border-radius: 0.75rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-check .form-check-input ~ .form-check-label,
.form-check-label,
.form-check-input {
  cursor: pointer;
}
.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}
.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}
.media-body {
  -ms-flex: 1;
  flex: 1;
}
.icon-display {
  font-size: 3.5rem !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
}
.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
.list-group-item.active {
  color: #fff;
  background-color: #565656;
  border-color: #565656;
}
.blog-post img {
  max-width: 100% !important;
  height: auto !important;
}
.ribbon-1 {
  z-index: 999;
}
.nav-link:focus,
.nav-link:hover {
  color: #fff;
}
.form-check-input:focus:not(:checked),
.form-switch .form-check-input:focus:not(:checked) {
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.form-switch .form-check-input:focus:not(:checked) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}
.d-none-custom {
  display: none;
}
::selection {
  background-color: var(--color-default);
  color: white;
}
::moz-selection {
  background-color: var(--color-default);
  color: white;
}
::webkit-selection {
  background-color: var(--color-default);
  color: white;
}

a,
a:hover,
a:focus,
a.page-link,
.btn-outline-primary {
  color: var(--color-default);
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled,
.form-check .custom-control-input:checked ~ .custom-control-label::before,
.page-item.active .page-link,
.page-link:hover {
  background-color: var(--color-default);
  border-color: var(--color-default);
}
.bg-primary,
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active,
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span,
#updates li:hover:before {
  background-color: var(--color-default) !important;
}
.owl-theme .owl-dots .owl-dot.active span::before,
.owl-theme .owl-dots .owl-dot:hover span::before,
.form-control:focus,
.custom-select:focus,
.btn-outline-primary {
  border-color: var(--color-default);
}
.form-check-input:checked,
.custom-control-input:checked ~ .custom-control-label::before,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: var(--color-default);
  border-color: var(--color-default);
}
.carousel-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #232a29;
}
.carousel-cover:nth-child(1) {
  background-image: url("../img/slider-1.jpg");
}
.carousel-cover:nth-child(2) {
  background-image: url("../img/slider-2.jpg");
}
.carousel-cover:nth-child(3) {
  background-image: url("../img/slider-3.jpg");
}
.bg-cover {
  background-image: url("../img/cover.jpg");
}
.datepicker .table > :not(:first-child) {
  border-top: 0;
}
.padding-top-78 {
  padding-top: 70px;
}
.form-switch.form-switch-md .form-check-input {
  height: 1.5rem;
  width: calc(2rem + 0.75rem);
  border-radius: 3rem;
  cursor: pointer;
}
.form-switch-md .form-check-label {
  font-size: 0.89rem;
  line-height: 2rem;
  padding-left: 10px;
}
.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(51, 51, 51, 0.7);
  z-index: 1031;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.overlay.open {
  display: block;
  opacity: 1;
}
.StripeElement {
  box-sizing: border-box;
  height: 40px;
  padding: 11px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
  margin-bottom: 10px;
}

.StripeElement--focus {
  border-color: #f45302;
}

.bg-orange {
  background-color: #f45302;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
/* Version 5.0 */
.text-muted {
  opacity: 1 !important;
  color: #6c757d !important;
}
.grecaptcha-badge {
  visibility: hidden;
}
[data-bs-theme="dark"] .link-dark,
[data-bs-theme="dark"] .text-dark,
[data-bs-theme="dark"] .text-strong-small,
[data-bs-theme="dark"] .carousel .carousel-caption,
[data-bs-theme="dark"].carousel .carousel-caption {
  color: #fff !important;
}
[data-bs-theme="dark"] .btn-white {
  background-color: #000 !important;
  color: #fff !important;
}
[data-bs-theme="dark"] .bg-white,
[data-bs-theme="dark"] .datepicker.dropdown-menu,
[data-bs-theme="dark"] main > div.section:nth-child(odd) {
  background-color: #212529 !important;
}
[data-bs-theme="dark"] main > div.section:nth-child(even) {
  background-color: #2a2a2a !important;
}
[data-bs-theme="dark"] .bg-light {
  background-color: #1e1e1e !important;
}
[data-bs-theme="dark"] .card.campaigns,
[data-bs-theme="dark"] .previewPhoto {
  background-color: #1a1a1a;
}
[data-bs-theme="dark"] .dd-menu:before,
[data-bs-theme="dark"] .dd-menu-user::before {
  color: var(--bs-body-bg);
}
[data-bs-theme="dark"] .datepicker-dropdown.datepicker-orient-bottom:after,
[data-bs-theme="dark"] .datepicker-dropdown:after {
  border-color: #212529 !important;
}
.dropdown-item {
  margin-bottom: 2px;
}
[data-bs-theme="dark"] .datepicker table tr td span.disabled,
[data-bs-theme="dark"] .datepicker table tr td span.disabled:hover {
  background-color: #222222 !important;
}
[data-bs-theme="dark"] .truncate:after {
  background-image: linear-gradient(
    hsla(0, 0%, 100%, 0),
    #212529 75%
  ) !important;
}
.h1logo {
  color: hsl(0deg 0% 100%);
  font-family: Nunito, sans-serif;
  font-size: 40px;
  margin-bottom: 0rem;
}
.h1logo-footer {
  color: hsl(0deg 0% 100%);
  font-family: Nunito, sans-serif;
  font-size: 64px;
}

/* Flexbox and Grid Setup */
.w-layout-vflex.ques-text-flex {
  display: grid; /* Using grid to display 3 items per row */
  grid-template-columns: repeat(3, 1fr); /* 3 columns of equal width */
  gap: 20px; /* Space between the items */
  margin-top: 20px;
}

@media (max-width: 991px) {
  .w-layout-vflex.ques-text-flex {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* 2 items per row on medium screens */
  }
}

@media (max-width: 767px) {
  .w-layout-vflex.ques-text-flex {
    grid-template-columns: 1fr; /* 1 item per row on smaller screens */
  }
}

/* Styling individual cards */
.ques-card-flex {
  /* Optional: set the width to control how they appear */
  max-width: 100%;
}

/* Styling for Question Cards */
.ques-card {
  background-color: #fff;
  border-radius: 30px;
  width: 100%; /* Full width within the grid */
  box-shadow: 1px -1px 5px #0003, -5px 3px 5px #0003;
  padding: 20px;
}

/* Media Query for Small Screens */
@media (max-width: 767px) {
  .ques-card {
    width: 100%; /* Full width on mobile */
  }
}

.card-heading {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

.ques-text-flex {
  align-items: center;
}

/* --- Question Card Status Styles --- */
.ques-card .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}

.ques-card .alert {
  border-radius: 10px;
  font-size: 14px;
  padding: 12px 16px;
}

.ques-card .alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

.ques-card .alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

/* Dark mode support for alerts */
[data-bs-theme="dark"] .ques-card .alert-info {
  background-color: #1a3a40;
  border-color: #2a5a60;
  color: #b0e0e6;
}

[data-bs-theme="dark"] .ques-card .alert-success {
  background-color: #1a401a;
  border-color: #2a602a;
  color: #b0e6b0;
}

/* ---------------------------------
   GLOBAL / DESKTOP STYLES
---------------------------------- */
.about {
  margin-top: 54px;
  margin-bottom: 40px;
  padding-bottom: 59px;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.card-btn-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
}

/* Desktop default: fixed 300px height */
.about-card-bg {
  border-radius: 30px;
  height: 300px;
}

/* Color backgrounds */
.bg-card1 {
  background-color: #fbf6c2;
}
.bg-card2 {
  background-color: #c2fbd4;
}
.bg-card3 {
  background-color: #c2eafb;
}
.bg-card4 {
  background-color: #fbd9c2;
}

.about-card-bg._w-200 {
  width: 200px;
}
.about-card-bg._w-300 {
  width: 300px;
  padding: 20px 30px;
}
.about-card-bg._w-400 {
  width: 400px;
  padding: 20px;
}
.about-card-bg._w-600 {
  width: 625px;
  padding: 20px;
}

.about-card-flex {
  display: flex;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
}

.about-card-flex.mt-20 {
  margin-top: 20px;
}

.about-card-bg-grey {
  background-color: #d9d9d9;
  border-radius: 30px;
  width: 200px;
  height: 300px;
  padding-top: 20px;
  padding-left: 29px;
  padding-right: 45px;
}

.about-row-flex {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
}

.grey-card-flex {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 21px;
}

.heading {
  font-size: 28px;
  line-height: 30px;
}

.about-card-heading {
  font-size: 24px;
  line-height: 28px;
}

.about-card-heading.bg-white {
  color: #000;
  width: auto;
}

.about-card-text {
  text-align: left;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.about-card-heading.bg-white._w-100 {
  width: 400px;
}

.icon-bg-white {
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-left: 83px;
}

.image-5 {
  width: 30px;
  height: 30px;
  margin-top: 9px;
  margin-left: 8px;
}

/* ---------------------------------
   MOBILE OVERRIDES (max-width: 767px)
---------------------------------- */
@media screen and (max-width: 767px) {
  .about-card-flex {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  .about-card-bg,
  .about-card-bg-grey {
    /* Let cards go full-width on mobile */
    width: 100% !important;
    max-width: 400px; /* Adjust if you want a narrower max */
    height: auto; /* Let height expand naturally */
    padding: 20px;
    text-align: center;
  }

  .about-card-text,
  .about-card-heading {
    text-align: center;
  }

  .about-card-heading {
    font-size: 20px;
  }

  .card-flex {
    align-items: center;
  }

  /* Make images flow in normal (relative) positioning on mobile */
  .card-2-img,
  .card-3-img,
  .card-4-img,
  .card-5-img {
    position: relative !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-top: 10px;
    object-fit: contain;
  }
}

/* ---------------------------------
   DESKTOP IMAGE POSITIONING
   (absolute for "impact" layout)
---------------------------------- */
.card-flex {
  position: relative; /* allows absolutely positioned children */
  justify-content: center;
  align-items: flex-start;
}

.card-2-img {
  position: absolute;
  bottom: -143px;
  right: -23px;
  width: 231px;
  height: auto;
  object-fit: contain;
}

.card-3-img {
  position: absolute;
  bottom: -146px;
  right: 10px;
  width: 308px;
  height: auto;
  object-fit: contain;
}

.card-4-img {
  position: absolute;
  bottom: -196px;
  right: 10px;
  width: 248px;
  height: auto;
  object-fit: contain;
}

.card-5-img {
  position: absolute;
  bottom: -139px;
  right: -16px;
  width: 166px;
  height: auto;
  object-fit: contain;
}

/* Utility flex class */
.card-h-flex {
  flex-flow: row;
  justify-content: center;
}

/* about */

.card-flex {
  position: relative; /* Add relative positioning */
  justify-content: center;
  align-items: flex-start;
}

.card-3-img {
  position: absolute;
  bottom: -146px;
  right: 10px;
  width: 308px;
  height: auto;
  object-fit: contain;
}

.card-5-img {
  position: absolute;
  bottom: -139px;
  right: -16px;
  width: 166px;
  height: auto;
  object-fit: contain;
}
.card-4-img {
  position: absolute;
  bottom: -196px;
  right: 10px;
  width: 248px;
  height: auto;
  object-fit: contain;
}

.card-2-img {
  position: absolute;
  bottom: -143px;
  right: -23px;
  width: 231px;
  height: auto;
  object-fit: contain;
}

/* .card-flex {
    justify-content: center;
    align-items: flex-start;
  }
  
  .card-2-img {
    margin-top: 15px;
    margin-left: 74px;
    width: 200px;
    height:200px;
    object-fit: contain;
    position: relative;
  }
  
  .card-2-img.ml-100 {
    margin-top: -17px;
    margin-left: auto;
  }
  
  .card-2-img.mt-200 {
    margin-top: 113px;
  }
  
  .card-2-img.mt-0 {
    margin-top: 0;
    margin-left: 119px;
  } */

.card-h-flex {
  flex-flow: row;
  justify-content: center;
}

.contact-card {
  background-color: #00000003;
  border-radius: 30px;
  width: 300px;
  height: 300px;
}

.contact-flex {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-around;
}

.contact-input {
  background-color: #d3d3d3;
  border-radius: 14px;
  width: 300px;
  margin-bottom: 19px;
  box-shadow: 1px 1px 8px #0003;
}
.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}
.card-btn-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
}
.maxwidth {
  max-width: 100% !important;
}

.custom-modal-link {
  color: rgb(47, 69, 159) !important; /* Change to your preferred color */
}

.custom-modal-link:hover {
  color: blue !important; /* Change hover color if needed */
}

.ques-img-bg {
  padding: 10px 10px;
  border-radius: 10px;
}
.image-4 {
  border-radius: 15px;
  width: 30px;
  height: 30px;
}
.hmargintop20 {
  margin-top: 20px;
}

.footer {
  padding-bottom: 30px;
}

.footer-flex {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-around;
  align-items: center;
}

.footer-text-flex {
  flex-flow: row;
}

.footer-link-flex {
  flex-flow: column;
}

.footer-text {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.footer-link,
.footer-link-copy,
.footer-link-copy-copy {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}

.copyright-custome {
  color: #fff;
  text-align: center;
  margin-top: 33px;
  margin-left: 53px;
  font-size: 12px;
  font-weight: 600;
}

.footer-line {
  background-color: #fff;
  width: 100vw;
  height: 0.2px;
  margin-top: 27px;
}

/* footer */

.footer-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 40px;
  padding-left: 5px;
  background-color: #333;
  color: #fff;
}

.footer-about,
.footer-links,
.footer-resources,
.footer-account,
.footer-legal,
.footer-social,
.footer-newsletter {
  flex: 1 1 30%;
  margin: 20px;
}

.footer-about p {
  font-size: 12px;
  font-family: 400px;
}

.footer-about a {
  font-size: 12px;
  font-family: 400px;
  line-height: 16px;
  text-decoration: none;
  color: #fff;
  border: 2px solid;
  padding: 8px 20px;
  border-radius: 25px;
  margin-top: 50px;
}

.footer-about a:hover {
  background-color: #fff;
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  margin-top: 50px;
}

.footer-social .social-icons a {
  margin-right: 10px;
  color: white;
  font-size: 20px;
}

.footer-below-flex {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.footer-links ul,
.footer-resources ul,
.footer-account ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-resources li,
.footer-account li,
.footer-legal li {
  margin-bottom: 3px;
}

.footer-links a,
.footer-resources a,
.footer-account a,
.footer-legal a {
  text-decoration: none;
  color: white;

  font-size: 12px;
  font-weight: 400px;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
}

.footer-newsletter p {
  font-size: 12px;
}

.footer-newsletter input {
  padding: 10px 20px;
  margin-bottom: 10px;
  font-size: 12px;
  width: 25%;
  border-radius: 25px;
}

.footer-newsletter button:hover {
  padding: 10px;
  background-color: #ffd76e;
  color: #333;
}
.footer-newsletter button {
  padding: 10px;
  background-color: #ff4628;
  color: white;
  border: none;
  cursor: pointer;
  width: 25%;
  border-radius: 25px;
  font-size: 14px;
  /* border: 2px solid #fff; */
}
.footer-language {
  margin-top: 22px;
}
.footer-section p,
.footer-section a {
  font-size: 18px; /* Increase this value as needed */
}
.footer-section a:hover {
  color: #f45302; /* Change to orange on hover */
}

/* Mobile styles for the subscription form */
@media only screen and (max-width: 768px) {
  .footer-newsletter form {
    width: 90%;
    padding: 0 10px; /* Optional: adds some horizontal padding */
    box-sizing: border-box;
  }
  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Custom Tab Styling - New Class */
.custom-nav-tabs {
  border-bottom: 2px solid #e9ecef !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-bottom: 1rem !important;
  background-color: #f8f9fa !important;
  padding: 10px 10px 0 10px !important;
  border-radius: 8px 8px 0 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.custom-nav-tabs .nav-link {
  border: 2px solid transparent !important;
  border-bottom: none !important;
  border-radius: 8px 8px 0 0 !important;
  padding: 12px 24px !important;
  font-weight: 500 !important;
  color: #495057 !important;
  background-color: #f8f9fa !important;
  transition: all 0.3s ease !important;
  margin-right: 4px !important;
  position: relative !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10 !important;
}

.custom-nav-tabs .nav-link:hover {
  border-color: #dee2e6 !important;
  background-color: #e9ecef !important;
  color: #212529 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.custom-nav-tabs .nav-link.active {
  border-color: #007bff !important;
  background-color: #ffffff !important;
  color: #007bff !important;
  font-weight: 600 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15) !important;
}

.custom-nav-tabs .nav-link.active::after {
  content: "" !important;
  position: absolute !important;
  bottom: -2px !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background-color: #007bff !important;
  border-radius: 0 0 2px 2px !important;
}

.custom-nav-tabs .nav-link:not(.active) {
  border-color: #dee2e6 !important;
  background-color: #f8f9fa !important;
  color: #495057 !important;
}

.custom-nav-tabs .nav-link:not(.active):hover {
  border-color: #adb5bd !important;
  background-color: #e9ecef !important;
  color: #212529 !important;
}

/* Custom Tab Content Styling */
.custom-tab-content {
  border: 2px solid #e9ecef !important;
  border-top: none !important;
  border-radius: 0 0 8px 8px !important;
  background-color: #ffffff !important;
  min-height: 200px !important;
}

.custom-tab-pane {
  padding: 20px !important;
  display: block !important;
}

.custom-tab-pane.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.custom-tab-pane:not(.active) {
  display: none !important;
}

/* Custom Tab Color Themes */
.custom-tab-primary .nav-link {
  color: #1976d2 !important;
  background-color: #e3f2fd !important;
}

.custom-tab-primary .nav-link:hover {
  border-color: #2196f3 !important;
  background-color: #bbdefb !important;
  color: #1565c0 !important;
}

.custom-tab-primary .nav-link.active {
  border-color: #2196f3 !important;
  color: #2196f3 !important;
}

.custom-tab-primary .nav-link.active::after {
  background-color: #2196f3 !important;
}

.custom-tab-success .nav-link {
  color: #388e3c !important;
  background-color: #e8f5e8 !important;
}

.custom-tab-success .nav-link:hover {
  border-color: #4caf50 !important;
  background-color: #c8e6c9 !important;
  color: #2e7d32 !important;
}

.custom-tab-success .nav-link.active {
  border-color: #4caf50 !important;
  color: #4caf50 !important;
}

.custom-tab-success .nav-link.active::after {
  background-color: #4caf50 !important;
}

.custom-tab-warning .nav-link {
  color: #f57c00 !important;
  background-color: #fff8e1 !important;
}

.custom-tab-warning .nav-link:hover {
  border-color: #ff9800 !important;
  background-color: #ffecb3 !important;
  color: #ef6c00 !important;
}

.custom-tab-warning .nav-link.active {
  border-color: #ff9800 !important;
  color: #ff9800 !important;
}

.custom-tab-warning .nav-link.active::after {
  background-color: #ff9800 !important;
}

.custom-tab-danger .nav-link {
  color: #d32f2f !important;
  background-color: #ffebee !important;
}

.custom-tab-danger .nav-link:hover {
  border-color: #f44336 !important;
  background-color: #ffcdd2 !important;
  color: #c62828 !important;
}

.custom-tab-danger .nav-link.active {
  border-color: #f44336 !important;
  color: #f44336 !important;
}

.custom-tab-danger .nav-link.active::after {
  background-color: #f44336 !important;
}

/* --- Improved Dark Mode Styles for Text Visibility --- */
[data-bs-theme="dark"] body,
[data-bs-theme="dark"] .section,
[data-bs-theme="dark"] .footer,
[data-bs-theme="dark"] .footer-section,
[data-bs-theme="dark"] .footer-link,
[data-bs-theme="dark"] .footer-about,
[data-bs-theme="dark"] .footer-newsletter,
[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .ques-card,
[data-bs-theme="dark"] .about-card-bg,
[data-bs-theme="dark"] .about-card-heading,
[data-bs-theme="dark"] .about-card-text,
[data-bs-theme="dark"] .heading,
[data-bs-theme="dark"] .navbar,
[data-bs-theme="dark"] .nav-link,
[data-bs-theme="dark"] .btn,
[data-bs-theme="dark"] .text-dark,
[data-bs-theme="dark"] .text-muted,
[data-bs-theme="dark"] .text-strong-small,
[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5,
[data-bs-theme="dark"] h6,
[data-bs-theme="dark"] p,
[data-bs-theme="dark"] a,
[data-bs-theme="dark"] span,
[data-bs-theme="dark"] label {
  color: #fff !important;
}
[data-bs-theme="dark"] .footer-link,
[data-bs-theme="dark"] .footer-link a {
  color: #e0e0e0 !important;
}
[data-bs-theme="dark"] .footer-section p,
[data-bs-theme="dark"] .footer-section a {
  color: #d0d0d0 !important;
}
[data-bs-theme="dark"] .footer-section a:hover {
  color: #fff !important;
}
[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .ques-card,
[data-bs-theme="dark"] .about-card-bg {
  background-color: #23272b !important;
  color: #fff !important;
}
[data-bs-theme="dark"] .about-card-bg-grey {
  background-color: #2a2a2a !important;
  color: #fff !important;
}
[data-bs-theme="dark"] .btn-main,
[data-bs-theme="dark"] .btn-primary {
  background-color: #ff6600 !important;
  color: #fff !important;
  border-color: #ff6600 !important;
}
[data-bs-theme="dark"] .btn-main:hover,
[data-bs-theme="dark"] .btn-primary:hover {
  background-color: #ff8533 !important;
  color: #fff !important;
  border-color: #ff8533 !important;
}
[data-bs-theme="dark"] .text-muted {
  color: #b0b0b0 !important;
}
[data-bs-theme="dark"] .custom-modal-link {
  color: #ffb84d !important;
}

.dynamic-pages-banner-position {
  top: -22px;
}
.py-custom-7 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Enhanced Logo Styling with Primary Brand Color */
.navbar-brand h1.h1logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6600 !important; /* Primary brand color */
  text-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.navbar-brand:hover h1.h1logo {
  color: #ff8533 !important; /* Lighter shade on hover */
  transform: scale(1.1); /* Enlarge on hover */
  text-shadow: 0 4px 8px rgba(255, 102, 0, 0.4),
    0 2px 4px rgba(255, 102, 0, 0.3);
}

/* Logo hover effect with subtle glow */
.navbar-brand h1.h1logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(255, 102, 0, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 4px;
}

.navbar-brand:hover h1.h1logo::after {
  opacity: 1;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .navbar-brand h1.h1logo {
    font-size: 1.5rem;
  }

  .navbar-brand:hover h1.h1logo {
    transform: scale(1.05); /* Smaller scale on mobile */
  }
}

@media (max-width: 576px) {
  .navbar-brand h1.h1logo {
    font-size: 1.3rem;
  }

  .navbar-brand:hover h1.h1logo {
    transform: scale(1.03); /* Even smaller scale on small mobile */
  }
}

/* Dark mode support for logo */
@media (prefers-color-scheme: dark) {
  .navbar-brand h1.h1logo {
    color: #ff6600 !important;
    text-shadow: 0 2px 4px rgba(255, 102, 0, 0.4);
  }

  .navbar-brand:hover h1.h1logo {
    color: #ff8533 !important;
    text-shadow: 0 4px 8px rgba(255, 102, 0, 0.5),
      0 2px 4px rgba(255, 102, 0, 0.4);
  }
}
