* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
/* ANIMATIONS */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* NAVBAR */
.main-header-area{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.sticky-menu {
  position: fixed;
  width: 100%;
  background: #ffffff;
  top: 0;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
}

#menu {
  display: none;
}
#menu {
  width: 35px;
  height: 30px;
  cursor: pointer;
  border: none;
  background-color: #fff;
}
.bar,
.change .bar {
  background-color: rgb(214, 0, 0);
}

.bar {
  height: 4px;
  width: 25px;
  display: block;
  border-radius: 5px;
  transition: 0.3s;
}
#bar1 {
  transform: translateY(-4px);
}
#bar3 {
  transform: translateY(4px);
}
#menu-bar {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.change #bar1 {
  transform: translateY(4px) rotateZ(-45deg);
}
.change #bar3 {
  transform: translateY(-4px) rotate(45deg);
}
.change #bar2 {
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  #menu {
    display: inline-block;
  }
  #menu {
    float: right;
    margin: 30px 20px;
  }
  #menu-bar {
    width: 100%;
  }
  .navbar {
    padding: 10px 0;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
}
.nav-background {
  background-color: #ffffff;
  padding: 15px 0 !important;
}
.nav-item {
  margin-right: 10px;
}
@media only screen and (max-width: 480px) {
  .nav-item {
    margin-right: 0;
  }
}
.nav-link {
  color: #000000 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  border-bottom: 3px solid rgb(214, 0, 0) !important;
  padding: 8px 16px !important;
  /* border-radius: 4px;
  box-shadow: 1px 1px 3px rgb(214, 0, 0); */
}
.nav-link:hover {
  background-color: rgb(214, 0, 0);
  color: #ffffff !important;
}
@media only screen and (max-width: 480px) {
  .nav-link {
    text-align: center;
    margin-bottom: 7px;
  }
}
/* Back To Top */
#buttonToTop {
  display: inline-block;
  background-color: #323c6f;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: visible;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#buttonToTop i::before {
  color: #ffffff;
}
#buttonToTop::after {
  content: "";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 36px;
  color: #fff;
}
#buttonToTop:hover {
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#buttonToTop:hover i::before {
  color: #323c6f;
}
#buttonToTop:active {
  background-color: #555;
}
#buttonToTop.showTheTop {
  opacity: 1;
  visibility: visible;
}
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}
/* SLIDER */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #323c6f;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #323c6f;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.swiper-button-next,
.swiper-button-prev {
  color: #ffffff !important;
}
.houses-slider > .swiper-button-next,
.houses-slider > .swiper-button-prev {
  top: 42% !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
}
.swiper-pagination-bullet-active {
  background: #323c6f !important;
}
@media only screen and (max-width: 480px) {
  .swiper-button-next:after,
  .swiper-button-prev.swiper-button-prev:after {
    display: none;
  }
}

/* bergheim */
.main-banner-text-img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto 35px auto;
  color: #f10909;
}
@media only screen and (max-width: 480px) {
  .main-banner-text-img {
    margin: 0 auto;
  }
}
.title-part {
  font-size: 40px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 80px;
  color: rgb(214, 0, 0);
}
@media only screen and (max-width: 480px) {
  .title-part {
    margin-bottom: 0;
    font-size: 30px;
  }
}
.content-areas {
  background-image: url("images/mainbanner.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 70px 0;
}

.content-areas:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  z-index: -1;
  opacity: 0.7;
}
@media only screen and (max-width: 480px) {
  .content-areas {
    padding: 30px 10px;
    border-right: 20px solid #fff;
    border-left: 20px solid #fff;
  }
}
.quote-part {
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  display: block;
  padding: 3rem 0;
  background-color: rgb(214, 0, 0);
  color: #ffffff;
}
.quote-part-bottom {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  display: block;
  margin-top: 20px;
}
.p-space {
  padding: 0 4rem !important;
}
@media only screen and (max-width: 480px) {
  .p-space {
    padding: 0 1rem !important;
  }
  .quote-part{
    border-right: 20px solid #fff;
    border-left: 20px solid #fff;
  }
}

@media only screen and (max-width: 480px) {
  .bergheim > .swiper-button-next:after,
  .bergheim > .swiper-button-prev.swiper-button-prev:after {
    display: flex;
    font-size: 25px;
  }
}
.content-texts {
  padding: 0 10px;
  font-size: 24px;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 600;
  display: flex;
  align-items: center;
  height: 50vh;
  padding: 0 30px 0 0;
  text-align: center;
  font-family: "Red Hat Text", sans-serif;
}
@media only screen and (max-width: 480px) {
  .content-texts {
    height: auto;
    padding: 100px 0 40px;
    font-size: 18px;
  }
}

.bergheim {
  margin: 60px 0;
}
.bergheim .swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.5 !important;
}
.bergheim .swiper-pagination-bullet-active {
  background: #ffffff !important;
  opacity: 1 !important;
}
.swiper-slide:hover .overlay {
  opacity: 0.7;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.3s ease;
  background-color: #000000;
  border-radius: 12px;
}
.overlay > .icons {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.overlay > .icons i::before {
  font-size: 48px;
  color: #ffffff;
}

.swipder-slide:hover .overlay > .icons i::before {
  opacity: 1;
}
.bergheim .swiper-slide img {
  max-height: 232px;
}
.about-video {
  height: 35vh;
  width: 100%;
  border-radius: 12px;
}
/* DONATION AREA */
.donation-img {
  background-image: url("images/redbg.jpeg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
}

.donation-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  z-index: -2;
  opacity: 0;
}
@media only screen and (max-width: 480px) {
  .donation-img {
    padding: 0;
    border-left: 20px solid #ffffff;
    border-right: 20px solid #ffffff;

  }
}
.donation-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  padding: 0 5px;
}
.donation-info p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 32px;
}
@media only screen and (max-width: 480px) {
  .donation-info p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
  }
}
.donation-area {
  width: 100%;
  border-radius: 12px;
  background-color: #ddd;
  box-shadow: rgb(4, 170, 109, 0.24) 0px 3px 8px;
}
.donation {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  color: white;
  font-weight: 700;
}
.donation-space {
  margin: 2rem 0 3rem !important;
  padding-right: 50px;
}
@media only screen and (max-width: 480px) {
  .donation-space {
    margin: 1rem 0 0 0 !important;
    padding-right: 0;
  }
  .donation-img:last-child {
    padding-bottom: 2rem;
  }
}

.about-donation {
  background-color: #04aa6d;
  border-radius: 12px;
}
.donation-top {
  text-align: start;
  margin: 30px;
}
@media only screen and (max-width: 480px) {
  .donation-top {
    margin: 30px 0;
  }
}

.top-text {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .top-text {
    font-size: 16px;
  }
  .top-text:last-child {
    margin-bottom: 10px;
  }
  .video-area {
    margin: 30px 0 0 0;
  }
}
.top-text input {
  border: none;
  width: 100%;
  max-width: 285px;
  background: transparent;
  color: #000000;
  -webkit-text-fill-color: #000000;
  opacity: 1;
  font-weight: 600;
}
@media only screen and (max-width: 480px) {
  .top-text input {
    max-width: 230px;
  }
}
.top-text button {
  border: 2px solid rgb(214, 0, 0);
  border-radius: 12px;
  background-color: rgb(214, 0, 0);
  -webkit-text-fill-color: #ffffff;
  opacity: 1;
  padding: 5px 10px;
  font-size: 12px;
}

.top-text a {
  text-decoration: none;
  color: #ffffff;
  background-color: #04aa6d;
  padding: 5px 15px;
  border-radius: 12px;
  margin-top: 5px;
}

.tooltip-donation {
  position: relative;
  display: inline-block;
}

.tooltip-donation .tooltiptext {
  visibility: hidden;
  width: 110px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -55px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.tooltip-donation .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip-donation:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

#myInputBottom {
  max-width: 143px;
}
@media only screen and (max-width: 480px) {
  #myInputBottom {
    max-width: 120px;
  }
}
#donate {
  scroll-margin-bottom: 92px;
}
/* #myInputTop{
  max-width: 460px;
} */
/* STICKY MENU */
.call-btn {
  position: fixed;
  right: -4px;
  z-index: 99;
}
.call-btn a:hover {
  text-decoration: none !important;
  right: 0;
}
.call-btn .call-btn-inner-wp {
  width: 300px;
  position: absolute;
  right: -230px;
  background: #fff;
  top: 250px;
  padding: 0;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 480px) {
  .call-btn .call-btn-inner-wp {
    right: -244px;
    top: 227px;
  }
}
.call-btn .call-btn-inner-wp span.call-icon {
  color: #fff;
  background-color: #25d366;
  font-size: 34px;
  padding: 11px 18px 7px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50px 0 0 50px;
}
.call-btn .call-btn-inner-wp span {
  color: #333;
  font-size: 20px;
  vertical-align: middle;
  font-weight: 700;
  background: #fff;
  padding: 15px 20px 15px 15px;
}
@media only screen and (max-width: 480px) {
  .call-btn .call-btn-inner-wp span.call-icon {
    padding: 8px 12px 4px;
    font-size: 28px;
  }
}
.call-btn .call-btn-inner-insta {
  width: 250px;
  position: absolute;
  right: -180px;
  background: #fff;
  top: 170px;
  padding: 0;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 480px) {
  .call-btn .call-btn-inner-insta {
    right: -195px;
  }
}
.call-btn .call-btn-inner-insta span.call-icon {
  color: #fff;
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );

  font-size: 34px;
  padding: 11px 18px 7px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50px 0 0 50px;
}
@media only screen and (max-width: 480px) {
  .call-btn .call-btn-inner-insta span.call-icon {
    padding: 8px 12px 4px;
    font-size: 28px;
  }
}
.call-btn .call-btn-inner-insta span {
  color: #333;
  font-size: 20px;
  vertical-align: middle;
  font-weight: 700;
  background: #fff;
  padding: 15px 20px 15px 15px;
}
.top-one {
  display: block;
}
.donor-list {
  background: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding: 2rem;
}

.donor-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  border-bottom: 1px solid rgb(214, 0, 0);
  position: relative;
  overflow: hidden;
}

.donor-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(253, 0, 2, 0.5),
    transparent
  );
  transition: left 0.5s;
}

.donor-item:hover::before {
  left: 100%;
}

.donor-item span {
  flex: 1;
  text-align: center;
  transition: transform 0.3s ease;
}

.donor-item:hover span {
  transform: scale(1.05);
}

.donor-item .rank {
  font-weight: bold;
  /* color: #4CAF50; */
  color: rgb(214, 0, 0);
  font-size: 1.5rem;
}

.donor-item .name {
  font-size: 1.2rem;
  font-weight: 500;
}

.donor-item .amount {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}
.col-myoffset-lg-left {
  margin-left: 12.499999995%;
}
.col-myoffset-lg-right {
  margin-right: 12.499999995%;
}
@media only screen and (max-width: 992px) {
  .col-myoffset-lg-left,
  .col-myoffset-lg-right {
    margin: 0;
  }
}
.donaters > .swiper-button-next,
.donaters > .swiper-button-prev {
  color: rgb(214, 0, 0) !important;
}

@media only screen and (max-width: 480px) {
  .donaters > .swiper-button-next:after,
  .donaters > .swiper-button-prev:after {
    display: block;
    font-size: 20px;
  }
}
/* #embedContainer{
  height: 100vh;
} */
.top-button {
  font-weight: 600;
  display: flex;
  align-items: center;
}
#embedButton {
  cursor: pointer;
}
.embedButton {
  text-decoration: none;
  color: #ffffff;
  background-color: rgb(4, 161, 47);
  border: 2px solid rgb(4, 161, 47);
  padding: 5px 15px;
  border-radius: 12px;
  margin: 30px;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  padding: 20px;
}
@media only screen and (max-width: 480px) {
  .embedButton {
    margin: 10px 0;
  }
}
/* @keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(147, 201, 86, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(224, 4, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(224, 4, 11, 0);
  }
} */

.modal-embed {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 100px;
}
.modal-content-embed {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  width: 50%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media only screen and (max-width: 992px) {
  .modal-content-embed {
    width: 90%;
  }
}

.close-embed {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}

.close-embed:hover,
.close-embed:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.accordion-area {
  margin: 30px 0;
}
@media only screen and (max-width:480px){
  .accordion-area{
    border-left: 20px solid #fff;
    border-right:20px solid #fff;
  }
}
.accordion-button:focus {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px !important;
}
.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px !important;
  color: rgb(214, 0, 0) !important;
}
.accordion-button {
  font-weight: 500;
}
.accordion-title {
  color: rgb(214, 0, 0);
  font-size: 28px;
  font-weight: 600;
  margin: 30px 0 60px;
}
.accordion-title span {
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0 30px;
  color: #000000;
  line-height: 1;
}
.bergheim-maps {
  width: 100%;
  height: 50vh;
  max-width: 100%;
}
.donation-bar {
  width: 100%;
  height: auto;
}
.donation-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 30px;
}
@media only screen and (max-width: 480px) {
  .donation-info {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
.donation-info-num {
  font-size: 18px;
  border-radius: 50%;
  color: #ffffff;
  background-color: rgb(214, 0, 0);
  font-weight: 800;
  padding: 10px 20px;
  border: 6px solid rgba(255, 255, 255, 0);
  box-shadow: rgba(255, 255, 255, 0.45) 0px 0px 0px 1px inset;
}
.donation-info-title {
  font-size: 22px;
  font-weight: 700;
}
.donation-info-subtext p {
  font-size: 16px;
  font-weight: 400;
}
.img-divider{
  height: 120px;
  width: 100%;
}
@media only screen and (max-width:480px){
  .img-divider{
    border-left: 20px solid #ffffff;
    border-right: 20px solid #ffffff;
  }
}
.img-divider-inner{
  width: 100%;
  max-width: 100%;
  height: 120px;
  object-fit: cover;
}
